SET foreign_key_checks = 0;
#
# TABLE STRUCTURE FOR: mp_banks
#

DROP TABLE IF EXISTS `mp_banks`;

CREATE TABLE `mp_banks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `bankname` varchar(255) CHARACTER SET latin1 NOT NULL,
  `branch` varchar(100) CHARACTER SET latin1 NOT NULL,
  `branchcode` varchar(100) CHARACTER SET latin1 NOT NULL,
  `title` varchar(100) CHARACTER SET latin1 NOT NULL,
  `accountno` varchar(100) CHARACTER SET latin1 NOT NULL,
  `status` int(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `mp_banks` (`id`, `bankname`, `branch`, `branchcode`, `title`, `accountno`, `status`) VALUES ('1', 'Islami Bank Bangladesh Ltd', 'Tangail', '123456789', 'Business Account ', '12345678910', '0');


#
# TABLE STRUCTURE FOR: mp_bank_opening
#

DROP TABLE IF EXISTS `mp_bank_opening`;

CREATE TABLE `mp_bank_opening` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date_created` date NOT NULL,
  `bank_id` int(11) NOT NULL,
  `amount` varchar(255) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`),
  KEY `bank_id` (`bank_id`),
  CONSTRAINT `bank_opening_transac` FOREIGN KEY (`bank_id`) REFERENCES `mp_banks` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: mp_bank_transaction
#

DROP TABLE IF EXISTS `mp_bank_transaction`;

CREATE TABLE `mp_bank_transaction` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `transaction_id` int(11) NOT NULL,
  `bank_id` int(11) NOT NULL,
  `payee_id` int(11) NOT NULL,
  `method` varchar(50) CHARACTER SET latin1 NOT NULL,
  `cheque_amount` varchar(255) CHARACTER SET latin1 NOT NULL,
  `ref_no` varchar(100) CHARACTER SET latin1 NOT NULL,
  `transaction_status` int(1) NOT NULL,
  `transaction_type` varchar(50) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`),
  KEY `transaction_id` (`transaction_id`),
  KEY `bank_id` (`bank_id`),
  KEY `payee_id` (`payee_id`),
  CONSTRAINT `bankid_bank_fk` FOREIGN KEY (`bank_id`) REFERENCES `mp_banks` (`id`),
  CONSTRAINT `payee_bank_fk` FOREIGN KEY (`payee_id`) REFERENCES `mp_payee` (`id`),
  CONSTRAINT `transaction_general_fk` FOREIGN KEY (`transaction_id`) REFERENCES `mp_generalentry` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8;

INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('12', '96', '1', '2', 'Cheque', '22440.00', '12345201345', '0', 'recieved');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('13', '97', '1', '2', 'Cheque', '22440', '', '1', 'recieved');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('14', '99', '1', '2', 'Cheque', '1530', '123456789', '1', 'recieved');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('15', '100', '1', '2', 'Cheque', '1530', '123456789', '1', 'recieved');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('16', '101', '1', '2', 'Cheque', '200', '147852369', '1', 'recieved');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('17', '102', '1', '2', 'Cheque', '200', '147852369', '0', 'recieved');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('18', '103', '1', '2', 'Cash', '200', '', '0', 'recieved');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('19', '105', '1', '5', 'Cash', '250000', '12345', '0', 'recieved');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('20', '106', '1', '5', 'Cheque', '2448.00', 'ghh', '0', 'recieved');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('21', '107', '1', '4', 'Cheque', '50000', '12345678', '0', 'paid');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('22', '110', '1', '4', 'Cheque', '0', '123456789', '1', 'paid');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('23', '111', '1', '4', 'Cheque', '35000', '', '0', 'recieved');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('24', '112', '1', '4', 'Cheque', '35000', '', '0', 'recieved');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('25', '114', '1', '1', 'Cheque', '2448.00', '12345678', '0', 'recieved');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('26', '115', '1', '1', 'Cash', '500000', '124', '1', 'recieved');
INSERT INTO `mp_bank_transaction` (`id`, `transaction_id`, `bank_id`, `payee_id`, `method`, `cheque_amount`, `ref_no`, `transaction_status`, `transaction_type`) VALUES ('27', '116', '1', '4', 'Cheque', '10000', '123456789', '0', 'paid');


#
# TABLE STRUCTURE FOR: mp_barcode
#

DROP TABLE IF EXISTS `mp_barcode`;

CREATE TABLE `mp_barcode` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `barcode` varchar(255) CHARACTER SET latin1 NOT NULL,
  `random_no` varchar(255) CHARACTER SET latin1 NOT NULL,
  `description` longtext CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

INSERT INTO `mp_barcode` (`id`, `barcode`, `random_no`, `description`) VALUES ('3', 'A8FR250-Fan Regulator', 'J220H000051', 'sdad');


#
# TABLE STRUCTURE FOR: mp_brand
#

DROP TABLE IF EXISTS `mp_brand`;

CREATE TABLE `mp_brand` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

INSERT INTO `mp_brand` (`id`, `name`) VALUES ('1', 'Walton');
INSERT INTO `mp_brand` (`id`, `name`) VALUES ('2', 'Marcel');
INSERT INTO `mp_brand` (`id`, `name`) VALUES ('3', 'Akij Cement');
INSERT INTO `mp_brand` (`id`, `name`) VALUES ('4', 'Rod BSRM');
INSERT INTO `mp_brand` (`id`, `name`) VALUES ('5', 'Kejea');


#
# TABLE STRUCTURE FOR: mp_brand_sector
#

DROP TABLE IF EXISTS `mp_brand_sector`;

CREATE TABLE `mp_brand_sector` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sector` varchar(255) CHARACTER SET latin1 NOT NULL,
  `created` date NOT NULL,
  `updated` date NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

INSERT INTO `mp_brand_sector` (`id`, `sector`, `created`, `updated`) VALUES ('1', 'A8, E4 switch socket', '2018-05-28', '2018-05-28');
INSERT INTO `mp_brand_sector` (`id`, `sector`, `created`, `updated`) VALUES ('2', 'Lighting', '2018-05-29', '2018-05-29');
INSERT INTO `mp_brand_sector` (`id`, `sector`, `created`, `updated`) VALUES ('3', 'W,S,V Switch socket', '2018-05-29', '2018-05-29');
INSERT INTO `mp_brand_sector` (`id`, `sector`, `created`, `updated`) VALUES ('4', 'Piano,Accesories,Fan &amp; Battery', '2018-05-29', '2018-05-29');
INSERT INTO `mp_brand_sector` (`id`, `sector`, `created`, `updated`) VALUES ('5', 'Rod Scoarbaer ', '2018-06-04', '2018-06-04');
INSERT INTO `mp_brand_sector` (`id`, `sector`, `created`, `updated`) VALUES ('6', '0', '2018-07-05', '2018-07-05');


#
# TABLE STRUCTURE FOR: mp_category
#

DROP TABLE IF EXISTS `mp_category`;

CREATE TABLE `mp_category` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `category_name` varchar(255) CHARACTER SET latin1 NOT NULL,
  `description` varchar(255) CHARACTER SET latin1 NOT NULL,
  `register_date` date NOT NULL,
  `status` int(1) NOT NULL,
  `added_by` varchar(255) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`),
  KEY `id_2` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8;

INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('1', 'Walton Elictric', 'Walton Elictric', '2018-05-28', '0', 'Pencil');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('2', 'Rod', 'sa', '2018-06-04', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('3', 'Category id', 'Product name', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('4', '1', 'MSD55FD (55\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('5', '1', 'MSD49FD (49\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('6', '1', 'MD4-TS43-DL200-(43\'\')-SMART', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('7', '1', 'MD1-TS43-FV100  (43\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('8', '1', 'MD437TS25  (43\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('9', '1', 'M42T3500 (42\'\')', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('10', '1', 'MC42D12 (42\'\') - (Non Warranty)', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('11', '1', 'M40E3000-FHD (40\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('12', '1', 'M40E36D (40\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('13', '1', 'ME396AFH (39\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('14', '1', 'ME326DH-S-(32\")-SMART', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('15', '1', 'ME4-DH32-BY200-(32\")-SMART', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('16', '1', 'ME326AH (32\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('17', '1', 'ME326AH-Silver (32\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('18', '1', 'MD326SR (32\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('19', '1', 'MD326SR-Silver (32\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('20', '1', 'MD326JX (32\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('21', '1', 'MD326JX-Silver (32\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('22', '1', 'MT32D27 (32\'\')', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('23', '1', 'M32E3000 (32\'\')', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('24', '1', 'MD1-EF32-SV100 (32\'\')', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('25', '1', 'MD286CD-Silver (28\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('26', '1', 'MD286CD  (28\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('27', '1', 'MD285AH-Silver (28\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('28', '1', 'MD285AH (28\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('29', '1', 'MDF-DT24-AU200-(24\'\')Full HD', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('30', '1', 'MCT24O4K (24\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('31', '1', 'MCT24O4K-Silver (24\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('32', '1', 'MD1-DT24-MC100 (24\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('33', '1', 'MD1-DT24-MC100-Silver (24\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('34', '1', 'MD1-DT24-RL100 (24\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('35', '1', 'MD1-DT24-RL100-Silver (24\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('36', '1', 'MCT24O4X (24\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('37', '1', 'MCT24O4C (24\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('38', '1', 'MCT24O4 (24\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('39', '1', 'MCT24O4-Silver (24\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('40', '1', 'MCT24DF6 (24\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('41', '1', 'MCT24DF6-Silver (24\")', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('42', '1', 'MSE20BX6 (20\')', '2018-06-09', '0', 'Jannat Group');
INSERT INTO `mp_category` (`id`, `category_name`, `description`, `register_date`, `status`, `added_by`) VALUES ('43', '1', 'MSE20BX6-Silver (20\'\')', '2018-06-09', '0', 'Jannat Group');


#
# TABLE STRUCTURE FOR: mp_contactabout
#

DROP TABLE IF EXISTS `mp_contactabout`;

CREATE TABLE `mp_contactabout` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `contact_title` varchar(255) CHARACTER SET latin1 NOT NULL,
  `contact_description` varchar(255) CHARACTER SET latin1 NOT NULL,
  `phone_number` varchar(255) CHARACTER SET latin1 NOT NULL,
  `address` varchar(255) CHARACTER SET latin1 NOT NULL,
  `email` varchar(255) CHARACTER SET latin1 NOT NULL,
  `facebook` varchar(255) CHARACTER SET latin1 NOT NULL,
  `twitter` varchar(255) CHARACTER SET latin1 NOT NULL,
  `linked` varchar(255) CHARACTER SET latin1 NOT NULL,
  `googleplus` varchar(255) CHARACTER SET latin1 NOT NULL,
  `about_title` varchar(255) CHARACTER SET latin1 NOT NULL,
  `about_quotation` varchar(255) CHARACTER SET latin1 NOT NULL,
  `about_name` varchar(255) CHARACTER SET latin1 NOT NULL,
  `about_title2` varchar(255) CHARACTER SET latin1 NOT NULL,
  `about_description` varchar(255) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `mp_contactabout` (`id`, `contact_title`, `contact_description`, `phone_number`, `address`, `email`, `facebook`, `twitter`, `linked`, `googleplus`, `about_title`, `about_quotation`, `about_name`, `about_title2`, `about_description`) VALUES ('1', 'Contact Us', 'Tangail Marcel', '01715932630', 'Tangail', 'aloranbdsoft@gmail.com', 'aloranbdsoft@gmail.com', 'ali.i.roshan', 'ali.i.roshan', 'ali.i.roshan', '« Lorem Ipsum is simply dummy text of the printing  »', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.p;#039;s standard dummy text ever since the 1500s, when an unknown printer took a ga', '— Medix Pharmacy', 'About Us', 'Praesent convallis tortor et enim laoreet, vel consectetur purus latoque penatibus et dis parturient.');


#
# TABLE STRUCTURE FOR: mp_customer_payments
#

DROP TABLE IF EXISTS `mp_customer_payments`;

CREATE TABLE `mp_customer_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `transaction_id` int(11) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `amount` decimal(11,2) NOT NULL,
  `method` varchar(255) CHARACTER SET latin1 NOT NULL,
  `date` date NOT NULL,
  `description` varchar(255) CHARACTER SET latin1 NOT NULL,
  `agentname` varchar(50) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`),
  KEY `transaction_id` (`transaction_id`),
  KEY `customer_id` (`customer_id`),
  CONSTRAINT `customer_trans_fk` FOREIGN KEY (`transaction_id`) REFERENCES `mp_generalentry` (`id`),
  CONSTRAINT `payee_id_fk` FOREIGN KEY (`customer_id`) REFERENCES `mp_payee` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;

INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('1', '68', '2', '100.00', 'Cash', '2018-06-02', 'dfdf', 'Jannat Group');
INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('2', '69', '2', '500.00', 'Cash', '2018-06-02', 'fgds', 'Jannat Group');
INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('3', '75', '2', '500.00', 'Cash', '2018-06-04', 'fr', 'Jannat Group');
INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('4', '81', '2', '1000.00', 'Cash', '2018-06-06', 'rg4', 'Jannat Group');
INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('5', '84', '2', '1000.00', 'Cash', '2018-06-06', 'tgre', 'Jannat Group');
INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('6', '87', '2', '100000.00', 'Cash', '2018-06-15', 'vjn', 'Md. Habibur Rahman');
INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('7', '88', '2', '1012.00', 'Cash', '2018-06-15', 's', 'Md. Habibur Rahman');
INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('8', '97', '2', '22440.00', 'Cheque', '2018-06-18', 'sdfgvsd', 'Md. Habibur Rahman');
INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('9', '100', '2', '1530.00', 'Cheque', '2018-06-18', 'xfvds', 'Md. Habibur Rahman');
INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('10', '101', '2', '200.00', 'Cheque', '2018-06-18', 'vjn', 'Md. Habibur Rahman');
INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('11', '102', '2', '200.00', 'Cheque', '2018-06-18', 'zsdas', 'Md. Habibur Rahman');
INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('12', '118', '2', '1336.00', 'Cash', '2018-06-22', '018-06-06', 'habibipsita@gmail.com');
INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('13', '130', '6', '1000.00', 'Cash', '2018-07-04', 'dfsdf', 'Md. Habibur Rahman');
INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('14', '132', '6', '1000.00', 'Cash', '2018-07-04', 'ffdasa', 'Md. Habibur Rahman');
INSERT INTO `mp_customer_payments` (`id`, `transaction_id`, `customer_id`, `amount`, `method`, `date`, `description`, `agentname`) VALUES ('15', '188', '2', '1200.00', 'Cash', '2018-07-12', 'zZx', 'Md. Habibur Rahman');


#
# TABLE STRUCTURE FOR: mp_drivers
#

DROP TABLE IF EXISTS `mp_drivers`;

CREATE TABLE `mp_drivers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET latin1 NOT NULL,
  `contact` varchar(15) CHARACTER SET latin1 NOT NULL,
  `address` varchar(255) CHARACTER SET latin1 NOT NULL,
  `lisence` varchar(255) CHARACTER SET latin1 NOT NULL,
  `ref` varchar(255) CHARACTER SET latin1 NOT NULL,
  `date` date NOT NULL,
  `cus_picture` varchar(255) CHARACTER SET latin1 NOT NULL,
  `status` int(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO `mp_drivers` (`id`, `name`, `contact`, `address`, `lisence`, `ref`, `date`, `cus_picture`, `status`) VALUES ('2', 'gfsdf', '568', 'gdfgds', '63863', 'grt', '2018-07-05', 'default.jpg', '0');


#
# TABLE STRUCTURE FOR: mp_expense
#

DROP TABLE IF EXISTS `mp_expense`;

CREATE TABLE `mp_expense` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `transaction_id` int(11) NOT NULL,
  `head_id` int(11) NOT NULL,
  `total_bill` varchar(255) CHARACTER SET latin1 NOT NULL,
  `total_paid` varchar(255) CHARACTER SET latin1 NOT NULL,
  `date` date NOT NULL,
  `user` varchar(255) CHARACTER SET latin1 NOT NULL,
  `method` varchar(50) CHARACTER SET latin1 NOT NULL,
  `description` longtext CHARACTER SET latin1 NOT NULL,
  `payee_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `head_id` (`head_id`),
  KEY `transaction_id` (`transaction_id`),
  KEY `payee_id` (`payee_id`),
  CONSTRAINT `general_expense_fk` FOREIGN KEY (`transaction_id`) REFERENCES `mp_generalentry` (`id`),
  CONSTRAINT `head_expense_fk` FOREIGN KEY (`head_id`) REFERENCES `mp_head` (`id`),
  CONSTRAINT `payee_expense_fk` FOREIGN KEY (`payee_id`) REFERENCES `mp_payee` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

INSERT INTO `mp_expense` (`id`, `transaction_id`, `head_id`, `total_bill`, `total_paid`, `date`, `user`, `method`, `description`, `payee_id`) VALUES ('1', '139', '6', '500', '500', '2018-07-04', 'Md. Habibur Rahman', 'Cash', 'Mr. Tarek Khan | Postpaid Bill | 01712031466', '7');
INSERT INTO `mp_expense` (`id`, `transaction_id`, `head_id`, `total_bill`, `total_paid`, `date`, `user`, `method`, `description`, `payee_id`) VALUES ('2', '153', '1', '9500', '2000', '2018-07-09', 'Md. Habibur Rahman', 'Cash', '', '7');
INSERT INTO `mp_expense` (`id`, `transaction_id`, `head_id`, `total_bill`, `total_paid`, `date`, `user`, `method`, `description`, `payee_id`) VALUES ('3', '154', '1', '9500', '3500', '2018-07-11', 'Md. Habibur Rahman', 'Cash', '', '7');


#
# TABLE STRUCTURE FOR: mp_generalentry
#

DROP TABLE IF EXISTS `mp_generalentry`;

CREATE TABLE `mp_generalentry` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) DEFAULT '0',
  `date` date NOT NULL,
  `naration` varchar(255) CHARACTER SET latin1 NOT NULL,
  `generated_source` varchar(50) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=196 DEFAULT CHARSET=utf8;

INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('1', '0', '2018-05-28', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('4', '0', '2018-05-28', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('7', '0', '2018-05-28', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('8', '0', '2018-05-28', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('9', '0', '2018-05-28', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('10', '0', '2018-05-28', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('11', '0', '2018-05-28', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('12', '0', '2018-05-29', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('13', '0', '2018-05-29', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('14', '0', '2018-05-29', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('15', '0', '2018-05-29', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('16', '0', '2018-05-29', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('17', '0', '2018-05-29', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('18', '0', '2018-05-29', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('19', '0', '2018-05-29', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('20', '0', '2018-05-29', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('21', '0', '2018-05-30', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('24', '0', '2018-05-30', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('25', '0', '2018-05-30', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('26', '0', '2018-05-30', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('27', '0', '2018-05-30', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('28', '0', '2018-05-30', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('29', '0', '2018-05-30', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('30', '0', '2018-05-30', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('31', '0', '2018-05-30', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('32', '0', '2018-05-30', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('33', '0', '2018-05-30', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('34', '0', '2018-05-30', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('35', '0', '2018-05-30', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('36', '0', '2018-05-30', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('37', '0', '2018-06-01', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('38', '0', '2018-06-01', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('39', '0', '2018-06-01', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('40', '0', '2018-06-01', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('41', '0', '2018-06-01', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('42', '0', '2018-06-01', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('43', '0', '2018-06-01', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('44', '0', '2018-06-01', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('45', '0', '2018-06-01', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('46', '0', '2018-06-01', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('47', '0', '2018-06-01', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('48', '0', '2018-06-01', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('49', '0', '2018-06-01', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('50', '0', '2018-06-01', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('51', '0', '2018-06-01', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('52', '0', '2018-06-01', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('53', '0', '2018-06-01', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('54', '0', '2018-06-02', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('55', '0', '2018-06-02', 'Transaction occured from return inventory.', 'return_pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('56', '0', '2018-06-02', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('60', '0', '2018-06-02', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('61', '0', '2018-06-02', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('62', '0', '2018-06-02', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('63', '0', '2018-06-02', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('64', '0', '2018-06-02', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('66', '0', '2018-06-02', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('67', '0', '2018-06-02', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('68', '0', '2018-06-02', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('69', '0', '2018-06-02', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('70', '0', '2018-06-04', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('71', '0', '2018-06-04', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('72', '0', '2018-06-04', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('73', '0', '2018-06-04', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('74', '0', '2018-06-04', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('75', '0', '2018-06-04', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('76', '0', '2018-06-04', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('77', '0', '2018-06-04', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('78', '0', '2018-06-06', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('79', '0', '2018-06-06', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('80', '0', '2018-06-06', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('81', '0', '2018-06-06', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('82', '0', '2018-06-06', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('83', '0', '2018-06-06', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('84', '0', '2018-06-06', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('85', '0', '2018-06-11', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('86', '0', '2018-06-11', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('87', '0', '2018-06-15', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('88', '0', '2018-06-15', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('89', '0', '2018-06-15', 'Transaction occured from Supplier payments', 'supplier_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('90', '0', '2018-06-15', 'Transaction occured from Supplier payments', 'supplier_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('96', '0', '2018-06-18', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('97', '0', '2018-06-18', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('99', '0', '2018-06-18', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('100', '0', '2018-06-18', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('101', '0', '2018-06-18', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('102', '0', '2018-06-18', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('103', '0', '2018-06-18', '', 'deposit');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('105', '0', '2018-06-18', 'ghgh', 'deposit');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('106', '0', '2018-06-18', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('107', '0', '2018-06-18', 'Transaction occured from Supplier payments', 'supplier_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('109', '0', '2018-06-18', 'Transaction occured from return inventory.', 'return_pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('110', '0', '2018-06-18', 'Transaction occured from create purchases', 'create_purchases');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('111', '0', '2018-06-18', 'Transaction occured from purchases return', 'purchases_return');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('112', '0', '2018-06-18', 'Transaction occured from purchases return', 'purchases_return');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('114', '0', '2018-06-19', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('115', '0', '2018-06-19', 'hbj', 'deposit');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('116', '0', '2018-06-19', 'bvchjb', 'cheque');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('117', '0', '2018-06-20', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('118', '0', '2018-06-22', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('120', '0', '2018-06-24', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('121', '0', '2018-06-24', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('122', '0', '2018-06-24', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('123', '0', '2018-06-24', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('124', '0', '2018-06-25', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('125', '0', '2018-06-25', 'Transaction occured from return inventory.', 'return_pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('126', '0', '2018-06-30', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('127', '0', '2018-06-30', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('128', '0', '2018-07-04', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('129', '0', '2018-07-04', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('130', '0', '2018-07-04', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('131', '0', '2018-07-04', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('132', '0', '2018-07-04', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('133', '0', '2018-07-04', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('134', '0', '2018-07-04', 'Transaction occured from create purchases', 'create_purchases');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('139', '0', '2018-07-04', 'Transaction occured from expense', 'expense');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('141', '0', '2018-07-04', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('142', '0', '2018-07-04', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('143', '0', '2018-07-04', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('144', '0', '2018-07-04', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('145', '0', '2018-07-05', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('146', '0', '2018-07-05', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('147', '0', '2018-07-06', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('148', '0', '2018-07-06', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('149', '0', '2018-07-01', 'Habib', 'Opening balance');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('150', '0', '2018-07-02', 'Moyn', 'Opening balance');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('151', '0', '2018-07-03', 'Hasan', 'Opening balance');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('152', '0', '2018-07-02', 'hsrijf', 'Opening balance');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('153', '0', '2018-07-09', 'Transaction occured from expense', 'expense');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('154', '0', '2018-07-09', 'Transaction occured from expense', 'expense');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('155', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('156', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('157', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('158', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('159', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('160', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('161', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('162', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('163', '0', '2018-07-09', 'Transaction occured from create purchases', 'create_purchases');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('164', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('165', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('166', '0', '2018-07-06', 'Mr. Tarek Khan | Postpaid Bill | 01712031466', 'Opening balance');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('167', '0', '2018-07-09', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('168', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('169', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('170', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('171', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('172', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('173', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('174', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('175', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('176', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('177', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('178', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('179', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('180', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('181', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('182', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('183', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('184', '0', '2018-07-09', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('186', '0', '2018-07-12', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('187', '0', '2018-07-12', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('188', '0', '2018-07-12', 'Transaction occured from customer payments', 'customer_payment');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('189', '0', '2019-02-05', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('190', '0', '2019-02-05', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('191', '0', '2019-02-05', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('192', '0', '2019-02-05', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('193', '0', '2019-02-18', 'Transaction occured from POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('194', '0', '2019-02-18', 'Transaction occured from supply POS', 'pos');
INSERT INTO `mp_generalentry` (`id`, `customer_id`, `date`, `naration`, `generated_source`) VALUES ('195', '1', '2019-11-14', 'This is a description', 'Opening balance');


#
# TABLE STRUCTURE FOR: mp_head
#

DROP TABLE IF EXISTS `mp_head`;

CREATE TABLE `mp_head` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET latin1 NOT NULL,
  `nature` varchar(50) CHARACTER SET latin1 NOT NULL,
  `type` varchar(50) CHARACTER SET latin1 NOT NULL,
  `relation_id` int(11) NOT NULL,
  `expense_type` varchar(50) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;

INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('1', 'Salary', 'Expense', 'Current', '0', 'Cash Expense');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('2', 'Cash', 'Assets', 'Non-Current', '0', 'Non-Cash Expense');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('3', 'Inventory', 'Revenue', 'Current', '0', 'Cash Expense');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('4', 'Accounts receivable', 'Assets', 'Current', '0', '-');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('5', 'Accounts payable', 'Libility', 'Current', '0', 'Cash Expense');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('6', 'Telephone Expense', 'Expense', 'Current', '0', '-');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('7', 'CapitalStock', 'Equity', 'Current', '0', '-');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('8', 'Land', 'Assets', 'Non-Current', '0', '-');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('9', 'Building', 'Assets', 'Non-Current', '0', '-');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('10', 'Notes payable', 'Libility', 'Non-Current', '0', '-');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('11', 'Tools and Equipments', 'Assets', 'Current', '0', '-');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('12', 'Repair Service Revenue', 'Revenue', 'Current', '0', '-');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('13', 'Wages Expense', 'Expense', 'Current', '0', '-');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('14', 'Utitlity Expense', 'Expense', 'Current', '0', 'Cash Expense');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('15', 'Adverstising Expense', 'Expense', 'Current', '0', '-');
INSERT INTO `mp_head` (`id`, `name`, `nature`, `type`, `relation_id`, `expense_type`) VALUES ('16', 'Cash in bank', 'Assets', 'Current', '0', '-');


#
# TABLE STRUCTURE FOR: mp_invoices
#

DROP TABLE IF EXISTS `mp_invoices`;

CREATE TABLE `mp_invoices` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `transaction_id` int(11) NOT NULL,
  `date` date NOT NULL,
  `discount` decimal(11,2) NOT NULL,
  `status` int(1) NOT NULL,
  `description` varchar(255) CHARACTER SET latin1 NOT NULL,
  `agentname` varchar(100) CHARACTER SET latin1 NOT NULL,
  `cus_id` int(11) NOT NULL,
  `cus_picture` varchar(255) CHARACTER SET latin1 NOT NULL,
  `delivered_to` varchar(100) CHARACTER SET latin1 NOT NULL,
  `delivered_by` varchar(100) CHARACTER SET latin1 NOT NULL,
  `delivered_date` date NOT NULL,
  `delivered_description` varchar(255) CHARACTER SET latin1 NOT NULL,
  `shippingcharges` decimal(11,2) NOT NULL,
  `prescription_id` int(11) NOT NULL,
  `region_id` int(11) NOT NULL,
  `vehicle_id` int(11) NOT NULL,
  `driver_id` int(11) NOT NULL,
  `payment_method` int(1) NOT NULL,
  `total_bill` decimal(11,2) NOT NULL,
  `bill_paid` decimal(11,2) NOT NULL,
  `source` int(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`),
  KEY `cus_id` (`cus_id`),
  KEY `prescription_id` (`prescription_id`),
  KEY `transaction_id` (`transaction_id`),
  CONSTRAINT `invoice_payee_fk` FOREIGN KEY (`cus_id`) REFERENCES `mp_payee` (`id`),
  CONSTRAINT `invoice_transaction_fk` FOREIGN KEY (`transaction_id`) REFERENCES `mp_generalentry` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=139 DEFAULT CHARSET=utf8;

INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('3', '7', '2018-05-28', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '85.00', '85.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('4', '8', '2018-05-28', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '1734.00', '1734.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('5', '9', '2018-05-28', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '1734.00', '1734.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('6', '10', '2018-05-28', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '867.00', '867.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('7', '11', '2018-05-28', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '867.00', '867.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('8', '12', '2018-05-29', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '1530.00', '1530.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('9', '13', '2018-05-29', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '85.00', '85.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('10', '14', '2018-05-29', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '4050.00', '4050.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('11', '15', '2018-05-29', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '1530.00', '1530.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('12', '16', '2018-05-29', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '1530.00', '1530.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('13', '17', '2018-05-29', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '3060.00', '3060.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('14', '18', '2018-05-29', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '1734.00', '1734.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('15', '19', '2018-05-29', '0.00', '0', 'op', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '867.00', '867.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('16', '20', '2018-05-29', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '3876.00', '3876.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('17', '21', '2018-05-30', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '1938.00', '1938.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('20', '24', '2018-05-30', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '2244.00', '2244.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('21', '25', '2018-05-30', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '3876.00', '3876.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('22', '26', '2018-05-30', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '1938.00', '1938.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('23', '27', '2018-05-30', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '190.00', '190.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('24', '28', '2018-05-30', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '56.00', '56.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('25', '29', '2018-05-30', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '112.00', '112.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('26', '30', '2018-05-30', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '32.00', '32.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('27', '31', '2018-05-30', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '32.00', '32.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('28', '32', '2018-05-30', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '16.00', '16.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('29', '33', '2018-05-30', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '32.00', '32.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('30', '34', '2018-05-30', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '32.00', '32.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('31', '35', '2018-05-30', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '88.00', '88.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('32', '36', '2018-05-30', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '12992.00', '12992.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('33', '37', '2018-06-01', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '115.00', '115.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('34', '38', '2018-06-01', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '2400.00', '2400.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('35', '39', '2018-06-01', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '1800.00', '1800.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('36', '40', '2018-06-01', '0.00', '0', 'test', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '4080.00', '4080.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('37', '41', '2018-06-01', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '7344.00', '7344.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('38', '42', '2018-06-01', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '11000.00', '11000.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('39', '43', '2018-06-01', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '91800.00', '91800.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('40', '44', '2018-06-01', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '91800.00', '91800.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('41', '45', '2018-06-01', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '229500.00', '229500.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('42', '46', '2018-06-01', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '91800.00', '91800.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('43', '47', '2018-06-01', '0.00', '0', 'This is a test purpose', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '4896.00', '4896.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('44', '48', '2018-06-01', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '360.00', '360.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('45', '49', '2018-06-01', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '252000.00', '252000.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('46', '50', '2018-06-01', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '0.00', '0.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('47', '51', '2018-06-01', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '115000.00', '115000.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('48', '52', '2018-06-01', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '115000.00', '115000.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('49', '53', '2018-06-01', '0.00', '1', 'cvcx', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '3774.00', '3774.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('50', '54', '2018-06-02', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '380.00', '380.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('51', '56', '2018-06-02', '0.00', '0', '', 'Jannat Group', '2', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '2448.00', '2448.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('55', '60', '2018-06-02', '0.00', '0', '', 'Jannat Group', '2', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '230000.00', '0.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('56', '61', '2018-06-02', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '115000.00', '0.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('57', '62', '2018-06-02', '0.00', '1', 'eer', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '115000.00', '0.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('58', '63', '2018-06-02', '0.00', '0', '', 'Jannat Group', '2', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '150.00', '0.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('59', '64', '2018-06-02', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '9690.00', '0.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('61', '66', '2018-06-02', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '11424.00', '0.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('62', '67', '2018-06-02', '0.00', '0', '', 'Jannat Group', '2', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '9180.00', '0.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('63', '70', '2018-06-04', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '180.00', '180.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('64', '71', '2018-06-04', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '1836.00', '1836.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('65', '72', '2018-06-04', '0.00', '0', '', 'Jannat Group', '2', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '255.00', '255.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('66', '73', '2018-06-04', '0.00', '0', '', 'Jannat Group', '2', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '240.00', '240.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('67', '74', '2018-06-04', '0.00', '0', '', 'Jannat Group', '2', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '1200.00', '0.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('68', '76', '2018-06-04', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '80.00', '80.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('69', '77', '2018-06-04', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '1600.00', '1600.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('70', '78', '2018-06-06', '0.00', '0', '', 'Jannat Group', '2', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '1800.00', '1800.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('71', '79', '2018-06-06', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '1836.00', '500.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('72', '80', '2018-06-06', '0.00', '0', '', 'Jannat Group', '2', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '1836.00', '500.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('73', '82', '2018-06-06', '0.00', '0', '', 'Jannat Group', '2', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '180.00', '180.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('74', '83', '2018-06-06', '0.00', '0', '', 'Jannat Group', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '1836.00', '500.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('75', '85', '2018-06-11', '0.00', '0', '', 'Md. Habibur Rahman', '2', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '85.00', '85.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('76', '86', '2018-06-11', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '170.00', '170.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('79', '96', '2018-06-18', '0.00', '0', 'gfdsf', 'Md. Habibur Rahman', '2', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '1', '22440.00', '22440.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('80', '99', '2018-06-18', '0.00', '0', 'gh', 'Md. Habibur Rahman', '2', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '1', '1530.00', '1530.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('81', '106', '2018-06-18', '0.00', '0', 'fghrg', 'Md. Habibur Rahman', '5', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '1', '2448.00', '2448.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('82', '114', '2018-06-19', '0.00', '0', 'hgfdh', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '1', '2448.00', '2448.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('83', '117', '2018-06-20', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '255.00', '255.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('84', '120', '2018-06-24', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '25.00', '25.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('85', '121', '2018-06-24', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '13.00', '13.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('86', '122', '2018-06-24', '20.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '985.00', '500.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('87', '123', '2018-06-24', '0.00', '0', '', 'Md. Habibur Rahman', '2', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '1', '0', '22.00', '22.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('88', '124', '2018-06-25', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '25.00', '25.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('89', '126', '2018-06-30', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '0.00', '0.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('90', '127', '2018-06-30', '0.00', '0', '', 'Md. Habibur Rahman', '2', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '450.00', '450.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('91', '128', '2018-07-04', '0.00', '0', '', 'Md. Habibur Rahman', '6', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '1515.00', '1515.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('92', '129', '2018-07-04', '0.00', '0', '', 'Md. Habibur Rahman', '6', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '1926.00', '0.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('93', '131', '2018-07-04', '50.00', '0', '', 'Md. Habibur Rahman', '6', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '1100.00', '500.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('94', '133', '2018-07-04', '0.00', '1', '', 'Md. Habibur Rahman', '6', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '1150.00', '500.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('95', '141', '2018-07-04', '0.00', '0', '', 'Md. Habibur Rahman', '2', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '2', '0', '200.00', '200.00', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('96', '142', '2018-07-04', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '2', '0', '201.82', '201.82', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('97', '143', '2018-07-04', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '13.32', '13.32', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('98', '144', '2018-07-04', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '630.00', '630.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('99', '145', '2018-07-05', '0.00', '0', '', 'Md. Habibur Rahman', '6', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '2417.00', '2417.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('100', '146', '2018-07-05', '0.00', '0', '', 'Md. Habibur Rahman', '8', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '2300.00', '2300.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('101', '147', '2018-07-06', '20.00', '1', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '20431.00', '20431.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('102', '148', '2018-07-06', '200.00', '0', '', 'Md. Habibur Rahman', '8', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '63320.00', '63320.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('103', '155', '2018-07-09', '0.00', '1', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '31701.60', '31701.60', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('104', '156', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('105', '157', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('106', '158', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('107', '159', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '1250.00', '1250.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('108', '160', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('109', '161', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('110', '162', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('111', '164', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('112', '165', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '2', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('113', '167', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '2', '0', '1.32', '1.32', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('114', '168', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('115', '169', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('116', '170', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '0.00', '0.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('117', '171', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '950.00', '950.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('118', '172', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '95.00', '95.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('119', '173', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '95.00', '95.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('120', '174', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('121', '175', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('122', '176', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '95.00', '95.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('123', '177', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('124', '178', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '95.00', '95.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('125', '179', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('126', '180', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '95.00', '95.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('127', '181', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('128', '182', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '95.00', '95.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('129', '183', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '125.00', '125.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('130', '184', '2018-07-09', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '95.00', '95.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('131', '186', '2018-07-12', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '13.32', '13.32', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('132', '187', '2018-07-12', '0.00', '0', '', 'Md. Habibur Rahman', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '7.42', '7.42', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('133', '189', '2019-02-05', '0.00', '0', '', 'Supper Admin', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '69.00', '69.00', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('134', '190', '2019-02-05', '0.00', '0', '', 'Supper Admin', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '14.84', '14.84', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('135', '191', '2019-02-05', '0.00', '0', '', 'Supper Admin', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '108.43', '108.43', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('136', '192', '2019-02-05', '0.00', '0', '', 'Supper Admin', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '2', '0', '472.50', '472.50', '1');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('137', '193', '2019-02-18', '0.00', '0', '', 'Supper Admin', '1', '', '', '', '0000-00-00', '', '0.00', '0', '0', '0', '0', '0', '22.26', '22.26', '0');
INSERT INTO `mp_invoices` (`id`, `transaction_id`, `date`, `discount`, `status`, `description`, `agentname`, `cus_id`, `cus_picture`, `delivered_to`, `delivered_by`, `delivered_date`, `delivered_description`, `shippingcharges`, `prescription_id`, `region_id`, `vehicle_id`, `driver_id`, `payment_method`, `total_bill`, `bill_paid`, `source`) VALUES ('138', '194', '2019-02-18', '0.00', '0', 'This is a test', 'Supper Admin', '1', '', '', '', '0000-00-00', '', '0.00', '0', '1', '1', '2', '0', '2.17', '2.17', '1');


#
# TABLE STRUCTURE FOR: mp_langingpage
#

DROP TABLE IF EXISTS `mp_langingpage`;

CREATE TABLE `mp_langingpage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `companyname` varchar(255) CHARACTER SET latin1 NOT NULL,
  `companydescription` varchar(255) CHARACTER SET latin1 NOT NULL,
  `companykeywords` varchar(255) CHARACTER SET latin1 NOT NULL,
  `logo` varchar(255) CHARACTER SET latin1 NOT NULL,
  `banner` varchar(255) CHARACTER SET latin1 NOT NULL,
  `slider1` varchar(255) CHARACTER SET latin1 NOT NULL,
  `slider2` varchar(255) CHARACTER SET latin1 NOT NULL,
  `slider3` varchar(255) CHARACTER SET latin1 NOT NULL,
  `slider4` varchar(255) CHARACTER SET latin1 NOT NULL,
  `slider5` varchar(255) CHARACTER SET latin1 NOT NULL,
  `title1` varchar(255) CHARACTER SET latin1 NOT NULL,
  `title2` varchar(255) CHARACTER SET latin1 NOT NULL,
  `title3` varchar(255) CHARACTER SET latin1 NOT NULL,
  `title4` varchar(255) CHARACTER SET latin1 NOT NULL,
  `title5` varchar(255) CHARACTER SET latin1 NOT NULL,
  `title6` varchar(255) CHARACTER SET latin1 NOT NULL,
  `subtitle6` varchar(255) CHARACTER SET latin1 NOT NULL,
  `subtitle6one` varchar(255) CHARACTER SET latin1 NOT NULL,
  `title8` varchar(255) CHARACTER SET latin1 NOT NULL,
  `title9` varchar(255) CHARACTER SET latin1 NOT NULL,
  `title10` varchar(255) CHARACTER SET latin1 NOT NULL,
  `currency` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `language` varchar(50) CHARACTER SET latin1 NOT NULL,
  `primarycolor` varchar(50) CHARACTER SET latin1 NOT NULL,
  `theme_pri_hover` varchar(50) CHARACTER SET latin1 NOT NULL,
  `expirey` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `mp_langingpage` (`id`, `companyname`, `companydescription`, `companykeywords`, `logo`, `banner`, `slider1`, `slider2`, `slider3`, `slider4`, `slider5`, `title1`, `title2`, `title3`, `title4`, `title5`, `title6`, `subtitle6`, `subtitle6one`, `title8`, `title9`, `title10`, `currency`, `language`, `primarycolor`, `theme_pri_hover`, `expirey`) VALUES ('1', 'Elegant Inventory', 'Elegant Inventory', 'Elegant Inventory', 'dcb99169fed78154951d15df01aa5dbe.png', '1171127a5133603e62cc949a87aedda4.jpg', '0ae082ea4c6d3334de39a11840c07c09.jpg', 'a3cbfa5f37d75bd8de678ceded28da43.png', 'd6e2b9bad5eb6560699d95d0235b3e9e.png', '67e008061660613ba4497979db422f91.png', 'ec572d4564b40dec3412b2d305f6a59e.png', 'THE  PHARMACY AND POS SYSTEM', 'OUR SERVICES', 'THINGS YOU SHOULD KNOW ABOUT US', 'MEET OUR PHARMACIST!.', 'SEE WHAT PATIENTS ARE SAYING?.', 'CONTACT US.', 'Contact Info.', 'Having Any Query! Or Book an appointment.', 'Quick Links.', 'Follow us.', 'Copyright ©2018: jannatgroupbd.com\r\ndevelopment by: AloranBD Soft', 'USD', 'EN', '#795548', '#280808', '5');


#
# TABLE STRUCTURE FOR: mp_productslist
#

DROP TABLE IF EXISTS `mp_productslist`;

CREATE TABLE `mp_productslist` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `category_id` int(11) NOT NULL,
  `product_name` varchar(255) CHARACTER SET latin1 NOT NULL,
  `mg` varchar(50) CHARACTER SET latin1 NOT NULL,
  `quantity` int(11) NOT NULL,
  `purchase` decimal(11,2) NOT NULL,
  `retail` decimal(11,2) NOT NULL,
  `expire` date NOT NULL,
  `manufacturing` date NOT NULL,
  `sideeffects` varchar(100) CHARACTER SET latin1 NOT NULL,
  `description` varchar(100) CHARACTER SET latin1 NOT NULL,
  `barcode` varchar(255) CHARACTER SET latin1 NOT NULL,
  `min_stock` int(11) NOT NULL,
  `status` int(1) NOT NULL,
  `total_units` int(11) NOT NULL,
  `packsize` varchar(255) CHARACTER SET latin1 NOT NULL,
  `sku` varchar(255) CHARACTER SET latin1 NOT NULL,
  `location` varchar(255) CHARACTER SET latin1 NOT NULL,
  `tax` decimal(11,2) NOT NULL,
  `type` varchar(255) CHARACTER SET latin1 NOT NULL,
  `image` varchar(255) CHARACTER SET latin1 NOT NULL,
  `brand_id` int(11) NOT NULL,
  `brand_sector_id` int(11) NOT NULL,
  `unit_type` varchar(50) CHARACTER SET latin1 NOT NULL,
  `net_weight` varchar(50) CHARACTER SET latin1 NOT NULL,
  `whole_sale` decimal(11,2) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `category_id` (`category_id`),
  KEY `brand_id` (`brand_id`),
  KEY `brand_sector_id` (`brand_sector_id`),
  KEY `unit_type` (`unit_type`)
) ENGINE=InnoDB AUTO_INCREMENT=1449 DEFAULT CHARSET=utf8;

INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('174', '1', '1 CM Ribbon With Dog Hook China Fitting', '', '295', '5.50', '7.00', '0000-00-00', '0000-00-00', '1', 'Location', '0', '0', '0', '0', '0', '1', '', '6.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('175', '2', '1 CM Ribbon With Dog Hook Sewing Fitting', '', '500', '5.70', '7.50', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '6.50', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('176', '3', '1 CM Ribbon With China Clip', '', '500', '3.50', '5.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '4.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('177', '4', '1.5 CM Ribbon With Small Hook Sewing Fitting', '', '398', '6.50', '10.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '8.50', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('178', '5', '1.5 CM Ribbon With Big Hook Sewing Fitting', '', '500', '8.00', '10.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '9.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('179', '6', '2 CM Ribbon With Small Hook Sewing Fitting', '', '496', '10.00', '12.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '11.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('180', '7', '2 CM Ribbon With Big Hook Sewing Fitting', '', '500', '11.00', '13.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '12.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('181', '8', '2 CM Ribbon With U-Hook Sewing Fitting Refit', '', '500', '16.00', '20.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '18.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('182', '9', 'ID Card Soft Cover (T-014V) N.', '', '299', '5.00', '7.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '6.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('183', '10', 'ID Card Soft Cover (T-065)', '', '519', '6.30', '8.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '7.20', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('184', '11', 'ID Card Soft Cover (T-014) 1no.', '', '399', '10.00', '12.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '11.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('185', '12', '3R Soft ID Card Holder (T-067V)', '', '499', '17.00', '25.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '20.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('186', '13', '3R Blue Border Cover', '', '500', '7.50', '10.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '9.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('187', '14', 'ID Card Blue Border Cover', '', '501', '5.00', '7.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '6.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('188', '15', '3R Polly Cover', '', '500', '2.90', '4.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '3.50', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('189', '16', '4R Zipper Cover (B)', '', '500', '6.00', '8.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '', '0', '0', '1', '1', '1', '', '7.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('190', '17', '4R Zipper Cover (C)', '', '500', '8.50', '10.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '9.50', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('191', '18', '3R Zipper Cover (B)', '', '500', '5.50', '7.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '6.50', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('192', '19', '3R Zipper Cover (C)', '', '300', '7.50', '9.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '8.50', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('193', '20', 'ID Card Zipper Cover (B)', '', '500', '2.90', '4.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '3.50', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('194', '21', 'ID Card Zipper Cover (C)', '', '400', '3.30', '5.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '1', '1', '1', '', '4.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('195', '22', 'PVC ID Card Print with Card Holder T-738V', '', '277', '35.00', '100.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '1000', '0', '0', '', '', '', '0.00', 'Finished Products', '', '1', '6', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('196', '23', 'ID Card Holder Water-proof Anti-fold (T-738V)', '', '300', '18.00', '30.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '1000', '0', '0', '', '', '', '0.00', 'Finished Products', '', '5', '6', '', '', '23.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('197', '24', 'ID Card Plastic Holder  (U-025V)', '', '150', '12.00', '16.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '13.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('198', '25', 'Mango RFID Card', '', '200', '10.75', '12.30', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '11.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('199', '1', 'Chair-RFL', '', '144', '137.00', '205.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2091.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('200', '27', 'Blank PVC Card', '', '750', '4.50', '5.50', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('201', '28', 'Golden Card', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('202', '29', 'Silver Card', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('203', '30', 'Mango RFID Card  with Print', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('204', '31', 'Proximity Card with Print', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('205', '32', 'Blank PVC Card with Print', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('206', '33', 'Golden Card with Print', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('207', '34', 'Silver Card with Print', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('208', '35', 'Mango RFID Card  with UV Print', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('209', '36', 'Proximity Card with UV Print', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('210', '37', 'PVC White Card with UV Print', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('211', '38', 'Golden Card with UV Print', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('212', '39', 'Silver Card with UV Print', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('213', '40', 'ZXP Series 3 Color Ribbon (CMYK)', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('214', '41', 'ZXP Series 3 Color Ribbon (K)', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('215', '42', 'Clining Card', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('216', '43', 'Long Clining Card', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('217', '44', 'Head Clining Woab', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '1', 'Ware House', '0', '0', '0', '0', '', '', '', '0.00', '', '', '0', '0', '', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('218', '1', 'E42PSPW10-2 Pin Socket', '', '144', '87.00', '130.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1326.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('219', '1', 'E43GSRPW10.1-3Gang Switch', '', '143', '114.00', '170.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1734.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('220', '1', 'E44GSRPW10.1-4Gang', '', '144', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2244.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('221', '1', 'E43PUPW13-3 Pin Switch', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1530.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('222', '1', 'E43PUSPW13-3 Pin Switch', '', '144', '134.00', '200.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2040.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('223', '1', 'E4MSUPW13-Multi Socket', '', '144', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2244.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('224', '1', 'E4CBSRPW16.1-Calling Bell', '', '144', '64.00', '95.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '969.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('225', '1', 'E4TSPW3-Telephone Socket', '', '144', '80.00', '120.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1224.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('226', '1', 'E4TVSPW-TV Socket', '', '144', '80.00', '120.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1224.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('227', '1', 'E4DSPW5-Data Socket', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1836.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('228', '1', 'E4FRPW250-Fan Regulator', '', '144', '255.00', '380.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '3876.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('229', '1', 'E4LDPW250-Light Dimmer Switch', '', '144', '241.00', '360.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '3672.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('230', '1', 'E41GSRPW16.2-1Gang-2Way  Switch', '', '144', '60.00', '90.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '918.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('231', '1', 'E42GSRPW16.2-2Gang-2Way  Switch', '', '144', '107.00', '160.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1632.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('232', '1', 'E43GSRPW10.2-3Gang-2Way  Switch', '', '144', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2244.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('233', '1', 'E44GSRPW10.2-4Gang-2Way  Switch', '', '144', '181.00', '270.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2754.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('234', '1', 'E4BPPW-Blank Plate', '', '144', '30.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '459.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('235', '1', 'E42PSSPW10- 2Pin Socket with switch', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1836.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('236', '1', 'E4USB3PSU13-2USB Charger with 3Pin S', '', '144', '422.00', '630.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '6426.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('237', '1', 'E4USBSPW16-2USB Charger with Switch', '', '144', '402.00', '600.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '6120.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('238', '1', 'E4MSSPWP.01 Motion Sensor (PIR)', '', '144', '570.00', '850.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '8670.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('239', '1', 'E4MSSPWM.01 Motion Sensor (MW)', '', '144', '533.00', '795.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '8109.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('240', '1', 'E4CBSR16.1-Calling Bell Switch', '', '144', '74.00', '110.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1122.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('241', '1', 'E41GSR16.1-1Gang Switch', '', '144', '54.00', '80.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '816.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('242', '1', 'E42PS10-2 Pin Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1428.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('243', '1', 'E42GSR16.1-2Gang Switch', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1530.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('244', '1', 'E43GSR10.1-3Gang Switch', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1938.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('245', '1', 'E44GSR10.1-4Gang Switch', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2448.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('246', '1', 'E41GSR16.2-1Gang-2way  Switch', '', '144', '70.00', '105.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1071.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('247', '1', 'E42GSR16.2-2Gang-2way  Switch', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1836.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('248', '1', 'E43GSR10.2-3Gang-2way  Switch', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2448.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('249', '1', 'E44GSR10.2-4Gang-2way  Switch', '', '144', '198.00', '295.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '3009.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('250', '1', 'E43PU13-3Pin Socket', '', '144', '107.00', '160.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1632.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('251', '1', 'E43PUS13-3Pin Socket & Switch', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2142.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('252', '1', 'E4MSU13-Multi Socket', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2346.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('253', '1', 'E4TS3-Telephone Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1428.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('254', '1', 'E4TVS-TV Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1428.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('255', '1', 'E4DS5-Data Socket', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2142.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('256', '1', 'E4FR250-Fan Regulator', '', '144', '168.00', '400.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '4080.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('257', '1', 'E4LD250-Light Dimmer Switch', '', '144', '261.00', '390.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '3978.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('258', '1', 'E4BP-Blank Plate', '', '144', '34.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '510.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('259', '1', 'E42PSS10-2 Pin Socket with switch', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1938.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('260', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', '1', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('261', '1', 'WLED-F3WB22 / R3WB22', '', '144', '111.00', '165.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '123.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('262', '1', 'WLED-F3WE27 / R3WE27', '', '124', '111.00', '165.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '123.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('263', '1', 'WLED-F4WB22 / R4WB22', '', '144', '111.00', '165.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '123.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('264', '1', 'WLED-F4WE27 / R4WE27', '', '144', '117.00', '175.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '131.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('265', '1', 'WLED-F5WB22 / R5WB22', '', '144', '117.00', '175.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '131.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('266', '1', 'WLED-F5WE27/ R5WE27', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '142.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('267', '1', 'WLED-H5WE27', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '142.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('268', '1', 'WLED-H5WB22', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('269', '1', 'WLED-H5WE27A', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('270', '1', 'WLED-H5WB22A', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '195.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('271', '1', 'WLED-F6WB22 / R6WB22', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '195.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('272', '1', 'WLED-F6WE27 / R6WE27', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '157.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('273', '1', 'WLED-F7WB22 / R7WB22', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '157.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('274', '1', 'WLED-F7WE27 / R7WE27', '', '144', '151.00', '225.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '168.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('275', '1', 'WLED-H7WE27', '', '144', '151.00', '225.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '168.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('276', '1', 'WLED-H7WB22', '', '144', '218.00', '325.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '243.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('277', '1', 'WLED-H9WE27', '', '144', '218.00', '325.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '243.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('278', '1', 'WLED-H9WB22', '', '144', '285.00', '425.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '318.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('279', '1', 'WLED-H12WE27', '', '144', '285.00', '425.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '318.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('280', '1', 'WLED-12WB22', '', '144', '328.00', '490.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '367.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('281', '1', 'WLED-ECO-WARM-R9WB22', '', '144', '328.00', '490.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '367.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('282', '1', 'WLED-ECO-WARM-R9WE27', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('283', '1', 'WLED-ECO-WARM-12WB22', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('284', '1', 'WLED-ECO-WARM-12WE27', '', '144', '178.00', '265.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '198.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('285', '1', 'WLED-ECO-R7WB22', '', '144', '178.00', '265.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '198.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('286', '1', 'WLED-ECO-R7WE27', '', '144', '144.00', '215.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '161.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('287', '1', 'WLED-ECO-R9WB22', '', '144', '144.00', '215.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '161.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('288', '1', 'WLED-ECO-R9WE27', '', '144', '151.00', '225.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '168.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('289', '1', 'WLED-ECO-R12WB22', '', '144', '151.00', '225.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '168.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('290', '1', 'WLED-ECO-R12WE27', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '195.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('291', '1', 'WLED-PR7WB22-Premium-7W', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '195.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('292', '1', 'WLED-PR7WE27-Premium-7W', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('293', '1', 'WLED-PR9WB22-Premium-9W', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('294', '1', 'WLED-PR9WE27-Premium-9W', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '180.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('295', '1', 'WLED-PR11WB22-Premium-11W', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '180.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('296', '1', 'WLED-PR11WE27-Premium-11W', '', '144', '188.00', '280.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '210.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('297', '1', 'WLED-PR12WB22-Premium-12W', '', '144', '188.00', '280.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '210.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('298', '1', 'WLED-PR12WE27-Premium-12W', '', '144', '194.00', '290.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '217.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('299', '1', 'WLED-PR13WB22-Premium-13W', '', '144', '194.00', '290.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '217.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('300', '1', 'WLED-PR13WE27-Premium-13W', '', '144', '201.00', '300.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '225.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('301', '1', 'WLED-HP15WB22-Prime Series 15W', '', '144', '201.00', '300.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '225.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('302', '1', 'WLED-HP15WE27 Prime Series 15W', '', '144', '208.00', '310.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '232.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('303', '1', 'WLED-HP20WB22 Prime Series 20W', '', '144', '208.00', '310.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '232.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('304', '1', 'WLED-HP20WE27 Prime Series 20W', '', '144', '261.00', '390.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '292.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('305', '1', 'WLED-HP30WB22 Prime Series 30W', '', '144', '261.00', '390.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '292.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('306', '1', 'WLED-HP30WE27 Prime Series 30W', '', '144', '385.00', '575.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '431.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('307', '1', 'WLED-HP40WB22 Prime Series 40W', '', '144', '385.00', '575.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '431.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('308', '1', 'WLED-HP40WE27 Prime Series 40W', '', '144', '489.00', '730.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '547.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('309', '1', 'WLED-PR-WR11WB22-Premium-11W  Warm', '', '144', '489.00', '730.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '547.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('310', '1', 'WLED-PR-WR11WE27-Premium-11W  Warm', '', '144', '191.00', '285.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '213.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('311', '1', 'WLED-PR-WR12WB22-Premium-12W  Warm', '', '144', '191.00', '285.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '213.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('312', '1', 'WLED-PR-WR12WE27-Premium-12W  Warm', '', '144', '198.00', '295.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '221.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('313', '1', 'WLED-PR-WR13WB22-Premium-13W  Warm', '', '144', '198.00', '295.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '221.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('314', '1', 'WLED-PR-WR13WE27-Premium-13W  Warm', '', '144', '201.00', '300.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '225.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('315', '1', 'WLED-EL7WB22/EL7WE27 Led Emergency Light', '', '144', '181.00', '270.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '202.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('316', '1', 'WLED-EL9WB22 / WLED-EL9WE27', '', '144', '211.00', '315.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '236.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('317', '1', 'WLED-EL12WB22 / WLED-EL12WE27', '', '144', '235.00', '350.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '262.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('318', '1', 'WLED-T8Tube-60FMR-8W', '', '144', '281.00', '420.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '315.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('319', '1', 'WlLED-T8Tube-60FMR-10W', '', '144', '295.00', '440.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '330.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('320', '1', 'WLED-T8Tube-120FMR-16', '', '144', '462.00', '690.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '517.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('321', '1', 'WLED-T8Tube-120FMR-18W', '', '144', '469.00', '700.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '525.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('322', '1', 'WLED-T8Tube-120FMR-20W', '', '144', '486.00', '725.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '543.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('323', '1', 'WLED-T8TUBE-E120FMR-20 W (Eco)', '', '144', '302.00', '450.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '337.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('324', '1', 'WLED-T5Tube-60WMB-8W', '', '144', '275.00', '410.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '307.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('325', '1', 'WLED-T5Tube-60WMB-10W', '', '144', '281.00', '420.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '315.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('326', '1', 'WLED-T5Tube-120WMB-16W', '', '144', '429.00', '640.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '480.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('327', '1', 'WLED-T5Tube-120WMB-18W', '', '144', '436.00', '650.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '487.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('328', '1', 'WLED-T5Tube-120WMB-20W', '', '144', '462.00', '690.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '517.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('329', '1', 'WLED-T8Tube-60WMB-8W', '', '144', '288.00', '430.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '322.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('330', '1', 'WLED-T8Tube-60WMB-10W', '', '144', '295.00', '440.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '330.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('331', '1', 'WLED-T8Tube-120WMB-18W', '', '144', '436.00', '650.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '487.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('332', '1', 'WLED-DTDL2F-18W', '', '144', '402.00', '600.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '450.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('333', '1', 'WLED-ECO-DTDL-36W', '', '144', '603.00', '900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '675.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('334', '1', 'WLED-DTDL-36W', '', '144', '737.00', '1.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '825.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('335', '1', 'WLED-DPL2F2-PR48W', '', '144', '1876.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '2100.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('336', '1', 'WLED-SPL170-12W', '', '144', '402.00', '600.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '450.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('337', '1', 'WLED-SPL200-15W', '', '144', '469.00', '700.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '525.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('338', '1', 'WLED-SPL225-18W', '', '144', '509.00', '760.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '570.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('339', '1', 'WLED-PL1F1-PR12W', '', '144', '931.00', '1.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '1042.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('340', '1', 'WLED-PL1F1-PR24W', '', '144', '1199.00', '1.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '1342.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('341', '1', 'WLED-PL2F2-PR36W', '', '144', '2405.00', '3.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '2692.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('342', '1', 'WLED-PL2F2-PR48W', '', '144', '2606.00', '3.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '2917.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('343', '1', 'WLED-PL-ECO-24W Economy-24W', '', '144', '854.00', '1.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '956.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('344', '1', 'WLED-PL-ECO-36W Economy-36W', '', '144', '1910.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '2137.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('345', '1', 'WLED-PL-ECO-48W Economy-48W', '', '144', '2044.00', '3.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '2287.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('346', '0', 'WLED-DLR170(PR12W/ WR12W)', '', '144', '395.00', '590.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '1.00', 'Finished Products', '', '1', '2', '1', '', '442.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('347', '0', 'WLED-DLS200(PR15W/ WR15W)', '', '144', '462.00', '690.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '2.00', 'Finished Products', '', '1', '2', '1', '', '517.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('348', '0', 'WLED-DLR225(PR18W/ WR18W)', '', '144', '503.00', '750.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '3.00', 'Finished Products', '', '1', '2', '1', '', '562.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('349', '0', 'WLED-DLR300(PR24W/ WR24W)', '', '144', '704.00', '1050.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '4.00', 'Finished Products', '', '1', '2', '1', '', '787.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('350', '0', 'WLED-HB100DC-1S', '', '144', '6633.00', '9.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '5.00', 'Finished Products', '', '1', '2', '1', '', '7425.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('351', '0', 'WLED-CL-20W', '', '144', '972.00', '1.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '6.00', 'Finished Products', '', '1', '2', '1', '', '1087.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('352', '0', 'WLED-T8-STALIS-120-Led Single', '', '144', '583.00', '870.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '7.00', 'Finished Products', '', '1', '2', '1', '', '652.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('353', '0', 'WLED-T8-DTALIS-120-Led Double', '', '144', '670.00', '1.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '8.00', 'Finished Products', '', '1', '2', '1', '', '750.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('354', '0', 'WLED-T8-STALISWC-120(With Carton)', '', '144', '616.00', '920.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '9.00', 'Finished Products', '', '1', '2', '1', '', '690.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('355', '0', 'WLED-T8-DTALISWC-120(With Carton)', '', '144', '717.00', '1070.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '10.00', 'Finished Products', '', '1', '2', '1', '', '802.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('356', '0', 'WLED-FL-PR-30W', '', '144', '1407.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '11.00', 'Finished Products', '', '1', '2', '1', '', '1575.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('357', '0', 'WLED-FL-PR-50W', '', '144', '1809.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '12.00', 'Finished Products', '', '1', '2', '1', '', '2025.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('358', '0', 'WLED-FL-PR-80W', '', '144', '3685.00', '5.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '13.00', 'Finished Products', '', '1', '2', '1', '', '4125.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('359', '0', 'WLED-FL-PR-100W', '', '144', '4355.00', '6.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '14.00', 'Finished Products', '', '1', '2', '1', '', '4875.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('360', '0', 'WLED-FL-PR-150W', '', '144', '5896.00', '8.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '15.00', 'Finished Products', '', '1', '2', '1', '', '6600.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('361', '0', 'WLED-FL-PR-200W', '', '144', '8375.00', '12.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '16.00', 'Finished Products', '', '1', '2', '1', '', '9375.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('362', '0', 'WLED-ML-18W', '', '144', '482.00', '720.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '17.00', 'Finished Products', '', '1', '2', '1', '', '540.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('363', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', '1', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('364', '1', 'WGS-01 Gang Switch', '', '144', '44.00', '65.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '48.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('365', '1', 'WGS-02Gang Switch', '', '144', '87.00', '130.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '97.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('366', '1', 'WGS-03Gang Switch', '', '144', '124.00', '185.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '138.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('367', '1', 'WGS-04Gang Switch', '', '144', '164.00', '245.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '183.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('368', '1', 'WGS-05Gang Switch', '', '144', '194.00', '290.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '217.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('369', '1', 'W3PS-01-3Pin Socket', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '142.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('370', '1', 'WU3P-01-USB', '', '144', '302.00', '450.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '337.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('371', '1', 'WRCS-01-Remote Con.Sw', '', '144', '436.00', '650.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '487.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('372', '1', 'WRCSPW-02-Remote Con.Switch', '', '144', '596.00', '890.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '667.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('373', '1', 'WRCSPW-03-Remote Con.Switch', '', '144', '583.00', '870.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '652.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('374', '1', 'WFR-01 Fan Regulator', '', '144', '235.00', '350.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '262.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('375', '1', 'WCB-01-Calling Bell', '', '144', '60.00', '90.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '67.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('376', '1', 'W1TVS-TV Socket', '', '144', '90.00', '135.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '101.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('377', '1', 'W1TS3-Telephone Socket', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('378', '1', 'W1DS6-Date Socket', '', '144', '131.00', '195.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '146.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('379', '1', 'W1MS-13-Multi Socket', '', '144', '194.00', '290.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '217.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('380', '1', 'W13PRS15-3Pin Round Socket', '', '144', '168.00', '250.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '187.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('381', '1', 'W12PSPW10-2Pin Socket', '', '144', '117.00', '175.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '131.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('382', '1', 'W1BP- Blank Plate', '', '144', '34.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '37.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('383', '1', 'W11GSMB/ W11GS10.1-1Gang Switch', '', '144', '50.00', '75.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '56.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('384', '1', 'W12GSMB/ W12GS10.1-2Gang Switch', '', '144', '104.00', '155.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '116.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('385', '1', 'W13GSMB/ W13GS10.1-3Gang Switch', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '157.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('386', '1', 'W14GSMB/ W14GS10.1-4Gang Switch', '', '144', '181.00', '270.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '202.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('387', '1', 'W15GSMB/ W15GS10.1-5Gang Switch', '', '144', '214.00', '320.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '240.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('388', '1', 'W1CBSMB/ W1CBS10.1-Calling Bell Switch', '', '144', '67.00', '100.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '75.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('389', '1', 'WRCSMB / WRCSC-Remote Cont.Switch', '', '144', '479.00', '715.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '536.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('390', '1', 'WRCS-02-Remote Control Switch', '', '144', '603.00', '900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '675.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('391', '1', 'W1FRMB / W1FR250-Fan Regulator', '', '144', '261.00', '390.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '292.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('392', '1', 'W13PUSMB / W13PUS13-3Pin Socket', '', '144', '134.00', '200.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '150.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('393', '1', 'W13PSUSBMB / W13PSUSB13-3Pin USB Socket', '', '144', '369.00', '550.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '412.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('394', '1', 'W1TVSMB / W1TVSC-TV Socket', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('395', '1', 'W1TSMB3 / W1TSC3-Telephone Socket', '', '144', '111.00', '165.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '123.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('396', '1', 'W1DSMB6 / W1DSC6-Data Socket', '', '141', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '157.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('397', '1', 'W12PS10-2 Pin Socket', '', '144', '124.00', '185.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '138.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('398', '1', 'W1MSMB13 / W1MSC13-Multi Socket', '', '144', '204.00', '305.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '228.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('399', '1', 'W13PRSC15-3Pin Round Socket', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '195.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('400', '1', 'W12USBMSPW-2 USB Charger & Multi Socket', '', '144', '503.00', '750.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '562.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('401', '1', 'W1BP- Blank Plate', '', '144', '34.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '37.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('402', '1', 'S31GSWWR16.1-1Gang Switch-S3', '', '144', '70.00', '105.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '78.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('403', '1', 'V81GSWWR16.1-1 Gang Switch-V8', '', '144', '80.00', '119.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '89.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('404', '1', 'S3CBSWWR16.1-Calling Bell', '', '144', '70.00', '105.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '78.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('405', '1', 'V8CBSWWR16.1-Calling Bell', '', '144', '80.00', '119.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '89.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('406', '1', 'SVSSWWR16.1-Single Switch', '', '144', '40.00', '59.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '44.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('407', '1', 'SVDSWWR16.1-Double Switch', '', '144', '50.00', '75.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '56.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('408', '1', 'SV3PUWW10-3 Pin Socket', '', '144', '57.00', '85.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '63.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('409', '1', 'SVTVSW-TV Socket', '', '144', '46.00', '69.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '51.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('410', '1', 'SVTSWW3-Telephone Socket', '', '144', '60.00', '89.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '66.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('411', '1', 'SVDSWW6-Data Socket', '', '144', '97.00', '145.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '108.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('412', '1', 'SVBMW-Blank', '', '144', '13.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '15.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('413', '1', 'SVLDPW250-(PW)-Light Dimmer', '', '144', '214.00', '320.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '240.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('414', '1', 'S32MCPWW-2M Cover Plate-S3', '', '144', '37.00', '55.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '41.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('415', '1', 'V82MCPWW-2M Cover Plate-V8', '', '144', '46.00', '69.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '51.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('416', '1', 'S33MCPWW-3M Cover Plate-S3', '', '144', '46.00', '69.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '51.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('417', '1', 'V83MCPWW-3M Cover Plate-V8', '', '144', '56.00', '83.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '62.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('418', '1', 'S34MCPWW-4M Cover Plate-S3', '', '144', '53.00', '79.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '59.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('419', '1', 'V84MCPDWW-4M Cover Plate-V8', '', '144', '63.00', '94.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '70.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('420', '1', 'S32MCPMB-2M Cover Plate-S3-10 Pes', '', '144', '46.00', '69.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '51.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('421', '1', 'V82MCPMB-2M Cover Plate-V8-10 Pes', '', '144', '57.00', '85.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '63.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('422', '1', 'S33MCPMB-3M Cover Plate-S3-10 Pes', '', '144', '57.00', '85.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '63.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('423', '1', 'V83MCPMB-3M Cover Plate-V8-10 Pes', '', '144', '64.00', '95.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '71.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('424', '1', 'S34MCPMB-4M Cover Plate-S3-10 Pes', '', '144', '64.00', '95.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '71.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('425', '1', 'V84MCPMB-4M Cover Plate-V8-10 Pes', '', '144', '77.00', '115.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '86.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('426', '1', 'S31GSRMB16.1-1 Gang Switch (S3)-10 Pes', '', '144', '87.00', '130.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '97.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('427', '1', 'V81GSRMB16.1-1 Gang Switch (V8)-10 Pes', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '105.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('428', '1', 'SVSSRMB16.1-Single Switch Module (1 way)', '', '144', '46.00', '69.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '51.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('429', '1', 'SVDSRMB16.1-Double Switch Module (1 way)', '', '143', '60.00', '89.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '66.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('430', '1', 'SV3PUMB10-3 Pin Socket Module (Universal)', '', '144', '66.00', '99.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '74.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('431', '1', 'SVTVSMB-TV-Socket Module-20 Pes', '', '144', '54.00', '80.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '60.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('432', '1', 'SVTSMB3-Telephone Socket Module-20 Pes', '', '144', '66.00', '99.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '74.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('433', '1', 'SVDSMB6-Data Socket Module-20 Pes', '', '144', '111.00', '165.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '123.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('434', '1', 'SVBMMB-Blank  Module- 20 Pes', '', '144', '20.00', '30.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '22.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('435', '1', 'S3CBSRMB16.1-Calling Bell Switch(S3)-10 Pes', '', '144', '84.00', '125.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '93.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('436', '1', 'V8CBSRMB16.1-Calling Bell Switch(V8)-10 Pes', '', '144', '93.00', '139.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '104.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('437', '1', 'SVFRPW-250-Module(PW)Fan Regulator', '', '144', '228.00', '340.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '255.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('438', '1', 'SVFRMB-250-Module(MB)Fan Regulator', '', '144', '241.00', '360.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '270.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('439', '1', 'SVLDMB250-Module-(MB)-Light Dimmer', '', '144', '228.00', '340.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '255.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('440', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', '1', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('441', '1', 'P1CBS6 -Calling Bell', '', '144', '19.00', '29.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '21.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('442', '1', 'P1S6.1 -1 Way Single', '', '144', '18.00', '27.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '20.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('443', '1', 'P1S6.2 -2 Way Single', '', '144', '19.00', '29.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '21.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('444', '1', 'P1S2P6 -2Pin Socket', '', '144', '20.00', '30.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '22.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('445', '1', 'P1F6 -Fuse', '', '144', '22.00', '33.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '24.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('446', '1', 'P1I -Indicator', '', '144', '19.00', '28.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '21.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('447', '1', 'P1FR250 -Fan Regulator', '', '144', '90.00', '135.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '101.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('448', '1', 'P1TVS -TV Socket', '', '144', '37.00', '55.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '41.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('449', '1', 'P1TS3 -Telephone Socket', '', '144', '44.00', '65.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '48.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('450', '1', 'P1DS5 -Data Socket', '', '144', '64.00', '95.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '71.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('451', '1', 'WCLR01-Ceiling Rose', '', '144', '21.00', '31.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '23.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('452', '1', 'W1HPB-1H Piano Box', '', '144', '10.00', '15.50', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '11.63');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('453', '1', 'W2HPB-2H Piano Box', '', '144', '14.00', '21.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '15.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('454', '1', 'W3HPB-3H Piano Box', '', '144', '16.00', '24.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '18.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('455', '1', 'W4HPB-4H Piano Box', '', '144', '20.00', '30.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '22.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('456', '1', 'W6HPB-6H Piano Box', '', '144', '23.00', '35.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '26.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('457', '1', 'W8HPB-8H Piano Box', '', '144', '30.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '33.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('458', '1', 'WHBP-01 Holder Back Plate', '', '144', '13.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '15.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('459', '1', 'WHBP-02 Holder Back Plate', '', '144', '17.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '18.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('460', '1', 'W68HP8 Hole Piano Box', '', '144', '42.00', '62.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '46.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('461', '1', 'W810HP8 Hole Piano Box', '', '144', '52.00', '78.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '58.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('462', '1', 'W1GOB 1 Gang Outer Box', '', '144', '9.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '10.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('463', '1', 'W2GOB 2 Gang Outer Box', '', '144', '17.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '18.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('464', '1', 'W3GOB 3 Gang Outer Box', '', '144', '29.00', '43.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '32.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('465', '1', 'W2MOB 2M Outer Box', '', '144', '16.00', '24.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '18.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('466', '1', 'W3MOB 3M Outer Box', '', '144', '27.00', '41.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '30.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('467', '1', 'W4MOB 4M Outer Box', '', '144', '34.00', '51.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '38.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('468', '1', 'WJB-01(Single Gang)', '', '144', '19.00', '29.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '21.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('469', '1', 'SV2MJBG-2M Junction Box', '', '144', '30.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '33.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('470', '1', 'SV3MJBG-3M Junction Box', '', '144', '40.00', '60.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '45.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('471', '1', 'SV4MJBG-4M Junction Box', '', '144', '47.00', '70.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '52.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('472', '1', 'WTH-01(Thread) / WPBH-01(Pin)', '', '144', '44.00', '65.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '48.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('473', '1', 'WDPSPWM20', '', '144', '284.00', '420.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '315.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('474', '1', 'WDPSPWM45', '', '144', '402.00', '600.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '450.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('475', '1', 'WDPSM20 Metallic Black', '', '144', '285.00', '425.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '318.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('476', '1', 'WDPSM45 Metallic Black', '', '144', '415.00', '620.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '465.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('477', '1', 'WCF-PR01(Piano Type)', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('478', '1', 'WCF-CR 01(Capacitive Fan Regulator )', '', '144', '235.00', '350.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '262.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('479', '1', 'WFR-01', '', '144', '235.00', '350.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '262.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('480', '1', 'WCF5602-1400mm(Re.Control)', '', '144', '3393.00', '3.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2925.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('481', '1', 'WCF5604 WR-Prink', '', '144', '2558.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2205.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('482', '1', 'WCF5604 WR-Indigo', '', '144', '2471.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2130.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('483', '1', 'WCF5604 WR White / Off White', '', '144', '2436.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2100.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('484', '1', 'WCF 5603 WR Indigo', '', '144', '2558.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2205.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('485', '1', 'WCF 5603 WR White / Off White', '', '144', '2523.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2175.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('486', '1', 'WCF 5603 WR Pink', '', '144', '2558.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2205.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('487', '1', 'WCF5601 WR Indigo', '', '144', '2393.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2062.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('488', '1', 'WCF5601 WR White / Off White', '', '144', '2349.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2025.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('489', '1', 'WCF5601 EM', '', '144', '2166.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '1867.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('490', '1', 'W16OA-RMC(Remote Type)Any Color', '', '144', '2514.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2167.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('491', '1', 'W16OA-RGC(Pull Type)Any Color', '', '144', '2079.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '1792.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('492', '1', 'WTF16B-PBC 400 mm Cream White', '', '144', '1871.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '1612.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('493', '1', 'WTF16A-PBC-Sky Blue/Cream White(Push Button)', '', '144', '2219.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '1912.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('494', '1', 'WTF16A-RMC(Remote Type)', '', '144', '2601.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2242.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('495', '1', 'W17OA-MS-17\"', '', '144', '3698.00', '4.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '3187.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('496', '1', 'W17OA-AS-17\"', '', '144', '3915.00', '4.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '3375.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('497', '1', 'WPF 16OA-PBC', '', '144', '2175.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '1875.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('498', '1', 'WPF16OA-PBC (Pink)', '', '144', '2219.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '1912.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('499', '1', 'WPF24A', '', '144', '4950.00', '5.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '4267.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('500', '1', 'POWER MASTER W6DZM95-12V', '', '144', '4238.00', '5.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '4237.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('501', '1', 'POWER MASTER W6DZM75-12V', '', '144', '3825.00', '5.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '3825.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('502', '1', 'WB1275-12V 7.5Ah', '', '144', '795.00', '1.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '795.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('503', '1', 'WB670-6V 7.0Ah', '', '144', '443.00', '590.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '442.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('504', '1', 'WB1245-12V 4.5Ah', '', '144', '585.00', '780.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '585.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('505', '1', 'WB6450-6V4.5Ah', '', '144', '300.00', '400.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '300.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('506', '1', 'WB6450B-6V4.5Ah', '', '144', '300.00', '400.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '300.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('507', '1', 'WB6450C-6V4.5Ah(Clip Type)', '', '144', '300.00', '400.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '300.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('508', '1', 'WDB-8WTP-63A', '', '144', '2613.00', '3.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2925.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('509', '1', 'TP-3W63C', '', '144', '31.00', '47.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '35.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('510', '1', 'SP-1W32C', '', '144', '20.00', '30.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '22.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('511', '1', 'WDB-3TP-9W', '', '144', '251.00', '375.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '281.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('512', '1', 'PRIME-TP-3W63C', '', '144', '40.00', '59.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '44.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('513', '1', 'PRIME- SP-1W32C', '', '144', '25.00', '38.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '28.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('514', '1', 'WUPVC12G', '', '144', '33.00', '49.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '36.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('515', '1', 'WUPVC12W', '', '144', '23.00', '35.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '26.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('516', '1', 'WUPVC34G', '', '144', '44.00', '66.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '49.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('517', '1', 'WUPVC34W', '', '144', '34.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '37.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('518', '1', 'WUPVC15W', '', '144', '16.00', '24.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '18.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('519', '1', 'WUPVC1G', '', '144', '60.00', '90.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '67.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('520', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', '1', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('521', '1', 'WJ4-SB-55SV100(55\"4K)Smart', '', '9', '101.00', '115.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('522', '1', 'WUD55MF56(55\"4K)Smart', '', '10', '96.00', '110.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('523', '1', 'W55E3000AS-Smart', '', '10', '70.00', '79.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('524', '1', 'WSD55FD(55\")', '', '9', '61.00', '69.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('525', '1', 'W49E3000AS(49\")Smart', '', '10', '57.00', '65.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('526', '1', 'WSD49FD(49\")', '', '10', '52.00', '59.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('527', '1', 'WQ4-TS43-KS200-QD(Quantum Dot)', '', '10', '57.00', '65.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('528', '1', 'WE4-MX43-SB100', '', '10', '50.00', '56.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('529', '1', 'W43E3000(43\")', '', '10', '39.00', '44.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('530', '1', 'W43E3000AS(43\")Smart', '', '10', '43.00', '48.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('531', '1', 'WD4-TS43-DL200(43\") Smart', '', '10', '41.00', '46.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('532', '1', 'WD437TS25(43\")', '', '10', '36.00', '41.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('533', '1', 'WSD43FD(43\")', '', '10', '37.00', '42.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('534', '1', 'WD1-TS43-FV100(43\")', '', '10', '36.00', '41.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('535', '1', 'WSD40FD(40\")', '', '10', '29.00', '33.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('536', '1', 'WE4-AF39-BX100(39\") Smart', '', '10', '35.00', '40.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('537', '1', 'WE396AFH(39\")', '', '10', '29.00', '33.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('538', '1', 'WE326DH-S(32\")Smart', '', '10', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('539', '1', 'WE326S9CHS(32\")Smart', '', '10', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('540', '1', 'WE326S9CLS(32\")Smart', '', '10', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('541', '1', 'WE4-DH32-BX200(32\")Smart', '', '10', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('542', '1', 'WE4-DH32-BX200(32\"Smart)Silver', '', '9', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('543', '1', 'WE4-DH32-BY200(32\")Smart', '', '10', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('544', '1', 'WE4-DH32-BY200(32\"Smart)Silver', '', '10', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('545', '1', 'WE326AH(32\")Silver', '', '10', '19.00', '21.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('546', '1', 'WE326AH(32\")', '', '10', '19.00', '21.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('547', '1', 'WE326S9CH(32\")Silver', '', '10', '19.00', '21.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('548', '1', 'WE326S9CH(32\")', '', '10', '19.00', '21.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('549', '1', 'WE326S9CL(32\")Silver', '', '10', '19.00', '21.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('550', '1', 'WE326S9CL(32\")', '', '10', '19.00', '21.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('551', '1', 'WD326JX(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('552', '1', 'WD326JX(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('553', '1', 'WD1-JX32-HN100(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '1.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('554', '1', 'WD1-JX32-HN100(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '2.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('555', '1', 'WD1-JX32-EL100(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '3.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('556', '1', 'WD1-JX32-EL100(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '4.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('557', '1', 'WD1-JX32-SY100(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '5.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('558', '1', 'WD1-JX32-SY100(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '6.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('559', '1', 'WD1-JX32-BC100(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '7.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('560', '1', 'WD1-JX32-BC100(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '8.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('561', '1', 'WD1-JX32-TS100(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '9.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('562', '1', 'WD1-JX32-TS100(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '10.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('563', '1', 'WD1-JX32-TS200(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '11.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('564', '1', 'WD1-JX32-TS200(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '12.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('565', '1', 'WD1-JX32-SY200(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '13.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('566', '1', 'WD1-JX32-SY200(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '14.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('567', '1', 'WD1-JX32-BC200(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '15.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('568', '1', 'WD1-JX32-BC200(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '16.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('569', '1', 'WD1-JX32-BY200(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '17.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('570', '1', 'WD326SR(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '18.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('571', '1', 'WD326SR(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '19.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('572', '1', 'WD326SE15(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '20.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('573', '1', 'WD326SE15(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '21.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('574', '1', 'WD326SH15(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '22.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('575', '1', 'WD326SH15(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '23.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('576', '1', 'WD1-EF32-SV100(32\")', '', '10', '17.00', '19.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '24.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('577', '1', 'WD286CD(28\")Silver', '', '10', '16.00', '19.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '25.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('578', '1', 'WD286CD(28\")', '', '10', '16.00', '18.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '26.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('579', '1', 'WD285AH(28\")Silver', '', '10', '16.00', '18.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '27.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('580', '1', 'WD285AH(28\")', '', '10', '16.00', '18.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '28.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('581', '1', 'WDF-DT24AU200(24\")Full HD', '', '10', '13.00', '15.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '29.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('582', '1', 'WCT24O4K(24\")', '', '10', '13.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '30.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('583', '1', 'WCT24O4K(24\")Silver', '', '10', '13.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '31.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('584', '1', 'WCT24O4X(24\")', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '32.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('585', '1', 'WCT24O4C(24\")', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '33.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('586', '1', 'WCT24O4(24\")Silver', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '34.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('587', '1', 'WCT24O4(24\")', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '35.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('588', '1', 'WCT24DF6(24\")Silver', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '36.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('589', '1', 'WCT24DF6(24\")', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '37.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('590', '1', 'WD1-DT24-RL100(24\")', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '38.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('591', '1', 'WD1-DT24-RL100(24\")-Silver', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '39.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('592', '1', 'WD1-DT24-MC100(24\")-Silver', '', '10', '13.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '40.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('593', '1', 'WD1-DT24-MC100(24\")', '', '10', '13.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '41.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('594', '1', 'WE1-BX20-RT200(20\")Bluetooth Sp', '', '10', '11.00', '12.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '42.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('595', '1', 'WSE20BX6(20\")Silver', '', '10', '11.00', '12.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '43.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('596', '1', 'WSE20BX6(20\")', '', '10', '10.00', '12.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '44.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('597', '1', 'WCT19O4X(19\")', '', '10', '9.00', '11.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '45.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('598', '1', 'WCT19O4C(19\")', '', '10', '9.00', '10.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '46.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('599', '1', 'WCT19O4(19\")Silver', '', '10', '9.00', '10.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '47.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('600', '1', 'WCT19O4(19\")', '', '10', '9.00', '10.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '48.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('601', '1', 'WCT19O4K(19\")', '', '10', '8.00', '9.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '49.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('602', '1', 'WCT19DF6(19\")Silver', '', '10', '7.00', '9.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '50.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('603', '1', 'WCT19DF6(19\")', '', '10', '7.00', '8.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '51.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('604', '1', 'Remote (WRC-02)', '', '10', '264.00', '300.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '52.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('605', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', '1', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('606', '1', 'W-35GWH(1Ton)', '', '12', '32.00', '37.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '37.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('607', '1', 'WSN-12K-0102-RXXXA', '', '12', '31.00', '36.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '36.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('608', '1', 'WSN-12K-0102-ECXXA', '', '12', '31.00', '35.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '35.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('609', '1', 'W-50GW(1.5Ton)', '', '12', '40.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('610', '1', 'WSN-18K-0102-RXXXA', '', '12', '40.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('611', '1', 'WSN-18K-0102-ECXXA', '', '12', '40.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('612', '1', 'WSN-18K-0103-ECXXA', '', '12', '40.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('613', '1', 'WSN-18K-0101-SCWWA', '', '12', '43.00', '49.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '49.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('614', '1', 'WSN-18K-0102-FTXXA', '', '12', '40.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('615', '1', 'WSI-18K-0101-SCWWC-Inverter', '', '12', '55.00', '63.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '63.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('616', '1', 'WSI-18K-0101-SCWWC(Smart)', '', '12', '57.00', '65.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '65.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('617', '1', 'WSN-21K-0101-ECXXB', '', '12', '47.00', '53.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '53.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('618', '1', 'WSN-21K-0101-RXXXB', '', '12', '46.00', '52.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '52.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('619', '1', 'WSN-24K-0101-RXXXB', '', '12', '48.00', '54.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '54.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('620', '1', 'WSN-24K-0101-SCWWB', '', '9', '50.00', '56.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '56.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('621', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', '1', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('622', '1', 'Zoom-1200', '', '8', '14.00', '16.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '16.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('623', '1', 'Smart Power Plus-1500', '', '12', '20.00', '23.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '23.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('624', '1', 'Smart Power Plus-1500E', '', '12', '24.00', '28.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '28.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('625', '1', 'Excel-2200-DM', '', '12', '19.00', '22.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '22.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('626', '1', 'Excel-2200E-DM', '', '12', '24.00', '28.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '1.00', 'Finished Products', '', '1', '1', '1', '', '28.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('627', '1', 'Excel Smart -2200', '', '12', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '2.00', 'Finished Products', '', '1', '1', '1', '', '25.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('628', '1', 'Excel Smart -2200E', '', '12', '26.00', '30.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '3.00', 'Finished Products', '', '1', '1', '1', '', '30.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('629', '1', 'Power Max-3600', '', '12', '32.00', '37.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '4.00', 'Finished Products', '', '1', '1', '1', '', '37.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('630', '1', 'Power Max-3600E', '', '12', '37.00', '43.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '5.00', 'Finished Products', '', '1', '1', '1', '', '43.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('631', '1', 'Sparks-4500', '', '12', '33.00', '38.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '6.00', 'Finished Products', '', '1', '1', '1', '', '38.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('632', '1', 'Sparks-4500E', '', '12', '39.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '7.00', 'Finished Products', '', '1', '1', '1', '', '45.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('633', '1', 'Silent Katrina-5500E-Diesel', '', '12', '79.00', '90.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '8.00', 'Finished Products', '', '1', '1', '1', '', '90.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('634', '1', 'Superia-6000', '', '12', '38.00', '43.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '9.00', 'Finished Products', '', '1', '1', '1', '', '43.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('635', '1', 'Superia-6000E', '', '12', '44.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '10.00', 'Finished Products', '', '1', '1', '1', '', '50.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('636', '1', 'Power Craft-8000E (7.5 KE)', '', '12', '47.00', '54.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '11.00', 'Finished Products', '', '1', '1', '1', '', '54.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('637', '1', 'Power Carft-8000E', '', '12', '51.00', '58.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '12.00', 'Finished Products', '', '1', '1', '1', '', '58.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('638', '1', 'Booster-8000E', '', '12', '52.00', '60.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '', '', 'Ware House', '13.00', 'Finished Products', '', '1', '1', '1', '', '60.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('639', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('640', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('641', '1', 'A81GSRPW16.1-1Gang Switch', '', '9', '57.00', '85.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '867.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('642', '1', 'A82GSRPW16.1-2Gang Switch', '', '0', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1530.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('643', '1', 'A83GSRPW10.1-3Gang Switch', '', '71', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1938.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('644', '1', 'A84GSRPW10.1-4Gang Switch', '', '143', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2448.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('645', '1', 'A83PUPW13-3Pin Socket', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1836.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('646', '1', 'A83PUSPW13-3Pin Socket & Switch', '', '123', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2244.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('647', '1', 'A8MSUPW13-Multi Socket', '', '144', '168.00', '250.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2550.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('648', '1', 'A8TSPW3-Telephone Socket', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1530.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('649', '1', 'A8TVSPW-TV Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1428.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('650', '1', 'A8DSPW5-Date Socket', '', '144', '134.00', '200.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2040.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('651', '1', 'A8FRPW250-Fan Regulator', '', '144', '265.00', '395.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '4029.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('652', '1', 'A8LDPW250-Light Dimmer Switch', '', '144', '255.00', '380.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '3876.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('653', '1', 'A81GSRPW16.2-1Gang-2Way Switch', '', '144', '70.00', '105.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1071.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('654', '1', 'A82GSRPW16.2-2Gang-2Way Switch', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1836.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('655', '1', 'A83GSRPW10.2-3Gang-2Way Switch', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2448.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('656', '1', 'A84GSRPW10.2-4Gang-2Way Switch', '', '144', '188.00', '280.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2856.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('657', '1', 'A8BPPW-Blank Plate', '', '144', '34.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '510.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('658', '1', 'A82PSPW10-2 Pin Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1428.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('659', '1', 'A82PSSPW10-2 Pin Socket with Switch', '', '144', '134.00', '200.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2040.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('660', '1', 'A8USBSPW16-2USB Charger & Switch', '', '144', '402.00', '600.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '6120.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('661', '1', 'A8USB3PSU13-2USB Charger & 3Pin Scoket', '', '143', '422.00', '630.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '6426.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('662', '1', 'A8CBSR16.1-Calling Bell Switch', '', '144', '84.00', '125.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1275.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('663', '1', 'A81GSR16.1-1Gang Switch', '', '144', '64.00', '95.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '969.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('664', '1', 'A82GSR16.1-2Gang Switch', '', '144', '114.00', '170.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1734.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('665', '1', 'A83GSR10.1-3Gang Switch', '', '144', '137.00', '205.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2091.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('666', '1', 'A84GSR10.1-4Gang Switch', '', '143', '171.00', '255.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2601.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('667', '1', 'A81GSR16.2-1Gang-2way', '', '144', '80.00', '120.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1224.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('668', '1', 'A82GSR16.2-2Gang-2way', '', '144', '131.00', '195.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1989.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('669', '1', 'A83GSR10.2-3Gang-2way', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2652.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('670', '1', 'A84GSR10.2-4Gang-2way', '', '144', '208.00', '310.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '3162.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('671', '1', 'A83PU13-3Pin Socket', '', '144', '131.00', '195.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1989.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('672', '1', 'A83PUS13-3Pin Socket & Switch', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2346.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('673', '1', 'A8MSU13-Multi Socket', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2652.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('674', '1', 'A8TS3-Telephone Socket', '', '144', '114.00', '170.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1734.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('675', '1', 'A82PS10-2 Pin Socket', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1530.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('676', '1', 'A8TVS-TV Socket', '', '132', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1530.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('677', '1', 'A8DS5-Data Socket', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2448.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('678', '1', 'A8FR250-Fan Regulator', '', '144', '281.00', '420.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '4284.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('679', '1', 'A8LD250-Light Dimmer Switch', '', '144', '275.00', '410.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '4182.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('680', '1', 'A8BP-Blank Plate', '', '144', '37.00', '55.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '561.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('681', '1', 'A82PSS10-2 Pin Socket with switch', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2142.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('682', '1', 'E41GSRPW16.1-1Gang Switch', '', '144', '47.00', '70.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '714.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('683', '1', 'E42GSRPW16.1-2Gang Switch', '', '144', '87.00', '130.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1326.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('684', '1', 'E42PSPW10-2 Pin Socket', '', '144', '87.00', '130.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1326.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('685', '1', 'E43GSRPW10.1-3Gang Switch', '', '144', '114.00', '170.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1734.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('686', '1', 'E44GSRPW10.1-4Gang', '', '144', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2244.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('687', '1', 'E43PUPW13-3 Pin Switch', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1530.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('688', '1', 'E43PUSPW13-3 Pin Switch', '', '144', '134.00', '200.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2040.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('689', '1', 'E4MSUPW13-Multi Socket', '', '144', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2244.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('690', '1', 'E4CBSRPW16.1-Calling Bell', '', '144', '64.00', '95.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '969.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('691', '1', 'E4TSPW3-Telephone Socket', '', '144', '80.00', '120.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1224.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('692', '1', 'E4TVSPW-TV Socket', '', '144', '80.00', '120.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1224.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('693', '1', 'E4DSPW5-Data Socket', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1836.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('694', '1', 'E4FRPW250-Fan Regulator', '', '144', '255.00', '380.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '3876.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('695', '1', 'E4LDPW250-Light Dimmer Switch', '', '144', '241.00', '360.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '3672.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('696', '1', 'E41GSRPW16.2-1Gang-2Way  Switch', '', '144', '60.00', '90.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '918.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('697', '1', 'E42GSRPW16.2-2Gang-2Way  Switch', '', '144', '107.00', '160.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1632.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('698', '1', 'E43GSRPW10.2-3Gang-2Way  Switch', '', '144', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2244.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('699', '1', 'E44GSRPW10.2-4Gang-2Way  Switch', '', '144', '181.00', '270.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2754.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('700', '1', 'E4BPPW-Blank Plate', '', '144', '30.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '459.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('701', '1', 'E42PSSPW10- 2Pin Socket with switch', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1836.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('702', '1', 'E4USB3PSU13-2USB Charger with 3Pin S', '', '144', '422.00', '630.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '6426.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('703', '1', 'E4USBSPW16-2USB Charger with Switch', '', '144', '402.00', '600.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '6120.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('704', '1', 'E4MSSPWP.01 Motion Sensor (PIR)', '', '144', '570.00', '850.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '8670.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('705', '1', 'E4MSSPWM.01 Motion Sensor (MW)', '', '144', '533.00', '795.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '8109.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('706', '1', 'E4CBSR16.1-Calling Bell Switch', '', '144', '74.00', '110.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1122.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('707', '1', 'E41GSR16.1-1Gang Switch', '', '144', '54.00', '80.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '816.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('708', '1', 'E42PS10-2 Pin Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1428.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('709', '1', 'E42GSR16.1-2Gang Switch', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1530.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('710', '1', 'E43GSR10.1-3Gang Switch', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1938.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('711', '1', 'E44GSR10.1-4Gang Switch', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2448.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('712', '1', 'E41GSR16.2-1Gang-2way  Switch', '', '144', '70.00', '105.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1071.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('713', '1', 'E42GSR16.2-2Gang-2way  Switch', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1836.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('714', '1', 'E43GSR10.2-3Gang-2way  Switch', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2448.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('715', '1', 'E44GSR10.2-4Gang-2way  Switch', '', '144', '198.00', '295.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '3009.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('716', '1', 'E43PU13-3Pin Socket', '', '144', '107.00', '160.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1632.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('717', '1', 'E43PUS13-3Pin Socket & Switch', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2142.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('718', '1', 'E4MSU13-Multi Socket', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2346.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('719', '1', 'E4TS3-Telephone Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1428.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('720', '1', 'E4TVS-TV Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1428.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('721', '1', 'E4DS5-Data Socket', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '2142.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('722', '1', 'E4FR250-Fan Regulator', '', '144', '168.00', '400.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '4080.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('723', '1', 'E4LD250-Light Dimmer Switch', '', '144', '261.00', '390.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '3978.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('724', '1', 'E4BP-Blank Plate', '', '144', '34.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '510.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('725', '1', 'E42PSS10-2 Pin Socket with switch', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '1938.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('726', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('727', '1', 'WLED-F3WB22 / R3WB22', '', '144', '111.00', '165.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '123.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('728', '1', 'WLED-F3WE27 / R3WE27', '', '124', '111.00', '165.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '123.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('729', '1', 'WLED-F4WB22 / R4WB22', '', '144', '111.00', '165.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '123.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('730', '1', 'WLED-F4WE27 / R4WE27', '', '144', '117.00', '175.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '131.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('731', '1', 'WLED-F5WB22 / R5WB22', '', '144', '117.00', '175.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '131.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('732', '1', 'WLED-F5WE27/ R5WE27', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '142.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('733', '1', 'WLED-H5WE27', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '142.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('734', '1', 'WLED-H5WB22', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('735', '1', 'WLED-H5WE27A', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('736', '1', 'WLED-H5WB22A', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '195.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('737', '1', 'WLED-F6WB22 / R6WB22', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '195.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('738', '1', 'WLED-F6WE27 / R6WE27', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '157.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('739', '1', 'WLED-F7WB22 / R7WB22', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '157.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('740', '1', 'WLED-F7WE27 / R7WE27', '', '144', '151.00', '225.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '168.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('741', '1', 'WLED-H7WE27', '', '144', '151.00', '225.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '168.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('742', '1', 'WLED-H7WB22', '', '144', '218.00', '325.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '243.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('743', '1', 'WLED-H9WE27', '', '144', '218.00', '325.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '243.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('744', '1', 'WLED-H9WB22', '', '144', '285.00', '425.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '318.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('745', '1', 'WLED-H12WE27', '', '144', '285.00', '425.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '318.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('746', '1', 'WLED-12WB22', '', '144', '328.00', '490.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '367.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('747', '1', 'WLED-ECO-WARM-R9WB22', '', '144', '328.00', '490.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '367.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('748', '1', 'WLED-ECO-WARM-R9WE27', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('749', '1', 'WLED-ECO-WARM-12WB22', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('750', '1', 'WLED-ECO-WARM-12WE27', '', '144', '178.00', '265.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '198.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('751', '1', 'WLED-ECO-R7WB22', '', '144', '178.00', '265.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '198.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('752', '1', 'WLED-ECO-R7WE27', '', '144', '144.00', '215.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '161.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('753', '1', 'WLED-ECO-R9WB22', '', '144', '144.00', '215.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '161.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('754', '1', 'WLED-ECO-R9WE27', '', '144', '151.00', '225.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '168.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('755', '1', 'WLED-ECO-R12WB22', '', '144', '151.00', '225.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '168.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('756', '1', 'WLED-ECO-R12WE27', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '195.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('757', '1', 'WLED-PR7WB22-Premium-7W', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '195.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('758', '1', 'WLED-PR7WE27-Premium-7W', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('759', '1', 'WLED-PR9WB22-Premium-9W', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('760', '1', 'WLED-PR9WE27-Premium-9W', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '180.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('761', '1', 'WLED-PR11WB22-Premium-11W', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '180.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('762', '1', 'WLED-PR11WE27-Premium-11W', '', '144', '188.00', '280.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '210.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('763', '1', 'WLED-PR12WB22-Premium-12W', '', '144', '188.00', '280.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '210.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('764', '1', 'WLED-PR12WE27-Premium-12W', '', '144', '194.00', '290.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '217.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('765', '1', 'WLED-PR13WB22-Premium-13W', '', '144', '194.00', '290.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '217.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('766', '1', 'WLED-PR13WE27-Premium-13W', '', '144', '201.00', '300.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '225.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('767', '1', 'WLED-HP15WB22-Prime Series 15W', '', '144', '201.00', '300.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '225.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('768', '1', 'WLED-HP15WE27 Prime Series 15W', '', '144', '208.00', '310.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '232.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('769', '1', 'WLED-HP20WB22 Prime Series 20W', '', '144', '208.00', '310.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '232.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('770', '1', 'WLED-HP20WE27 Prime Series 20W', '', '144', '261.00', '390.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '292.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('771', '1', 'WLED-HP30WB22 Prime Series 30W', '', '144', '261.00', '390.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '292.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('772', '1', 'WLED-HP30WE27 Prime Series 30W', '', '144', '385.00', '575.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '431.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('773', '1', 'WLED-HP40WB22 Prime Series 40W', '', '144', '385.00', '575.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '431.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('774', '1', 'WLED-HP40WE27 Prime Series 40W', '', '144', '489.00', '730.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '547.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('775', '1', 'WLED-PR-WR11WB22-Premium-11W  Warm', '', '144', '489.00', '730.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '547.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('776', '1', 'WLED-PR-WR11WE27-Premium-11W  Warm', '', '144', '191.00', '285.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '213.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('777', '1', 'WLED-PR-WR12WB22-Premium-12W  Warm', '', '144', '191.00', '285.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '213.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('778', '1', 'WLED-PR-WR12WE27-Premium-12W  Warm', '', '144', '198.00', '295.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '221.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('779', '1', 'WLED-PR-WR13WB22-Premium-13W  Warm', '', '144', '198.00', '295.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '221.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('780', '1', 'WLED-PR-WR13WE27-Premium-13W  Warm', '', '144', '201.00', '300.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '225.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('781', '1', 'WLED-EL7WB22/EL7WE27 Led Emergency Light', '', '144', '181.00', '270.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '202.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('782', '1', 'WLED-EL9WB22 / WLED-EL9WE27', '', '144', '211.00', '315.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '236.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('783', '1', 'WLED-EL12WB22 / WLED-EL12WE27', '', '144', '235.00', '350.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '262.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('784', '1', 'WLED-T8Tube-60FMR-8W', '', '144', '281.00', '420.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '315.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('785', '1', 'WlLED-T8Tube-60FMR-10W', '', '144', '295.00', '440.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '330.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('786', '1', 'WLED-T8Tube-120FMR-16', '', '144', '462.00', '690.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '517.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('787', '1', 'WLED-T8Tube-120FMR-18W', '', '144', '469.00', '700.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '525.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('788', '1', 'WLED-T8Tube-120FMR-20W', '', '144', '486.00', '725.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '543.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('789', '1', 'WLED-T8TUBE-E120FMR-20 W (Eco)', '', '144', '302.00', '450.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '337.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('790', '1', 'WLED-T5Tube-60WMB-8W', '', '144', '275.00', '410.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '307.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('791', '1', 'WLED-T5Tube-60WMB-10W', '', '144', '281.00', '420.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '315.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('792', '1', 'WLED-T5Tube-120WMB-16W', '', '144', '429.00', '640.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '480.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('793', '1', 'WLED-T5Tube-120WMB-18W', '', '144', '436.00', '650.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '487.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('794', '1', 'WLED-T5Tube-120WMB-20W', '', '144', '462.00', '690.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '517.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('795', '1', 'WLED-T8Tube-60WMB-8W', '', '144', '288.00', '430.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '322.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('796', '1', 'WLED-T8Tube-60WMB-10W', '', '144', '295.00', '440.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '330.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('797', '1', 'WLED-T8Tube-120WMB-18W', '', '144', '436.00', '650.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '487.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('798', '1', 'WLED-DTDL2F-18W', '', '144', '402.00', '600.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '450.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('799', '1', 'WLED-ECO-DTDL-36W', '', '144', '603.00', '900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '675.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('800', '1', 'WLED-DTDL-36W', '', '144', '737.00', '1.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '825.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('801', '1', 'WLED-DPL2F2-PR48W', '', '144', '1876.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '2100.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('802', '1', 'WLED-SPL170-12W', '', '144', '402.00', '600.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '450.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('803', '1', 'WLED-SPL200-15W', '', '144', '469.00', '700.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '525.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('804', '1', 'WLED-SPL225-18W', '', '144', '509.00', '760.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '570.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('805', '1', 'WLED-PL1F1-PR12W', '', '144', '931.00', '1.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '1042.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('806', '1', 'WLED-PL1F1-PR24W', '', '144', '1199.00', '1.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '1342.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('807', '1', 'WLED-PL2F2-PR36W', '', '144', '2405.00', '3.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '2692.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('808', '1', 'WLED-PL2F2-PR48W', '', '144', '2606.00', '3.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '2917.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('809', '1', 'WLED-PL-ECO-24W Economy-24W', '', '144', '854.00', '1.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '956.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('810', '1', 'WLED-PL-ECO-36W Economy-36W', '', '144', '1910.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '2137.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('811', '1', 'WLED-PL-ECO-48W Economy-48W', '', '144', '2044.00', '3.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '2', '1', '', '2287.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('812', '0', 'WLED-DLR170(PR12W/ WR12W)', '', '144', '395.00', '590.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '1.00', 'Finished Products', '', '1', '2', '1', '', '442.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('813', '0', 'WLED-DLS200(PR15W/ WR15W)', '', '144', '462.00', '690.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '2.00', 'Finished Products', '', '1', '2', '1', '', '517.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('814', '0', 'WLED-DLR225(PR18W/ WR18W)', '', '144', '503.00', '750.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '3.00', 'Finished Products', '', '1', '2', '1', '', '562.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('815', '0', 'WLED-DLR300(PR24W/ WR24W)', '', '144', '704.00', '1050.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '4.00', 'Finished Products', '', '1', '2', '1', '', '787.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('816', '0', 'WLED-HB100DC-1S', '', '144', '6633.00', '9.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '5.00', 'Finished Products', '', '1', '2', '1', '', '7425.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('817', '0', 'WLED-CL-20W', '', '144', '972.00', '1.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '6.00', 'Finished Products', '', '1', '2', '1', '', '1087.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('818', '0', 'WLED-T8-STALIS-120-Led Single', '', '144', '583.00', '870.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '7.00', 'Finished Products', '', '1', '2', '1', '', '652.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('819', '0', 'WLED-T8-DTALIS-120-Led Double', '', '144', '670.00', '1.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '8.00', 'Finished Products', '', '1', '2', '1', '', '750.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('820', '0', 'WLED-T8-STALISWC-120(With Carton)', '', '144', '616.00', '920.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '9.00', 'Finished Products', '', '1', '2', '1', '', '690.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('821', '0', 'WLED-T8-DTALISWC-120(With Carton)', '', '144', '717.00', '1070.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '10.00', 'Finished Products', '', '1', '2', '1', '', '802.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('822', '0', 'WLED-FL-PR-30W', '', '144', '1407.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '11.00', 'Finished Products', '', '1', '2', '1', '', '1575.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('823', '0', 'WLED-FL-PR-50W', '', '144', '1809.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '12.00', 'Finished Products', '', '1', '2', '1', '', '2025.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('824', '0', 'WLED-FL-PR-80W', '', '144', '3685.00', '5.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '13.00', 'Finished Products', '', '1', '2', '1', '', '4125.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('825', '0', 'WLED-FL-PR-100W', '', '144', '4355.00', '6.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '14.00', 'Finished Products', '', '1', '2', '1', '', '4875.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('826', '0', 'WLED-FL-PR-150W', '', '144', '5896.00', '8.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '15.00', 'Finished Products', '', '1', '2', '1', '', '6600.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('827', '0', 'WLED-FL-PR-200W', '', '144', '8375.00', '12.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '16.00', 'Finished Products', '', '1', '2', '1', '', '9375.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('828', '0', 'WLED-ML-18W', '', '144', '482.00', '720.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '17.00', 'Finished Products', '', '1', '2', '1', '', '540.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('829', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('830', '1', 'WGS-01 Gang Switch', '', '144', '44.00', '65.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '48.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('831', '1', 'WGS-02Gang Switch', '', '144', '87.00', '130.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '97.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('832', '1', 'WGS-03Gang Switch', '', '144', '124.00', '185.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '138.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('833', '1', 'WGS-04Gang Switch', '', '144', '164.00', '245.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '183.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('834', '1', 'WGS-05Gang Switch', '', '144', '194.00', '290.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '217.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('835', '1', 'W3PS-01-3Pin Socket', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '142.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('836', '1', 'WU3P-01-USB', '', '144', '302.00', '450.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '337.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('837', '1', 'WRCS-01-Remote Con.Sw', '', '144', '436.00', '650.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '487.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('838', '1', 'WRCSPW-02-Remote Con.Switch', '', '144', '596.00', '890.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '667.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('839', '1', 'WRCSPW-03-Remote Con.Switch', '', '144', '583.00', '870.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '652.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('840', '1', 'WFR-01 Fan Regulator', '', '144', '235.00', '350.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '262.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('841', '1', 'WCB-01-Calling Bell', '', '144', '60.00', '90.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '67.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('842', '1', 'W1TVS-TV Socket', '', '144', '90.00', '135.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '101.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('843', '1', 'W1TS3-Telephone Socket', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('844', '1', 'W1DS6-Date Socket', '', '144', '131.00', '195.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '146.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('845', '1', 'W1MS-13-Multi Socket', '', '144', '194.00', '290.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '217.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('846', '1', 'W13PRS15-3Pin Round Socket', '', '144', '168.00', '250.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '187.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('847', '1', 'W12PSPW10-2Pin Socket', '', '144', '117.00', '175.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '131.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('848', '1', 'W1BP- Blank Plate', '', '144', '34.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '37.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('849', '1', 'W11GSMB/ W11GS10.1-1Gang Switch', '', '144', '50.00', '75.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '56.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('850', '1', 'W12GSMB/ W12GS10.1-2Gang Switch', '', '144', '104.00', '155.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '116.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('851', '1', 'W13GSMB/ W13GS10.1-3Gang Switch', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '157.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('852', '1', 'W14GSMB/ W14GS10.1-4Gang Switch', '', '144', '181.00', '270.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '202.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('853', '1', 'W15GSMB/ W15GS10.1-5Gang Switch', '', '144', '214.00', '320.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '240.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('854', '1', 'W1CBSMB/ W1CBS10.1-Calling Bell Switch', '', '144', '67.00', '100.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '75.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('855', '1', 'WRCSMB / WRCSC-Remote Cont.Switch', '', '144', '479.00', '715.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '536.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('856', '1', 'WRCS-02-Remote Control Switch', '', '144', '603.00', '900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '675.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('857', '1', 'W1FRMB / W1FR250-Fan Regulator', '', '144', '261.00', '390.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '292.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('858', '1', 'W13PUSMB / W13PUS13-3Pin Socket', '', '144', '134.00', '200.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '150.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('859', '1', 'W13PSUSBMB / W13PSUSB13-3Pin USB Socket', '', '144', '369.00', '550.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '412.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('860', '1', 'W1TVSMB / W1TVSC-TV Socket', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('861', '1', 'W1TSMB3 / W1TSC3-Telephone Socket', '', '144', '111.00', '165.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '123.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('862', '1', 'W1DSMB6 / W1DSC6-Data Socket', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '157.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('863', '1', 'W12PS10-2 Pin Socket', '', '144', '124.00', '185.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '138.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('864', '1', 'W1MSMB13 / W1MSC13-Multi Socket', '', '144', '204.00', '305.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '228.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('865', '1', 'W13PRSC15-3Pin Round Socket', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '195.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('866', '1', 'W12USBMSPW-2 USB Charger & Multi Socket', '', '144', '503.00', '750.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '562.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('867', '1', 'W1BP- Blank Plate', '', '144', '34.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '37.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('868', '1', 'S31GSWWR16.1-1Gang Switch-S3', '', '144', '70.00', '105.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '78.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('869', '1', 'V81GSWWR16.1-1 Gang Switch-V8', '', '144', '80.00', '119.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '89.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('870', '1', 'S3CBSWWR16.1-Calling Bell', '', '144', '70.00', '105.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '78.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('871', '1', 'V8CBSWWR16.1-Calling Bell', '', '144', '80.00', '119.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '89.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('872', '1', 'SVSSWWR16.1-Single Switch', '', '144', '40.00', '59.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '44.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('873', '1', 'SVDSWWR16.1-Double Switch', '', '144', '50.00', '75.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '56.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('874', '1', 'SV3PUWW10-3 Pin Socket', '', '144', '57.00', '85.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '63.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('875', '1', 'SVTVSW-TV Socket', '', '144', '46.00', '69.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '51.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('876', '1', 'SVTSWW3-Telephone Socket', '', '144', '60.00', '89.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '66.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('877', '1', 'SVDSWW6-Data Socket', '', '144', '97.00', '145.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '108.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('878', '1', 'SVBMW-Blank', '', '144', '13.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '15.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('879', '1', 'SVLDPW250-(PW)-Light Dimmer', '', '144', '214.00', '320.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '240.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('880', '1', 'S32MCPWW-2M Cover Plate-S3', '', '144', '37.00', '55.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '41.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('881', '1', 'V82MCPWW-2M Cover Plate-V8', '', '144', '46.00', '69.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '51.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('882', '1', 'S33MCPWW-3M Cover Plate-S3', '', '144', '46.00', '69.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '51.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('883', '1', 'V83MCPWW-3M Cover Plate-V8', '', '144', '56.00', '83.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '62.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('884', '1', 'S34MCPWW-4M Cover Plate-S3', '', '144', '53.00', '79.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '59.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('885', '1', 'V84MCPDWW-4M Cover Plate-V8', '', '144', '63.00', '94.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '70.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('886', '1', 'S32MCPMB-2M Cover Plate-S3-10 Pes', '', '144', '46.00', '69.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '51.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('887', '1', 'V82MCPMB-2M Cover Plate-V8-10 Pes', '', '144', '57.00', '85.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '63.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('888', '1', 'S33MCPMB-3M Cover Plate-S3-10 Pes', '', '144', '57.00', '85.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '63.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('889', '1', 'V83MCPMB-3M Cover Plate-V8-10 Pes', '', '144', '64.00', '95.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '71.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('890', '1', 'S34MCPMB-4M Cover Plate-S3-10 Pes', '', '144', '64.00', '95.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '71.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('891', '1', 'V84MCPMB-4M Cover Plate-V8-10 Pes', '', '144', '77.00', '115.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '86.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('892', '1', 'S31GSRMB16.1-1 Gang Switch (S3)-10 Pes', '', '144', '87.00', '130.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '97.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('893', '1', 'V81GSRMB16.1-1 Gang Switch (V8)-10 Pes', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '105.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('894', '1', 'SVSSRMB16.1-Single Switch Module (1 way)', '', '144', '46.00', '69.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '51.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('895', '1', 'SVDSRMB16.1-Double Switch Module (1 way)', '', '144', '60.00', '89.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '66.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('896', '1', 'SV3PUMB10-3 Pin Socket Module (Universal)', '', '144', '66.00', '99.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '74.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('897', '1', 'SVTVSMB-TV-Socket Module-20 Pes', '', '144', '54.00', '80.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '60.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('898', '1', 'SVTSMB3-Telephone Socket Module-20 Pes', '', '144', '66.00', '99.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '74.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('899', '1', 'SVDSMB6-Data Socket Module-20 Pes', '', '144', '111.00', '165.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '123.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('900', '1', 'SVBMMB-Blank  Module- 20 Pes', '', '144', '20.00', '30.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '22.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('901', '1', 'S3CBSRMB16.1-Calling Bell Switch(S3)-10 Pes', '', '144', '84.00', '125.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '93.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('902', '1', 'V8CBSRMB16.1-Calling Bell Switch(V8)-10 Pes', '', '144', '93.00', '139.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '104.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('903', '1', 'SVFRPW-250-Module(PW)Fan Regulator', '', '144', '228.00', '340.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '255.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('904', '1', 'SVFRMB-250-Module(MB)Fan Regulator', '', '144', '241.00', '360.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '270.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('905', '1', 'SVLDMB250-Module-(MB)-Light Dimmer', '', '144', '228.00', '340.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '1', '3', '1', '', '255.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('906', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('907', '1', 'P1CBS6 -Calling Bell', '', '144', '19.00', '29.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '21.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('908', '1', 'P1S6.1 -1 Way Single', '', '144', '18.00', '27.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '20.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('909', '1', 'P1S6.2 -2 Way Single', '', '144', '19.00', '29.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '21.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('910', '1', 'P1S2P6 -2Pin Socket', '', '144', '20.00', '30.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '22.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('911', '1', 'P1F6 -Fuse', '', '144', '22.00', '33.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '24.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('912', '1', 'P1I -Indicator', '', '144', '19.00', '28.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '21.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('913', '1', 'P1FR250 -Fan Regulator', '', '144', '90.00', '135.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '101.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('914', '1', 'P1TVS -TV Socket', '', '144', '37.00', '55.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '41.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('915', '1', 'P1TS3 -Telephone Socket', '', '144', '44.00', '65.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '48.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('916', '1', 'P1DS5 -Data Socket', '', '144', '64.00', '95.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '71.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('917', '1', 'WCLR01-Ceiling Rose', '', '144', '21.00', '31.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '23.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('918', '1', 'W1HPB-1H Piano Box', '', '144', '10.00', '15.50', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '11.63');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('919', '1', 'W2HPB-2H Piano Box', '', '144', '14.00', '21.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '15.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('920', '1', 'W3HPB-3H Piano Box', '', '144', '16.00', '24.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '18.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('921', '1', 'W4HPB-4H Piano Box', '', '144', '20.00', '30.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '22.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('922', '1', 'W6HPB-6H Piano Box', '', '144', '23.00', '35.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '26.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('923', '1', 'W8HPB-8H Piano Box', '', '144', '30.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '33.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('924', '1', 'WHBP-01 Holder Back Plate', '', '144', '13.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '15.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('925', '1', 'WHBP-02 Holder Back Plate', '', '144', '17.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '18.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('926', '1', 'W68HP8 Hole Piano Box', '', '144', '42.00', '62.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '46.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('927', '1', 'W810HP8 Hole Piano Box', '', '144', '52.00', '78.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '58.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('928', '1', 'W1GOB 1 Gang Outer Box', '', '144', '9.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '10.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('929', '1', 'W2GOB 2 Gang Outer Box', '', '144', '17.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '18.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('930', '1', 'W3GOB 3 Gang Outer Box', '', '144', '29.00', '43.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '32.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('931', '1', 'W2MOB 2M Outer Box', '', '144', '16.00', '24.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '18.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('932', '1', 'W3MOB 3M Outer Box', '', '144', '27.00', '41.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '30.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('933', '1', 'W4MOB 4M Outer Box', '', '144', '34.00', '51.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '38.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('934', '1', 'WJB-01(Single Gang)', '', '144', '19.00', '29.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '21.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('935', '1', 'SV2MJBG-2M Junction Box', '', '144', '30.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '33.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('936', '1', 'SV3MJBG-3M Junction Box', '', '144', '40.00', '60.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '45.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('937', '1', 'SV4MJBG-4M Junction Box', '', '144', '47.00', '70.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '52.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('938', '1', 'WTH-01(Thread) / WPBH-01(Pin)', '', '144', '44.00', '65.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '48.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('939', '1', 'WDPSPWM20', '', '144', '284.00', '420.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '315.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('940', '1', 'WDPSPWM45', '', '144', '402.00', '600.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '450.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('941', '1', 'WDPSM20 Metallic Black', '', '144', '285.00', '425.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '318.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('942', '1', 'WDPSM45 Metallic Black', '', '144', '415.00', '620.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '465.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('943', '1', 'WCF-PR01(Piano Type)', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('944', '1', 'WCF-CR 01(Capacitive Fan Regulator )', '', '144', '235.00', '350.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '262.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('945', '1', 'WFR-01', '', '144', '235.00', '350.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '262.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('946', '1', 'WCF5602-1400mm(Re.Control)', '', '144', '3393.00', '3.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2925.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('947', '1', 'WCF5604 WR-Prink', '', '144', '2558.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2205.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('948', '1', 'WCF5604 WR-Indigo', '', '144', '2471.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2130.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('949', '1', 'WCF5604 WR White / Off White', '', '144', '2436.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2100.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('950', '1', 'WCF 5603 WR Indigo', '', '144', '2558.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2205.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('951', '1', 'WCF 5603 WR White / Off White', '', '144', '2523.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2175.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('952', '1', 'WCF 5603 WR Pink', '', '144', '2558.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2205.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('953', '1', 'WCF5601 WR Indigo', '', '144', '2393.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2062.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('954', '1', 'WCF5601 WR White / Off White', '', '144', '2349.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2025.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('955', '1', 'WCF5601 EM', '', '144', '2166.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '1867.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('956', '1', 'W16OA-RMC(Remote Type)Any Color', '', '144', '2514.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2167.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('957', '1', 'W16OA-RGC(Pull Type)Any Color', '', '144', '2079.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '1792.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('958', '1', 'WTF16B-PBC 400 mm Cream White', '', '144', '1871.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '1612.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('959', '1', 'WTF16A-PBC-Sky Blue/Cream White(Push Button)', '', '144', '2219.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '1912.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('960', '1', 'WTF16A-RMC(Remote Type)', '', '144', '2601.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2242.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('961', '1', 'W17OA-MS-17\"', '', '144', '3698.00', '4.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '3187.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('962', '1', 'W17OA-AS-17\"', '', '144', '3915.00', '4.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '3375.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('963', '1', 'WPF 16OA-PBC', '', '144', '2175.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '1875.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('964', '1', 'WPF16OA-PBC (Pink)', '', '144', '2219.00', '2.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '1912.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('965', '1', 'WPF24A', '', '144', '4950.00', '5.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '4267.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('966', '1', 'POWER MASTER W6DZM95-12V', '', '144', '4238.00', '5.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '4237.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('967', '1', 'POWER MASTER W6DZM75-12V', '', '144', '3825.00', '5.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '3825.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('968', '1', 'WB1275-12V 7.5Ah', '', '144', '795.00', '1.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '795.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('969', '1', 'WB670-6V 7.0Ah', '', '144', '443.00', '590.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '442.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('970', '1', 'WB1245-12V 4.5Ah', '', '144', '585.00', '780.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '585.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('971', '1', 'WB6450-6V4.5Ah', '', '144', '300.00', '400.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '300.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('972', '1', 'WB6450B-6V4.5Ah', '', '144', '300.00', '400.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '300.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('973', '1', 'WB6450C-6V4.5Ah(Clip Type)', '', '144', '300.00', '400.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '300.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('974', '1', 'WDB-8WTP-63A', '', '144', '2613.00', '3.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '2925.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('975', '1', 'TP-3W63C', '', '144', '31.00', '47.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '35.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('976', '1', 'SP-1W32C', '', '144', '20.00', '30.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '22.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('977', '1', 'WDB-3TP-9W', '', '144', '251.00', '375.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '281.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('978', '1', 'PRIME-TP-3W63C', '', '144', '40.00', '59.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '44.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('979', '1', 'PRIME- SP-1W32C', '', '144', '25.00', '38.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '28.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('980', '1', 'WUPVC12G', '', '144', '33.00', '49.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '36.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('981', '1', 'WUPVC12W', '', '144', '23.00', '35.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '26.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('982', '1', 'WUPVC34G', '', '144', '44.00', '66.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '49.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('983', '1', 'WUPVC34W', '', '144', '34.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '37.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('984', '1', 'WUPVC15W', '', '144', '16.00', '24.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '18.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('985', '1', 'WUPVC1G', '', '144', '60.00', '90.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '12', '', 'Ware House', '0.00', 'Finished Products', '', '4', '1', '1', '', '67.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('986', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('987', '1', 'WJ4-SB-55SV100(55\"4K)Smart', '', '10', '101.00', '115.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('988', '1', 'WUD55MF56(55\"4K)Smart', '', '10', '96.00', '110.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('989', '1', 'W55E3000AS-Smart', '', '10', '70.00', '79.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('990', '1', 'WSD55FD(55\")', '', '10', '61.00', '69.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('991', '1', 'W49E3000AS(49\")Smart', '', '10', '57.00', '65.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('992', '1', 'WSD49FD(49\")', '', '10', '52.00', '59.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('993', '1', 'WQ4-TS43-KS200-QD(Quantum Dot)', '', '10', '57.00', '65.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('994', '1', 'WE4-MX43-SB100', '', '10', '50.00', '56.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('995', '1', 'W43E3000(43\")', '', '10', '39.00', '44.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('996', '1', 'W43E3000AS(43\")Smart', '', '10', '43.00', '48.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('997', '1', 'WD4-TS43-DL200(43\") Smart', '', '10', '41.00', '46.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('998', '1', 'WD437TS25(43\")', '', '10', '36.00', '41.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('999', '1', 'WSD43FD(43\")', '', '10', '37.00', '42.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1000', '1', 'WD1-TS43-FV100(43\")', '', '10', '36.00', '41.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1001', '1', 'WSD40FD(40\")', '', '10', '29.00', '33.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1002', '1', 'WE4-AF39-BX100(39\") Smart', '', '10', '35.00', '40.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1003', '1', 'WE396AFH(39\")', '', '10', '29.00', '33.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1004', '1', 'WE326DH-S(32\")Smart', '', '10', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1005', '1', 'WE326S9CHS(32\")Smart', '', '10', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1006', '1', 'WE326S9CLS(32\")Smart', '', '10', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1007', '1', 'WE4-DH32-BX200(32\")Smart', '', '10', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1008', '1', 'WE4-DH32-BX200(32\"Smart)Silver', '', '9', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1009', '1', 'WE4-DH32-BY200(32\")Smart', '', '10', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1010', '1', 'WE4-DH32-BY200(32\"Smart)Silver', '', '10', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1011', '1', 'WE326AH(32\")Silver', '', '10', '19.00', '21.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1012', '1', 'WE326AH(32\")', '', '10', '19.00', '21.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1013', '1', 'WE326S9CH(32\")Silver', '', '10', '19.00', '21.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1014', '1', 'WE326S9CH(32\")', '', '10', '19.00', '21.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1015', '1', 'WE326S9CL(32\")Silver', '', '10', '19.00', '21.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1016', '1', 'WE326S9CL(32\")', '', '10', '19.00', '21.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1017', '1', 'WD326JX(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1018', '1', 'WD326JX(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1019', '1', 'WD1-JX32-HN100(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '1.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1020', '1', 'WD1-JX32-HN100(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '2.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1021', '1', 'WD1-JX32-EL100(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '3.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1022', '1', 'WD1-JX32-EL100(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '4.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1023', '1', 'WD1-JX32-SY100(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '5.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1024', '1', 'WD1-JX32-SY100(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '6.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1025', '1', 'WD1-JX32-BC100(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '7.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1026', '1', 'WD1-JX32-BC100(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '8.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1027', '1', 'WD1-JX32-TS100(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '9.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1028', '1', 'WD1-JX32-TS100(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '10.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1029', '1', 'WD1-JX32-TS200(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '11.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1030', '1', 'WD1-JX32-TS200(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '12.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1031', '1', 'WD1-JX32-SY200(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '13.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1032', '1', 'WD1-JX32-SY200(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '14.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1033', '1', 'WD1-JX32-BC200(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '15.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1034', '1', 'WD1-JX32-BC200(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '16.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1035', '1', 'WD1-JX32-BY200(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '17.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1036', '1', 'WD326SR(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '18.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1037', '1', 'WD326SR(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '19.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1038', '1', 'WD326SE15(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '20.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1039', '1', 'WD326SE15(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '21.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1040', '1', 'WD326SH15(32\")Silver', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '22.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1041', '1', 'WD326SH15(32\")', '', '10', '18.00', '20.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '23.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1042', '1', 'WD1-EF32-SV100(32\")', '', '10', '17.00', '19.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '24.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1043', '1', 'WD286CD(28\")Silver', '', '10', '16.00', '19.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '25.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1044', '1', 'WD286CD(28\")', '', '10', '16.00', '18.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '26.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1045', '1', 'WD285AH(28\")Silver', '', '10', '16.00', '18.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '27.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1046', '1', 'WD285AH(28\")', '', '10', '16.00', '18.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '28.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1047', '1', 'WDF-DT24AU200(24\")Full HD', '', '10', '13.00', '15.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '29.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1048', '1', 'WCT24O4K(24\")', '', '10', '13.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '30.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1049', '1', 'WCT24O4K(24\")Silver', '', '10', '13.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '31.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1050', '1', 'WCT24O4X(24\")', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '32.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1051', '1', 'WCT24O4C(24\")', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '33.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1052', '1', 'WCT24O4(24\")Silver', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '34.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1053', '1', 'WCT24O4(24\")', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '35.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1054', '1', 'WCT24DF6(24\")Silver', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '36.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1055', '1', 'WCT24DF6(24\")', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '37.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1056', '1', 'WD1-DT24-RL100(24\")', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '38.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1057', '1', 'WD1-DT24-RL100(24\")-Silver', '', '10', '12.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '39.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1058', '1', 'WD1-DT24-MC100(24\")-Silver', '', '10', '13.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '40.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1059', '1', 'WD1-DT24-MC100(24\")', '', '10', '13.00', '14.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '41.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1060', '1', 'WE1-BX20-RT200(20\")Bluetooth Sp', '', '10', '11.00', '12.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '42.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1061', '1', 'WSE20BX6(20\")Silver', '', '10', '11.00', '12.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '43.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1062', '1', 'WSE20BX6(20\")', '', '10', '10.00', '12.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '44.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1063', '1', 'WCT19O4X(19\")', '', '10', '9.00', '11.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '45.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1064', '1', 'WCT19O4C(19\")', '', '10', '9.00', '10.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '46.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1065', '1', 'WCT19O4(19\")Silver', '', '10', '9.00', '10.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '47.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1066', '1', 'WCT19O4(19\")', '', '10', '9.00', '10.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '48.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1067', '1', 'WCT19O4K(19\")', '', '10', '8.00', '9.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '49.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1068', '1', 'WCT19DF6(19\")Silver', '', '10', '7.00', '9.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '50.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1069', '1', 'WCT19DF6(19\")', '', '10', '7.00', '8.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '51.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1070', '1', 'Remote (WRC-02)', '', '10', '264.00', '300.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '52.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1071', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1072', '1', 'W-35GWH(1Ton)', '', '12', '32.00', '37.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '37.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1073', '1', 'WSN-12K-0102-RXXXA', '', '12', '31.00', '36.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '36.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1074', '1', 'WSN-12K-0102-ECXXA', '', '12', '31.00', '35.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '35.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1075', '1', 'W-50GW(1.5Ton)', '', '12', '40.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1076', '1', 'WSN-18K-0102-RXXXA', '', '12', '40.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1077', '1', 'WSN-18K-0102-ECXXA', '', '12', '40.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1078', '1', 'WSN-18K-0103-ECXXA', '', '12', '40.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1079', '1', 'WSN-18K-0101-SCWWA', '', '12', '43.00', '49.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '49.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1080', '1', 'WSN-18K-0102-FTXXA', '', '12', '40.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1081', '1', 'WSI-18K-0101-SCWWC-Inverter', '', '12', '55.00', '63.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '63.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1082', '1', 'WSI-18K-0101-SCWWC(Smart)', '', '12', '57.00', '65.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '65.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1083', '1', 'WSN-21K-0101-ECXXB', '', '12', '47.00', '53.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '53.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1084', '1', 'WSN-21K-0101-RXXXB', '', '12', '46.00', '52.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '52.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1085', '1', 'WSN-24K-0101-RXXXB', '', '12', '48.00', '54.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '54.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1086', '1', 'WSN-24K-0101-SCWWB', '', '9', '50.00', '56.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '56.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1087', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1088', '1', 'Zoom-1200', '', '7', '14.00', '16.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '16.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1089', '1', 'Smart Power Plus-1500', '', '12', '20.00', '23.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '23.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1090', '1', 'Smart Power Plus-1500E', '', '12', '24.00', '28.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '28.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1091', '1', 'Excel-2200-DM', '', '10', '19.00', '22.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '22.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1092', '1', 'Excel-2200E-DM', '', '12', '24.00', '28.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '1.00', 'Finished Products', '', '1', '1', '1', '', '28.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1093', '1', 'Excel Smart -2200', '', '12', '22.00', '25.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '2.00', 'Finished Products', '', '1', '1', '1', '', '25.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1094', '1', 'Excel Smart -2200E', '', '12', '26.00', '30.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '3.00', 'Finished Products', '', '1', '1', '1', '', '30.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1095', '1', 'Power Max-3600', '', '12', '32.00', '37.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '4.00', 'Finished Products', '', '1', '1', '1', '', '37.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1096', '1', 'Power Max-3600E', '', '12', '37.00', '43.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '5.00', 'Finished Products', '', '1', '1', '1', '', '43.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1097', '1', 'Sparks-4500', '', '12', '33.00', '38.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '6.00', 'Finished Products', '', '1', '1', '1', '', '38.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1098', '1', 'Sparks-4500E', '', '12', '39.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '7.00', 'Finished Products', '', '1', '1', '1', '', '45.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1099', '1', 'Silent Katrina-5500E-Diesel', '', '12', '79.00', '90.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '8.00', 'Finished Products', '', '1', '1', '1', '', '90.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1100', '1', 'Superia-6000', '', '12', '38.00', '43.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '9.00', 'Finished Products', '', '1', '1', '1', '', '43.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1101', '1', 'Superia-6000E', '', '12', '44.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '10.00', 'Finished Products', '', '1', '1', '1', '', '50.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1102', '1', 'Power Craft-8000E (7.5 KE)', '', '9', '47.00', '54.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '11.00', 'Finished Products', '', '1', '1', '1', '', '54.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1103', '1', 'Power Carft-8000E', '', '10', '51.00', '5800.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '12.00', 'Finished Products', '', '1', '1', '1', '', '58.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1104', '1', 'Booster-8000E', '', '12', '52.00', '60.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '13.00', 'Finished Products', '', '1', '1', '1', '', '60.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1105', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1106', '1', 'WJ4-SB-55SV100(55\"4K)Smart', '', '10', '101.00', '115.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1107', '1', 'WUD55MF56(55\"4K)Smart', '', '10', '96.00', '110.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1108', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1109', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1110', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1111', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1112', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1113', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1114', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1115', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1116', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1117', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1118', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1119', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1120', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1121', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1122', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1123', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1124', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1125', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1126', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1127', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1128', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1129', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1130', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1131', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1132', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1133', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1134', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1135', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1136', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1137', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1138', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1139', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1140', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1141', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1142', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1143', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1144', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1145', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1146', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1147', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1148', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1149', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1150', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1151', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1152', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1153', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1154', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1155', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1156', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1157', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1158', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1159', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1160', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1161', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1162', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1163', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1164', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1165', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1166', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1167', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1168', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1169', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1170', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1171', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1172', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1173', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1174', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1175', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1176', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1177', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1178', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1179', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1180', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1181', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1182', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1183', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1184', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1185', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1186', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1187', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1188', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1189', '1', 'Milk Pack', '250', '211', '25.00', '30.00', '0000-00-00', '0000-00-00', 'No Effects', 'Description:', '4587233658', '10', '0', '0', '24', 'XL-240', '', '0.00', 'Finished Products', '', '1', '1', '1', '800', '720.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1190', '1', 'Pepsi', '250', '211', '374222.00', '402366.00', '0000-00-00', '0000-00-00', 'No Effects', 'Description:', '4587233658', '10', '0', '0', '24', 'XL-240', '', '0.00', 'Finished Products', '', '1', '1', '1', '800', '720366.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1191', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1192', '1', 'Milk Pack', '250', '211', '25.00', '30.00', '0000-00-00', '0000-00-00', 'No Effects', 'Description:', '4587233658', '10', '0', '0', '24', 'XL-240', '', '0.00', 'Finished Products', '', '1', '1', '1', '800', '720.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1193', '1', 'Pepsi', '250', '211', '374222.00', '402366.00', '0000-00-00', '0000-00-00', 'No Effects', 'Description:', '4587233658', '10', '0', '0', '24', 'XL-240', '', '0.00', 'Finished Products', '', '1', '1', '1', '800', '720366.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1194', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1195', '1', 'WJ4-SB-55SV100(55\"4K)Smart', 'Pice', '10', '101.00', '115.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '115.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1196', '1', 'WUD55MF56(55\"4K)Smart', 'Pice', '10', '96.00', '110.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '110.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1197', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1198', '1', 'WJ4-SB-55SV100(55\"4K)Smart', 'Pice', '10', '101.00', '115.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '115.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1199', '1', 'WUD55MF56(55\"4K)Smart', 'Pice', '10', '96.00', '110.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '110.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1200', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1201', '1', 'WJ4-SB-55SV100(55\"4K)Smart', 'Pice', '10', '101.00', '115.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '4587233658', '10', '0', '0', '1', 'XL-240', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '800', '115.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1202', '1', 'WUD55MF56(55\"4K)Smart', 'Pice', '10', '96.00', '110.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '4587233658', '10', '0', '0', '1', 'XL-240', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '800', '110.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1203', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1204', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1205', '0', '', '', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', '', '', '', '10', '0', '0', '', '', '', '0.00', '', '', '0', '0', '1', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1206', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1207', '1', 'WJ4-SB-55SV100(55\"4K)Smart', 'Pice', '10', '101200.00', '115000.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '115000.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1208', '1', 'WUD55MF56(55\"4K)Smart', 'Pice', '9', '96800.00', '11000.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '11000.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1209', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1210', '1', 'W-35GWH(1Ton)', '', '12', '32648.00', '37100.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '37100.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1211', '1', 'WSN-12K-0102-RXXXA', '', '12', '31680.00', '36000.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '36000.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1212', '1', 'WSN-12K-0102-ECXXA', '', '12', '31592.00', '35900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '35900.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1213', '1', 'W-50GW(1.5Ton)', '', '12', '40392.00', '45900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45900.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1214', '1', 'WSN-18K-0102-RXXXA', '', '12', '40392.00', '45900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45900.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1215', '1', 'WSN-18K-0102-ECXXA', '', '12', '40392.00', '45900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45900.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1216', '1', 'WSN-18K-0103-ECXXA', '', '12', '40392.00', '45900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45900.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1217', '1', 'WSN-18K-0101-SCWWA', '', '12', '43912.00', '49900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '49900.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1218', '1', 'WSN-18K-0102-FTXXA', '', '1', '40392.00', '45900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '45900.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1219', '1', 'WSI-18K-0101-SCWWC-Inverter', '', '12', '55880.00', '63500.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '63500.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1220', '1', 'WSI-18K-0101-SCWWC(Smart)', '', '12', '57200.00', '65000.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '65000.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1221', '1', 'WSN-21K-0101-ECXXB', '', '12', '47432.00', '53900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '53900.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1222', '1', 'WSN-21K-0101-RXXXB', '', '12', '46552.00', '52900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '52900.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1223', '1', 'WSN-24K-0101-RXXXB', '', '12', '48048.00', '54600.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '54600.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1224', '1', 'WSN-24K-0101-SCWWB', '', '12', '50072.00', '56900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '56900.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1225', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1226', '1', 'WJ4-SB-55SV100(55\"4K)Smart', 'Pice', '2', '101200.00', '115000.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '123456', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '115000.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1227', '1', 'WUD55MF56(55\"4K)Smart', 'Pice', '8', '96800.00', '11000.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '1234567', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '11000.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1228', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1229', '1', 'A8CBSRPW16.1-Calling Bell Switch', '', '144', '74.00', '110.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '82.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1230', '1', 'A81GSRPW16.1-1Gang Switch', '', '144', '57.00', '85.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '63.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1231', '1', 'A82GSRPW16.1-2Gang Switch', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1232', '1', 'A83GSRPW10.1-3Gang Switch', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '142.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1233', '1', 'A84GSRPW10.1-4Gang Switch', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '180.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1234', '1', 'A83PUPW13-3Pin Socket', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '135.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1235', '1', 'A83PUSPW13-3Pin Socket & Switch', '', '144', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '165.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1236', '1', 'A8MSUPW13-Multi Socket', '', '144', '168.00', '250.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '187.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1237', '1', 'A8TSPW3-Telephone Socket', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1238', '1', 'A8TVSPW-TV Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '105.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1239', '1', 'A8DSPW5-Date Socket', '', '144', '134.00', '200.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '150.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1240', '1', 'A8FRPW250-Fan Regulator', '', '144', '265.00', '395.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '296.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1241', '1', 'A8LDPW250-Light Dimmer Switch', '', '144', '255.00', '380.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '285.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1242', '1', 'A81GSRPW16.2-1Gang-2Way Switch', '', '144', '70.00', '105.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '78.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1243', '1', 'A82GSRPW16.2-2Gang-2Way Switch', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '135.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1244', '1', 'A83GSRPW10.2-3Gang-2Way Switch', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '180.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1245', '1', 'A84GSRPW10.2-4Gang-2Way Switch', '', '144', '188.00', '280.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '210.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1246', '1', 'A8BPPW-Blank Plate', '', '144', '34.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '37.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1247', '1', 'A82PSPW10-2 Pin Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '105.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1248', '1', 'A82PSSPW10-2 Pin Socket with Switch', '', '144', '134.00', '200.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '150.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1249', '1', 'A8USBSPW16-2USB Charger & Switch', '', '144', '402.00', '600.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '450.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1250', '1', 'A8USB3PSU13-2USB Charger & 3Pin Scoket', '', '144', '422.00', '630.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '472.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1251', '1', 'A8CBSR16.1-Calling Bell Switch', '', '144', '84.00', '125.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '93.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1252', '1', 'A81GSR16.1-1Gang Switch', '', '144', '64.00', '95.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '71.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1253', '1', 'A82GSR16.1-2Gang Switch', '', '144', '114.00', '170.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '127.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1254', '1', 'A83GSR10.1-3Gang Switch', '', '144', '137.00', '205.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '153.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1255', '1', 'A84GSR10.1-4Gang Switch', '', '144', '171.00', '255.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '191.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1256', '1', 'A81GSR16.2-1Gang-2way', '', '144', '80.00', '120.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '90.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1257', '1', 'A82GSR16.2-2Gang-2way', '', '144', '131.00', '195.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '146.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1258', '1', 'A83GSR10.2-3Gang-2way', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '195.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1259', '1', 'A84GSR10.2-4Gang-2way', '', '144', '208.00', '310.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '232.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1260', '1', 'A83PU13-3Pin Socket', '', '144', '131.00', '195.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '146.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1261', '1', 'A83PUS13-3Pin Socket & Switch', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1262', '1', 'A8MSU13-Multi Socket', '', '143', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '195.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1263', '1', 'A8TS3-Telephone Socket', '', '144', '114.00', '170.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '127.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1264', '1', 'A82PS10-2 Pin Socket', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1265', '1', 'A8TVS-TV Socket', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1266', '1', 'A8DS5-Data Socket', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '180.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1267', '1', 'A8FR250-Fan Regulator', '', '144', '281.00', '420.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '315.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1268', '1', 'A8LD250-Light Dimmer Switch', '', '144', '275.00', '410.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '307.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1269', '1', 'A8BP-Blank Plate', '', '144', '37.00', '55.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '41.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1270', '1', 'A82PSS10-2 Pin Socket with switch', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '157.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1271', '1', 'E41GSRPW16.1-1Gang Switch', '', '144', '47.00', '70.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '52.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1272', '1', 'E42GSRPW16.1-2Gang Switch', '', '144', '87.00', '130.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '97.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1273', '1', 'E42PSPW10-2 Pin Socket', '', '144', '87.00', '130.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '97.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1274', '1', 'E43GSRPW10.1-3Gang Switch', '', '144', '114.00', '170.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '127.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1275', '1', 'E44GSRPW10.1-4Gang', '', '144', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '165.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1276', '1', 'E43PUPW13-3 Pin Switch', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1277', '1', 'E43PUSPW13-3 Pin Switch', '', '144', '134.00', '200.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '150.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1278', '1', 'E4MSUPW13-Multi Socket', '', '144', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '165.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1279', '1', 'E4CBSRPW16.1-Calling Bell', '', '144', '64.00', '95.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '71.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1280', '1', 'E4TSPW3-Telephone Socket', '', '144', '80.00', '120.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '90.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1281', '1', 'E4TVSPW-TV Socket', '', '144', '80.00', '120.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '90.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1282', '1', 'E4DSPW5-Data Socket', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '135.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1283', '1', 'E4FRPW250-Fan Regulator', '', '144', '255.00', '380.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '285.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1284', '1', 'E4LDPW250-Light Dimmer Switch', '', '144', '241.00', '360.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '270.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1285', '1', 'E41GSRPW16.2-1Gang-2Way  Switch', '', '143', '60.00', '90.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '67.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1286', '1', 'E42GSRPW16.2-2Gang-2Way  Switch', '', '144', '107.00', '160.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '120.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1287', '1', 'E43GSRPW10.2-3Gang-2Way  Switch', '', '144', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '165.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1288', '1', 'E44GSRPW10.2-4Gang-2Way  Switch', '', '144', '181.00', '270.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '202.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1289', '1', 'E4BPPW-Blank Plate', '', '144', '30.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '33.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1290', '1', 'E42PSSPW10- 2Pin Socket with switch', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '135.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1291', '1', 'E4USB3PSU13-2USB Charger with 3Pin S', '', '144', '422.00', '630.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '472.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1292', '1', 'E4USBSPW16-2USB Charger with Switch', '', '144', '402.00', '600.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '450.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1293', '1', 'E4MSSPWP.01 Motion Sensor (PIR)', '', '144', '570.00', '850.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '637.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1294', '1', 'E4MSSPWM.01 Motion Sensor (MW)', '', '144', '533.00', '795.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '596.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1295', '1', 'E4CBSR16.1-Calling Bell Switch', '', '144', '74.00', '110.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '82.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1296', '1', 'E41GSR16.1-1Gang Switch', '', '144', '54.00', '80.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '60.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1297', '1', 'E42PS10-2 Pin Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '105.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1298', '1', 'E42GSR16.1-2Gang Switch', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1299', '1', 'E43GSR10.1-3Gang Switch', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '142.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1300', '1', 'E44GSR10.1-4Gang Switch', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '180.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1301', '1', 'E41GSR16.2-1Gang-2way  Switch', '', '144', '70.00', '105.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '78.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1302', '1', 'E42GSR16.2-2Gang-2way  Switch', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '135.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1303', '1', 'E43GSR10.2-3Gang-2way  Switch', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '180.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1304', '1', 'E44GSR10.2-4Gang-2way  Switch', '', '144', '198.00', '295.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '221.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1305', '1', 'E43PU13-3Pin Socket', '', '144', '107.00', '160.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '120.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1306', '1', 'E43PUS13-3Pin Socket & Switch', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '157.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1307', '1', 'E4MSU13-Multi Socket', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1308', '1', 'E4TS3-Telephone Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '105.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1309', '1', 'E4TVS-TV Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '105.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1310', '1', 'E4DS5-Data Socket', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '157.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1311', '1', 'E4FR250-Fan Regulator', '', '144', '168.00', '400.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '300.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1312', '1', 'E4LD250-Light Dimmer Switch', '', '144', '261.00', '390.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '292.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1313', '1', 'E4BP-Blank Plate', '', '144', '34.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '37.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1314', '0', 'E42PSS10-2 Pin Socket with switch (PW)', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '1.00', 'Finished Products', '', '1', '1', '1', '', '38.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1315', '0', 'Product name', 'Mg', '0', '0.00', '0.00', '0000-00-00', '0000-00-00', 'Side Effects', 'Description', 'Barcode', '10', '0', '0', 'Packsize', 'Sku', 'Location', '0.00', 'Product Type', '', '0', '0', '1', 'Net Weight', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1316', '1', 'A8CBSRPW16.1-Calling Bell Switch', '', '144', '74.00', '110.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '82.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1317', '1', 'A81GSRPW16.1-1Gang Switch', '', '144', '57.00', '85.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '63.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1318', '1', 'A82GSRPW16.1-2Gang Switch', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1319', '1', 'A83GSRPW10.1-3Gang Switch', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '142.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1320', '1', 'A84GSRPW10.1-4Gang Switch', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '180.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1321', '1', 'A83PUPW13-3Pin Socket', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '135.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1322', '1', 'A83PUSPW13-3Pin Socket & Switch', '', '144', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '165.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1323', '1', 'A8MSUPW13-Multi Socket', '', '144', '168.00', '250.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '187.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1324', '1', 'A8TSPW3-Telephone Socket', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1325', '1', 'A8TVSPW-TV Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '105.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1326', '1', 'A8DSPW5-Date Socket', '', '144', '134.00', '200.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '150.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1327', '1', 'A8FRPW250-Fan Regulator', '', '144', '265.00', '395.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '296.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1328', '1', 'A8LDPW250-Light Dimmer Switch', '', '144', '255.00', '380.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '285.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1329', '1', 'A81GSRPW16.2-1Gang-2Way Switch', '', '144', '70.00', '105.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '78.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1330', '1', 'A82GSRPW16.2-2Gang-2Way Switch', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '135.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1331', '1', 'A83GSRPW10.2-3Gang-2Way Switch', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '180.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1332', '1', 'A84GSRPW10.2-4Gang-2Way Switch', '', '144', '188.00', '280.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '210.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1333', '1', 'A8BPPW-Blank Plate', '', '144', '34.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '37.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1334', '1', 'A82PSPW10-2 Pin Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '105.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1335', '1', 'A82PSSPW10-2 Pin Socket with Switch', '', '144', '134.00', '200.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '150.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1336', '1', 'A8USBSPW16-2USB Charger & Switch', '', '144', '402.00', '600.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '450.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1337', '1', 'A8USB3PSU13-2USB Charger & 3Pin Scoket', '', '144', '422.00', '630.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '472.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1338', '1', 'A8CBSR16.1-Calling Bell Switch', '', '144', '84.00', '125.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '93.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1339', '1', 'A81GSR16.1-1Gang Switch', '', '144', '64.00', '95.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '71.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1340', '1', 'A82GSR16.1-2Gang Switch', '', '144', '114.00', '170.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '127.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1341', '1', 'A83GSR10.1-3Gang Switch', '', '144', '137.00', '205.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '153.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1342', '1', 'A84GSR10.1-4Gang Switch', '', '144', '171.00', '255.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '191.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1343', '1', 'A81GSR16.2-1Gang-2way', '', '144', '80.00', '120.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '90.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1344', '1', 'A82GSR16.2-2Gang-2way', '', '144', '131.00', '195.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '146.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1345', '1', 'A83GSR10.2-3Gang-2way', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '195.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1346', '1', 'A84GSR10.2-4Gang-2way', '', '144', '208.00', '310.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '232.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1347', '1', 'A83PU13-3Pin Socket', '', '144', '131.00', '195.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '146.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1348', '1', 'A83PUS13-3Pin Socket & Switch', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1349', '1', 'A8MSU13-Multi Socket', '', '144', '174.00', '260.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '195.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1350', '1', 'A8TS3-Telephone Socket', '', '144', '114.00', '170.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '127.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1351', '1', 'A82PS10-2 Pin Socket', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1352', '1', 'A8TVS-TV Socket', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1353', '1', 'A8DS5-Data Socket', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '180.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1354', '1', 'A8FR250-Fan Regulator', '', '144', '281.00', '420.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '315.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1355', '1', 'A8LD250-Light Dimmer Switch', '', '144', '275.00', '410.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '307.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1356', '1', 'A8BP-Blank Plate', '', '144', '37.00', '55.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '41.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1357', '1', 'A82PSS10-2 Pin Socket with switch', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '157.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1358', '1', 'E41GSRPW16.1-1Gang Switch', '', '144', '47.00', '70.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '52.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1359', '1', 'E42GSRPW16.1-2Gang Switch', '', '144', '87.00', '130.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '97.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1360', '1', 'E42PSPW10-2 Pin Socket', '', '144', '87.00', '130.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '97.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1361', '1', 'E43GSRPW10.1-3Gang Switch', '', '144', '114.00', '170.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '127.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1362', '1', 'E44GSRPW10.1-4Gang', '', '144', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '165.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1363', '1', 'E43PUPW13-3 Pin Switch', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1364', '1', 'E43PUSPW13-3 Pin Switch', '', '144', '134.00', '200.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '150.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1365', '1', 'E4MSUPW13-Multi Socket', '', '144', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '165.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1366', '1', 'E4CBSRPW16.1-Calling Bell', '', '144', '64.00', '95.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '71.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1367', '1', 'E4TSPW3-Telephone Socket', '', '144', '80.00', '120.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '90.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1368', '1', 'E4TVSPW-TV Socket', '', '144', '80.00', '120.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '90.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1369', '1', 'E4DSPW5-Data Socket', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '135.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1370', '1', 'E4FRPW250-Fan Regulator', '', '144', '255.00', '380.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '285.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1371', '1', 'E4LDPW250-Light Dimmer Switch', '', '144', '241.00', '360.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '270.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1372', '1', 'E41GSRPW16.2-1Gang-2Way  Switch', '', '144', '60.00', '90.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '67.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1373', '1', 'E42GSRPW16.2-2Gang-2Way  Switch', '', '144', '107.00', '160.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '120.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1374', '1', 'E43GSRPW10.2-3Gang-2Way  Switch', '', '144', '147.00', '220.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '165.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1375', '1', 'E44GSRPW10.2-4Gang-2Way  Switch', '', '144', '181.00', '270.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '202.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1376', '1', 'E4BPPW-Blank Plate', '', '144', '30.00', '45.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '33.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1377', '1', 'E42PSSPW10- 2Pin Socket with switch', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '135.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1378', '1', 'E4USB3PSU13-2USB Charger with 3Pin S', '', '144', '422.00', '630.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '472.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1379', '1', 'E4USBSPW16-2USB Charger with Switch', '', '144', '402.00', '600.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '450.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1380', '1', 'E4MSSPWP.01 Motion Sensor (PIR)', '', '144', '570.00', '850.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '637.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1381', '1', 'E4MSSPWM.01 Motion Sensor (MW)', '', '144', '533.00', '795.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '596.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1382', '1', 'E4CBSR16.1-Calling Bell Switch', '', '144', '74.00', '110.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '82.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1383', '1', 'E41GSR16.1-1Gang Switch', '', '144', '54.00', '80.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '60.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1384', '1', 'E42PS10-2 Pin Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '105.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1385', '1', 'E42GSR16.1-2Gang Switch', '', '144', '101.00', '150.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '112.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1386', '1', 'E43GSR10.1-3Gang Switch', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '142.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1387', '1', 'E44GSR10.1-4Gang Switch', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '180.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1388', '1', 'E41GSR16.2-1Gang-2way  Switch', '', '144', '70.00', '105.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '78.75');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1389', '1', 'E42GSR16.2-2Gang-2way  Switch', '', '144', '121.00', '180.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '135.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1390', '1', 'E43GSR10.2-3Gang-2way  Switch', '', '144', '161.00', '240.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '180.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1391', '1', 'E44GSR10.2-4Gang-2way  Switch', '', '144', '198.00', '295.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '221.25');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1392', '1', 'E43PU13-3Pin Socket', '', '144', '107.00', '160.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '120.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1393', '1', 'E43PUS13-3Pin Socket & Switch', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '157.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1394', '1', 'E4MSU13-Multi Socket', '', '144', '154.00', '230.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '172.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1395', '1', 'E4TS3-Telephone Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '105.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1396', '1', 'E4TVS-TV Socket', '', '144', '94.00', '140.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '105.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1397', '1', 'E4DS5-Data Socket', '', '144', '141.00', '210.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '157.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1398', '1', 'E4FR250-Fan Regulator', '', '144', '168.00', '400.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '300.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1399', '1', 'E4LD250-Light Dimmer Switch', '', '144', '261.00', '390.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '292.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1400', '1', 'E4BP-Blank Plate', '', '144', '34.00', '50.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '37.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1401', '1', 'E42PSS10-2 Pin Socket with switch (PW)', '', '144', '127.00', '190.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '1.00', 'Finished Products', '', '1', '1', '1', '', '38.50');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1402', '2', 'Rod', '20', '379', '70.00', '80.00', '0000-00-00', '0000-00-00', '', '                                tfygv', '54652', '10', '0', '20', '20', '1478', 'zx', '0.00', 'Raw Product', 'default.jpg', '4', '5', '1', '400', '1600.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1403', '1', 'MSD55FD (55\")', '', '0', '58017.00', '69900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '62910.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1404', '1', 'MSD49FD (49\")', '', '0', '49717.00', '59900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '53910.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1405', '1', 'MD4-TS43-DL200-(43\'\')-SMART', '', '0', '38927.00', '46900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '42210.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1406', '1', 'MD1-TS43-FV100  (43\")', '', '0', '34777.00', '41900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '37710.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1407', '1', 'MD437TS25  (43\")', '', '0', '34777.00', '41900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '37710.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1408', '1', 'M42T3500 (42\'\')', '', '0', '55195.00', '66500.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '59850.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1409', '1', 'MC42D12 (42\'\') - (Non Warranty)', '', '0', '22369.00', '26950.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '24255.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1410', '1', 'M40E3000-FHD (40\")', '', '0', '33117.00', '39900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '35910.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1411', '1', 'M40E36D (40\")', '', '0', '33117.00', '39900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '35910.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1412', '1', 'ME396AFH (39\")', '', '4', '28212.00', '33990.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '30591.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1413', '1', 'ME326DH-S-(32\")-SMART', '', '0', '21572.00', '25990.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '23391.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1414', '1', 'ME4-DH32-BY200-(32\")-SMART', '', '0', '21572.00', '25990.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '23391.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1415', '1', 'ME326AH (32\")', '', '0', '18094.00', '21800.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '19620.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1416', '1', 'ME326AH-Silver (32\")', '', '0', '18094.00', '21800.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '19620.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1417', '1', 'MD326SR (32\")', '', '0', '17422.00', '20990.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '18891.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1418', '1', 'MD326SR-Silver (32\")', '', '0', '17422.00', '20990.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '18891.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1419', '1', 'MD326JX (32\")', '', '50', '17264.00', '20800.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '18720.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1420', '1', 'MD326JX-Silver (32\")', '', '0', '17264.00', '20800.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '18720.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1421', '1', 'MT32D27 (32\'\')', '', '0', '17264.00', '20800.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '18720.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1422', '1', 'M32E3000 (32\'\')', '', '0', '17264.00', '20800.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '18720.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1423', '1', 'MD1-EF32-SV100 (32\'\')', '', '0', '16592.00', '19990.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '17991.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1424', '1', 'MD286CD-Silver (28\")', '', '0', '15936.00', '19200.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '17280.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1425', '1', 'MD286CD  (28\")', '', '0', '15687.00', '18900.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '17010.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1426', '1', 'MD285AH-Silver (28\")', '', '0', '15521.00', '18700.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '16830.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1427', '1', 'MD285AH (28\")', '', '11', '15272.00', '18400.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '16560.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1428', '1', 'MDF-DT24-AU200-(24\'\')Full HD', '', '0', '12616.00', '15200.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '13680.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1429', '1', 'MCT24O4K (24\")', '', '13', '12442.00', '14990.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '13491.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1430', '1', 'MCT24O4K-Silver (24\")', '', '0', '12442.00', '14990.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '13491.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1431', '1', 'MD1-DT24-MC100 (24\")', '', '0', '12284.00', '14800.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '13320.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1432', '1', 'MD1-DT24-MC100-Silver (24\")', '', '0', '12284.00', '14800.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '13320.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1433', '1', 'MD1-DT24-RL100 (24\")', '', '0', '12035.00', '14500.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '13050.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1434', '1', 'MD1-DT24-RL100-Silver (24\")', '', '0', '12035.00', '14500.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '13050.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1435', '1', 'MCT24O4X (24\")', '', '0', '12035.00', '14500.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '13050.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1436', '1', 'MCT24O4C (24\")', '', '0', '12035.00', '14500.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '13050.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1437', '1', 'MCT24O4 (24\")', '', '0', '12035.00', '14500.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '13050.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1438', '1', 'MCT24O4-Silver (24\")', '', '0', '12035.00', '14500.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '13050.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1439', '1', 'MCT24DF6 (24\")', '', '0', '12035.00', '14500.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '13050.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1440', '1', 'MCT24DF6-Silver (24\")', '', '0', '12035.00', '14500.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '13050.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1441', '1', 'MSE20BX6 (20\')', '', '0', '10334.00', '12450.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '11205.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1442', '1', 'MSE20BX6-Silver (20\'\')', '', '0', '10583.00', '12750.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '11475.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1443', '1', 'WJ4-SB-55SV100(55\"4K)Smart', 'Pice', '10', '101200.00', '115000.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '123456', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '115000.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1444', '1', 'WUD55MF56(55\"4K)Smart', 'Pice', '10', '96800.00', '11000.00', '0000-00-00', '0000-00-00', 'No Effects', 'here', '1234567', '10', '0', '0', '1', '', 'Ware House', '0.00', 'Finished Products', '', '1', '1', '1', '', '11000.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1446', '4', 'PVC ID Card Print with Card Holder T-738V', '0', '277', '35.00', '100.00', '0000-00-00', '2018-07-05', '', '                                ', '', '1000', '0', '0', '', '', '', '0.00', 'Finished Products', 'default.jpg', '1', '6', '- kilogram', '', '0.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1447', '3', 'ID Card Holder Water-proof Anti-fold (T-738V)', '-1', '300', '18.00', '30.00', '0000-00-00', '2018-07-05', '', '                                ', '', '1000', '0', '0', '', '', '', '0.00', 'Finished Products', 'default.jpg', '5', '6', '- mimiter', '', '23.00');
INSERT INTO `mp_productslist` (`id`, `category_id`, `product_name`, `mg`, `quantity`, `purchase`, `retail`, `expire`, `manufacturing`, `sideeffects`, `description`, `barcode`, `min_stock`, `status`, `total_units`, `packsize`, `sku`, `location`, `tax`, `type`, `image`, `brand_id`, `brand_sector_id`, `unit_type`, `net_weight`, `whole_sale`) VALUES ('1448', '1', 'T-shart', '250', '0', '150.00', '200.00', '2019-02-06', '2019-02-20', '654', '   This is a description                ', '32145', '20', '0', '0', '', '1254', '', '0.00', 'Raw Product', 'default.jpg', '2', '2', '- kilogram', '797', '0.00');


#
# TABLE STRUCTURE FOR: mp_menu
#

DROP TABLE IF EXISTS `mp_menu`;

CREATE TABLE `mp_menu` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET latin1 NOT NULL,
  `icon` varchar(100) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8;

INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('1', 'Products', 'fa fa-life-ring');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('2', 'Settings', 'fa fa-cog');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('5', 'Reports', 'fa fa-balance-scale');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('6', 'POS', 'fa fa-clipboard');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('7', 'Profile', 'fa fa-user');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('12', 'Roles', 'fa fa-users');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('16', 'Supplier', 'fa fa-truck');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('18', 'Bank', 'fa fa-bank');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('20', 'Purchase', 'fa fa-briefcase');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('21', 'Supply ', 'fa fa-flask');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('22', 'Initilization', 'fa fa-anchor');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('23', 'Accounts', 'fa fa-calculator');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('24', 'Statements', 'fa fa-line-chart');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('25', 'Options', 'fa fa-shopping-bag');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('26', 'Dashboard', 'fa fa-tachometer');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('27', 'Expense', 'fa fa-paper-plane');
INSERT INTO `mp_menu` (`id`, `name`, `icon`) VALUES ('28', 'Customers', 'fa fa-user');


#
# TABLE STRUCTURE FOR: mp_menulist
#

DROP TABLE IF EXISTS `mp_menulist`;

CREATE TABLE `mp_menulist` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `menu_id` int(11) NOT NULL,
  `title` varchar(255) CHARACTER SET latin1 NOT NULL,
  `link` varchar(255) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`),
  KEY `menu_id` (`menu_id`)
) ENGINE=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=utf8;

INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('1', '1', 'Products', 'product');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('2', '1', 'Categories', 'category');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('3', '2', 'Layout & System', 'layout');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('9', '28', 'Customers', 'customers');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('10', '5', 'Sales Report', 'salesreport');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('13', '6', 'View Invoice', 'invoice/manage');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('16', '7', 'Personal', 'profile');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('17', '25', 'Users', 'users');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('18', '25', 'Requested items', 'todolist');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('26', '12', 'Multiple Roles', 'multiple_roles');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('28', '16', 'Supplier List', 'supplier');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('29', '27', 'Expense', 'Expense');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('30', '18', 'Cheques', 'bank/written_cheque');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('31', '18', 'Banks', 'bank');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('34', '1', 'Pending stock', 'product/pending_stock');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('36', '6', 'Create invoice', 'invoice');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('37', '6', 'Return items', 'return_items');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('38', '5', 'Return report', 'salesreport/returnitemreport');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('39', '20', 'Purchases', 'purchase');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('40', '21', 'Supply List', 'supply');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('41', '21', 'Drivers', 'supply/drivers');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('42', '21', 'Vehicles', 'supply/vehicle');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('43', '22', 'Brands', 'initilization');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('44', '22', 'Brand Sector', 'initilization/brandSector');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('45', '22', 'Region', 'initilization/region');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('46', '22', 'Towns', 'initilization/town');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('47', '22', 'units', 'initilization/units');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('48', '22', 'Stores', 'initilization/stores');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('49', '1', 'Out of stock', 'stockAlertReport');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('50', '1', 'Recent expired', 'product/expired_list');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('51', '1', 'Stock ', 'product/productStock');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('52', '1', 'Expired Stock', 'product/expired_stock');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('53', '16', 'Supplier payments', 'supplier/payment_list');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('54', '23', 'Customers ledger', 'customers/ledger');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('55', '23', 'Supplier legder', 'supplier/ledger');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('56', '20', 'Purchase return', 'purchase/return_list');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('57', '4', 'Customer payments', 'customers/payment_list ');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('58', '23', 'Chart of accounts', 'accounts');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('59', '24', 'General Journal', 'statements');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('60', '24', 'Ledger Account', 'statements/leadgerAccounst');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('61', '24', 'Trail Balance', 'statements/trail_balance');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('62', '24', 'Income', 'statements/income_statement');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('63', '24', 'Balance Sheet', 'statements/balancesheet');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('64', '23', 'Journal Voucher', 'statements/journal_voucher');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('65', '23', 'Opening Balance', 'statements/opening_balance');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('66', '28', 'Customer Payments', 'customers/payment_list ');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('68', '25', 'Take Backup', 'backup');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('69', '25', 'Restore Backup', 'backup/upload_restore');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('70', '18', 'Bank Deposits', 'bank/deposit_list');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('71', '18', 'Bank Book', 'bank/bank_book');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('72', '26', 'Dashboard', 'dashboard');
INSERT INTO `mp_menulist` (`id`, `menu_id`, `title`, `link`) VALUES ('73', '25', 'Printer Settings', 'Printer_settings');


#
# TABLE STRUCTURE FOR: mp_multipleroles
#

DROP TABLE IF EXISTS `mp_multipleroles`;

CREATE TABLE `mp_multipleroles` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `menu_Id` int(11) NOT NULL,
  `role` int(1) NOT NULL,
  `agentid` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `menu_Id` (`menu_Id`),
  KEY `agentid` (`agentid`),
  CONSTRAINT `roles_agentid_fk` FOREIGN KEY (`agentid`) REFERENCES `mp_users` (`id`),
  CONSTRAINT `roles_menuid_fk` FOREIGN KEY (`menu_Id`) REFERENCES `mp_menu` (`id`),
  CONSTRAINT `roles_user_fk` FOREIGN KEY (`user_id`) REFERENCES `mp_users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=151 DEFAULT CHARSET=utf8;

INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('117', '1', '12', '0', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('118', '1', '1', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('119', '1', '2', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('120', '1', '5', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('121', '1', '6', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('122', '1', '7', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('123', '1', '16', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('124', '1', '18', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('125', '1', '20', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('126', '1', '21', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('127', '1', '22', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('128', '1', '23', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('129', '1', '24', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('130', '1', '25', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('131', '1', '26', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('132', '1', '27', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('133', '1', '28', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('134', '2', '1', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('135', '2', '2', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('136', '2', '5', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('137', '2', '6', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('138', '2', '7', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('139', '2', '12', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('140', '2', '16', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('141', '2', '18', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('142', '2', '20', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('143', '2', '21', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('144', '2', '22', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('145', '2', '23', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('146', '2', '25', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('147', '2', '26', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('148', '2', '27', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('149', '2', '28', '1', '1');
INSERT INTO `mp_multipleroles` (`id`, `user_id`, `menu_Id`, `role`, `agentid`) VALUES ('150', '2', '24', '1', '1');


#
# TABLE STRUCTURE FOR: mp_payee
#

DROP TABLE IF EXISTS `mp_payee`;

CREATE TABLE `mp_payee` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_name` varchar(50) CHARACTER SET latin1 NOT NULL,
  `cus_email` varchar(50) CHARACTER SET latin1 NOT NULL,
  `cus_password` varchar(255) CHARACTER SET latin1 NOT NULL,
  `cus_address` varchar(255) CHARACTER SET latin1 NOT NULL,
  `cus_contact_1` varchar(50) CHARACTER SET latin1 NOT NULL,
  `cus_contact_2` varchar(50) CHARACTER SET latin1 NOT NULL,
  `cus_company` varchar(50) CHARACTER SET latin1 NOT NULL,
  `cus_description` varchar(100) CHARACTER SET latin1 NOT NULL,
  `cus_picture` varchar(100) CHARACTER SET latin1 NOT NULL,
  `cus_status` int(1) NOT NULL,
  `cus_region` varchar(255) CHARACTER SET latin1 NOT NULL,
  `cus_town` varchar(255) CHARACTER SET latin1 NOT NULL,
  `cus_type` varchar(50) CHARACTER SET latin1 NOT NULL,
  `cus_balance` varchar(255) CHARACTER SET latin1 NOT NULL,
  `cus_date` date NOT NULL,
  `customer_nationalid` varchar(255) CHARACTER SET latin1 NOT NULL,
  `type` varchar(100) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;

INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('1', 'dsfjsd', 'walkin@gmail.com', '', 'hbh', '', '1722967053', 'gfchg', '', 'default.jpg', '0', 'hmbh', 'v j', 'Regular', '0.00', '2018-04-22', '1234578', 'customer');
INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('2', 'Habib', 'a@gmail.com', '', 'gbdggdfgdsfg', '5285', '1715932630', 'fghfdg', 'fgsd', 'default.jpg', '0', 'Dhaka', 'gbf', 'Regular', '', '2018-07-04', '12335555', 'customer');
INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('4', 'Walton Company', 'as@gmail.com', '', 'Rampur, Kalihati', '', '', '', '', 'default.jpg', '0', '', '', 'Regular', '', '2018-06-15', '12335555', 'supplier');
INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('5', 'Hasn', 'asss@gmail.com', '', 'hbh', '', '1722967052', 'bhbh', '', 'default.jpg', '0', 'knm', 'hvh', 'Regular', '', '2018-06-18', '14785', 'customer');
INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('6', 'Moyn', '', '', 'fsf', '', '1722963540', 'mgvh', '', 'default.jpg', '0', 'hjbj', 'hbh', 'Regular', '', '2018-07-04', '24587', 'customer');
INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('7', 'Md. Tarek Khan', 'abccomputer@gmail.com', '', '50, New Market, Dhaka-1207', '21568745', '1712031466', 'ABC Computer', '', 'default.jpg', '0', 'New Market', 'Dhaka', 'Regular', '', '2018-07-04', '1.99E+16', 'customer');
INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('8', 'Md. Arab Ali', 'arabali_du@yahoo.com', '', 'Amuria, Magura', '', '1722333846', 'Magura Govt. Mahila College, Magura', '', '366cfcaa8d41b3dc6645de2138ae0f4d.jpg', '0', 'Magura', 'Magura', 'Regular', '', '2018-07-05', '1.99E+16', 'customer');
INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('9', 'Md Miraj Hossain', 'miraj_designbd@outlook.com', '', 'Shop # 249, Goli # 04, Gausul Azam Super Market, Nilkhet, Dhaka-1205.', '', '1712031466', 'Rakib Enterprise', '', '4cb799fd339fb5fa5c3cb3aa5ce9e770.jpg', '0', 'New Market', 'Dhaka', 'Regular', '', '2018-07-09', '1.99155E+16', 'supplier');
INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('10', 'Halim', 'a...@gmail.com', '', 'sdcs', '58545', '5445', 'tgert', 'rtger', 'default.jpg', '0', 'fas', 'hhg', 'Regular', '', '2018-07-09', '2858585', 'customer');
INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('12', 'Kamal', '', '', 'vsd', '557', '214785236', 'dsfsd', '', '', '0', 'vsd', 'vsd', 'Regular', '', '0000-00-00', '4878', 'customer');
INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('13', 'Selim', '', '', '', '', '', '', '', '', '0', '', '', 'Regular', '', '0000-00-00', '', 'customer');
INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('14', 'dsfjsd', 'walkin@gmail.com', '', 'hbh', '', '1722967053', 'gfchg', '', '', '0', 'hmbh', 'v j', 'Regular', '', '0000-00-00', '1234578', 'customer');
INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('15', 'chghjjjj', '', '', '', '', '', '', '', '', '0', '', '', 'Regular', '', '0000-00-00', '', 'customer');
INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('16', 'xzczczxc', '', '', '', '', '', '', '', '', '0', '', '', '', '', '0000-00-00', '', 'customer');
INSERT INTO `mp_payee` (`id`, `customer_name`, `cus_email`, `cus_password`, `cus_address`, `cus_contact_1`, `cus_contact_2`, `cus_company`, `cus_description`, `cus_picture`, `cus_status`, `cus_region`, `cus_town`, `cus_type`, `cus_balance`, `cus_date`, `customer_nationalid`, `type`) VALUES ('17', 'sdfsd', '', '', '', '', '', '', '', '', '0', '', '', 'Regular', '', '0000-00-00', '', 'supplier');


#
# TABLE STRUCTURE FOR: mp_printer
#

DROP TABLE IF EXISTS `mp_printer`;

CREATE TABLE `mp_printer` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `printer_name` varchar(255) CHARACTER SET latin1 NOT NULL,
  `fontsize` int(11) NOT NULL,
  `set_default` int(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

INSERT INTO `mp_printer` (`id`, `printer_name`, `fontsize`, `set_default`) VALUES ('6', 'Black Copper BC-85AC', '11', '1');


#
# TABLE STRUCTURE FOR: mp_purchase
#

DROP TABLE IF EXISTS `mp_purchase`;

CREATE TABLE `mp_purchase` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `transaction_id` int(11) NOT NULL,
  `date` date NOT NULL,
  `supplier_id` int(11) NOT NULL,
  `store` int(11) NOT NULL,
  `invoice_id` int(11) NOT NULL,
  `description` longtext CHARACTER SET latin1 NOT NULL,
  `total_amount` decimal(11,2) NOT NULL,
  `payment_type_id` varchar(50) CHARACTER SET latin1 NOT NULL,
  `payment_date` date NOT NULL,
  `cash` decimal(11,2) NOT NULL,
  `cus_picture` decimal(11,2) NOT NULL,
  `status` int(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `transaction_id` (`transaction_id`),
  KEY `supplier_id` (`supplier_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

INSERT INTO `mp_purchase` (`id`, `transaction_id`, `date`, `supplier_id`, `store`, `invoice_id`, `description`, `total_amount`, `payment_type_id`, `payment_date`, `cash`, `cus_picture`, `status`) VALUES ('1', '110', '2018-06-18', '4', '1', '123456', 'fgdsf', '400000.00', 'Cheque', '2018-06-19', '0.00', '0.00', '0');
INSERT INTO `mp_purchase` (`id`, `transaction_id`, `date`, `supplier_id`, `store`, `invoice_id`, `description`, `total_amount`, `payment_type_id`, `payment_date`, `cash`, `cus_picture`, `status`) VALUES ('2', '111', '2018-06-18', '4', '1', '123456', 'sdasd', '35000.00', 'Cheque', '2018-06-19', '35000.00', '0.00', '1');
INSERT INTO `mp_purchase` (`id`, `transaction_id`, `date`, `supplier_id`, `store`, `invoice_id`, `description`, `total_amount`, `payment_type_id`, `payment_date`, `cash`, `cus_picture`, `status`) VALUES ('3', '112', '2018-06-18', '4', '1', '123456', 'sdasd', '35000.00', 'Cheque', '2018-06-19', '35000.00', '0.00', '1');
INSERT INTO `mp_purchase` (`id`, `transaction_id`, `date`, `supplier_id`, `store`, `invoice_id`, `description`, `total_amount`, `payment_type_id`, `payment_date`, `cash`, `cus_picture`, `status`) VALUES ('4', '134', '2018-07-04', '4', '1', '185', '', '5000.00', 'Cash', '2018-07-04', '2500.00', '0.00', '0');
INSERT INTO `mp_purchase` (`id`, `transaction_id`, `date`, `supplier_id`, `store`, `invoice_id`, `description`, `total_amount`, `payment_type_id`, `payment_date`, `cash`, `cus_picture`, `status`) VALUES ('5', '163', '2018-07-09', '9', '1', '1852', 'Mr. Emram Mahmud', '15000.00', 'Cash', '2018-07-08', '10000.00', '0.00', '0');


#
# TABLE STRUCTURE FOR: mp_region
#

DROP TABLE IF EXISTS `mp_region`;

CREATE TABLE `mp_region` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET latin1 NOT NULL,
  `code` varchar(255) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `mp_region` (`id`, `name`, `code`) VALUES ('1', 'Tangail', '1001');


#
# TABLE STRUCTURE FOR: mp_return
#

DROP TABLE IF EXISTS `mp_return`;

CREATE TABLE `mp_return` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `transaction_id` int(11) NOT NULL,
  `date` date NOT NULL,
  `cus_id` int(11) NOT NULL,
  `agent` varchar(255) CHARACTER SET latin1 NOT NULL,
  `invoice_id` int(11) NOT NULL,
  `return_amount` decimal(11,2) NOT NULL,
  `total_bill` decimal(11,2) NOT NULL,
  `discount_given` decimal(11,2) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `transaction_id` (`transaction_id`),
  KEY `cus_id` (`cus_id`),
  KEY `invoice_id` (`invoice_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

INSERT INTO `mp_return` (`id`, `transaction_id`, `date`, `cus_id`, `agent`, `invoice_id`, `return_amount`, `total_bill`, `discount_given`) VALUES ('1', '55', '2018-06-02', '1', 'Jannat Group', '50', '190.00', '190.00', '0.00');
INSERT INTO `mp_return` (`id`, `transaction_id`, `date`, `cus_id`, `agent`, `invoice_id`, `return_amount`, `total_bill`, `discount_given`) VALUES ('2', '109', '2018-06-18', '1', 'Md. Habibur Rahman', '12345', '250.00', '250.00', '0.00');
INSERT INTO `mp_return` (`id`, `transaction_id`, `date`, `cus_id`, `agent`, `invoice_id`, `return_amount`, `total_bill`, `discount_given`) VALUES ('3', '125', '2018-06-25', '1', 'Md. Habibur Rahman', '88', '25.00', '25.00', '0.00');


#
# TABLE STRUCTURE FOR: mp_return_list
#

DROP TABLE IF EXISTS `mp_return_list`;

CREATE TABLE `mp_return_list` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `return_id` int(11) NOT NULL,
  `barcode` varchar(255) CHARACTER SET latin1 NOT NULL,
  `product_no` varchar(255) CHARACTER SET latin1 NOT NULL,
  `product_id` int(11) NOT NULL,
  `product_name` varchar(255) CHARACTER SET latin1 NOT NULL,
  `mg` varchar(255) CHARACTER SET latin1 NOT NULL,
  `price` decimal(11,2) NOT NULL,
  `purchase` decimal(11,2) NOT NULL,
  `qty` int(11) NOT NULL,
  `tax` decimal(11,2) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `transaction_id` (`return_id`),
  KEY `medicine_id` (`product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

INSERT INTO `mp_return_list` (`id`, `return_id`, `barcode`, `product_no`, `product_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('1', '1', '', '', '177', 'A83GSRPW10.1-3Gang Switch', '', '190.00', '127.00', '1', '0.00');
INSERT INTO `mp_return_list` (`id`, `return_id`, `barcode`, `product_no`, `product_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('2', '2', '', '', '181', 'A8MSUPW13-Multi Socket', '', '250.00', '168.00', '1', '0.00');
INSERT INTO `mp_return_list` (`id`, `return_id`, `barcode`, `product_no`, `product_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('3', '3', '', '', '181', 'Molla Salt', '1000', '25.00', '20.00', '1', '0.00');
INSERT INTO `mp_return_list` (`id`, `return_id`, `barcode`, `product_no`, `product_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('4', '3', '', '', '176', 'Cricket Ball', '1500', '25.00', '16.00', '1', '0.00');


#
# TABLE STRUCTURE FOR: mp_sales
#

DROP TABLE IF EXISTS `mp_sales`;

CREATE TABLE `mp_sales` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `product_no` varchar(255) CHARACTER SET latin1 NOT NULL,
  `order_id` int(11) NOT NULL,
  `product_name` varchar(100) CHARACTER SET latin1 NOT NULL,
  `mg` int(11) NOT NULL,
  `price` decimal(11,2) NOT NULL,
  `purchase` decimal(11,2) NOT NULL,
  `qty` int(11) NOT NULL,
  `tax` decimal(11,2) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `medicine_id` (`product_id`),
  KEY `order_id` (`order_id`)
) ENGINE=InnoDB AUTO_INCREMENT=179 DEFAULT CHARSET=utf8;

INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('8', '175', '', '3', 'A81GSRPW16.1-1Gang Switch', '0', '867.00', '57.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('9', '175', '', '3', 'A81GSRPW16.1-1Gang Switch', '0', '85.00', '57.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('10', '175', '', '4', 'A81GSRPW16.1-1Gang Switch', '0', '36.13', '57.00', '24', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('11', '175', '', '5', 'A81GSRPW16.1-1Gang Switch', '0', '36.13', '57.00', '24', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('12', '175', '', '6', 'A81GSRPW16.1-1Gang Switch', '0', '72.25', '57.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('13', '175', '', '7', 'A81GSRPW16.1-1Gang Switch', '0', '85.00', '57.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('14', '175', '', '7', 'A81GSRPW16.1-1Gang Switch', '0', '72.25', '57.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('15', '178', '', '8', 'A84GSRPW10.1-4Gang Switch', '0', '240.00', '161.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('16', '176', '', '8', 'A82GSRPW16.1-2Gang Switch', '0', '127.50', '101.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('17', '175', '', '9', 'A81GSRPW16.1-1Gang Switch', '0', '85.00', '57.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('18', '175', '', '9', 'A81GSRPW16.1-1Gang Switch', '0', '867.00', '57.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('19', '176', '', '10', 'A82GSRPW16.1-2Gang Switch', '0', '150.00', '101.00', '5', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('20', '262', '', '10', 'WLED-F3WE27 / R3WE27', '0', '165.00', '111.00', '20', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('21', '176', '', '11', 'A82GSRPW16.1-2Gang Switch', '0', '127.50', '101.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('22', '176', '', '12', 'A82GSRPW16.1-2Gang Switch', '0', '127.50', '101.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('23', '176', '', '13', 'A82GSRPW16.1-2Gang Switch', '0', '63.75', '101.00', '24', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('24', '175', '', '14', 'A81GSRPW16.1-1Gang Switch', '0', '36.13', '57.00', '24', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('25', '175', '', '15', 'A81GSRPW16.1-1Gang Switch', '0', '72.25', '57.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('26', '177', '', '16', 'A83GSRPW10.1-3Gang Switch', '0', '80.75', '127.00', '24', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('27', '177', '', '17', 'A83GSRPW10.1-3Gang Switch', '0', '161.50', '127.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('30', '180', '', '20', 'A83PUSPW13-3Pin Socket & Switch', '0', '187.00', '147.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('31', '177', '', '21', 'A83GSRPW10.1-3Gang Switch', '0', '80.75', '127.00', '24', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('32', '177', '', '22', 'A83GSRPW10.1-3Gang Switch', '0', '161.50', '127.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('33', '177', '', '23', 'A83GSRPW10.1-3Gang Switch', '0', '190.00', '127.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('34', '542', '', '24', 'WE4-DH32-BX200(32\"Smart)Silver', '0', '0.00', '22.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('35', '620', '', '24', 'WSN-24K-0101-SCWWB', '0', '56.00', '50.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('36', '620', '', '25', 'WSN-24K-0101-SCWWB', '0', '28.00', '50.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('37', '622', '', '26', 'Zoom-1200', '0', '16.00', '14.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('38', '622', '', '27', 'Zoom-1200', '0', '0.00', '14.00', '0', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('39', '1088', '', '28', 'Zoom-1200', '0', '16.00', '14.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('40', '622', '', '29', 'Zoom-1200', '0', '16.00', '14.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('41', '1088', '', '30', 'Zoom-1200', '0', '8.00', '14.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('42', '625', '', '31', 'Excel-2200-DM', '0', '0.00', '19.00', '0', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('43', '1091', '', '31', 'Excel-2200-DM', '0', '11.00', '19.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('44', '1103', '', '32', 'Power Carft-8000E', '0', '5800.00', '51.00', '2', '696.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('45', '521', '', '33', 'WJ4-SB-55SV100(55\"4K)Smart', '0', '115.00', '101.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('46', '178', '', '34', 'A84GSRPW10.1-4Gang Switch', '0', '240.00', '161.00', '10', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('47', '1102', '', '34', 'Power Craft-8000E (7.5 KE)', '0', '54.00', '47.00', '3', '5.94');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('48', '179', '', '35', 'A83PUPW13-3Pin Socket', '0', '180.00', '121.00', '10', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('49', '184', '', '36', 'A8DSPW5-Date Socket', '0', '85.00', '134.00', '24', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('50', '178', '', '37', 'A84GSRPW10.1-4Gang Switch', '0', '2448.00', '161.00', '36', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('51', '1208', '', '38', 'WUD55MF56(55\"4K)Smart', '0', '11000.00', '96800.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('52', '1218', '', '39', 'WSN-18K-0102-FTXXA', '0', '45900.00', '40392.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('53', '1218', '', '40', 'WSN-18K-0102-FTXXA', '0', '45900.00', '40392.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('54', '1218', '', '41', 'WSN-18K-0102-FTXXA', '0', '45900.00', '40392.00', '5', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('55', '1218', '', '42', 'WSN-18K-0102-FTXXA', '0', '45900.00', '40392.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('56', '178', '', '43', 'A84GSRPW10.1-4Gang Switch', '0', '204.00', '161.00', '24', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('57', '175', '', '44', 'A81GSRPW16.1-1Gang Switch', '0', '85.00', '57.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('58', '177', '', '44', 'A83GSRPW10.1-3Gang Switch', '0', '190.00', '127.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('59', '1226', '', '45', 'WJ4-SB-55SV100(55\"4K)Smart', '0', '115000.00', '101200.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('60', '1227', '', '45', 'WUD55MF56(55\"4K)Smart', '0', '11000.00', '96800.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('61', '184', '', '46', 'A8DSPW5-Date Socket', '0', '2040.00', '134.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('62', '1226', '', '47', 'WJ4-SB-55SV100(55\"4K)Smart', '0', '115000.00', '101200.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('63', '1226', '', '48', 'WJ4-SB-55SV100(55\"4K)Smart', '0', '115000.00', '101200.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('64', '177', '', '49', 'A83GSRPW10.1-3Gang Switch', '0', '161.50', '127.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('65', '179', '', '49', 'A83PUPW13-3Pin Socket', '0', '153.00', '121.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('66', '177', '', '50', 'A83GSRPW10.1-3Gang Switch', '0', '190.00', '127.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('67', '178', '', '51', 'A84GSRPW10.1-4Gang Switch', '0', '204.00', '161.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('71', '178', '', '55', 'A84GSRPW10.1-4Gang Switch', '0', '2448.00', '161.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('72', '1226', '', '55', 'WJ4-SB-55SV100(55\"4K)Smart', '0', '115000.00', '101200.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('73', '1226', '', '56', 'WJ4-SB-55SV100(55\"4K)Smart', '0', '115000.00', '101200.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('74', '1226', '', '57', 'WJ4-SB-55SV100(55\"4K)Smart', '0', '115000.00', '101200.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('75', '176', '', '58', 'A82GSRPW16.1-2Gang Switch', '0', '150.00', '101.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('76', '177', '', '59', 'A83GSRPW10.1-3Gang Switch', '0', '161.50', '127.00', '60', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('78', '179', '', '61', 'A83PUPW13-3Pin Socket', '0', '153.00', '121.00', '60', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('79', '180', '', '61', 'A83PUSPW13-3Pin Socket & Switch', '0', '187.00', '147.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('80', '188', '', '62', 'A82GSRPW16.2-2Gang-2Way Switch', '0', '153.00', '121.00', '60', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('81', '179', '', '63', 'A83PUPW13-3Pin Socket', '0', '180.00', '121.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('82', '179', '', '64', 'A83PUPW13-3Pin Socket', '0', '153.00', '121.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('83', '175', '', '65', 'A81GSRPW16.1-1Gang Switch', '0', '85.00', '57.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('84', '219', '', '65', 'E43GSRPW10.1-3Gang Switch', '0', '170.00', '114.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('85', '178', '', '66', 'A84GSRPW10.1-4Gang Switch', '0', '240.00', '161.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('86', '178', '', '67', 'A84GSRPW10.1-4Gang Switch', '0', '240.00', '161.00', '5', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('87', '1402', '1478', '68', 'Rod', '20', '80.00', '70.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('88', '1402', '1478', '69', 'Rod', '20', '80.00', '70.00', '20', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('89', '179', '', '70', 'A83PUPW13-3Pin Socket', '0', '180.00', '121.00', '10', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('90', '179', '', '71', 'A83PUPW13-3Pin Socket', '0', '153.00', '121.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('91', '179', '', '72', 'A83PUPW13-3Pin Socket', '0', '153.00', '121.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('92', '179', '', '73', 'A83PUPW13-3Pin Socket', '0', '180.00', '121.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('93', '179', '', '74', 'A83PUPW13-3Pin Socket', '0', '153.00', '121.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('94', '175', '', '75', 'A81GSRPW16.1-1Gang Switch', '0', '85.00', '57.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('95', '175', '', '76', 'A81GSRPW16.1-1Gang Switch', '0', '85.00', '57.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('99', '180', '', '79', 'A83PUSPW13-3Pin Socket & Switch', '0', '187.00', '147.00', '120', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('100', '178', '', '79', 'A84GSRPW10.1-4Gang Switch', '0', '0.00', '161.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('101', '182', '', '80', 'A8TSPW3-Telephone Socket', '0', '127.50', '101.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('102', '178', '', '81', 'A84GSRPW10.1-4Gang Switch', '0', '204.00', '161.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('103', '178', '', '82', 'A84GSRPW10.1-4Gang Switch', '0', '204.00', '161.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('104', '175', '', '83', 'A81GSRPW16.1-1Gang Switch', '0', '85.00', '57.00', '3', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('105', '178', '', '84', 'A84GSRPW10.1-4Gang Switch', '0', '2448.00', '161.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('106', '181', '', '84', 'Molla Salt', '1000', '25.00', '20.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('107', '182', '', '85', 'Molla Salt', '500', '13.00', '10.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('108', '187', '', '86', 'A82PSPW10-2 Pin Socket', '0', '105.00', '70.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('109', '175', '', '86', 'Chair-RFL', '2000', '450.00', '300.00', '2', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('110', '181', '', '87', 'Molla Salt', '1000', '22.00', '20.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('111', '176', '', '88', 'Cricket Ball', '1500', '25.00', '16.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('112', '676', '', '89', 'A8TVS-TV Socket', '0', '1530.00', '101.00', '12', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('113', '175', '', '90', 'Chair-RFL', '2000', '450.00', '300.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('114', '174', 'Sku', '91', '1 CM Ribbon With Dog Hook China Fitting', '0', '7.15', '5.50', '100', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('115', '182', '', '91', 'ID Card Soft Cover (T-014V) N.', '0', '8.00', '5.00', '100', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('116', '177', '', '92', '1.5 CM Ribbon With Small Hook Sewing Fitting', '0', '11.70', '6.50', '100', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('117', '183', '', '92', 'ID Card Soft Cover (T-065)', '0', '7.56', '6.30', '100', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('118', '179', '', '93', '2 CM Ribbon With Small Hook Sewing Fitting', '0', '11.50', '10.00', '100', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('119', '179', '', '94', '2 CM Ribbon With Small Hook Sewing Fitting', '0', '11.50', '10.00', '100', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('120', '1262', '', '95', 'A8MSU13-Multi Socket', '0', '200.00', '174.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('121', '198', '', '96', 'T-Table-RFL', '0', '0.00', '114.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('122', '179', '1', '96', '2 CM Ribbon With Small Hook Sewing Fitting', '0', '100.00', '10.00', '1', '1.32');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('123', '1285', '', '96', 'E41GSRPW16.2-1Gang-2Way  Switch', '0', '100.50', '60.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('124', '184', '1', '97', 'ID Card Soft Cover (T-014) 1no.', '0', '12.00', '10.00', '1', '1.32');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('125', '661', '', '98', 'A8USB3PSU13-2USB Charger & 3Pin Scoket', '0', '630.00', '422.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('126', '177', '1', '99', '1.5 CM Ribbon With Small Hook Sewing Fitting', '0', '10.00', '6.50', '100', '0.85');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('127', '184', '1', '99', 'ID Card Soft Cover (T-014) 1no.', '0', '12.00', '10.00', '100', '1.32');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('128', '1445', '', '100', 'PVC ID Card Print with  Card Holder T-738V', '0', '100.00', '35.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('129', '1446', '', '100', 'PVC ID Card Print with Card Holder T-738V', '0', '100.00', '35.00', '23', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('130', '646', '', '101', 'A83PUSPW13-3Pin Socket & Switch', '0', '2244.00', '147.00', '9', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('131', '666', '', '101', 'A84GSR10.1-4Gang Switch', '0', '255.00', '171.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('132', '195', '', '102', 'A8USB3PSU13-2USB Charger &amp;amp;amp; 3Pin Scoket', '10', '630.00', '422.00', '100', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('133', '194', '1', '102', 'ID Card Zipper Cover (C)', '0', '5.00', '3.30', '100', '0.20');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('134', '185', '1', '103', '3R Soft ID Card Holder (T-067V)', '0', '350.00', '17.00', '20', '5.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('135', '1446', '', '103', 'PVC ID Card Print with Card Holder T-738V', '0', '100.00', '35.00', '200', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('136', '174', '1', '103', '1 CM Ribbon With Dog Hook China Fitting', '0', '7.00', '5.50', '200', '0.42');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('137', '182', '1', '103', 'ID Card Soft Cover (T-014V) N.', '0', '7.00', '5.00', '200', '0.42');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('138', '192', '1', '103', '3R Zipper Cover (C)', '0', '9.00', '7.50', '200', '0.76');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('139', '196', '', '104', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('140', '196', '', '105', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('141', '196', '', '106', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('142', '196', '', '107', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '10', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('143', '196', '', '108', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('144', '196', '', '109', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('145', '196', '', '110', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('146', '196', '', '111', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('147', '196', '', '112', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('148', '196', '', '113', 'A8CBSR16.1-Calling Bell Switch', '120', '0.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('149', '179', '1', '113', '2 CM Ribbon With Small Hook Sewing Fitting', '0', '0.00', '10.00', '1', '1.32');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('150', '196', '', '114', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('151', '196', '', '115', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('152', '197', '', '116', 'A81GSR16.1-1Gang Switch', '2', '95.00', '64.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('153', '197', '', '117', 'A81GSR16.1-1Gang Switch', '2', '95.00', '64.00', '10', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('154', '197', '', '118', 'A81GSR16.1-1Gang Switch', '2', '95.00', '64.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('155', '197', '', '119', 'A81GSR16.1-1Gang Switch', '2', '95.00', '64.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('156', '196', '', '120', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('157', '196', '', '121', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('158', '197', '', '122', 'A81GSR16.1-1Gang Switch', '2', '95.00', '64.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('159', '196', '', '123', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('160', '197', '', '124', 'A81GSR16.1-1Gang Switch', '2', '95.00', '64.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('161', '196', '', '125', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('162', '197', '', '126', 'A81GSR16.1-1Gang Switch', '2', '95.00', '64.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('163', '196', '', '127', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('164', '197', '', '128', 'A81GSR16.1-1Gang Switch', '2', '95.00', '64.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('165', '196', '', '129', 'A8CBSR16.1-Calling Bell Switch', '120', '125.00', '84.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('166', '197', '', '130', 'A81GSR16.1-1Gang Switch', '2', '95.00', '64.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('167', '179', '1', '131', '2 CM Ribbon With Small Hook Sewing Fitting', '0', '12.00', '10.00', '1', '1.32');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('168', '174', '1', '132', '1 CM Ribbon With Dog Hook China Fitting', '0', '7.00', '5.50', '1', '0.42');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('169', '524', '', '133', 'WSD55FD(55\")', '0', '69.00', '61.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('170', '174', '1', '134', '1 CM Ribbon With Dog Hook China Fitting', '0', '7.00', '5.50', '2', '0.42');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('171', '177', '1', '135', '1.5 CM Ribbon With Small Hook Sewing Fitting', '0', '10.00', '6.50', '1', '0.85');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('172', '183', '1', '135', 'ID Card Soft Cover (T-065)', '0', '8.00', '6.30', '1', '0.58');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('173', '429', '', '135', 'SVDSRMB16.1-Double Switch Module (1 way)', '0', '89.00', '60.00', '1', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('174', '396', '', '136', 'W1DSMB6 / W1DSC6-Data Socket', '0', '157.50', '141.00', '3', '0.00');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('175', '174', '1', '137', '1 CM Ribbon With Dog Hook China Fitting', '0', '7.00', '5.50', '2', '0.42');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('176', '182', '1', '137', 'ID Card Soft Cover (T-014V) N.', '0', '7.00', '5.00', '1', '0.42');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('177', '177', '1', '138', '1.5 CM Ribbon With Small Hook Sewing Fitting', '0', '0.00', '6.50', '1', '0.85');
INSERT INTO `mp_sales` (`id`, `product_id`, `product_no`, `order_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`) VALUES ('178', '179', '1', '138', '2 CM Ribbon With Small Hook Sewing Fitting', '0', '0.00', '10.00', '1', '1.32');


#
# TABLE STRUCTURE FOR: mp_stock
#

DROP TABLE IF EXISTS `mp_stock`;

CREATE TABLE `mp_stock` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `mid` int(11) NOT NULL,
  `manufacturing` date NOT NULL,
  `expiry` date NOT NULL,
  `qty` int(11) NOT NULL,
  `description` varchar(255) CHARACTER SET latin1 NOT NULL,
  `date` date NOT NULL,
  `added` varchar(255) CHARACTER SET latin1 NOT NULL,
  `purchase` decimal(11,2) NOT NULL,
  `selling` decimal(11,2) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `mid` (`mid`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `mp_stock` (`id`, `mid`, `manufacturing`, `expiry`, `qty`, `description`, `date`, `added`, `purchase`, `selling`) VALUES ('1', '0', '2018-07-05', '2020-01-01', '0', '', '2018-07-05', 'Md. Habibur Rahman', '0.00', '0.00');


#
# TABLE STRUCTURE FOR: mp_stores
#

DROP TABLE IF EXISTS `mp_stores`;

CREATE TABLE `mp_stores` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET latin1 NOT NULL,
  `code` varchar(255) CHARACTER SET latin1 NOT NULL,
  `address` varchar(255) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `mp_stores` (`id`, `name`, `code`, `address`) VALUES ('1', 'yeselectronics', '101', 'Boro Kalibari Mor Tangial');


#
# TABLE STRUCTURE FOR: mp_sub_entry
#

DROP TABLE IF EXISTS `mp_sub_entry`;

CREATE TABLE `mp_sub_entry` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `accounthead` int(11) NOT NULL,
  `amount` decimal(11,2) NOT NULL,
  `type` int(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `sid` (`parent_id`),
  KEY `accounthead` (`accounthead`),
  KEY `amount` (`amount`)
) ENGINE=InnoDB AUTO_INCREMENT=409 DEFAULT CHARSET=utf8;

INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('13', '7', '2', '85.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('14', '7', '3', '85.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('15', '8', '2', '1734.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('16', '8', '3', '1734.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('17', '9', '2', '1734.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('18', '9', '3', '1734.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('19', '10', '2', '867.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('20', '10', '3', '867.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('21', '11', '2', '867.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('22', '11', '3', '867.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('23', '12', '2', '1530.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('24', '12', '3', '1530.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('25', '13', '2', '85.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('26', '13', '3', '85.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('27', '14', '2', '4050.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('28', '14', '3', '4050.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('29', '15', '2', '1530.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('30', '15', '3', '1530.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('31', '16', '2', '1530.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('32', '16', '3', '1530.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('33', '17', '2', '3060.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('34', '17', '3', '3060.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('35', '18', '2', '1734.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('36', '18', '3', '1734.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('37', '19', '2', '867.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('38', '19', '3', '867.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('39', '20', '2', '3876.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('40', '20', '3', '3876.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('41', '21', '2', '1938.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('42', '21', '3', '1938.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('47', '24', '2', '2244.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('48', '24', '3', '2244.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('49', '25', '2', '3876.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('50', '25', '3', '3876.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('51', '26', '2', '1938.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('52', '26', '3', '1938.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('53', '27', '2', '190.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('54', '27', '3', '190.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('55', '28', '2', '56.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('56', '28', '3', '56.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('57', '29', '2', '112.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('58', '29', '3', '112.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('59', '30', '2', '32.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('60', '30', '3', '32.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('61', '31', '2', '32.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('62', '31', '3', '32.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('63', '32', '2', '16.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('64', '32', '3', '16.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('65', '33', '2', '32.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('66', '33', '3', '32.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('67', '34', '2', '32.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('68', '34', '3', '32.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('69', '35', '2', '88.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('70', '35', '3', '88.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('71', '36', '2', '12992.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('72', '36', '3', '12992.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('73', '37', '2', '115.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('74', '37', '3', '115.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('75', '38', '2', '2400.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('76', '38', '3', '2400.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('77', '39', '2', '1800.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('78', '39', '3', '1800.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('79', '40', '2', '4080.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('80', '40', '3', '4080.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('81', '41', '2', '7344.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('82', '41', '3', '7344.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('83', '42', '2', '11000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('84', '42', '3', '11000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('85', '43', '2', '91800.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('86', '43', '3', '91800.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('87', '44', '2', '91800.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('88', '44', '3', '91800.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('89', '45', '2', '229500.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('90', '45', '3', '229500.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('91', '46', '2', '91800.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('92', '46', '3', '91800.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('93', '47', '2', '4896.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('94', '47', '3', '4896.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('95', '48', '2', '360.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('96', '48', '3', '360.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('97', '49', '2', '252000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('98', '49', '3', '252000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('99', '50', '2', '0.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('100', '50', '3', '0.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('101', '51', '2', '115000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('102', '51', '3', '115000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('103', '52', '2', '115000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('104', '52', '3', '115000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('109', '53', '2', '3774.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('110', '53', '3', '3774.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('111', '54', '2', '380.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('112', '54', '3', '380.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('113', '55', '3', '190.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('114', '55', '2', '190.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('115', '56', '2', '2448.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('116', '56', '3', '2448.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('123', '60', '4', '230000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('124', '60', '3', '230000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('125', '61', '4', '115000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('126', '61', '3', '115000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('138', '62', '4', '115000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('139', '62', '3', '115000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('140', '63', '4', '150.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('141', '63', '3', '150.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('142', '64', '4', '9690.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('143', '64', '3', '9690.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('146', '66', '4', '11424.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('147', '66', '3', '11424.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('148', '67', '4', '9180.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('149', '67', '3', '9180.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('150', '68', '2', '100.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('151', '68', '4', '100.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('152', '69', '2', '500.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('153', '69', '4', '500.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('154', '70', '2', '180.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('155', '70', '3', '180.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('156', '71', '2', '1836.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('157', '71', '3', '1836.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('158', '72', '2', '255.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('159', '72', '3', '255.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('160', '73', '2', '240.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('161', '73', '3', '240.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('162', '74', '4', '1200.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('163', '74', '3', '1200.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('164', '75', '2', '500.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('165', '75', '4', '500.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('166', '76', '2', '80.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('167', '76', '3', '80.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('168', '77', '2', '1600.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('169', '77', '3', '1600.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('170', '78', '2', '1800.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('171', '78', '3', '1800.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('172', '79', '2', '500.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('173', '79', '4', '1336.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('174', '79', '3', '1836.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('175', '80', '2', '500.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('176', '80', '4', '1336.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('177', '80', '3', '1836.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('178', '81', '2', '1000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('179', '81', '4', '1000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('180', '82', '2', '180.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('181', '82', '3', '180.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('182', '83', '2', '500.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('183', '83', '4', '1336.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('184', '83', '3', '1836.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('185', '84', '2', '1000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('186', '84', '4', '1000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('187', '85', '2', '85.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('188', '85', '3', '85.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('189', '86', '2', '170.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('190', '86', '3', '170.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('191', '87', '2', '100000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('192', '87', '4', '100000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('193', '88', '2', '1012.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('194', '88', '4', '1012.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('195', '89', '5', '250000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('196', '89', '2', '250000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('197', '90', '2', '350000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('198', '90', '4', '350000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('209', '96', '16', '22440.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('210', '96', '3', '22440.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('211', '97', '16', '22440.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('212', '97', '4', '22440.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('213', '99', '16', '1530.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('214', '99', '3', '1530.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('215', '100', '16', '1530.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('216', '100', '4', '1530.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('217', '101', '16', '200.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('218', '101', '4', '200.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('219', '102', '16', '200.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('220', '102', '4', '200.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('221', '103', '16', '200.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('222', '103', '3', '200.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('223', '105', '16', '250000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('224', '105', '16', '250000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('225', '106', '16', '2448.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('226', '106', '3', '2448.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('227', '107', '5', '50000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('228', '107', '16', '50000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('229', '109', '3', '250.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('230', '109', '2', '250.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('231', '110', '3', '400000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('232', '110', '16', '0.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('233', '110', '5', '400000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('234', '111', '2', '35000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('235', '111', '3', '35000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('236', '112', '2', '35000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('237', '112', '3', '35000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('238', '114', '16', '2448.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('239', '114', '3', '2448.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('240', '115', '16', '500000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('241', '115', '3', '500000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('242', '116', '5', '10000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('243', '116', '16', '10000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('244', '117', '2', '255.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('245', '117', '3', '255.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('246', '118', '2', '1336.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('247', '118', '4', '1336.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('248', '120', '2', '25.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('249', '120', '3', '25.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('250', '121', '2', '13.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('251', '121', '3', '13.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('252', '122', '2', '500.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('253', '122', '4', '485.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('254', '122', '3', '985.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('255', '123', '2', '22.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('256', '123', '3', '22.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('257', '124', '2', '25.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('258', '124', '3', '25.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('259', '125', '3', '25.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('260', '125', '2', '25.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('261', '126', '2', '0.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('262', '126', '3', '0.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('263', '127', '2', '450.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('264', '127', '3', '450.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('265', '128', '2', '1515.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('266', '128', '3', '1515.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('267', '129', '4', '1926.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('268', '129', '3', '1926.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('269', '130', '2', '1000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('270', '130', '4', '1000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('271', '131', '2', '500.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('272', '131', '4', '600.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('273', '131', '3', '1100.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('274', '132', '2', '1000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('275', '132', '4', '1000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('279', '133', '2', '500.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('280', '133', '4', '650.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('281', '133', '3', '1150.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('282', '134', '3', '5000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('283', '134', '2', '2500.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('284', '134', '5', '2500.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('295', '139', '6', '500.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('296', '139', '2', '500.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('299', '141', '2', '200.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('300', '141', '3', '200.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('301', '142', '2', '201.82', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('302', '142', '3', '201.82', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('303', '143', '2', '13.32', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('304', '143', '3', '13.32', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('305', '144', '2', '630.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('306', '144', '3', '630.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('307', '145', '2', '2417.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('308', '145', '3', '2417.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('309', '146', '2', '2300.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('310', '146', '3', '2300.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('313', '148', '2', '63320.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('314', '148', '3', '63320.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('315', '149', '4', '5000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('316', '150', '4', '2500.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('317', '151', '4', '1500.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('318', '152', '4', '1520.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('319', '153', '1', '9500.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('320', '153', '2', '2000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('321', '153', '5', '7500.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('322', '154', '1', '9500.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('323', '154', '2', '3500.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('324', '154', '5', '6000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('328', '155', '2', '31701.60', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('329', '155', '3', '31701.60', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('330', '156', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('331', '156', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('332', '157', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('333', '157', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('334', '158', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('335', '158', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('336', '159', '2', '1250.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('337', '159', '3', '1250.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('338', '160', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('339', '160', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('340', '161', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('341', '161', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('342', '162', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('343', '162', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('344', '163', '3', '15000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('345', '163', '2', '10000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('346', '163', '5', '5000.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('347', '164', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('348', '164', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('349', '165', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('350', '165', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('351', '166', '1', '50000.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('352', '167', '2', '1.32', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('353', '167', '3', '1.32', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('354', '168', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('355', '168', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('356', '169', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('357', '169', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('358', '170', '2', '0.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('359', '170', '3', '0.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('360', '171', '2', '950.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('361', '171', '3', '950.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('362', '172', '2', '95.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('363', '172', '3', '95.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('364', '173', '2', '95.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('365', '173', '3', '95.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('366', '174', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('367', '174', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('368', '175', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('369', '175', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('370', '176', '2', '95.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('371', '176', '3', '95.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('372', '177', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('373', '177', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('374', '178', '2', '95.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('375', '178', '3', '95.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('376', '179', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('377', '179', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('378', '180', '2', '95.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('379', '180', '3', '95.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('380', '181', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('381', '181', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('382', '182', '2', '95.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('383', '182', '3', '95.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('384', '183', '2', '125.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('385', '183', '3', '125.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('386', '184', '2', '95.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('387', '184', '3', '95.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('388', '147', '2', '20431.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('389', '147', '3', '20431.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('390', '186', '2', '13.32', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('391', '186', '3', '13.32', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('392', '187', '2', '7.42', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('393', '187', '3', '7.42', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('394', '188', '2', '1200.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('395', '188', '4', '1200.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('396', '189', '2', '69.00', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('397', '189', '3', '69.00', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('398', '190', '2', '14.84', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('399', '190', '3', '14.84', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('400', '191', '2', '108.43', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('401', '191', '3', '108.43', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('402', '192', '2', '472.50', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('403', '192', '3', '472.50', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('404', '193', '2', '22.26', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('405', '193', '3', '22.26', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('406', '194', '2', '2.17', '0');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('407', '194', '3', '2.17', '1');
INSERT INTO `mp_sub_entry` (`id`, `parent_id`, `accounthead`, `amount`, `type`) VALUES ('408', '195', '2', '500.00', '0');


#
# TABLE STRUCTURE FOR: mp_supplier_payments
#

DROP TABLE IF EXISTS `mp_supplier_payments`;

CREATE TABLE `mp_supplier_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `transaction_id` int(11) NOT NULL,
  `supplier_id` int(11) NOT NULL,
  `amount` decimal(11,2) NOT NULL,
  `method` varchar(255) CHARACTER SET latin1 NOT NULL,
  `date` date NOT NULL,
  `description` varchar(255) CHARACTER SET latin1 NOT NULL,
  `agentname` varchar(50) CHARACTER SET latin1 NOT NULL,
  `mode` int(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `transaction_id` (`transaction_id`),
  KEY `supplier_id` (`supplier_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

INSERT INTO `mp_supplier_payments` (`id`, `transaction_id`, `supplier_id`, `amount`, `method`, `date`, `description`, `agentname`, `mode`) VALUES ('1', '89', '4', '250000.00', 'Cash', '2018-06-15', 'fvsdfv', 'Md. Habibur Rahman', '0');
INSERT INTO `mp_supplier_payments` (`id`, `transaction_id`, `supplier_id`, `amount`, `method`, `date`, `description`, `agentname`, `mode`) VALUES ('2', '90', '4', '350000.00', 'Cash', '2018-06-15', 'xcv', 'Md. Habibur Rahman', '1');
INSERT INTO `mp_supplier_payments` (`id`, `transaction_id`, `supplier_id`, `amount`, `method`, `date`, `description`, `agentname`, `mode`) VALUES ('3', '107', '4', '50000.00', 'Cheque', '2018-06-18', 'ftgrg', 'Md. Habibur Rahman', '0');


#
# TABLE STRUCTURE FOR: mp_supply
#

DROP TABLE IF EXISTS `mp_supply`;

CREATE TABLE `mp_supply` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `driver_id` int(11) NOT NULL,
  `vehicle_id` int(11) NOT NULL,
  `date` date NOT NULL,
  `region_id` int(11) NOT NULL,
  `town_id` int(11) NOT NULL,
  `expense` decimal(11,2) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `driver_id` (`driver_id`),
  KEY `vehicle_id` (`vehicle_id`),
  KEY `region_id` (`region_id`),
  KEY `town_id` (`town_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: mp_temp_barcoder_invoice
#

DROP TABLE IF EXISTS `mp_temp_barcoder_invoice`;

CREATE TABLE `mp_temp_barcoder_invoice` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `barcode` varchar(255) CHARACTER SET latin1 NOT NULL,
  `product_no` varchar(255) CHARACTER SET latin1 NOT NULL,
  `product_id` int(11) NOT NULL,
  `product_name` varchar(255) CHARACTER SET latin1 NOT NULL,
  `mg` varchar(255) CHARACTER SET latin1 NOT NULL,
  `price` decimal(11,2) NOT NULL,
  `purchase` decimal(11,2) NOT NULL,
  `qty` int(11) NOT NULL,
  `tax` double(11,2) NOT NULL,
  `agentid` int(11) NOT NULL,
  `source` varchar(50) CHARACTER SET latin1 NOT NULL,
  `pack` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `product_id` (`product_id`),
  KEY `agentid` (`agentid`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `mp_temp_barcoder_invoice` (`id`, `barcode`, `product_no`, `product_id`, `product_name`, `mg`, `price`, `purchase`, `qty`, `tax`, `agentid`, `source`, `pack`) VALUES ('1', '0', '1', '174', '1 CM Ribbon With Dog Hook China Fitting', '', '7.00', '5.50', '1', '0.42', '1', 'return', '0');


#
# TABLE STRUCTURE FOR: mp_todolist
#

DROP TABLE IF EXISTS `mp_todolist`;

CREATE TABLE `mp_todolist` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) CHARACTER SET latin1 NOT NULL,
  `date` date NOT NULL,
  `addedby` varchar(255) CHARACTER SET latin1 NOT NULL,
  `status` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `addedby` (`addedby`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: mp_town
#

DROP TABLE IF EXISTS `mp_town`;

CREATE TABLE `mp_town` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET latin1 NOT NULL,
  `region` varchar(255) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `mp_town` (`id`, `name`, `region`) VALUES ('1', 'Tangai', '0');


#
# TABLE STRUCTURE FOR: mp_units
#

DROP TABLE IF EXISTS `mp_units`;

CREATE TABLE `mp_units` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET latin1 NOT NULL,
  `symbol` varchar(255) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`),
  KEY `symbol` (`symbol`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

INSERT INTO `mp_units` (`id`, `name`, `symbol`) VALUES ('1', 'Package', '- kilogram');
INSERT INTO `mp_units` (`id`, `name`, `symbol`) VALUES ('2', 'Package', '- milliliter ');
INSERT INTO `mp_units` (`id`, `name`, `symbol`) VALUES ('3', 'Package', '- mimiter');
INSERT INTO `mp_units` (`id`, `name`, `symbol`) VALUES ('4', 'Package', '- gram');


#
# TABLE STRUCTURE FOR: mp_users
#

DROP TABLE IF EXISTS `mp_users`;

CREATE TABLE `mp_users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_name` varchar(50) CHARACTER SET latin1 NOT NULL,
  `user_email` varchar(50) CHARACTER SET latin1 NOT NULL,
  `user_address` varchar(100) CHARACTER SET latin1 NOT NULL,
  `user_contact_1` varchar(50) CHARACTER SET latin1 NOT NULL,
  `user_contact_2` varchar(50) CHARACTER SET latin1 NOT NULL,
  `cus_picture` varchar(255) CHARACTER SET latin1 NOT NULL,
  `status` int(1) NOT NULL,
  `user_description` varchar(100) CHARACTER SET latin1 NOT NULL,
  `user_password` varchar(255) CHARACTER SET latin1 NOT NULL,
  `user_date` date NOT NULL,
  `agentname` varchar(255) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`id`),
  KEY `user_name` (`user_name`),
  KEY `user_name_2` (`user_name`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO `mp_users` (`id`, `user_name`, `user_email`, `user_address`, `user_contact_1`, `user_contact_2`, `cus_picture`, `status`, `user_description`, `user_password`, `user_date`, `agentname`) VALUES ('1', 'Supper Admin', 'admin@glossytruth.com', 'Anaytgonj Lane 82/3,4th Flore, Hazaribagh, Dhaka-1205', '01745519614', '01715932630', '86ed815b3c9225ba422bcdad8cb8e3d8.png', '0', 'admin', '7c4a8d09ca3762af61e59520943dc26494f8941b', '2017-08-23', 'Jannat Group');
INSERT INTO `mp_users` (`id`, `user_name`, `user_email`, `user_address`, `user_contact_1`, `user_contact_2`, `cus_picture`, `status`, `user_description`, `user_password`, `user_date`, `agentname`) VALUES ('2', 'Sub Admin', 'admin@gmail.com', 'dfgdsf', '5678686', '5686', 'default.jpg', '0', 'User', '7c4a8d09ca3762af61e59520943dc26494f8941b', '2018-06-01', 'Md. Habibur Rahman');


#
# TABLE STRUCTURE FOR: mp_vehicle
#

DROP TABLE IF EXISTS `mp_vehicle`;

CREATE TABLE `mp_vehicle` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET latin1 NOT NULL,
  `number` varchar(255) CHARACTER SET latin1 NOT NULL,
  `vehicle_id` varchar(255) CHARACTER SET latin1 NOT NULL,
  `chase_no` varchar(255) CHARACTER SET latin1 NOT NULL,
  `engine_no` varchar(255) CHARACTER SET latin1 NOT NULL,
  `date` date NOT NULL,
  `status` int(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `mp_vehicle` (`id`, `name`, `number`, `vehicle_id`, `chase_no`, `engine_no`, `date`, `status`) VALUES ('1', 'PIkup', '101', '1123465', '123456', '1452', '2018-05-28', '0');


SET foreign_key_checks = 1;
