/home/rokasa/dbs
/*M!999999\- enable the sandbox mode */ -- MariaDB dump 10.19 Distrib 10.6.22-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: robisear_mtaanichemist -- ------------------------------------------------------ -- Server version 10.6.22-MariaDB-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `accounttype` -- DROP TABLE IF EXISTS `accounttype`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `accounttype` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `type` varchar(50) NOT NULL, `companyid` varchar(10) NOT NULL, `userid` varchar(10) NOT NULL, `description` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `accounttype` -- LOCK TABLES `accounttype` WRITE; /*!40000 ALTER TABLE `accounttype` DISABLE KEYS */; INSERT INTO `accounttype` VALUES (1,'Asset','BS','1','415','Asset'),(2,'Liability','BS','1','415','Liability'),(3,'Equity','BS','1','415','Equity'),(4,'Income','PL','1','415','Income'),(5,'Expense','PL','1','415','Expense'); /*!40000 ALTER TABLE `accounttype` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `activityloggs` -- DROP TABLE IF EXISTS `activityloggs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `activityloggs` ( `id` int(30) NOT NULL AUTO_INCREMENT, `userid` varchar(30) NOT NULL, `timedone` varchar(50) NOT NULL, `actiondone` text NOT NULL, `ip` text NOT NULL, `companyid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `activityloggs` -- LOCK TABLES `activityloggs` WRITE; /*!40000 ALTER TABLE `activityloggs` DISABLE KEYS */; INSERT INTO `activityloggs` VALUES (1,'1','2023-05-26 14:53:00','Robisearch Deleted item with id 1 from purchaseorder table at 2023-05-26 14:53:00','197.248.234.145',1),(2,'1','2023-05-26 14:53:00','Robisearch Deleted item with id 1 from purchaseorder table at 2023-05-26 14:53:00','197.248.234.145',1); /*!40000 ALTER TABLE `activityloggs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admintable` -- DROP TABLE IF EXISTS `admintable`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `admintable` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(50) NOT NULL, `password` varchar(20) DEFAULT NULL, `surname` varchar(50) NOT NULL, `firstname` varchar(50) NOT NULL, `phone` varchar(50) NOT NULL, `campus` varchar(30) NOT NULL, `college` varchar(30) NOT NULL, `department` varchar(30) NOT NULL, `type` varchar(50) NOT NULL, `token` text NOT NULL, `email` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL, `idno` varchar(40) NOT NULL, `updatedat` varchar(40) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admintable` -- LOCK TABLES `admintable` WRITE; /*!40000 ALTER TABLE `admintable` DISABLE KEYS */; INSERT INTO `admintable` VALUES (1,'admin','Robisearch321','dd','ddd','222222222','','','','','','admqin@gmail.com','','active','2222222','2016-11-07 04:32:35'); /*!40000 ALTER TABLE `admintable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `advance` -- DROP TABLE IF EXISTS `advance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `advance` ( `id` int(11) NOT NULL AUTO_INCREMENT, `tenantid` varchar(50) NOT NULL, `todate` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `createdat` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `balance` varchar(50) NOT NULL, `closedate` varchar(30) NOT NULL, `startdate` varchar(30) NOT NULL, `paid` decimal(10,0) DEFAULT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `plotno` varchar(50) DEFAULT NULL, `houseno` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `advance` -- LOCK TABLES `advance` WRITE; /*!40000 ALTER TABLE `advance` DISABLE KEYS */; /*!40000 ALTER TABLE `advance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `advancepayment` -- DROP TABLE IF EXISTS `advancepayment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `advancepayment` ( `id` int(30) NOT NULL AUTO_INCREMENT, `createdat` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `amount` varchar(30) NOT NULL, `balance` varchar(30) NOT NULL, `description` text NOT NULL, `advanceid` int(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `advancepayment` -- LOCK TABLES `advancepayment` WRITE; /*!40000 ALTER TABLE `advancepayment` DISABLE KEYS */; /*!40000 ALTER TABLE `advancepayment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `agent` -- DROP TABLE IF EXISTS `agent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `agent` ( `id` int(40) NOT NULL, `firstname` varchar(100) NOT NULL, `lastname` varchar(100) NOT NULL, `location` varchar(100) NOT NULL, `phone` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `description` text NOT NULL, `idno` varchar(100) NOT NULL, `country` varchar(100) NOT NULL, `gender` varchar(10) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `county` varchar(40) NOT NULL, `accountno` varchar(100) NOT NULL, `accountname` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `status` varchar(10) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), UNIQUE KEY `idno` (`idno`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `agent` -- LOCK TABLES `agent` WRITE; /*!40000 ALTER TABLE `agent` DISABLE KEYS */; /*!40000 ALTER TABLE `agent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `alerts` -- DROP TABLE IF EXISTS `alerts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `alerts` ( `id` int(100) NOT NULL AUTO_INCREMENT, `contact` text NOT NULL, `postedtime` varchar(40) NOT NULL, `message` text NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `duedate` varchar(30) NOT NULL, `duetime` varchar(30) NOT NULL, `deliverystatus` varchar(10) NOT NULL DEFAULT 'new', `name` varchar(30) NOT NULL, `type` varchar(30) NOT NULL, `groupname` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alerts` -- LOCK TABLES `alerts` WRITE; /*!40000 ALTER TABLE `alerts` DISABLE KEYS */; /*!40000 ALTER TABLE `alerts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `alldocuments` -- DROP TABLE IF EXISTS `alldocuments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `alldocuments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `img_id` varchar(50) NOT NULL, `userid` int(11) NOT NULL, `date` varchar(50) DEFAULT NULL, `documentname` text DEFAULT NULL, `companyid` varchar(100) NOT NULL DEFAULT '1', `branchid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alldocuments` -- LOCK TABLES `alldocuments` WRITE; /*!40000 ALTER TABLE `alldocuments` DISABLE KEYS */; /*!40000 ALTER TABLE `alldocuments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `allpayments` -- DROP TABLE IF EXISTS `allpayments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `allpayments` ( `id` int(50) NOT NULL AUTO_INCREMENT, `type` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `dateposted` varchar(50) NOT NULL, `user` varchar(100) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `createdat` varchar(50) NOT NULL, `receiptno` varchar(100) NOT NULL, `idno` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `controller` varchar(100) NOT NULL, `imgid` varchar(100) NOT NULL, `img_id` text NOT NULL, `plotno` varchar(50) NOT NULL, `landlord` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `advance` varchar(20) NOT NULL, `direct` varchar(20) NOT NULL, `balance` varchar(20) NOT NULL, `mpesa` varchar(20) NOT NULL, `cash` varchar(20) NOT NULL, `card` varchar(20) NOT NULL, `cheque` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `year` varchar(20) NOT NULL, `paid` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `allpayments` -- LOCK TABLES `allpayments` WRITE; /*!40000 ALTER TABLE `allpayments` DISABLE KEYS */; /*!40000 ALTER TABLE `allpayments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `announcement` -- DROP TABLE IF EXISTS `announcement`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `announcement` ( `id` int(50) NOT NULL, `title` text NOT NULL, `target` varchar(50) NOT NULL, `message` text NOT NULL, `dateposted` varchar(50) NOT NULL, `status` varchar(50) NOT NULL, `type` varchar(50) NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `memberid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `announcement` -- LOCK TABLES `announcement` WRITE; /*!40000 ALTER TABLE `announcement` DISABLE KEYS */; /*!40000 ALTER TABLE `announcement` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `approvals` -- DROP TABLE IF EXISTS `approvals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `approvals` ( `id` int(11) NOT NULL AUTO_INCREMENT, `level` varchar(5) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` varchar(20) NOT NULL, `applicationid` int(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `approvals` -- LOCK TABLES `approvals` WRITE; /*!40000 ALTER TABLE `approvals` DISABLE KEYS */; INSERT INTO `approvals` VALUES (1,'','','2022-10-24 16:52:27','Approved','1','','1','EXP-11666619509',1),(2,'','','2022-11-16 15:38:49','Approved','1','','1','EXP-11668602219',5),(3,'','','2023-03-08 13:08:45','Approved','1','','1','EXP-11678270030',3),(4,'','','2023-03-08 13:09:08','Yes','1','','1','EXP-11678270030',3),(5,'','na','2023-03-11 12:51:54','Approved','1','','1','LOAN-11678528274',5),(6,'','','2023-05-15 08:36:21','Approved','1','','1','LOAN-11684128867',3); /*!40000 ALTER TABLE `approvals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `asignrooms` -- DROP TABLE IF EXISTS `asignrooms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `asignrooms` ( `id` int(11) NOT NULL AUTO_INCREMENT, `roomid` varchar(40) NOT NULL, `plotno` varchar(100) DEFAULT NULL, `houseno` varchar(100) DEFAULT NULL, `status` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `memberid` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `exactdate` varchar(50) NOT NULL, `floor` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `asignrooms` -- LOCK TABLES `asignrooms` WRITE; /*!40000 ALTER TABLE `asignrooms` DISABLE KEYS */; /*!40000 ALTER TABLE `asignrooms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assessment` -- DROP TABLE IF EXISTS `assessment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `assessment` ( `id` int(20) NOT NULL AUTO_INCREMENT, `invoice` varchar(50) NOT NULL, `registrationno` varchar(50) NOT NULL, `claimno` varchar(50) NOT NULL, `insurer` varchar(50) NOT NULL, `model` varchar(50) NOT NULL, `color` varchar(50) NOT NULL, `yom` varchar(50) NOT NULL, `tyres` varchar(50) NOT NULL, `policyno` varchar(50) NOT NULL, `make` varchar(50) NOT NULL, `engineno` varchar(50) NOT NULL, `mileage` varchar(50) NOT NULL, `repairer` varchar(50) NOT NULL, `chassisno` varchar(50) NOT NULL, `instructionsby` varchar(50) NOT NULL, `instructions` text NOT NULL, `preaccident` text NOT NULL, `garagedetails` text NOT NULL, `latentdameges` text NOT NULL, `userid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `dateposted` varchar(30) NOT NULL, `deliverymode` text NOT NULL, `date` varchar(30) NOT NULL, `assessmentdate` varchar(20) NOT NULL, `insuredname` varchar(30) NOT NULL, `colour` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assessment` -- LOCK TABLES `assessment` WRITE; /*!40000 ALTER TABLE `assessment` DISABLE KEYS */; INSERT INTO `assessment` VALUES (1,'32222201607434545','777','433','rr343exx','r','','WEW','344r53','r','32323','232321','re3r','33333','3434','','We acknowledge the receit of your email with instructions. We confirm that we have assessed\nthe vehicle at Ruaka Town and below are the findings.\n','EQWEQE','WQEQ','The current market value of the vehicle is estimated at KSH 1,700,000.00\nThe repair estimate is at 10.97% of the market value. We therefore find the vehcle to be repairable\n',1,1,1,'2020-12-19 06:23:58','WEW','2020-12-23','2020-12-01','333','EWEW'),(2,'32222201607434545','777432x','QEQEdx','QWEQEddx','QWEQEx','','rx','rx','32213dx','QWEQx','WEx','re3rx','33333x','E12x','ROBERT','We acknowledge the receit of your email with instructions. We confirm that we have assessed\nthe vehicle at Ruaka Town and below are the findings.\n','ddx','ddx','The current market value of the vehicle is estimated at KSH 1,700,000.00\nThe repair estimate is at 10.97% of the market value. We therefore find the vehcle to be repairable\n',1,1,1,'2020-12-19 07:16:58','WEWx','2020-12-01','2020-12-01','QWEQddx','ee32e2x'); /*!40000 ALTER TABLE `assessment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assets` -- DROP TABLE IF EXISTS `assets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `assets` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `category` varchar(50) NOT NULL, `supplier` varchar(50) DEFAULT NULL, `code` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `tax_included` int(10) NOT NULL DEFAULT 16, `buyingprice` varchar(50) NOT NULL, `assetcondition` varchar(50) DEFAULT NULL, `type` varchar(50) DEFAULT NULL, `assetvalue` varchar(50) NOT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `size` varchar(50) DEFAULT NULL, `store` varchar(50) DEFAULT NULL, `serialno` varchar(30) NOT NULL, `imgid` varchar(255) DEFAULT NULL, `override_default_tax` int(1) NOT NULL DEFAULT 0, `is_service` int(1) NOT NULL DEFAULT 0, `deleted` int(1) NOT NULL DEFAULT 0, `qty` decimal(10,2) NOT NULL, `dateposted` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `expdate` date NOT NULL, `orderamount` text NOT NULL, `shortname` varchar(50) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `uom` varchar(20) NOT NULL DEFAULT 'pcs', `producttype` varchar(30) NOT NULL DEFAULT 'Inventory', `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) NOT NULL, `mode` varchar(50) NOT NULL, `depreciationpercent` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL DEFAULT '1', `invoice` varchar(30) NOT NULL, `depreciation` varchar(30) NOT NULL DEFAULT '', `accumulativeaccount` varchar(30) DEFAULT NULL, `accumdepreciation` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assets` -- LOCK TABLES `assets` WRITE; /*!40000 ALTER TABLE `assets` DISABLE KEYS */; /*!40000 ALTER TABLE `assets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assignbranches` -- DROP TABLE IF EXISTS `assignbranches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `assignbranches` ( `id` int(11) NOT NULL AUTO_INCREMENT, `branchid` int(11) DEFAULT NULL, `employeeno` int(11) DEFAULT NULL, `status` int(11) NOT NULL, `description` text DEFAULT NULL COMMENT 'Description of a credit / debit', `userid` int(30) NOT NULL, `createdate` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `updateddate` varchar(40) NOT NULL, PRIMARY KEY (`id`), KEY `contract` (`branchid`), KEY `employee` (`employeeno`), KEY `type` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Add or sub entitlement for employees or contracts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assignbranches` -- LOCK TABLES `assignbranches` WRITE; /*!40000 ALTER TABLE `assignbranches` DISABLE KEYS */; /*!40000 ALTER TABLE `assignbranches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assigntask` -- DROP TABLE IF EXISTS `assigntask`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `assigntask` ( `id` int(30) NOT NULL AUTO_INCREMENT, `branchid` int(11) DEFAULT NULL, `employeeid` int(11) DEFAULT NULL, `status` varchar(11) NOT NULL DEFAULT 'active', `userid` int(30) NOT NULL, `createdate` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `updateddate` varchar(40) NOT NULL, `taskid` int(11) NOT NULL, `mode` varchar(20) NOT NULL, `target` varchar(20) NOT NULL, `period` varchar(20) NOT NULL, `description` text NOT NULL, `fromdate` varchar(30) NOT NULL, `todate` varchar(30) NOT NULL, `year` varchar(20) NOT NULL, `defaulttype` varchar(20) NOT NULL, `tasktype` varchar(10) NOT NULL DEFAULT 'General', PRIMARY KEY (`id`), KEY `contract` (`branchid`), KEY `employee` (`employeeid`), KEY `type` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Add or sub entitlement for employees or contracts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assigntask` -- LOCK TABLES `assigntask` WRITE; /*!40000 ALTER TABLE `assigntask` DISABLE KEYS */; /*!40000 ALTER TABLE `assigntask` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `attendance` -- DROP TABLE IF EXISTS `attendance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `attendance` ( `id` int(100) NOT NULL AUTO_INCREMENT, `idno` varchar(100) NOT NULL, `surname` varchar(100) NOT NULL, `date` datetime NOT NULL, `timein` varchar(100) NOT NULL, `timeout` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `createddate` varchar(100) NOT NULL, `comment` text NOT NULL, `timediffrence` varchar(5) NOT NULL DEFAULT '0', `device` varchar(30) NOT NULL, `totaltime` varchar(20) DEFAULT NULL, `checkoutime` datetime NOT NULL, `status` int(20) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `attendance` -- LOCK TABLES `attendance` WRITE; /*!40000 ALTER TABLE `attendance` DISABLE KEYS */; /*!40000 ALTER TABLE `attendance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `backup` -- DROP TABLE IF EXISTS `backup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `backup` ( `id` int(20) NOT NULL AUTO_INCREMENT, `user` text NOT NULL, `host` text NOT NULL, `password` text NOT NULL, `server` text NOT NULL, `path` text NOT NULL, `status` varchar(40) NOT NULL DEFAULT 'active', `createdat` varchar(40) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL DEFAULT 1, `database` text NOT NULL, `location` varchar(20) NOT NULL DEFAULT 'offline', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `backup` -- LOCK TABLES `backup` WRITE; /*!40000 ALTER TABLE `backup` DISABLE KEYS */; INSERT INTO `backup` VALUES (1,'root','localhost','robisearch2018','D:\\xampp\\mysql\\bin\\','D:/Backup/','active','2020-10-30 20:47:10',1,1,'robipos','offline'); /*!40000 ALTER TABLE `backup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `banks` -- DROP TABLE IF EXISTS `banks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `banks` ( `id` int(50) NOT NULL AUTO_INCREMENT, `expendituretype` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `paiddate` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `bankname` int(11) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `entrydate` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `banks` -- LOCK TABLES `banks` WRITE; /*!40000 ALTER TABLE `banks` DISABLE KEYS */; INSERT INTO `banks` VALUES (1,'','0.00','','2023-03-08 12:22:43','NA',1030,'1','1','2023-03-08 12:43:31','BANK-11678268602'),(2,'','50000','','2023-03-08 12:09:46','ROBISEARCH',1030,'1','1','2023-03-08 12:46:23','BANK-11678268769'),(3,'','30000','','2023-03-08 12:02:47','ROBISEARCH',1010,'1','1','2023-03-08 12:47:17','BANK-11678268822'),(4,'','60000','','2023-03-11 09:53:17','kcb',1030,'1','1','2023-03-11 09:18:22','BANK-11678515473'); /*!40000 ALTER TABLE `banks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `batchlist` -- DROP TABLE IF EXISTS `batchlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `batchlist` ( `id` int(30) NOT NULL AUTO_INCREMENT, `type` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `exactime` varchar(50) NOT NULL, `batchid` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `batchno` int(11) NOT NULL, `description` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `batchlist` -- LOCK TABLES `batchlist` WRITE; /*!40000 ALTER TABLE `batchlist` DISABLE KEYS */; /*!40000 ALTER TABLE `batchlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `beds` -- DROP TABLE IF EXISTS `beds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `beds` ( `id` int(11) NOT NULL AUTO_INCREMENT, `houseno` varchar(100) NOT NULL, `status` varchar(40) NOT NULL DEFAULT 'active', `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `name` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `roomid` varchar(20) NOT NULL, `plotno` varchar(20) DEFAULT NULL, `description` text NOT NULL, `chargeid` int(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `beds` -- LOCK TABLES `beds` WRITE; /*!40000 ALTER TABLE `beds` DISABLE KEYS */; /*!40000 ALTER TABLE `beds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `blog` -- DROP TABLE IF EXISTS `blog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `blog` ( `id` int(50) NOT NULL AUTO_INCREMENT, `companyid` varchar(60) NOT NULL, `title` text NOT NULL, `answers` text NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `invoice` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `blog` -- LOCK TABLES `blog` WRITE; /*!40000 ALTER TABLE `blog` DISABLE KEYS */; /*!40000 ALTER TABLE `blog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `blogs` -- DROP TABLE IF EXISTS `blogs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `blogs` ( `id` int(50) NOT NULL AUTO_INCREMENT, `companyid` varchar(60) NOT NULL, `title` text NOT NULL, `answers` text NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `invoice` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `blogs` -- LOCK TABLES `blogs` WRITE; /*!40000 ALTER TABLE `blogs` DISABLE KEYS */; /*!40000 ALTER TABLE `blogs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bookroom` -- DROP TABLE IF EXISTS `bookroom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `bookroom` ( `id` int(20) NOT NULL AUTO_INCREMENT, `houseno` varchar(60) NOT NULL, `plotno` varchar(50) NOT NULL, `idno` varchar(50) NOT NULL, `tenantid` varchar(40) NOT NULL, `entrydate` varchar(50) NOT NULL, `description` text NOT NULL, `checkoutdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdat` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `amount` varchar(30) NOT NULL, `paymentstatus` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `paymentcode` varchar(30) NOT NULL, `totalamount` decimal(10,2) NOT NULL, `overpayment` decimal(10,2) NOT NULL, `discount` varchar(30) NOT NULL, `transactioncode` varchar(30) NOT NULL, `roomtype` varchar(40) NOT NULL, `number` varchar(10) NOT NULL, `total` varchar(30) NOT NULL, `balance` varchar(30) NOT NULL, `mpesa` varchar(30) NOT NULL, `card` varchar(30) NOT NULL, `bookroom` varchar(20) NOT NULL, `credit` varchar(30) NOT NULL, `voucher` varchar(10) NOT NULL, `cheque` varchar(30) NOT NULL, `points` varchar(30) NOT NULL, `people` varchar(10) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'accommodation', `deposite` decimal(10,2) NOT NULL, `chargeid` int(11) NOT NULL, `booings` int(11) NOT NULL DEFAULT 1, `branchid` int(10) NOT NULL DEFAULT 1, `currency` varchar(20) DEFAULT NULL, `tax1` decimal(10,2) NOT NULL, `tax2` decimal(10,2) NOT NULL, `vatable` decimal(10,2) NOT NULL, `mytable` varchar(20) NOT NULL, `salesperson` varchar(20) DEFAULT NULL, `receiptno` varchar(20) DEFAULT NULL, `discountedtotal` varchar(20) NOT NULL DEFAULT '', `bedid` int(11) DEFAULT 1, `bedname` varchar(100) NOT NULL, `updatedid` int(20) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bookroom` -- LOCK TABLES `bookroom` WRITE; /*!40000 ALTER TABLE `bookroom` DISABLE KEYS */; /*!40000 ALTER TABLE `bookroom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `branch` -- DROP TABLE IF EXISTS `branch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `branch` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `branch` -- LOCK TABLES `branch` WRITE; /*!40000 ALTER TABLE `branch` DISABLE KEYS */; INSERT INTO `branch` VALUES (1,'Counter','Counter','2022-09-14 06:30:04','active','1','','1','Counter'); /*!40000 ALTER TABLE `branch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `brands` -- DROP TABLE IF EXISTS `brands`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `brands` ( `id` int(50) NOT NULL AUTO_INCREMENT, `companyid` varchar(60) NOT NULL, `title` text NOT NULL, `description` text NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `website` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `invoice` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `brands` -- LOCK TABLES `brands` WRITE; /*!40000 ALTER TABLE `brands` DISABLE KEYS */; INSERT INTO `brands` VALUES (1,'1','JKUAT','Our partner in ICT Field','karenmakena3@gmail.com','0702400635','','http://www.jkuat.ac.ke/','2016-12-13 06:47:33am','',0),(2,'1','SimbaNet','Our partner in in Nikague App','','','','https://www.simbanet.net/','','',0); /*!40000 ALTER TABLE `brands` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `budget` -- DROP TABLE IF EXISTS `budget`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `budget` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `createdate` varchar(20) NOT NULL, `expamount` decimal(10,2) NOT NULL, `usedamount` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `year` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `branch` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `description` text NOT NULL, `todate` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `budget` -- LOCK TABLES `budget` WRITE; /*!40000 ALTER TABLE `budget` DISABLE KEYS */; /*!40000 ALTER TABLE `budget` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bulkdispatch` -- DROP TABLE IF EXISTS `bulkdispatch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `bulkdispatch` ( `id` int(11) NOT NULL AUTO_INCREMENT, `branchid` varchar(100) NOT NULL, `invoice` varchar(100) NOT NULL, `frombranch` varchar(50) NOT NULL, `remarks` varchar(100) NOT NULL, `enddate` varchar(50) NOT NULL, `userid` varchar(20) NOT NULL, `companyid` varchar(20) NOT NULL, `createdate` varchar(50) NOT NULL, `description` text NOT NULL, `name` varchar(50) NOT NULL, `approvedby` int(20) NOT NULL, `dateapproved` int(20) NOT NULL, `tobranch` varchar(20) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'new', `startdate` varchar(20) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'Transfer', `category` varchar(20) NOT NULL DEFAULT 'products', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bulkdispatch` -- LOCK TABLES `bulkdispatch` WRITE; /*!40000 ALTER TABLE `bulkdispatch` DISABLE KEYS */; INSERT INTO `bulkdispatch` VALUES (1,'1','11683698273','Main','','','1','1','2023-05-10 08:58:39','KITCHEN','d',0,0,'1','product','2023-05-11','Transfer','Customer'); /*!40000 ALTER TABLE `bulkdispatch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bulkhouse` -- DROP TABLE IF EXISTS `bulkhouse`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `bulkhouse` ( `id` int(40) NOT NULL AUTO_INCREMENT, `plotno` varchar(60) NOT NULL, `houseno` varchar(40) NOT NULL, `tenantid` varchar(100) NOT NULL, `amount` decimal(10,2) NOT NULL, `type` varchar(100) NOT NULL, `description` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `idno` varchar(100) NOT NULL, `createdat` datetime NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `duedate` varchar(40) NOT NULL, `paymentstatus` varchar(40) NOT NULL, `paymentmode` varchar(40) NOT NULL, `paymentcode` varchar(100) NOT NULL, `transactioncode` varchar(100) NOT NULL, `approvedby` varchar(60) NOT NULL, `approvaldate` varchar(60) NOT NULL, `phone` varchar(40) NOT NULL, `roomtype` decimal(10,2) NOT NULL, `balance` varchar(40) NOT NULL DEFAULT '0', `companyid` varchar(100) NOT NULL DEFAULT '1', `exactdate` varchar(50) NOT NULL, `vat` decimal(10,2) NOT NULL, `paymentdate` varchar(30) NOT NULL, `name` text NOT NULL, `chargeid` varchar(30) NOT NULL, `branchid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bulkhouse` -- LOCK TABLES `bulkhouse` WRITE; /*!40000 ALTER TABLE `bulkhouse` DISABLE KEYS */; /*!40000 ALTER TABLE `bulkhouse` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bulkreservation` -- DROP TABLE IF EXISTS `bulkreservation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `bulkreservation` ( `id` int(20) NOT NULL AUTO_INCREMENT, `houseno` varchar(60) NOT NULL, `plotno` varchar(50) NOT NULL, `idno` varchar(50) NOT NULL, `tenantid` varchar(40) NOT NULL, `entrydate` varchar(50) NOT NULL, `description` text NOT NULL, `checkoutdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdat` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `amount` varchar(30) NOT NULL, `paymentstatus` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `paymentcode` varchar(30) NOT NULL, `totalamount` decimal(10,2) NOT NULL, `overpayment` decimal(10,2) NOT NULL, `discount` varchar(30) NOT NULL, `transactioncode` varchar(30) NOT NULL, `roomtype` varchar(40) NOT NULL, `number` varchar(10) NOT NULL, `total` varchar(30) NOT NULL, `balance` varchar(30) NOT NULL, `mpesa` varchar(30) NOT NULL, `card` varchar(30) NOT NULL, `bookroom` varchar(20) NOT NULL, `credit` varchar(30) NOT NULL, `voucher` varchar(10) NOT NULL, `cheque` varchar(30) NOT NULL, `points` varchar(30) NOT NULL, `people` varchar(10) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'accommodation', `deposite` decimal(10,2) NOT NULL, `chargeid` int(11) NOT NULL, `booings` int(11) NOT NULL DEFAULT 1, `branchid` int(10) NOT NULL DEFAULT 1, `currency` varchar(20) DEFAULT NULL, `tax1` decimal(10,2) NOT NULL, `tax2` decimal(10,2) NOT NULL, `vatable` decimal(10,2) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bulkreservation` -- LOCK TABLES `bulkreservation` WRITE; /*!40000 ALTER TABLE `bulkreservation` DISABLE KEYS */; /*!40000 ALTER TABLE `bulkreservation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `callcenter` -- DROP TABLE IF EXISTS `callcenter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `callcenter` ( `id` int(11) NOT NULL AUTO_INCREMENT, `subject` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(30) NOT NULL, `messageid` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `updateddate` varchar(30) NOT NULL, `callername` text NOT NULL, `receiver` text NOT NULL, `calldate` varchar(30) NOT NULL, `phone` varchar(50) NOT NULL, `media` text NOT NULL, `email` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `callcenter` -- LOCK TABLES `callcenter` WRITE; /*!40000 ALTER TABLE `callcenter` DISABLE KEYS */; /*!40000 ALTER TABLE `callcenter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `category` -- DROP TABLE IF EXISTS `category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `category` -- LOCK TABLES `category` WRITE; /*!40000 ALTER TABLE `category` DISABLE KEYS */; INSERT INTO `category` VALUES (1,'MAIN CATEGORY','','','active','1','','1'),(2,'OTHERS','','2021-08-23 03:04:54pm','active','1','','1'); /*!40000 ALTER TABLE `category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `charges` -- DROP TABLE IF EXISTS `charges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `charges` ( `id` int(20) NOT NULL AUTO_INCREMENT, `type` varchar(40) NOT NULL, `description` text NOT NULL, `status` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `priority` int(11) NOT NULL, `companyid` int(5) NOT NULL DEFAULT 1, `branchid` int(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `charges` -- LOCK TABLES `charges` WRITE; /*!40000 ALTER TABLE `charges` DISABLE KEYS */; INSERT INTO `charges` VALUES (1,'RENT','','','2018-05-30 14:28:37','','',0,1,NULL),(2,'DEPOSIT','','','2018-05-30 14:27:39','','',0,1,NULL),(3,'WATER/POWER DEPOSIT','','','2018-05-30 14:28:49','','',0,1,NULL),(4,'PENALTY','','','2018-06-25 13:38:03','','',0,1,NULL),(5,'WATER','','','2018-06-27 11:33:55','','',0,1,NULL),(6,'PARTIAL PAYMENT','','','2018-06-29 16:22:30','','',0,1,NULL),(7,'GARBAGE','','','2018-07-03 16:56:46','','',0,1,NULL),(8,'DAMAGES','','','2018-07-17 12:30:05','','',0,1,NULL),(9,'AGREEMENT FORM','','','2018-07-23 10:21:11','','',0,1,NULL),(10,'POWER','','','2018-08-04 10:42:10','','',0,1,NULL),(11,'SEWAGE','SEWAGE','','2020-05-27 16:23:21','','',2,1,NULL),(12,'BED ONLY','','','2020-05-28 15:38:20','','',1,1,NULL),(13,'BED AND BREAKFAST','','','2020-05-28 15:38:39','','',2,1,NULL),(14,'PROJECTOR','','','2023-04-28 08:21:52','','',0,1,NULL),(15,'LAUNDRY','LAUNDRY','','2023-04-28 08:22:20','','',0,1,NULL),(16,'ROOM TRANSFER','200','','2023-04-30 06:16:29','','',2,1,NULL),(17,'BED 1','0','','2023-05-11 11:10:44','','',1,1,NULL),(18,'BED 2','0','','2023-05-11 11:10:51','','',0,1,NULL); /*!40000 ALTER TABLE `charges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cheque` -- DROP TABLE IF EXISTS `cheque`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `cheque` ( `id` int(50) NOT NULL AUTO_INCREMENT, `expendituretype` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `paiddate` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `bankname` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `entrydate` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, `business` varchar(100) NOT NULL, `type` varchar(15) NOT NULL, `chequenumber` varchar(70) NOT NULL, `exactdate` varchar(30) NOT NULL, `status` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cheque` -- LOCK TABLES `cheque` WRITE; /*!40000 ALTER TABLE `cheque` DISABLE KEYS */; /*!40000 ALTER TABLE `cheque` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `collection` -- DROP TABLE IF EXISTS `collection`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `collection` ( `id` int(11) NOT NULL AUTO_INCREMENT, `paiddate` varchar(100) NOT NULL, `invoice` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `remarks` varchar(100) NOT NULL, `balance` varchar(30) NOT NULL, `userid` varchar(20) NOT NULL, `companyid` varchar(20) NOT NULL, `paymentmethodes` int(10) NOT NULL, `createdate` varchar(50) NOT NULL, `name` varchar(30) NOT NULL DEFAULT 'payment', `transactioncode` varchar(50) NOT NULL, `supplier` int(11) DEFAULT NULL, `branchid` int(11) DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `collection` -- LOCK TABLES `collection` WRITE; /*!40000 ALTER TABLE `collection` DISABLE KEYS */; INSERT INTO `collection` VALUES (1,'2023-05-26 14:56:29','11685102047','3.49','','171.13','1','1',1030,'2023-05-26 14:57:22','paid','',112,1),(2,'2023-05-26 14:57:22','11685102047','171.13','','0','1','1',1030,'2023-05-26 15:02:20','paid','',112,1); /*!40000 ALTER TABLE `collection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `commission` -- DROP TABLE IF EXISTS `commission`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `commission` ( `id` int(11) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `name` varchar(50) NOT NULL, `datesold` varchar(40) NOT NULL, `sellingprice` decimal(10,2) NOT NULL, `profit` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL, `code` varchar(50) NOT NULL, `paymentdate` varchar(50) NOT NULL, `rate` varchar(30) NOT NULL, `customer` varchar(30) NOT NULL, `customerphone` varchar(50) NOT NULL, `customeremail` varchar(50) NOT NULL, `customerlocation` varchar(50) NOT NULL, `description` text NOT NULL, `dateposted` varchar(40) NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'New', `paid` decimal(10,2) NOT NULL, `expcommission` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `commission` -- LOCK TABLES `commission` WRITE; /*!40000 ALTER TABLE `commission` DISABLE KEYS */; /*!40000 ALTER TABLE `commission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `complain` -- DROP TABLE IF EXISTS `complain`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `complain` ( `id` int(11) NOT NULL AUTO_INCREMENT, `subject` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) DEFAULT '1', `type` varchar(30) NOT NULL, `messageid` varchar(30) DEFAULT NULL, `updatedby` int(11) NOT NULL, `updateddate` varchar(30) NOT NULL, `serial` varchar(200) NOT NULL, `name` text NOT NULL, `invoice` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `complain` -- LOCK TABLES `complain` WRITE; /*!40000 ALTER TABLE `complain` DISABLE KEYS */; /*!40000 ALTER TABLE `complain` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `complaindata` -- DROP TABLE IF EXISTS `complaindata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `complaindata` ( `id` int(30) NOT NULL, `description` text NOT NULL, `date` varchar(50) NOT NULL, `taskid` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'newstock', `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `complaindata` -- LOCK TABLES `complaindata` WRITE; /*!40000 ALTER TABLE `complaindata` DISABLE KEYS */; /*!40000 ALTER TABLE `complaindata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `computers` -- DROP TABLE IF EXISTS `computers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `computers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, `computerno` text NOT NULL, `fromdate` varchar(30) NOT NULL, `todate` varchar(30) DEFAULT NULL, `receiptno` varchar(50) NOT NULL, `duration` int(11) NOT NULL, `phone` varchar(20) DEFAULT NULL, `extensiontype` varchar(30) NOT NULL, `computernostatus` varchar(20) NOT NULL DEFAULT 'new', `computernodate` varchar(20) NOT NULL, `computernouserdata` text NOT NULL, `updatedid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `computers` -- LOCK TABLES `computers` WRITE; /*!40000 ALTER TABLE `computers` DISABLE KEYS */; INSERT INTO `computers` VALUES (1,'ROBISEARCH LTD','e44','2023-02-13 07:08:17','Closed','1','2023-02-13 07:13:34','1','3','B0-22-7A-ED-77-F6','2023-02-24','2023-02-10','',0,NULL,'New Installation','new','','',1); /*!40000 ALTER TABLE `computers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `constants` -- DROP TABLE IF EXISTS `constants`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `constants` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `amount` decimal(10,2) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `category` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `constants` -- LOCK TABLES `constants` WRITE; /*!40000 ALTER TABLE `constants` DISABLE KEYS */; INSERT INTO `constants` VALUES (1,'Relief',2400.00,'active',1,1,'Relief'),(2,'Pension',200.00,'active',1,1,'Pension'),(3,'NSSF',200.00,'oldrate',1,1,'NSSF'),(4,'Minimum Paye',24000.00,'active',1,1,'MinimumPaye'); /*!40000 ALTER TABLE `constants` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contact` -- DROP TABLE IF EXISTS `contact`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `contact` ( `id` int(50) NOT NULL AUTO_INCREMENT, `country` varchar(60) NOT NULL, `firstname` varchar(50) NOT NULL, `lastname` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contact` -- LOCK TABLES `contact` WRITE; /*!40000 ALTER TABLE `contact` DISABLE KEYS */; /*!40000 ALTER TABLE `contact` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contactdetails` -- DROP TABLE IF EXISTS `contactdetails`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `contactdetails` ( `id` int(50) NOT NULL AUTO_INCREMENT, `title` text NOT NULL, `website` text NOT NULL, `contactdetails` text NOT NULL, `email` text NOT NULL, `phone` text NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `companyid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `facebook` text NOT NULL, `twitter` text NOT NULL, `instagram` text NOT NULL, `linkedin` text NOT NULL, `youtube` text NOT NULL, `location` text NOT NULL, `aboutustitle` text NOT NULL, `aboutus` text NOT NULL, `whyustitle` text NOT NULL, `whyus` text NOT NULL, `whatsapp` text NOT NULL, `websites` text NOT NULL, `otherlinks` text NOT NULL, `termstitle` text NOT NULL, `terms` text NOT NULL, `deliverytitle` text NOT NULL, `delivery` text NOT NULL, `privacytitle` text NOT NULL, `privacy` text NOT NULL, `branches` text NOT NULL, `telegram` text NOT NULL, `otherlinktitle` text NOT NULL, `aboutuslogo` text NOT NULL, `businessname` text NOT NULL, `business` varchar(30) NOT NULL, `vision` text NOT NULL, `mission` text NOT NULL, `corevalues` text NOT NULL, `ourpromise` text NOT NULL, `returnpolicy` text NOT NULL, `workinghours` text NOT NULL, `updatedat` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `careertitle` text NOT NULL, `career` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contactdetails` -- LOCK TABLES `contactdetails` WRITE; /*!40000 ALTER TABLE `contactdetails` DISABLE KEYS */; INSERT INTO `contactdetails` VALUES (1,'','https://robisearch.com/','kinoti','karenmakena3@gmail.com','0754413386, 0716413386,0780655987','','We have from 01/07/2020 to 31/8/2010','2016-12-13 06:47:33am','1',1,0,'https://web.facebook.com/Robiearch/','https://twitter.com/robisearch','https://www.linkedin.com/in/robert-manyala-995177122/','https://www.linkedin.com/in/robert-manyala-995177122/','https://www.youtube.com/channel/UC9Z1YpMKlCgwqn4H1nT1hLg/featured','Nairobi -Nara Fourth Floor,</br> Kisii-Oyondi Building','<b>About Us </b>','Robisearch Ltd is an ICT company that begun in 2011 as a result of innovations that transform lives globally. We are a member of the Nairobi Chambers (KNCCI) organization.We have great experience in dealing with customers having handled over 500 clients in all Kenyan towns such as Juja, Nairobi, Mombasa and Kisumu as well as beyond the country.We provide our clients with adequate support thus providing more value to our customers .Our systems are customized to fit a clients particular need.We are the company behind various innovations like…..</br>','Why Us ','We have a well-organized support and maintenance structure that we will sign with you as a Service Level Agreement that guarantees you;','https://api.whatsapp.com/send?phone=254716413386&text=&source=&data=&app_absent=','','POS.robisearch.com/','Terms and Condition ','karenmakena3@gmail.com','Delivery Information','Shipping Agents and Times</br>\r\n\r\nOur products ordered before 3pm are shipped within 24 Hours using the following carriers, Umash Bus Sacco, Easy Coach Sacco, North Rift Sacco or any other of your choice. Orders Placed in later hours are shipped on the following days</br>\r\nZipping Zones and Costs</br>\r\n\r\nOur shipping Zones are categorized into Coast Region, Rift Valley Region, Nairobi Region, North Easter Region and Nyanza Region. All orders to be collected at our shop are not chargeable any shipping cost. However all the other places we charge shipping cost depending with what our shipping agents charges; basically a shipping cost of between Ksh300- 400 applies except for regions within Nairobi County where a fee of roughly Ksh 150 – 200 applies. All shipping cost is subject to change without any notice.</br>','Privacy Details','PRIVACY POLICY</br>\r\n\r\nThis Privacy Policy explains what personal data is collected when you use the jiji.ng any jiji.ng mobile application, or website (“Jiji”, \"Website\", or \"App\") and the services provided through it (together with the Website and the App, the “Service”), how such personal data will be used, shared.</br>\r\n\r\nBY USING THE SERVICE, YOU PROMISE US THAT (I) YOU HAVE READ, UNDERSTOOD AND AGREED TO THIS PRIVACY POLICY, AND (II) YOU ARE OVER 16 YEARS OF AGE (OR HAVE HAD YOUR PARENT OR GUARDIAN READ AND AGREED TO THIS PRIVACY POLICY FOR YOU). If you do not agree or you are unable to make this promise, you must not use the Service. In such case, you must contact the support team via online chat or email to request deletion of your account and data.</br>\r\n\r\nProcess in respect of personal data, means to collect, store, and disclose to others.</br>\r\n\r\nTABLE OF CONTENTS</br>\r\n\r\n1. PERSONAL DATA CONTROLLER</br>\r\n\r\n2. CATEGORIES OF PERSONAL DATA WE COLLECT</br>\r\n\r\n3. FOR WHAT PURPOSES WE PROCESS PERSONAL DATA</br>\r\n\r\n4. AUTHORISED REQUIREMENT FOR PROCESSING YOUR PERSONAL DATA</br>\r\n\r\n5. WHO WE SHARE YOUR PERSONAL DATA WITH\r\n</br>\r\n6. HOW YOU CAN EXERCISE YOUR PRIVACY RIGHTS</br>\r\n\r\n7. AGE LIMITATION</br>\r\n\r\n8. CHANGES TO THIS PRIVACY POLICY</br>\r\n\r\n9. DATA RETENTION\r\n</br>\r\n10. CONTACT US</br>','Juja, Kisii','https://api.whatsapp.com/send?phone=254716413386&text=&source=&data=&app_absent=','POS LINK','2147483647','Robisearch is an ICT business organization that deals ICT based solutions. We have been in the industry since 2011. Our main activity is software developement. ','ROBISEARCH LTD',' Transforming the world through innovation',' To be the best ICT company offering innovate services globally.','nnovation, Integrity, hardwork, commitment, honesty, equality, justice, fairness, love.','To Give the best services at all times','Return Policy</br>\r\n\r\nAll defined terms used below shall have the meanings set forth in our Terms and Conditions. If you are not happy with your purchase, we will accept a return of a unused product within 7 days. Once we receive the returned item Breejoz Baby Shop & Maternity Collections will then give a full refund (excluding shipping as we are unable to refund the initial shipping cost of your order). Please allow 1-2 weeks for your return to be processed.</br>',' WORKING HOURS</br>\r\n\r\n Mon 8:00am - 6:00pm</br>\r\n Tue 8:00am - 6:00pm</br>\r\n Wed 8:00am - 6:00pm</br>\r\n Thur 8:00am - 6:00pm</br>\r\n Fri 8:00am - 6:00pm</br>\r\n Sat 8:00am - 6:00pm</br>\r\n\r\n','2020-07-04 08:44:24',1,'Job Vacancy','Join our sales team as online marketers'); /*!40000 ALTER TABLE `contactdetails` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `county` -- DROP TABLE IF EXISTS `county`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `county` ( `id` int(40) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `name` varchar(255) DEFAULT NULL, `provincecode` varchar(50) NOT NULL, `description` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `county` -- LOCK TABLES `county` WRITE; /*!40000 ALTER TABLE `county` DISABLE KEYS */; INSERT INTO `county` VALUES (1,'1','Mombasa','2','Mombasa','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'2','Kwale','2','Kwale','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'3','Kilifi','2','Kilifi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'4','Tana River','2','Tana River','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'5','Lamu','2','Lamu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'6','Taita-Taveta','2','Taita-Taveta','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'7','Garissa','5','Garissa','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'8','Wajir','5','Wajir','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'9','Mandera','5','Mandera','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'10','Marsabit','3','Marsabit','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'11','Isiolo','3','Isiolo','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'12','Meru','3','Meru','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'13','Tharaka-Nithi','3','Tharaka-Nithi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'14','Embu','3','Embu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'15','Kitui','3','Kitui','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'16','Machakos','3','Machakos','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'17','Makueni','3','Makueni','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'18','Nyandarua','1','Nyandarua','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'19','Nyeri','1','Nyeri','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'20','Kirinyaga','1','Kirinyaga','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'21','Murang\'a','1','Murang\'a','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'22','Kiambu','1','Kiambu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'23','Turkana','7','Turkana','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'24','West Pokot','7','West Pokot','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'25','Samburu','7','Samburu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'26','Trans-Nzoia','7','Trans-Nzoia','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'27','Uasin Gishu','7','Uasin Gishu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'28','Elgeyo-Marakwet','7','Elgeyo-Marakwet','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'29','Nandi','7','Nandi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'30','Baringo','7','Baringo','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'31','Laikipia','7','Laikipia','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'32','Nakuru','7','Nakuru','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'33','Narok','7','Narok','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'34','Kajiado','7','Kajiado','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'35','Kericho','7','Kericho','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'36','Bomet','7','Bomet','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'37','Kakamega','8','Kakamega','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'38','Vihiga','8','Vihiga','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'39','Bungoma','8','Bungoma','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,'40','Busia','8','Busia','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'41','Siaya','6','Siaya','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,'42','Kisumu','6','Kisumu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,'43','Homa Bay','6','Homa Bay','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,'44','Migori','6','Migori','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,'45','Kisii','6','Kisii','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'46','Nyamira','6','Nyamira','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'47','Nairobi','4','Nairobi','0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `county` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `currency` -- DROP TABLE IF EXISTS `currency`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `currency` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(20) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `currency` -- LOCK TABLES `currency` WRITE; /*!40000 ALTER TABLE `currency` DISABLE KEYS */; INSERT INTO `currency` VALUES (1,'Ksh','','2018-03-06 19:44:07pm','active','1','','1',1),(2,'URO','','','active','','','1',1),(3,'USD','','','active','','','1',1),(4,'ssp','South Sudanese pound','2021-05-15 04:53:45','active','1','','1',1); /*!40000 ALTER TABLE `currency` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customedproductcategory` -- DROP TABLE IF EXISTS `customedproductcategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `customedproductcategory` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `branchid` varchar(30) NOT NULL, `commission` varchar(20) NOT NULL DEFAULT '0', `shipping` varchar(20) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'Percentage', `imgid` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customedproductcategory` -- LOCK TABLES `customedproductcategory` WRITE; /*!40000 ALTER TABLE `customedproductcategory` DISABLE KEYS */; /*!40000 ALTER TABLE `customedproductcategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer` -- DROP TABLE IF EXISTS `customer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `customer` ( `id` int(11) NOT NULL AUTO_INCREMENT, `firstname` varchar(100) NOT NULL, `surname` varchar(50) NOT NULL, `username` varchar(100) NOT NULL, `phone` varchar(100) NOT NULL, `business` varchar(50) NOT NULL, `county` varchar(50) NOT NULL, `createddate` varchar(50) NOT NULL, `password` varchar(30) NOT NULL, `website` varchar(100) NOT NULL, `dob` varchar(50) NOT NULL, `idno` varchar(50) NOT NULL, `description` text NOT NULL, `box` varchar(50) NOT NULL, `source` varchar(50) DEFAULT NULL, `town` varchar(50) NOT NULL, `country` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `apiaccount_id` varchar(30) NOT NULL DEFAULT '1', `recoverpassword` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'new', `companyid` int(10) NOT NULL DEFAULT 1, `service` text NOT NULL, `usertype` varchar(50) DEFAULT NULL, `smstype` int(10) NOT NULL DEFAULT 2, `refer` text NOT NULL, `email` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer` -- LOCK TABLES `customer` WRITE; /*!40000 ALTER TABLE `customer` DISABLE KEYS */; /*!40000 ALTER TABLE `customer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customerfiscalyear` -- DROP TABLE IF EXISTS `customerfiscalyear`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `customerfiscalyear` ( `id` int(40) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `startdate` datetime NOT NULL, `enddate` datetime NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `opening` decimal(10,2) NOT NULL, `closing` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, `number` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `category` varchar(20) NOT NULL DEFAULT 'customer', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customerfiscalyear` -- LOCK TABLES `customerfiscalyear` WRITE; /*!40000 ALTER TABLE `customerfiscalyear` DISABLE KEYS */; INSERT INTO `customerfiscalyear` VALUES (1,'','active','2022-00-00 00:00:00','2021-00-00 00:00:00',1,1,'\r\n<div style=\"border:1px solid',3333.00,44444.00,0,'1',0,'member'); /*!40000 ALTER TABLE `customerfiscalyear` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customersupplierbalance` -- DROP TABLE IF EXISTS `customersupplierbalance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `customersupplierbalance` ( `id` int(40) NOT NULL AUTO_INCREMENT, `description` varchar(60) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `startdate` datetime NOT NULL, `enddate` datetime NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `opening` decimal(10,2) NOT NULL, `closing` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, `number` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `customerid` int(11) NOT NULL, `type` varchar(20) NOT NULL DEFAULT 'customer', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customersupplierbalance` -- LOCK TABLES `customersupplierbalance` WRITE; /*!40000 ALTER TABLE `customersupplierbalance` DISABLE KEYS */; /*!40000 ALTER TABLE `customersupplierbalance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dailycharges` -- DROP TABLE IF EXISTS `dailycharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `dailycharges` ( `myinvoice` varchar(50) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` varchar(10) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` text NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` decimal(10,2) NOT NULL, `sprice` varchar(100) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL DEFAULT '16', `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `uom` varchar(30) NOT NULL, `sales` varchar(30) NOT NULL, `updatedat` varchar(50) NOT NULL, `updatedby` varchar(10) NOT NULL, `taxindicator` varchar(10) NOT NULL DEFAULT 'yes', `serial` varchar(50) DEFAULT NULL, `tax2` varchar(20) NOT NULL, `discountype` varchar(20) NOT NULL, `discountvalue` varchar(20) NOT NULL, `vattype` varchar(20) NOT NULL, `taxable` decimal(10,2) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `stockbefore` varchar(30) NOT NULL, `stockafter` varchar(30) NOT NULL, `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `stock` varchar(20) NOT NULL DEFAULT 'branch', `producttype` varchar(30) NOT NULL, `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) DEFAULT NULL, `start` varchar(20) NOT NULL, `close` varchar(20) NOT NULL, `transactioncode` varchar(50) NOT NULL, `name` varchar(20) NOT NULL, `chargeid` varchar(20) NOT NULL, `plotno` varchar(20) NOT NULL, `houseno` varchar(20) NOT NULL, `cost` varchar(20) NOT NULL, `createdat` varchar(30) NOT NULL, `discountedtotal` varchar(20) DEFAULT NULL, `idno` varchar(20) DEFAULT NULL, `phone` varchar(50) DEFAULT NULL, `checkin` varchar(30) DEFAULT NULL, `checkout` varchar(30) DEFAULT NULL, `roomtype` varchar(20) DEFAULT NULL, `bedid` varchar(20) DEFAULT NULL, `bedname` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `myinvoice` (`myinvoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dailycharges` -- LOCK TABLES `dailycharges` WRITE; /*!40000 ALTER TABLE `dailycharges` DISABLE KEYS */; /*!40000 ALTER TABLE `dailycharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dailycollections` -- DROP TABLE IF EXISTS `dailycollections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `dailycollections` ( `id` int(40) NOT NULL AUTO_INCREMENT, `idno` varchar(50) NOT NULL, `description` text NOT NULL, `userid` varchar(50) NOT NULL, `createdat` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `amount` varchar(30) NOT NULL, `name` varchar(30) NOT NULL, `total` varchar(30) NOT NULL, `balance` varchar(30) NOT NULL, `mpesa` varchar(30) NOT NULL, `card` varchar(30) NOT NULL, `credit` varchar(30) NOT NULL, `voucher` varchar(10) NOT NULL, `cheque` varchar(30) NOT NULL, `points` varchar(30) NOT NULL, `controller` varchar(30) NOT NULL, `expense` varchar(30) NOT NULL, `cash` varchar(30) NOT NULL, `discount` varchar(30) NOT NULL, `entrydate` varchar(30) NOT NULL, `contact` varchar(30) NOT NULL, `transactioncode` varchar(30) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `tax` decimal(10,2) NOT NULL, `sort` decimal(10,2) NOT NULL, `sortmoney` decimal(10,2) NOT NULL, `transactiondate` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, `openingbalance` decimal(10,2) NOT NULL, `closingbalance` decimal(10,2) NOT NULL, `cashcollected` decimal(10,2) NOT NULL, `totalsales` decimal(10,2) NOT NULL, `debt` decimal(10,0) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dailycollections` -- LOCK TABLES `dailycollections` WRITE; /*!40000 ALTER TABLE `dailycollections` DISABLE KEYS */; INSERT INTO `dailycollections` VALUES (1,'','','1','2023-05-10 15:40:36','','1','','Admin','','',' 0','0','110','0','0','0','rrrr','','0','','2023-05-09 23:59:00','','','active',0.00,0.00,0.00,'',1,0.00,300.00,0.00,0.00,0); /*!40000 ALTER TABLE `dailycollections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dailytasks` -- DROP TABLE IF EXISTS `dailytasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `dailytasks` ( `id` int(30) NOT NULL AUTO_INCREMENT, `branchid` int(11) DEFAULT NULL, `status` varchar(11) NOT NULL DEFAULT 'active', `userid` int(30) NOT NULL, `createdate` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `updateddate` varchar(40) NOT NULL, `taskid` int(11) NOT NULL, `achieved` varchar(20) NOT NULL, `period` varchar(20) NOT NULL, `description` text NOT NULL, `exactdate` varchar(30) NOT NULL, `day` varchar(20) NOT NULL, `comment` text NOT NULL, `updatedby` int(11) NOT NULL, `mykey` varchar(50) NOT NULL, `approval` varchar(20) NOT NULL, PRIMARY KEY (`id`), KEY `contract` (`branchid`), KEY `type` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Add or sub entitlement for employees or contracts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dailytasks` -- LOCK TABLES `dailytasks` WRITE; /*!40000 ALTER TABLE `dailytasks` DISABLE KEYS */; /*!40000 ALTER TABLE `dailytasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `damages` -- DROP TABLE IF EXISTS `damages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `damages` ( `id` int(10) NOT NULL AUTO_INCREMENT, `expendituretype` varchar(50) NOT NULL, `user` varchar(50) NOT NULL, `qty` varchar(50) NOT NULL, `details` text NOT NULL, `datedamaged` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `product` text NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `entrydate` varchar(50) NOT NULL, `supplier` varchar(30) NOT NULL, `original` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `branchid` int(5) DEFAULT 1, `invoice` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `damages` -- LOCK TABLES `damages` WRITE; /*!40000 ALTER TABLE `damages` DISABLE KEYS */; /*!40000 ALTER TABLE `damages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `deals` -- DROP TABLE IF EXISTS `deals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `deals` ( `id` int(50) NOT NULL AUTO_INCREMENT, `owner` varchar(100) NOT NULL, `title` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `nextstep` text NOT NULL, `contactname` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `fromdate` datetime NOT NULL, `todate` datetime NOT NULL, `probability` varchar(100) NOT NULL, `expectedrevenue` varchar(100) NOT NULL, `stage` varchar(100) NOT NULL, `status` varchar(100) NOT NULL DEFAULT 'active', `comments` text NOT NULL, `userid` varchar(100) NOT NULL, `dateposted` datetime NOT NULL, `companyid` varchar(100) NOT NULL, `allsteps` text NOT NULL, `dealowner` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `deals` -- LOCK TABLES `deals` WRITE; /*!40000 ALTER TABLE `deals` DISABLE KEYS */; /*!40000 ALTER TABLE `deals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dealsfeedback` -- DROP TABLE IF EXISTS `dealsfeedback`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `dealsfeedback` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dealsfeedback` -- LOCK TABLES `dealsfeedback` WRITE; /*!40000 ALTER TABLE `dealsfeedback` DISABLE KEYS */; /*!40000 ALTER TABLE `dealsfeedback` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `debitcredit` -- DROP TABLE IF EXISTS `debitcredit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `debitcredit` ( `id` int(30) NOT NULL AUTO_INCREMENT, `account` varchar(50) NOT NULL, `code` varchar(50) NOT NULL, `crateddate` datetime NOT NULL, `debit` decimal(10,2) DEFAULT NULL, `credit` decimal(10,2) DEFAULT NULL, `balance` varchar(20) NOT NULL, `userid` varchar(20) NOT NULL, `companyid` varchar(20) NOT NULL, `description` text NOT NULL, `branch` varchar(30) NOT NULL, `supplier` varchar(30) NOT NULL, `type` varchar(30) NOT NULL, `refno` varchar(30) NOT NULL, `mode` varchar(50) NOT NULL, `confirm` varchar(30) NOT NULL DEFAULT 'No', `updatedat` varchar(30) DEFAULT NULL, `updatedby` int(11) DEFAULT NULL, `transactioncode` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `debitcredit` -- LOCK TABLES `debitcredit` WRITE; /*!40000 ALTER TABLE `debitcredit` DISABLE KEYS */; INSERT INTO `debitcredit` VALUES (1,'1050','11685101258','2023-05-26 14:41:03',1000.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851012690108222','No',NULL,NULL,''),(2,'1110','11685101258','2023-05-26 14:41:03',NULL,126.60,'','1','1','Inventory sold','1','','sales','5001872','','No',NULL,NULL,''),(3,'5500','11685101258','2023-05-26 14:41:03',126.60,NULL,'','1','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4,'4000','11685101258','2023-05-26 14:41:03',NULL,1000.00,'','1','1','Good sold','1','','sales','5001872','','No',NULL,NULL,''),(5,'1110','11685101752','2023-05-26 14:49:12',1266.00,NULL,'','1','1','Inventory Purchased','1','116','Purchases','5001872','','No',NULL,NULL,''),(6,'2130','11685101752','2023-05-26 14:49:12',NULL,1266.00,'','1','1','Account payable for inventory','1','116','Purchases','','','No',NULL,NULL,''),(7,'1110','11685101992','2023-05-26 14:53:12',1266.00,NULL,'','1','1','Inventory Purchased','1','109','Purchases','5001872','','No',NULL,NULL,''),(8,'2130','11685101992','2023-05-26 14:53:12',NULL,1266.00,'','1','1','Account payable for inventory','1','109','Purchases','','','No',NULL,NULL,''),(9,'1110','11685102047','2023-05-26 14:54:07',1266.00,NULL,'','1','1','Inventory Purchased','1','112','Purchases','5001872','','No',NULL,NULL,''),(10,'2130','11685102047','2023-05-26 14:54:07',NULL,1266.00,'','1','1','Account payable for inventory','1','112','Purchases','','','No',NULL,NULL,''),(11,'1030','11685102047','2023-05-26 14:56:29',NULL,3.49,'','1','1','','1','112','supplier payment','','','No',NULL,NULL,''),(12,'2130','11685102047','2023-05-26 14:56:29',3.49,NULL,'','1','1','','1','112','supplier payment','','','No',NULL,NULL,''),(13,'1030','11685102047','2023-05-26 14:57:22',NULL,171.13,'','1','1','','1','112','supplier payment','','','No',NULL,NULL,''),(14,'2130','11685102047','2023-05-26 14:57:22',171.13,NULL,'','1','1','','1','112','supplier payment','','','No',NULL,NULL,''),(15,'1030','11685103899','2023-05-26 15:25:11',2000.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851039303316033','No',NULL,NULL,''),(16,'1010','11685103899','2023-05-26 15:25:11',1000.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851039303316033','No',NULL,NULL,''),(17,'1050','11685103899','2023-05-26 15:25:11',5000.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851039303316033','No',NULL,NULL,''),(23,'1030','11685103899','2023-05-26 15:25:11',2000.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851040490422240','No',NULL,NULL,''),(24,'1010','11685103899','2023-05-26 15:25:11',2000.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851040490422240','No',NULL,NULL,''),(25,'1050','11685103899','2023-05-26 15:25:11',4000.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851040490422240','No',NULL,NULL,''),(26,'1110','11685103899','2023-05-26 15:25:11',NULL,633.00,'','1','1','Inventory sold','1','','sales','5001870','','No',NULL,NULL,''),(27,'1110','11685103899','2023-05-26 15:27:14',NULL,678.00,'','1','1','Inventory sold','1','','sales','5001871','','No',NULL,NULL,''),(28,'5500','11685103899','2023-05-26 15:27:14',1311.00,NULL,'','1','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29,'4000','11685103899','2023-05-26 15:25:11',NULL,4500.00,'','1','1','Good sold','1','','sales','5001870','','No',NULL,NULL,''),(30,'4000','11685103899','2023-05-26 15:27:14',NULL,1500.00,'','1','1','Good sold','1','','sales','5001871','','No',NULL,NULL,''),(31,'1030','11685104221','2023-05-26 15:30:26',500.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851042424434400','No',NULL,NULL,''),(32,'1010','11685104221','2023-05-26 15:30:26',200.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851042424434400','No',NULL,NULL,''),(33,'1050','11685104221','2023-05-26 15:30:26',700.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851042424434400','No',NULL,NULL,''),(34,'1110','11685104221','2023-05-26 15:30:26',NULL,126.60,'','1','1','Inventory sold','1','','sales','5001870','','No',NULL,NULL,''),(35,'5500','11685104221','2023-05-26 15:30:26',126.60,NULL,'','1','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(36,'4000','11685104221','2023-05-26 15:30:26',NULL,900.00,'','1','1','Good sold','1','','sales','5001870','','No',NULL,NULL,''),(37,'1010','11685104304','2023-05-26 15:31:49',700.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851043199009326','No',NULL,NULL,''),(38,'1050','11685104304','2023-05-26 15:31:49',200.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851043199009326','No',NULL,NULL,''),(39,'1110','11685104304','2023-05-26 15:31:49',NULL,126.60,'','1','1','Inventory sold','1','','sales','5001870','','No',NULL,NULL,''),(40,'5500','11685104304','2023-05-26 15:31:49',126.60,NULL,'','1','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(41,'4000','11685104304','2023-05-26 15:31:49',NULL,900.00,'','1','1','Good sold','1','','sales','5001870','','No',NULL,NULL,''),(42,'1030','11685104339','2023-05-26 15:32:24',500.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851043550202435','No',NULL,NULL,''),(43,'1010','11685104339','2023-05-26 15:32:24',200.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851043550202435','No',NULL,NULL,''),(44,'1050','11685104339','2023-05-26 15:32:24',700.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851043550202435','No',NULL,NULL,''),(45,'1110','11685104339','2023-05-26 15:32:24',NULL,126.60,'','1','1','Inventory sold','1','','sales','5001870','','No',NULL,NULL,''),(46,'5500','11685104339','2023-05-26 15:32:24',126.60,NULL,'','1','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(47,'4000','11685104339','2023-05-26 15:32:24',NULL,900.00,'','1','1','Good sold','1','','sales','5001870','','No',NULL,NULL,''),(48,'1030','11685104397','2023-05-26 15:33:22',500.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851044192443501','No',NULL,NULL,'vvjvj'),(49,'1010','11685104397','2023-05-26 15:33:22',200.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851044192443501','No',NULL,NULL,'vvjvj'),(50,'1050','11685104397','2023-05-26 15:33:22',700.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851044192443501','No',NULL,NULL,'vvjvj'),(51,'1110','11685104397','2023-05-26 15:33:22',NULL,126.60,'','1','1','Inventory sold','1','','sales','5001870','','No',NULL,NULL,''),(52,'5500','11685104397','2023-05-26 15:33:22',126.60,NULL,'','1','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(53,'4000','11685104397','2023-05-26 15:33:22',NULL,900.00,'','1','1','Good sold','1','','sales','5001870','','No',NULL,NULL,''),(54,'1040','11685104439','2023-05-26 15:34:04',250.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851044593222520','No',NULL,NULL,'djfdj'),(55,'1030','11685104439','2023-05-26 15:34:04',250.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851044593222520','No',NULL,NULL,'djfdj'),(56,'1010','11685104439','2023-05-26 15:34:04',200.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851044593222520','No',NULL,NULL,'djfdj'),(57,'1050','11685104439','2023-05-26 15:34:04',700.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851044593222520','No',NULL,NULL,'djfdj'),(58,'1110','11685104439','2023-05-26 15:34:04',NULL,126.60,'','1','1','Inventory sold','1','','sales','5001870','','No',NULL,NULL,''),(59,'5500','11685104439','2023-05-26 15:34:04',126.60,NULL,'','1','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(60,'4000','11685104439','2023-05-26 15:34:04',NULL,900.00,'','1','1','Good sold','1','','sales','5001870','','No',NULL,NULL,''),(61,'1040','11685104493','2023-05-26 15:34:57',500.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851045070337130','No',NULL,NULL,''),(62,'1010','11685104493','2023-05-26 15:34:57',200.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851045070337130','No',NULL,NULL,''),(63,'1050','11685104493','2023-05-26 15:34:57',700.00,NULL,'','1','1','Payment of goods sold','1','','payment','','116851045070337130','No',NULL,NULL,''),(64,'1110','11685104493','2023-05-26 15:34:57',NULL,126.60,'','1','1','Inventory sold','1','','sales','5001870','','No',NULL,NULL,''),(65,'5500','11685104493','2023-05-26 15:34:57',126.60,NULL,'','1','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(66,'4000','11685104493','2023-05-26 15:34:57',NULL,900.00,'','1','1','Good sold','1','','sales','5001870','','No',NULL,NULL,''); /*!40000 ALTER TABLE `debitcredit` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `delivery` -- DROP TABLE IF EXISTS `delivery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `delivery` ( `id` int(11) NOT NULL AUTO_INCREMENT, `itemid` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'new', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `code` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL, `qty` varchar(10) NOT NULL, `buyingprice` decimal(10,2) NOT NULL, `sellingprice` decimal(10,2) NOT NULL, `invoice` varchar(50) DEFAULT NULL, `serial` varchar(50) NOT NULL, `orderno` varchar(50) NOT NULL, `name` text NOT NULL, `description` text NOT NULL, `batchno` int(11) NOT NULL, `myid` int(50) NOT NULL, `staff` int(11) NOT NULL, `shipping` decimal(10,2) NOT NULL, `commission` decimal(10,2) NOT NULL, `ordereddate` varchar(50) NOT NULL, `supplier` int(11) NOT NULL DEFAULT 1, `profit` varchar(20) NOT NULL, `commissionrate` varchar(20) NOT NULL, `type` varchar(30) NOT NULL, `mode` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `delivery` -- LOCK TABLES `delivery` WRITE; /*!40000 ALTER TABLE `delivery` DISABLE KEYS */; /*!40000 ALTER TABLE `delivery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `department` -- DROP TABLE IF EXISTS `department`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `department` ( `id` int(50) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `description` text NOT NULL, `faculty_id` int(11) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `department` -- LOCK TABLES `department` WRITE; /*!40000 ALTER TABLE `department` DISABLE KEYS */; /*!40000 ALTER TABLE `department` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `depositrefunds` -- DROP TABLE IF EXISTS `depositrefunds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `depositrefunds` ( `id` int(100) NOT NULL AUTO_INCREMENT, `houseno` varchar(100) NOT NULL, `type` varchar(40) NOT NULL, `description` text NOT NULL, `plotno` varchar(100) NOT NULL, `balance` decimal(10,2) NOT NULL, `status` varchar(100) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `branchid` int(30) NOT NULL DEFAULT 1, `amount` decimal(10,2) NOT NULL, `before` varchar(20) DEFAULT NULL, `after` varchar(20) DEFAULT NULL, `bookingid` int(20) NOT NULL, `tenantid` int(11) NOT NULL, `receiptno` varchar(50) NOT NULL, `transactioncode` varchar(50) NOT NULL, `mode` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `depositrefunds` -- LOCK TABLES `depositrefunds` WRITE; /*!40000 ALTER TABLE `depositrefunds` DISABLE KEYS */; /*!40000 ALTER TABLE `depositrefunds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `device` -- DROP TABLE IF EXISTS `device`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `device` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `device` -- LOCK TABLES `device` WRITE; /*!40000 ALTER TABLE `device` DISABLE KEYS */; /*!40000 ALTER TABLE `device` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `discount` -- DROP TABLE IF EXISTS `discount`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `discount` ( `id` int(11) NOT NULL AUTO_INCREMENT, `discount` varchar(50) NOT NULL, `name` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `type` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `discount` -- LOCK TABLES `discount` WRITE; /*!40000 ALTER TABLE `discount` DISABLE KEYS */; INSERT INTO `discount` VALUES (1,'1000','BASIC','2023-05-16 14:12:30','active','1','','1',1,'Amount'); /*!40000 ALTER TABLE `discount` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `distribution` -- DROP TABLE IF EXISTS `distribution`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `distribution` ( `id` int(11) NOT NULL AUTO_INCREMENT, `itemid` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'new', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `code` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL, `qty` varchar(10) NOT NULL, `buyingprice` decimal(10,2) NOT NULL, `sellingprice` decimal(10,2) NOT NULL, `invoice` varchar(50) DEFAULT NULL, `serial` varchar(50) NOT NULL, `orderno` varchar(50) NOT NULL, `name` text NOT NULL, `description` text NOT NULL, `batchno` int(11) NOT NULL, `myid` int(50) NOT NULL, `staff` int(11) NOT NULL, `shipping` decimal(10,2) NOT NULL, `commission` decimal(10,2) NOT NULL, `ordereddate` varchar(50) NOT NULL, `supplier` int(11) NOT NULL DEFAULT 1, `profit` varchar(20) NOT NULL, `commissionrate` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `distribution` -- LOCK TABLES `distribution` WRITE; /*!40000 ALTER TABLE `distribution` DISABLE KEYS */; /*!40000 ALTER TABLE `distribution` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `district` -- DROP TABLE IF EXISTS `district`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `district` ( `id` int(30) NOT NULL, `code` varchar(50) NOT NULL, `countyid` varchar(10) NOT NULL, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `provincecode` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `district` -- LOCK TABLES `district` WRITE; /*!40000 ALTER TABLE `district` DISABLE KEYS */; /*!40000 ALTER TABLE `district` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `documents` -- DROP TABLE IF EXISTS `documents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `documents` ( `id` int(50) NOT NULL AUTO_INCREMENT, `documentname` varchar(100) NOT NULL, `idno` varchar(50) NOT NULL, `category` varchar(100) NOT NULL, `name` text NOT NULL, `dateposted` varchar(100) NOT NULL, `description` text NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `entrydate` varchar(50) NOT NULL, `img_id` varchar(100) NOT NULL, `companyid` varchar(50) NOT NULL, `mydocuments` text DEFAULT NULL, `invoice` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `documents` -- LOCK TABLES `documents` WRITE; /*!40000 ALTER TABLE `documents` DISABLE KEYS */; /*!40000 ALTER TABLE `documents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `doorlock` -- DROP TABLE IF EXISTS `doorlock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `doorlock` ( `id` int(20) NOT NULL AUTO_INCREMENT, `type` varchar(40) NOT NULL, `description` text NOT NULL, `status` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `name` varchar(50) NOT NULL, `companyid` int(5) NOT NULL DEFAULT 1, `branchid` int(20) DEFAULT NULL, `guest` varchar(50) NOT NULL, `roomtype` varchar(50) NOT NULL, `roomno` varchar(50) NOT NULL, `guesttype` varchar(50) NOT NULL, `chargetype` varchar(50) NOT NULL, `issuedqty` varchar(50) NOT NULL, `recycledcardqty` varchar(50) NOT NULL, `state` varchar(50) NOT NULL, `checkintime` varchar(50) NOT NULL, `departuretime` varchar(50) NOT NULL, `vouchertype` varchar(50) NOT NULL, `voucherno` varchar(50) NOT NULL, `checkouttime` varchar(50) NOT NULL, `area1` varchar(50) NOT NULL, `area2` varchar(50) NOT NULL, `operator` varchar(50) NOT NULL, `remark` varchar(50) NOT NULL, `familyroom` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `doorlock` -- LOCK TABLES `doorlock` WRITE; /*!40000 ALTER TABLE `doorlock` DISABLE KEYS */; /*!40000 ALTER TABLE `doorlock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `email_accounts` -- DROP TABLE IF EXISTS `email_accounts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `email_accounts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `email` varchar(50) NOT NULL, `password` varchar(100) NOT NULL, `smtp_host` varchar(50) NOT NULL, `smtp_port` int(11) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `name` varchar(50) NOT NULL, `server` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `protocol` varchar(30) NOT NULL DEFAULT 'smtp', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `email_accounts` -- LOCK TABLES `email_accounts` WRITE; /*!40000 ALTER TABLE `email_accounts` DISABLE KEYS */; INSERT INTO `email_accounts` VALUES (1,'marketing@mombasacontinental.com','Pass@123','mail.mombasacontinental.com',587,1,465,'ROBISEARCH LTD/TASK MANAGER',1,'','mail/smtp'),(2,'support@robisearch.com','support!@##@!','ssl://mail.robisearch.com',465,1,1,'ROBISEARCH LTD/TASK MANAGER',2,'2019-06-23 05:28:28pm','smtp'),(3,'oukobert@gmail.com','0718667391','ssl://smtp.googlemail.com',465,1,1,'robisearch',1,'2019-11-04 11:00:33am','smtp'); /*!40000 ALTER TABLE `email_accounts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `employeecharges` -- DROP TABLE IF EXISTS `employeecharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `employeecharges` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `name` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'Active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(20) NOT NULL DEFAULT 'Minus', `amountmode` varchar(20) NOT NULL, `qtymode` varchar(20) NOT NULL, `quantity` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `unit` varchar(50) NOT NULL, `memberid` int(11) NOT NULL, `statutory` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `employeecharges` -- LOCK TABLES `employeecharges` WRITE; /*!40000 ALTER TABLE `employeecharges` DISABLE KEYS */; /*!40000 ALTER TABLE `employeecharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `employeepayments` -- DROP TABLE IF EXISTS `employeepayments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `employeepayments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `name` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'Active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(20) NOT NULL DEFAULT 'Minus', `amountmode` varchar(20) NOT NULL, `qtymode` varchar(20) NOT NULL, `quantity` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `unit` varchar(50) NOT NULL, `memberid` int(11) NOT NULL, `salaryid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `employeepayments` -- LOCK TABLES `employeepayments` WRITE; /*!40000 ALTER TABLE `employeepayments` DISABLE KEYS */; /*!40000 ALTER TABLE `employeepayments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `evaluation` -- DROP TABLE IF EXISTS `evaluation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `evaluation` ( `invoice` varchar(100) NOT NULL, `id` int(20) NOT NULL AUTO_INCREMENT, `serialno` varchar(50) NOT NULL, `insuredname` varchar(50) NOT NULL, `insurer` varchar(50) NOT NULL, `expirydate` varchar(50) NOT NULL, `inspectedby` varchar(50) NOT NULL, `contact` varchar(50) NOT NULL, `policyno` varchar(50) NOT NULL, `instructions` text NOT NULL, `registrationno` varchar(50) NOT NULL, `make` varchar(50) NOT NULL, `model` varchar(50) NOT NULL, `colour` varchar(50) NOT NULL, `yom` varchar(50) NOT NULL, `fueltype` varchar(50) NOT NULL, `engineno` varchar(50) NOT NULL, `chassisno` varchar(50) NOT NULL, `mileage` varchar(50) NOT NULL, `enginerating` varchar(50) NOT NULL, `countryoforigin` varchar(50) NOT NULL, `locationofinspection` varchar(50) NOT NULL, `coachwork` varchar(50) NOT NULL, `mechanical` varchar(50) NOT NULL, `electrical` varchar(50) NOT NULL, `tyres` varchar(50) NOT NULL, `generalcondition` text NOT NULL, `assessedvalue` varchar(50) NOT NULL, `features` text NOT NULL, `anittheft` varchar(50) NOT NULL, `windscreenvalue` varchar(50) NOT NULL, `radiovalue` varchar(50) NOT NULL, `remarks` text NOT NULL, `reportdetails` text NOT NULL, `date` date NOT NULL, `pin` varchar(50) NOT NULL, `userid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `dateposted` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `evaluation` -- LOCK TABLES `evaluation` WRITE; /*!40000 ALTER TABLE `evaluation` DISABLE KEYS */; /*!40000 ALTER TABLE `evaluation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `events` ( `id` int(50) NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `fromdate` varchar(50) NOT NULL, `todate` varchar(50) NOT NULL, `host` varchar(100) NOT NULL, `participants` text NOT NULL, `location` varchar(100) NOT NULL, `status` varchar(40) NOT NULL DEFAULT 'new', `comments` text NOT NULL, `repeated` varchar(50) NOT NULL, `dateposted` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `companyid` varchar(50) NOT NULL, `one` varchar(20) NOT NULL, `two` varchar(20) NOT NULL, `three` varchar(20) DEFAULT NULL, `branchid` int(10) NOT NULL DEFAULT 1, `four` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `expenses` -- DROP TABLE IF EXISTS `expenses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `expenses` ( `id` int(50) NOT NULL AUTO_INCREMENT, `type` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `dateposted` datetime NOT NULL, `user` varchar(100) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'Active', `datespent` datetime NOT NULL, `receiptno` varchar(100) NOT NULL, `idno` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `controller` varchar(100) NOT NULL, `imgid` varchar(100) NOT NULL, `img_id` text NOT NULL, `companyid` varchar(100) NOT NULL, `accounttype` varchar(50) NOT NULL, `bankname` varchar(60) NOT NULL, `supplier` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `paymentmethodes` varchar(30) NOT NULL, `duedate` varchar(30) NOT NULL, `terms` text NOT NULL, `balance` decimal(10,2) NOT NULL, `paid` decimal(10,2) NOT NULL, `updatedat` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `allocation` varchar(20) NOT NULL DEFAULT 'No', `invoicestatus` varchar(20) NOT NULL DEFAULT 'No', `allocationtext` text NOT NULL, `loanpaid` decimal(10,2) NOT NULL, `loanbalance` decimal(10,2) NOT NULL, `duration` varchar(20) NOT NULL, `monthlyrate` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `expenses` -- LOCK TABLES `expenses` WRITE; /*!40000 ALTER TABLE `expenses` DISABLE KEYS */; /*!40000 ALTER TABLE `expenses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `faqs` -- DROP TABLE IF EXISTS `faqs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `faqs` ( `id` int(50) NOT NULL AUTO_INCREMENT, `companyid` varchar(60) NOT NULL, `title` text NOT NULL, `answers` text NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `invoice` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `faqs` -- LOCK TABLES `faqs` WRITE; /*!40000 ALTER TABLE `faqs` DISABLE KEYS */; /*!40000 ALTER TABLE `faqs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fingers` -- DROP TABLE IF EXISTS `fingers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `fingers` ( `id` int(100) NOT NULL AUTO_INCREMENT, `admno` varchar(200) NOT NULL, `fingername` varchar(50) NOT NULL, `regdate` varchar(100) NOT NULL, `template` text NOT NULL, `status` varchar(100) NOT NULL DEFAULT 'active', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fingers` -- LOCK TABLES `fingers` WRITE; /*!40000 ALTER TABLE `fingers` DISABLE KEYS */; /*!40000 ALTER TABLE `fingers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fiscalyear` -- DROP TABLE IF EXISTS `fiscalyear`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `fiscalyear` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `startdate` datetime NOT NULL, `enddate` datetime NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `opening` decimal(10,2) NOT NULL, `closing` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fiscalyear` -- LOCK TABLES `fiscalyear` WRITE; /*!40000 ALTER TABLE `fiscalyear` DISABLE KEYS */; INSERT INTO `fiscalyear` VALUES (1,'2023 Fiscal Year','active','2023-01-01 00:00:00','2023-12-31 23:59:00',1,1,'2023-02-01 06:46:53',0.00,0.00,0); /*!40000 ALTER TABLE `fiscalyear` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `followups` -- DROP TABLE IF EXISTS `followups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `followups` ( `id` int(30) NOT NULL AUTO_INCREMENT, `date` varchar(50) NOT NULL, `followupid` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'newstock', `companyid` varchar(100) NOT NULL, `nextdate` datetime NOT NULL, `feedback` text NOT NULL, `recommendation` text NOT NULL, `challanges` text NOT NULL, `level` varchar(50) NOT NULL, `branchid` int(11) NOT NULL, `finalid` varchar(50) NOT NULL, `dateposted` datetime NOT NULL, `type` varchar(20) NOT NULL DEFAULT 'Deal', `completed` varchar(20) NOT NULL DEFAULT 'no', `stage` varchar(20) DEFAULT NULL, `allsteps` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `followups` -- LOCK TABLES `followups` WRITE; /*!40000 ALTER TABLE `followups` DISABLE KEYS */; /*!40000 ALTER TABLE `followups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `glaccounts` -- DROP TABLE IF EXISTS `glaccounts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `glaccounts` ( `id` int(30) NOT NULL AUTO_INCREMENT, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `accounttype` varchar(50) NOT NULL, `accountname` varchar(80) NOT NULL, `bankname` varchar(50) DEFAULT NULL, `openingdate` varchar(50) NOT NULL, `description` int(11) NOT NULL, `accountstatus` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `number` varchar(50) NOT NULL, `currency` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=220 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `glaccounts` -- LOCK TABLES `glaccounts` WRITE; /*!40000 ALTER TABLE `glaccounts` DISABLE KEYS */; INSERT INTO `glaccounts` VALUES (30,'1','1','1','Control Acc (Cash)','','2018-07-20 13:23:56',1,'','-63000','2020-10-01 13:01:12','1000','1'),(31,'1','1','1','Mpesa','','2020-05-10 17:24:37',1,'','31000','2020-05-10 17:28:13','1010','1'),(33,'351','1','1','KCB account','','2018-06-01',1,'','71800','2019-07-30 19:18:31','1030','1'),(34,'1','1','6','Accounts receivable','','2018-06-01',1,'','0','2020-01-07 05:46:09','1100',''),(35,'351','1','6','Inventory assets','','2018-07-20 13:29:27',1,'','-1500','2019-07-20 23:18:46','1110','1'),(36,'2','1','6','checking account','','2018-07-20 14:14:59',1,'','0','2018-07-20 14:15:36pm','1120','KES'),(37,'351','1','6','Tax Assets','','2018-07-20 14:15:37',1,'','0','2019-07-20 13:01:36','1130',''),(38,'2','1','6','loans & advances','','2018-07-20 14:17:01',1,'','0','2018-07-20 14:18:41pm','1140','KES'),(39,'2','1','6','securities & deposits','','2018-07-20 14:18:42',1,'','0','2018-07-20 14:19:49pm','1150','KES'),(40,'351','1','6','Allowance for doubtful accounts','','2018-07-20 14:19:50',1,'','0','2019-07-20 12:05:22','1160',''),(41,'351','1','6','Prepayments','','2018-07-20 14:37:09',1,'','0','2019-07-20 13:03:33','1170',''),(44,'351','1','6','Salary advances','','2018-07-20 14:42:02',1,'','0','2019-07-20 12:58:57','1200',''),(45,'351','1','7','Land','','2018-07-20 14:43:05',1,'','0','2019-07-20 13:00:33','1500',''),(46,'351','1','7','Motor Vehicle','','2018-07-20 15:05:47',1,'','0','2019-07-20 13:04:35','1510',''),(47,'1','1','27','Softwares','','2018-07-20 15:06:36',4,'','0','2019-10-28 05:41:59','1520',''),(48,'351','1','7','Buildings','','2018-07-20 15:07:38',1,'','0','2019-07-20 13:07:02','1530',''),(49,'351','1','7','Plants & Machinery','','2018-07-20 15:09:21',1,'','0','2019-07-20 13:08:16','1540',''),(50,'351','1','7','Office Equipments','','2018-07-20 15:13:54',1,'','0','2019-07-20 13:09:35','1550',''),(51,'351','1','7','Furnitures & Fixtures','','2018-07-20 15:18:17',1,'','0','2019-07-20 13:10:29','1560',''),(52,'351','1','7','Depreciation ','117','2018-07-20 15:20:15',1,'','0','2019-07-20 13:13:53','1570',''),(53,'351','1','7','Depletable assets','','2018-07-20 15:21:07',1,'','0','2019-07-20 13:30:32','1580','1'),(54,'351','1','7','Leasehold improvements','','2018-07-20 15:22:55',1,'','0','2019-07-20 13:36:59','1590',''),(55,'351','1','7','Accumulated depreciation','','2018-07-20 15:23:48',1,'','0','2019-07-20 13:17:21','1600',''),(57,'351','1','9','Capital ','','2018-07-20 15:43:54',1,'','0','2019-07-20 14:18:04','1800',''),(58,'416','1','29','Office purchases','','2018-07-20 16:02:41',5,'','0','2019-10-16 17:53:18','1850',''),(59,'2','1','8','stock of raw materials','','2018-07-20 16:04:29',1,'','0','2018-07-20 16:07:35pm','1860','KES'),(63,'351','1','14','Loan payable','','2018-07-23 12:06:08',2,'','0','2019-07-20 14:11:32','2000',''),(64,'351','1','14','Dividends payable','','2018-07-23 12:33:51',2,'','0','2019-07-20 15:08:15','2010','1'),(65,'2','1','14','Income tax payable','','2018-07-23 12:35:15',2,'','0','2018-07-23 12:36:09pm','2020','KES'),(66,'351','1','14','Accrued Expenses Payable ','','2018-07-23 12:36:09',2,'','0','2019-07-20 13:33:39','2030','1'),(67,'351','1','14','Payroll Liabilities','','2018-07-23 12:37:11',2,'','0','2019-07-20 13:24:33','2040',''),(68,'351','1','14','Current tax liability','','2018-07-23 12:37:58',2,'','0','2019-07-20 15:10:18','2050','1'),(69,'351','1','14','Client trust accounts','','2018-07-23 12:38:55',2,'','0','2019-07-20 15:11:06','2060',''),(70,'351','1','14','Insurance payable','','2018-07-23 12:39:33',2,'','0','2019-07-20 15:12:04','2070',''),(72,'351','1','14','Sales & services tax payable','','2018-07-23 12:40:58',2,'','0','2019-07-20 15:14:57','2090',''),(74,'351','1','14','Bank Overdraft','','2018-07-23 12:43:29',2,'','0','2019-07-20 13:52:34','2110','1'),(75,'351','1','14','Current portion of obligations under finance leases','','2018-07-23 12:44:39',2,'','0','2019-07-20 15:19:30','2120',''),(76,'351','1','15','Long term debt','','2018-07-23 12:57:42',2,'','0','2019-07-20 15:16:19','2500',''),(78,'351','1','15','Notes payable','','2018-07-23 13:00:31',2,'','0','2019-07-20 13:58:01','2510',''),(79,'351','1','15','Liabilities related to assets held for sale','','2018-07-23 13:01:58',2,'','0','2019-07-20 15:28:14','2520','1'),(80,'2','1','15','shareholder notes payable','','2018-07-23 13:02:46',2,'','0','2018-07-23 13:04:38pm','2530','KES'),(81,'351','1','15','Accrued non-current liabilities','','2018-07-23 13:04:38',2,'','0','2019-07-22 09:45:51','2540',''),(82,'2','1','15','accrued holiday payable','','2018-07-23 13:15:07',2,'','0','2018-07-23 13:19:53pm','2550','KES'),(83,'2','1','26','ordinary shares','','2018-07-23 13:54:16',3,'','0','2018-07-23 13:55:37pm','3000','KES'),(84,'1','1','26','opening balance Equity','','2018-07-23 13:55:37',3,'','-50000','2020-05-09 20:15:00','3010',''),(85,'2','1','26','partner contributions','','2018-07-23 13:56:29',3,'','0','2018-07-23 13:57:14pm','3020','KES'),(86,'2','1','26','share capital','','2018-07-23 13:57:15',3,'','0','2018-07-23 13:59:17pm','3030','KES'),(87,'2','1','26','capital stock','','2018-07-23 13:59:18',3,'','0','2018-07-23 14:00:06pm','3040','KES'),(89,'351','1','26','Dividend disbursed','','2018-07-23 14:00:07',3,'','0','2019-07-22 09:44:29','3050',''),(90,'2','1','26','other comprehensive income','','2018-07-23 14:05:14',3,'','0','2018-07-23 14:06:04pm','3060','KES'),(91,'2','1','26','retained earnings','','2018-07-23 14:06:06',3,'','0','2018-07-23 14:06:41pm','3070','KES'),(92,'2','1','26','paid in capital','','2018-07-23 14:06:42',3,'','0','2018-07-23 14:08:06pm','3080','KES'),(93,'2','1','26','equity in earnings of subsidiaries','','2018-07-23 14:08:07',3,'','0','2018-07-23 14:09:00pm','3090','KES'),(94,'351','1','27','Sales','','2018-06-01',4,'','0','2019-07-23 11:30:51','4000',''),(95,'351','1','27','Maintainance/Training fees','94','2018-07-23 14:09:38',4,'','0','2019-07-20 15:53:04','4010',''),(97,'351','1','30','expenses included in valuation','','2018-06-01 ',5,'','0','2019-07-23 11:33:52','5010',''),(98,'351','1','30','stock adjustment','','2018-07-23 14:27:39',5,'','0','2019-07-20 17:25:59','5020',''),(99,'1','1','8','Cost of Good sold','','2018-07-01',5,'','0','2020-05-11 09:26:16','5500',''),(100,'351','1','29','Transport','','2018-06-01',5,'','0','2019-07-23 11:27:46','5510',''),(101,'351','1','29','Rent Expenses','','2018-07-23 14:33:51',5,'','0','2019-07-20 17:40:22','5520',''),(102,'351','1','29','Utilities','','2018-07-23 14:34:24',5,'','0','2019-07-20 17:42:59','5530','1'),(103,'351','1','29','Advertisements','','2018-07-23 14:34:52',5,'','0','2019-07-20 17:47:48','5540','1'),(104,'351','1','29','Salary Costs','','2018-07-23 14:35:41',5,'','50000','2019-07-20 20:26:30','5550',''),(105,'1','1','29','Staff Costs','','2020-07-23 14:36:42',5,'','0','2020-06-30 21:02:43','5560','1'),(106,'351','1','29','Staff Uniforms','105','2018-07-23 14:37:26',5,'','0','2019-07-20 20:43:01','5561','1'),(107,'351','1','29','Staff Welfare ','105','2018-07-23 14:38:50',5,'','0','2019-07-20 20:47:45','5562','1'),(114,'351','1','29','Training Fees','','2018-07-23 14:46:18',5,'','0','2019-07-20 21:00:54','5650','1'),(115,'351','1','29','Marketing expenses','','2018-07-23 14:47:47',5,'','0','2019-07-20 20:59:00','5660',''),(118,'351','1','29','Bid Bond Charges','120','2018-07-23 14:51:10',5,'','0','2019-07-20 21:51:57','5711','1'),(119,'351','1','29','Bank Service Charges ','','2018-07-23 14:54:26',5,'','0','2019-07-20 21:24:05','5700','1'),(120,'351','1','29','Tender expenses','','2018-07-23 14:55:12',5,'','0','2019-07-20 21:49:11','5710',''),(122,'351','1','29','Outsourced Printing & Scanning','','2018-07-23 15:02:34',5,'','0','2019-07-20 21:55:42','5730',''),(123,'351','1','30','Commission on sales','','2018-07-23 15:03:42',5,'','0','2019-07-20 21:56:36','5740','1'),(124,'351','1','29','Accomodation','','2018-07-23 15:04:46',5,'','0','2019-07-20 21:58:04','5750',''),(125,'351','1','29','Professional /Legal expenses','','2018-07-23 15:05:55',5,'','0','2019-07-20 22:28:51','5760','1'),(126,'351','1','28','Postage & Delivery','','2018-07-23 15:06:59',4,'','0','2019-07-20 22:00:51','5770','1'),(127,'351','1','29','Repairs & Maintenance','','2018-07-23 15:07:48',5,'','0','2019-07-20 22:02:26','5780',''),(128,'351','1','29','Depreciation Expense','','2018-07-23 15:08:24',5,'','0','2019-07-20 22:03:48','5790',''),(129,'351','1','29','Miscellaneous','','2018-07-23 15:09:39',5,'','0','2019-07-20 22:05:47','5800',''),(130,'351','1','27','Point of sale','94','2018-06-01 ',4,'','0','2019-08-08 09:12:19','4020',''),(131,'351','1','27','Bulk Sms','94','2018-07-23 15:12:25',4,'','0','2019-07-20 15:56:23','4030','1'),(132,'351','1','27','property management System','94','2018-07-23 15:13:09',4,'','0','2019-07-20 16:16:00','4040','1'),(133,'351','1','27','Biometric system','94','2018-07-23 15:13:41',4,'','2393.5','2019-07-20 16:14:44','4050','1'),(134,'351','1','27','school management System','94','2018-07-23 15:14:35',4,'','0','2019-07-20 16:17:38','4060','1'),(135,'351','1','27','Hospital management System','94','2018-07-23 15:15:15',4,'','0','2019-07-20 16:19:26','4070',''),(136,'351','1','27','Website Development','94','2018-07-23 15:16:03',4,'','0','2019-07-20 16:25:53','4080','1'),(137,'351','1','27','Pos Upgrade','94','2018-07-23 15:16:38',4,'','0','2019-07-20 16:27:18','4090',''),(139,'351','1','27','Hardware','94','2018-07-23 15:18:10',4,'','0','2019-07-20 16:49:09','4110','1'),(140,'351','1','27','Graphic Design','94','2018-07-23 15:18:56',4,'','0','2019-07-20 16:50:40','4120','1'),(141,'351','1','27','Thermal rolls','94','2018-07-23 15:19:38',4,'','0','2019-07-20 16:54:33','4130','1'),(143,'479','1','1','Paybill','','2018-07-26 12:58:21',1,'','-6666666999','2019-01-18 17:14:27','1020','1'),(144,'351','1','14','Account payable','','2018-06-01',2,'','0','2019-07-23 11:29:59','2130',''),(148,'351','1','1','Director\'s Account','','2018-06-01',1,'','0','2019-08-22 08:43:26','1040','1'),(151,'351','1','8','Hardware','58','2018-10-30 09:48:11',5,'','0','2019-09-04 10:25:47','1851','1'),(152,'351','1','27','Labour Fees','94','2018-11-01 12:09:21',4,'','0','2019-07-20 16:57:21','4160','1'),(154,'351','1','29','Supplies','156','2018-11-05 16:43:21',5,'','0','2019-07-18 14:43:13','5900','1'),(155,'351','1','29','Cleaning','156','2018-11-05 16:46:57',5,'','0','2019-07-18 14:28:52','5910','1'),(156,'351','1','29','Office Expenses','','2018-11-05 16:47:29',5,'','0','2019-07-18 14:15:56','5920','1'),(157,'351','1','27','Management Information System','94','2019-01-31 16:43:09',4,'','0','2019-07-20 16:58:11','4170','1'),(158,'351','1','29','Mpesa charges','','2019-05-25 12:20:26',5,'','0','2019-07-20 22:26:12','5930','1'),(159,'351','1','1','Petty cash','','2019-06-01',1,'','-3577','2019-08-22 15:25:29','1050','1'),(160,'351','1','29','Discount Allowed','','2019-07-08 ',5,'','0','2019-07-20 23:17:13','5030','1'),(161,'351','1','6','Withholding Tax','','2019-07-20 13:24:34',1,'','0','2019-07-20 13:28:18','1210',''),(162,'351','1','6','Discount Recieved','','2019-07-20 13:28:19',1,'','0','2019-07-20 13:29:38','1220','1'),(163,'351','1','6','Accrued Income Receivable ','','2019-07-20 13:33:40',1,'','0','2019-07-20 13:36:05','1230','1'),(164,'351','1','14','NHIF','67','2019-07-20 14:03:52',2,'','0','2019-07-20 14:06:21','2041','1'),(165,'351','1','14','NSSF','67','2019-07-20 14:06:22',2,'','0','2019-07-20 14:07:21','2042',''),(166,'351','1','14','PAYE','67','2019-07-20 14:07:21',2,'','0','2019-07-20 14:08:21','2043','1'),(167,'351','1','14','Net Pay','','2019-07-20 14:08:21',2,'','0','2019-07-20 14:10:20','2045',''),(168,'1','1','27','Donations','131','2019-07-20 15:56:24 ',4,'','140000','2023-03-08 12:44:25','4031','1'),(169,'351','1','27','Bulk Sms Branding','131','2019-07-20 16:07:38',4,'','0','2019-07-20 16:09:27','4032',''),(170,'1','1','27','Bulk Sms Recharge','131','2019-07-20 16:09:28',4,'','0','2019-10-26 13:53:32','4033','1'),(171,'351','1','27','Hotel Accommodation System','94','2019-07-20 16:19:27',4,'','0','2019-07-20 16:23:52','4100','1'),(172,'351','1','27','Miscellaneous Income','94','2019-07-20 16:58:12',4,'','0','2019-07-20 17:00:06','4180','1'),(173,'351','1','27','Mpesa Intergration','94','2019-07-20 17:00:07',4,'','0','2019-07-20 17:02:30','4190','1'),(174,'351','1','27','Biometric Bulk Sms Intergration','94','2019-07-20 17:02:31',4,'','0','2019-07-20 17:38:53','4195',''),(175,'351','1','8','Thermal rolls','58','2019-07-20 17:32:58',5,'','0','2019-09-04 10:26:06','1852','1'),(176,'351','1','29','Electricity','102','2019-07-20 17:42:59',5,'','0','2019-07-20 17:44:30','5531','1'),(177,'351','1','29','Water','102','2019-07-20 17:44:31',5,'','0','2019-07-20 17:45:22','5532','1'),(178,'351','1','29','Wages/Overtime','104','2019-07-20 20:26:31',5,'','0','2019-07-20 20:29:49','5551','1'),(179,'1','1','29','Staff Airtime','105','2020-07-20 20:47:45',5,'','0','2020-06-30 21:03:42','5563','1'),(180,'1','1','29','Medical Expenses ','105','2019-07-20 20:50:12',5,'','0','2020-06-30 22:16:41','5566','1'),(181,'351','1','29','NSSF-Employer','105','2019-07-20 20:51:37',5,'','0','2019-07-20 20:53:29','5565','1'),(182,'351','1','29','Meal Expenses ','','2019-07-20 22:28:52',5,'','0','2019-07-20 22:48:43','5250','1'),(183,'351','1','29','Refunds','','2019-07-20 22:48:44',5,'','0','2019-07-20 22:49:44','5240','1'),(184,'351','1','30','Loss on Disposal of fixed Assets ','','2019-07-20 22:49:45',5,'','0','2019-07-20 22:53:18','5220','1'),(185,'351','1','29','Internet Expenses ','','2019-07-20 22:53:19',5,'','0','2019-07-20 22:56:13','5200',''),(186,'351','1','29','Telephone Expenses ','','2019-07-20 22:56:14',5,'','0','2019-07-20 22:57:42','5210','1'),(187,'351','1','29','Dues & Subscriptions','','2019-07-20 22:57:43',5,'','0','2019-07-20 23:02:13','5180','1'),(188,'351','1','29','Donations','','2019-07-20 23:02:14',5,'','0','2019-07-20 23:03:34','5170','1'),(189,'351','1','29','Chaitable Donations','188','2019-07-20 23:03:35',5,'','0','2019-07-20 23:04:51','5171','1'),(190,'351','1','29','Non-Charitable Donations','188','2019-07-20 23:04:52',5,'','0','2019-07-20 23:08:00','5172','1'),(191,'351','1','29','Business Licences & Permits ','','2019-07-20 23:08:01',5,'','0','2019-07-20 23:09:26','5960','1'),(192,'351','1','29','Bad debts written off','','2019-07-20 23:09:27',5,'','0','2019-07-20 23:10:42','5950','1'),(193,'351','1','29','Bad debts ','','2019-07-20 23:10:43',5,'','0','2019-07-20 23:11:35','5940','1'),(194,'351','1','27','suspense Income A/C','','2019-07-22 22:00:00',4,'','2393.5','2019-07-27 17:14:05','4050','1'),(195,'351','1','29','suspense Expense A/C','','2019-07-22 22:05:38',5,'','0','2019-07-27 17:15:19','5040','1'),(196,'351','1','34','Opening Balance','','2018-06-01',4,'','0','2019-07-30 09:29:55','1060','1'),(197,'351','1','29','CCTV Installation fee','','2018-06-01',5,'','0','2019-08-21 10:15:30','5190','1'),(198,'351','1','29','Director\'s Expenses','','2018-06-01',5,'','0','2019-08-23 14:53:11','5720','1'),(199,'351','1','29','Staff Allowance','105','2019-06-01 ',5,'','-521','2019-10-01 15:22:06','5564','1'),(200,'1','1','1','Witholding Account','','2019-10-01 11:49:23 ',1,'','6666623792.5','2021-11-25 16:26:21','1035','1'),(201,'1','1','7','LAPTOPS','','2020-09-17 09:30:28',1,'','0','2020-09-17 09:31:53','1501',''),(202,'1','1','7','Amblifier','','2020-09-22 10:17:58',1,'','0','2020-09-22 10:19:53','1502',''),(205,'1','1','1','Bonga points Account','','2021-03-08 15:21:56 ',1,'','-1000','2021-09-07 06:35:52','1011','1'),(206,'1','1','29','CARE HIRE','','2021-07-19 15:02:30 ',5,'','0','2022-01-05 08:59:38','5171',''),(207,'1','1','27','RENT COLLECTED','','2021-09-17 06:42:46',4,'','0','2021-09-17 06:47:13','4161','1'),(208,'1','1','27','DEPOSIT COLLECTED','','2021-09-17 06:14:47',4,'','0','2021-09-17 06:48:29','4162','1'),(209,'1','1','27','WATER/POWER DEPOSIT','','2021-09-17 06:30:48',4,'','0','2021-09-17 06:48:46','4163',''),(210,'1','1','27','PENALTY','','2021-09-17 06:47:48',4,'','0','2021-09-17 06:49:02','4164',''),(211,'1','1','27','WATER','','2021-09-17 06:04:49',4,'','0','2021-09-17 06:49:27','4165','1'),(212,'1','1','27','PARTIAL PAYMENT','','2021-09-17 06:29:49',4,'','0','2021-09-17 06:49:47','4166','1'),(213,'1','1','27','GARBAGE','','2021-09-17 06:49:49',4,'','0','2021-09-17 06:50:07','4167','1'),(214,'1','1','27','DAMAGES','','2021-09-17 06:09:50',4,'','0','2021-09-17 06:50:31','4168','1'),(215,'1','1','27','AGREEMENT FORM','','2021-09-17 06:32:50',4,'','0','2021-09-17 06:50:50','4169','1'),(216,'1','1','27','POWER','','2021-09-17 06:51:50',4,'','0','2021-09-17 06:51:16','4171','1'),(217,'1','1','27','SEWAGE','','2021-09-17 06:17:51',4,'','-50000','2021-09-17 06:51:44','4172','1'),(218,'1','1','27','BED ONLY','','2021-09-17 06:45:51',4,'','7000','2021-09-17 06:52:22','4173','1'),(219,'1','1','27','BED AND BREAKFAST','','2021-09-17 06:24:52',4,'','-55555','2021-09-17 06:52:42','4174','1'); /*!40000 ALTER TABLE `glaccounts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `glfiscalyear` -- DROP TABLE IF EXISTS `glfiscalyear`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `glfiscalyear` ( `id` int(40) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `startdate` datetime NOT NULL, `enddate` datetime NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `opening` decimal(10,2) NOT NULL, `closing` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, `number` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `glfiscalyear` -- LOCK TABLES `glfiscalyear` WRITE; /*!40000 ALTER TABLE `glfiscalyear` DISABLE KEYS */; /*!40000 ALTER TABLE `glfiscalyear` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `glgroups` -- DROP TABLE IF EXISTS `glgroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `glgroups` ( `id` int(30) NOT NULL AUTO_INCREMENT, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `accounttype` varchar(50) NOT NULL, `accountname` varchar(80) NOT NULL, `groupname` bigint(50) NOT NULL DEFAULT 1, `openingdate` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `glgroups` -- LOCK TABLES `glgroups` WRITE; /*!40000 ALTER TABLE `glgroups` DISABLE KEYS */; INSERT INTO `glgroups` VALUES (1,'2','1','1','Banks',0,''),(6,'2','1','1','Current asset',0,''),(7,'2','1','1','Fixed assets',0,''),(8,'2','1','5','Cost of Good Sold',0,''),(9,'2','1','1','Capital asset',0,''),(14,'2','1','2','Current liabilities',0,''),(15,'2','1','2','Longterm liabilities',0,''),(26,'2','1','3','Equity',0,''),(27,'2','1','4','Income',0,''),(28,'2','1','4','Other income',0,''),(29,'2','1','5','Expenses',0,''),(30,'2','1','5','Other expenses',0,''),(31,'2','1','2','Share Capital',0,''),(32,'2','1','2','Retained Earnings',0,''),(33,'2','1','4','Cash',1,''),(34,'2','1','4','Equity',1,''); /*!40000 ALTER TABLE `glgroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grouping` -- DROP TABLE IF EXISTS `grouping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `grouping` ( `id` int(50) NOT NULL AUTO_INCREMENT, `memberid` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `user` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `updatedat` varchar(50) NOT NULL, `categoryid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grouping` -- LOCK TABLES `grouping` WRITE; /*!40000 ALTER TABLE `grouping` DISABLE KEYS */; /*!40000 ALTER TABLE `grouping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `groupleavedays` -- DROP TABLE IF EXISTS `groupleavedays`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `groupleavedays` ( `id` int(11) NOT NULL AUTO_INCREMENT, `group` int(11) DEFAULT NULL, `employeeno` int(11) DEFAULT NULL, `overtime` int(11) DEFAULT NULL COMMENT 'Link to an overtime request', `startdate` date DEFAULT NULL, `enddate` date DEFAULT NULL, `type` int(11) NOT NULL, `days` decimal(10,2) NOT NULL, `description` text DEFAULT NULL COMMENT 'Description of a credit / debit', `userid` int(30) NOT NULL, `createdate` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `contract` (`group`), KEY `employee` (`employeeno`), KEY `type` (`type`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Add or sub entitlement for employees or contracts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `groupleavedays` -- LOCK TABLES `groupleavedays` WRITE; /*!40000 ALTER TABLE `groupleavedays` DISABLE KEYS */; INSERT INTO `groupleavedays` VALUES (1,NULL,1,NULL,'2023-02-15','2023-04-25',1,90.00,'',1,'2023-02-15 12:36:46pm',0); /*!40000 ALTER TABLE `groupleavedays` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `house` -- DROP TABLE IF EXISTS `house`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `house` ( `id` int(100) NOT NULL AUTO_INCREMENT, `houseno` varchar(100) NOT NULL, `type` varchar(40) NOT NULL, `description` text NOT NULL, `plotno` varchar(100) NOT NULL, `cost` varchar(100) NOT NULL, `status` varchar(100) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `floor` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `vat` decimal(10,2) NOT NULL, `commission` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'rental', `branchid` int(30) NOT NULL DEFAULT 1, `vat2` decimal(10,2) NOT NULL, `paymentdetails` text NOT NULL, `meternumber` text NOT NULL, `utility` varchar(20) DEFAULT 'yes', `waterno` varchar(30) NOT NULL, `waterrate` varchar(30) NOT NULL, `watercharge` varchar(30) NOT NULL, `watermonth` varchar(30) NOT NULL, `wateryear` varchar(30) NOT NULL, `electricityno` varchar(30) NOT NULL, `electricityrate` varchar(30) NOT NULL, `electricitycharge` varchar(30) NOT NULL, `electricitymonth` varchar(30) NOT NULL, `electricityyear` varchar(30) NOT NULL, `bowholeno` varchar(30) NOT NULL, `bowholerate` varchar(30) NOT NULL, `bowholecharge` varchar(30) NOT NULL, `bowholemonth` varchar(30) NOT NULL, `bowholeyear` varchar(30) NOT NULL, `beds` varchar(5) DEFAULT NULL, `bedstatus` varchar(20) NOT NULL DEFAULT 'no', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `house` -- LOCK TABLES `house` WRITE; /*!40000 ALTER TABLE `house` DISABLE KEYS */; /*!40000 ALTER TABLE `house` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `housekeeping` -- DROP TABLE IF EXISTS `housekeeping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `housekeeping` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `houseno` varchar(30) NOT NULL, `plotno` varchar(20) NOT NULL DEFAULT '0', `approvedby` varchar(20) NOT NULL, `comments` text NOT NULL, `approval` varchar(30) NOT NULL DEFAULT 'new', `exactdate` varchar(30) NOT NULL, `type` text NOT NULL, `counter` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `housekeeping` -- LOCK TABLES `housekeeping` WRITE; /*!40000 ALTER TABLE `housekeeping` DISABLE KEYS */; /*!40000 ALTER TABLE `housekeeping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `images` -- DROP TABLE IF EXISTS `images`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `images` ( `id` int(50) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `imageid` varchar(50) NOT NULL, `user` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `images` -- LOCK TABLES `images` WRITE; /*!40000 ALTER TABLE `images` DISABLE KEYS */; /*!40000 ALTER TABLE `images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `invoice` -- DROP TABLE IF EXISTS `invoice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `invoice` ( `id` int(40) NOT NULL AUTO_INCREMENT, `plotno` varchar(60) NOT NULL, `houseno` varchar(40) NOT NULL, `tenantid` varchar(100) NOT NULL, `amount` decimal(10,2) NOT NULL, `type` varchar(100) NOT NULL, `description` varchar(100) NOT NULL, `month` varchar(100) NOT NULL, `year` varchar(100) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `duedate` varchar(40) NOT NULL, `paymentstatus` varchar(40) NOT NULL, `paymentmode` varchar(40) NOT NULL, `paymentcode` varchar(100) NOT NULL, `transactioncode` varchar(100) NOT NULL, `approval` varchar(30) NOT NULL DEFAULT 'new', `approvedby` varchar(60) NOT NULL, `approvaldate` varchar(60) NOT NULL, `totalamount` varchar(40) NOT NULL, `paid` decimal(10,2) NOT NULL, `balance` varchar(40) NOT NULL DEFAULT '0', `companyid` varchar(100) NOT NULL DEFAULT '1', `commission` decimal(10,2) NOT NULL, `vat` decimal(10,2) NOT NULL, `paymentdate` varchar(30) NOT NULL, `order` int(11) NOT NULL, `priority` int(11) NOT NULL, `coparent` decimal(10,2) NOT NULL, `coparentcommission` decimal(10,2) NOT NULL, `coparentvat` decimal(10,2) NOT NULL, `coparentdate` varchar(30) NOT NULL, `coparentuserid` int(11) NOT NULL, `chargeid` varchar(30) NOT NULL, `branchid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `invoice` -- LOCK TABLES `invoice` WRITE; /*!40000 ALTER TABLE `invoice` DISABLE KEYS */; /*!40000 ALTER TABLE `invoice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `journal` -- DROP TABLE IF EXISTS `journal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `journal` ( `id` int(50) NOT NULL AUTO_INCREMENT, `currency` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `journaldate` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `entrydate` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `journal` -- LOCK TABLES `journal` WRITE; /*!40000 ALTER TABLE `journal` DISABLE KEYS */; /*!40000 ALTER TABLE `journal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `labour` -- DROP TABLE IF EXISTS `labour`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `labour` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `createdate` varchar(20) NOT NULL, `qty` decimal(10,2) NOT NULL, `usedamount` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `year` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `branch` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `description` text NOT NULL, `employeeid` varchar(30) NOT NULL, `exactdate` varchar(30) NOT NULL, `rate` decimal(10,2) NOT NULL, `total` decimal(10,2) NOT NULL, `type` varchar(20) NOT NULL DEFAULT 'pay', `status` int(20) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `labour` -- LOCK TABLES `labour` WRITE; /*!40000 ALTER TABLE `labour` DISABLE KEYS */; /*!40000 ALTER TABLE `labour` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `landlord` -- DROP TABLE IF EXISTS `landlord`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `landlord` ( `id` int(40) NOT NULL AUTO_INCREMENT, `firstname` varchar(100) NOT NULL, `lastname` varchar(100) NOT NULL, `location` varchar(100) NOT NULL, `phone` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `description` text NOT NULL, `idno` varchar(100) NOT NULL, `country` varchar(100) NOT NULL, `gender` varchar(10) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `county` varchar(40) NOT NULL, `accountname` varchar(100) NOT NULL, `accountno` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `status` varchar(10) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `landlord` -- LOCK TABLES `landlord` WRITE; /*!40000 ALTER TABLE `landlord` DISABLE KEYS */; /*!40000 ALTER TABLE `landlord` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lease` -- DROP TABLE IF EXISTS `lease`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `lease` ( `id` int(10) NOT NULL AUTO_INCREMENT, `branchfrom` varchar(50) NOT NULL, `serial` varchar(50) NOT NULL, `qty` varchar(50) NOT NULL, `details` text NOT NULL, `dateleased` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `product` text NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `entrydate` varchar(50) NOT NULL, `supplier` varchar(30) NOT NULL, `original` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `amount` varchar(10) NOT NULL DEFAULT '0.00', `duedate` varchar(20) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'Dispatched', `mode` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `totalamount` varchar(30) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lease` -- LOCK TABLES `lease` WRITE; /*!40000 ALTER TABLE `lease` DISABLE KEYS */; /*!40000 ALTER TABLE `lease` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `leavegroup` -- DROP TABLE IF EXISTS `leavegroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `leavegroup` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `createdat` varchar(30) NOT NULL DEFAULT '0000-00-00 00:00:00', `updatedat` varchar(30) NOT NULL DEFAULT '0000-00-00 00:00:00', `total` int(30) NOT NULL, `startdate` varchar(30) NOT NULL, `enddate` varchar(30) NOT NULL, `defaultleavetype` int(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `leavegroup` -- LOCK TABLES `leavegroup` WRITE; /*!40000 ALTER TABLE `leavegroup` DISABLE KEYS */; INSERT INTO `leavegroup` VALUES (1,'General ','','0000-00-00 00:00:00','0000-00-00 00:00:00',21,'1/1','31/12',2),(2,'Security','','0000-00-00 00:00:00','0000-00-00 00:00:00',11,'1/1','31/12',2); /*!40000 ALTER TABLE `leavegroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `leaves` -- DROP TABLE IF EXISTS `leaves`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `leaves` ( `id` int(30) NOT NULL AUTO_INCREMENT, `startdate` varchar(30) DEFAULT NULL, `enddate` varchar(30) DEFAULT NULL, `status` varchar(11) DEFAULT NULL, `employee` int(11) DEFAULT NULL, `cause` text DEFAULT NULL, `startdatetype` varchar(12) DEFAULT NULL, `enddatetype` varchar(12) DEFAULT NULL, `duration` decimal(10,2) DEFAULT NULL, `type` int(11) DEFAULT NULL, `description` text DEFAULT NULL COMMENT 'Comments on leave request', `change_type` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `updateddate` timestamp NULL DEFAULT NULL, `photo` text NOT NULL, `incharge` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `postedtime` varchar(30) NOT NULL, `img_id` text DEFAULT NULL, `comments` text NOT NULL, `manager` int(10) NOT NULL, `companyid` int(11) DEFAULT 1, `branchid` int(20) NOT NULL DEFAULT 1, PRIMARY KEY (`id`), KEY `changed_by` (`updatedby`), KEY `change_date` (`updateddate`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='List of changes in leave requests table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `leaves` -- LOCK TABLES `leaves` WRITE; /*!40000 ALTER TABLE `leaves` DISABLE KEYS */; /*!40000 ALTER TABLE `leaves` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `leavetypes` -- DROP TABLE IF EXISTS `leavetypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `leavetypes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `gender` varchar(30) NOT NULL, `deduct` varchar(10) NOT NULL, `companyid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `leavetypes` -- LOCK TABLES `leavetypes` WRITE; /*!40000 ALTER TABLE `leavetypes` DISABLE KEYS */; INSERT INTO `leavetypes` VALUES (1,'maternity leave','','2019-06-03 01:46:56pm','Female','No',0),(2,'Normal leave','','2019-06-03 01:47:13pm','Both','No',0),(3,'Emergency','','2019-06-03 01:47:41pm','Both','No',0),(4,'Sick Leave','','2023-02-15 12:24:43pm','Both','No',0); /*!40000 ALTER TABLE `leavetypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `loggs` -- DROP TABLE IF EXISTS `loggs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `loggs` ( `id` int(20) NOT NULL AUTO_INCREMENT, `type` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `timein` varchar(50) NOT NULL, `timeout` varchar(50) NOT NULL, `browser` text NOT NULL, `ip` text NOT NULL, `action` varchar(30) DEFAULT 'loggedin', `companyid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `loggs` -- LOCK TABLES `loggs` WRITE; /*!40000 ALTER TABLE `loggs` DISABLE KEYS */; INSERT INTO `loggs` VALUES (1,'admin','1','2023-05-26 13:11:50','2023-05-26 13:12:17','','105.160.50.90','loggedin',1),(2,'admin','1','2023-05-26 13:15:47','','','105.160.50.90','loggedin',1),(3,'admin','1','2023-05-26 14:09:11','','','41.81.35.91','loggedin',1),(4,'admin','1','2023-05-26 14:11:40','','','41.81.35.91','loggedin',1),(5,'admin','1','2023-05-26 14:14:22','','','197.248.234.145','loggedin',1),(6,'user','88','2023-05-26 14:36:20','','','197.248.234.145','loggedin',1); /*!40000 ALTER TABLE `loggs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `loyalitycards` -- DROP TABLE IF EXISTS `loyalitycards`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `loyalitycards` ( `id` int(30) NOT NULL AUTO_INCREMENT, `value` decimal(10,2) NOT NULL, `customer_id` int(10) DEFAULT NULL, `deleted` int(1) NOT NULL DEFAULT 0, `status` varchar(50) NOT NULL, `description` text NOT NULL, `userid` varchar(50) NOT NULL, `dateposted` varchar(50) NOT NULL, `dateupdated` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `cardnumber` varchar(100) NOT NULL, `type` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, `amount` decimal(10,2) NOT NULL, `mode` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `originalamount` decimal(10,2) NOT NULL, PRIMARY KEY (`id`), KEY `deleted` (`deleted`), KEY `phppos_giftcards_ibfk_1` (`customer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `loyalitycards` -- LOCK TABLES `loyalitycards` WRITE; /*!40000 ALTER TABLE `loyalitycards` DISABLE KEYS */; /*!40000 ALTER TABLE `loyalitycards` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `maincategory` -- DROP TABLE IF EXISTS `maincategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `maincategory` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `maincategory` -- LOCK TABLES `maincategory` WRITE; /*!40000 ALTER TABLE `maincategory` DISABLE KEYS */; INSERT INTO `maincategory` VALUES (1,'LIQUOR','','2023-05-17 16:36:10','active','1','','1'),(2,'BUTCHERY','','2023-05-17 16:36:44','active','1','','1'); /*!40000 ALTER TABLE `maincategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mainmenu` -- DROP TABLE IF EXISTS `mainmenu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `mainmenu` ( `id` varchar(100) NOT NULL, `name` varchar(255) NOT NULL, `icon` varchar(255) NOT NULL, `status` varchar(50) NOT NULL DEFAULT '1', `url` text NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'side', `sort` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name_lang_key` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mainmenu` -- LOCK TABLES `mainmenu` WRITE; /*!40000 ALTER TABLE `mainmenu` DISABLE KEYS */; INSERT INTO `mainmenu` VALUES ('accomodation','Accomodation','','1','user/accomodation','side',8),('assetliability','Assets and Liabilities','','1','user/assetliability','side',7),('banking','Banking','','1','user/banking','side',6),('contact','Contacts','','1','user/contact','side',4),('goodservice','Goods and Services','','1','user/goodservice','side',3),('humanresource','HR','grouping','1','user/viewrequest','side',8),('moneyin','Money In','','1','user/moneyin','side',1),('moneyout','Money out','','1','user/moneyout','side',2),('project','Projects','','1','user/project','side',5),('report','Reports','','1','user/report','side',9),('setting','Settings','','1','user/setting','side',10); /*!40000 ALTER TABLE `mainmenu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mainservices` -- DROP TABLE IF EXISTS `mainservices`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `mainservices` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) DEFAULT NULL, `companyid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mainservices` -- LOCK TABLES `mainservices` WRITE; /*!40000 ALTER TABLE `mainservices` DISABLE KEYS */; INSERT INTO `mainservices` VALUES (1,'General systems',1),(2,'E-commerce',1),(3,'Biometric',1),(4,'Website',1),(5,'PMS',1),(6,'Bulk sms',1),(7,'Pos',1); /*!40000 ALTER TABLE `mainservices` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `message` -- DROP TABLE IF EXISTS `message`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `message` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `message` -- LOCK TABLES `message` WRITE; /*!40000 ALTER TABLE `message` DISABLE KEYS */; /*!40000 ALTER TABLE `message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `meterreading` -- DROP TABLE IF EXISTS `meterreading`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `meterreading` ( `id` int(11) NOT NULL AUTO_INCREMENT, `houseno` varchar(60) NOT NULL, `plotno` varchar(50) NOT NULL, `idno` varchar(50) NOT NULL, `tenantid` varchar(40) NOT NULL, `entrydate` varchar(50) NOT NULL, `description` text NOT NULL, `checkoutdate` datetime NOT NULL, `status` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdat` datetime NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `amount` varchar(30) NOT NULL, `paymentstatus` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `paymentcode` varchar(30) NOT NULL, `totalamount` decimal(10,2) NOT NULL, `overpayment` decimal(10,2) NOT NULL, `discount` varchar(30) NOT NULL, `transactioncode` varchar(30) NOT NULL, `roomtype` varchar(40) NOT NULL, `number` varchar(10) NOT NULL, `total` varchar(30) NOT NULL, `year` varchar(30) NOT NULL, `month` varchar(30) NOT NULL, `opening` varchar(20) NOT NULL, `closing` varchar(30) NOT NULL, `meternumber` varchar(10) NOT NULL, `opendate` varchar(30) NOT NULL, `closedate` varchar(30) NOT NULL, `phone` varchar(10) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'accommodation', `deposite` decimal(10,2) NOT NULL, `chargeid` int(11) NOT NULL, `booings` int(11) NOT NULL DEFAULT 1, `branchid` int(10) NOT NULL DEFAULT 1, `currency` varchar(20) DEFAULT NULL, `rate` varchar(30) NOT NULL, `charge` varchar(30) NOT NULL, `type` varchar(20) NOT NULL, `updatedby` varchar(20) NOT NULL, `usedqty` varchar(20) NOT NULL, `roomid` int(20) DEFAULT NULL, `roomchargeid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `meterreading` -- LOCK TABLES `meterreading` WRITE; /*!40000 ALTER TABLE `meterreading` DISABLE KEYS */; /*!40000 ALTER TABLE `meterreading` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `migrations` ( `migration` varchar(255) NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `migrations` -- LOCK TABLES `migrations` WRITE; /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; INSERT INTO `migrations` VALUES ('2014_10_12_000000_create_users_table',1),('2014_10_12_100000_create_password_resets_table',1),('2016_07_02_112357_Product',1); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `modules` -- DROP TABLE IF EXISTS `modules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `modules` ( `name` varchar(255) NOT NULL, `sort` int(10) NOT NULL, `icon` varchar(255) NOT NULL, `id` varchar(100) NOT NULL, `status` varchar(50) NOT NULL DEFAULT '1', `url` text NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'side', `menu` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name_lang_key` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `modules` -- LOCK TABLES `modules` WRITE; /*!40000 ALTER TABLE `modules` DISABLE KEYS */; INSERT INTO `modules` VALUES ('Accomodation',84,'money','accomodation','1','admin/viewpallmyplots','side','accomodation'),('Accounting',35,'battery-quarter','accounting','1','user/allaccounting','side','banking'),('Accounting Reports',35,'money','accountingreports','1','user/startsales','side','banking'),('Assets',49,'paw','assets','1','user/viewassets','side','assetliability'),('Bank Deposits',35,'money','bankdeposits','1','user/viewbanks','side','banking'),('Bank Transfer',35,'money','banktransfer','1','user/viewbanktransfer','side','banking'),('Biometric Records',31,'rss-square','biometricrecords','1','user/allattendance','side','humanresource'),('Branch',81,'rss-square','branch','0','user/viewbranch','side','setting'),('Call center',12,'rss-square','callcenter','1','user/callcenter','side','contact'),('Cashier Sales',87,'folder-open','cashiersales','1','user/mysales','side','moneyin'),('Comments/Complains',11,'paw','complain','1','user/complain','side','project'),('Configuration',5,'home','config','1','user/viewconfiguration','top','setting'),('Counter Radio Button',90,'rss-square','counterradiobutton','1','radio','side','setting'),('Damaged products',50,'paw','damagedproducts','1','user/viewdamages','side','assetliability'),('Deals',11,'calendar-times-o','deals','1','user/viedeals','side','project'),('Departments',31,'rss-square','departments','1','user/department','side','humanresource'),('Display Counter',6,'rss-square','displaycounter','0','display','side','goodservice'),('Display Sales Report',24,'folder-open','displayreport','1','user/displayreport','side','report'),('Documents',14,'folder-open-o','documents','1','user/viewdocuments','side','project'),('E-Commerce',8,'grouping','ecommerce','1','user/ecommerce','side','moneyin'),('Events',10,'line-chart','events','1','user/viewevents','side','project'),('Grouping Members',20,'paper-plane','grouping','1','user/viewgrouping','side','contact'),('Human Resource',14,'rss-square','humanresource','1','user/viewrequest','side','humanresource'),('Income',85,'window-close','income','1','user/allinvoices','side','moneyin'),('Expenses',85,'window-close','incomeexpenses','1','user/viewexpenses','side','moneyout'),('Dispatched stocklist/Store',60,'sort-amount-asc','incomingstock','1','user/viewincomingstock','side','goodservice'),('Issued Store Items',59,'sort-amount-asc','incomingstore','1','user/viewallorder','side','goodservice'),('journal entry',35,'money','journalentry','1','user/viewjournalentry','side','banking'),('Labour Records',31,'rss-square','labourrecords','1','user/viewlabour','side','humanresource'),('Leave Management',31,'rss-square','leavemanagement','1','user/viewleaves','side','humanresource'),('Low Store',55,'battery-quarter','lowproducts','1','user/viewwarningproducts','side','goodservice'),('Low stocklist',57,'battery-quarter','lowstocklist','1','user/viewlowstore','side','goodservice'),('Loyality Cards',30,'credit-card','loyalitycards','1','user/viewloyality','side','project'),('People/Contacts',80,'rss-square','members','1','user/viewmember','side','contact'),('Open and Close Sales',87,'money','openclose','0','user/openclose','side','moneyin'),('Change password',9,'hourglass-start','password','1','user/passwordform','side','setting'),('Payroll',30,'rss-square','payroll','1','user/salaryhistory','side','humanresource'),('Payroll Setup',31,'rss-square','payrollsetup','1','user/payrollsetup','side','humanresource'),('Category of people',33,'address-book-o','peoplecategory','1','user/viewcategory','side','contact'),('Print Receipt',1,'recycle','printreceipt','1','user/printreceipts','side','goodservice'),('Stock List(Counter)',66,'snowflake-o','productlist','1','user/viewproductlist','side','goodservice'),('Products(Main store)',65,'snowflake-o','products','1','user/viewproducts','side','goodservice'),('Category of Products',70,'recycle','productscategory','1','user/viewproductcategory','side','goodservice'),('Update profile',8,'blind','profile','1','user/profileform','side','setting'),('Projects Management',50,'bullseye','projectsmanagement','1','user/viewprojets','side','project'),('Purchases',86,'automobile','purchases','1','user/viewpurchases','side','moneyout'),('Quotation',8,'money','quotation','1','user/allquatation','side','moneyin'),('Record Delivery',87,'cart-plus','recorddelivery','1','user/deliveryhome','side','moneyin'),('Manage Report',25,'folder-open','reports','1','user/startsales','side','report'),('Retail sales',90,'cart-plus','sales','1','user/viewsales','side','moneyin'),('Select User',1,'rss-square','selectuser','1','login','side','contact'),('Send Sms',15,'paper-plane','sendsms','1','user/viewsms','side','project'),('Tasks',12,'bullseye','task','1','user/viewtasks','side','project'),('Tasks Category',13,'birthday-cake','taskscategory','1','user/viewtaskcategory','side','project'),('Users',75,'rss-square','users','1','user/viewemployee','side','contact'),('Return/RePrint Sales',86,'paw','viewreturnsales','1','user/viewreturnsales','side','moneyout'),('Whole sale',88,'cart-plus','wholesale','1','user/viewwholesales','side','moneyin'); /*!40000 ALTER TABLE `modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `modulesactions` -- DROP TABLE IF EXISTS `modulesactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `modulesactions` ( `actionid` varchar(100) NOT NULL, `moduleid` varchar(100) NOT NULL, `name` varchar(100) NOT NULL, `sort` int(11) NOT NULL, PRIMARY KEY (`actionid`,`moduleid`), KEY `phppos_modules_actions_ibfk_1` (`moduleid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `modulesactions` -- LOCK TABLES `modulesactions` WRITE; /*!40000 ALTER TABLE `modulesactions` DISABLE KEYS */; INSERT INTO `modulesactions` VALUES ('accommodationcleaner','accomodation','Tick ONLY if Cleaner',26),('accommodationreceiptionist','accomodation','Tick ONLY if Receptionist',27),('accomodationmanager','accomodation','Tick ONLY if manager',25),('accountlimit','sales','Enforce Daily Sales Limit',16),('add','assets','Add asset',1),('add','bankdeposits','add',1),('add','banktransfer','add',1),('add','biometricrecords','add',1),('add','branch','Add Baranch',1),('add','callcenter','Add Calls',1),('add','complain','Add complain',2),('add','config','add',1),('add','damagedproducts','add',1),('add','deals','add',1),('add','departments','add',1),('add','documents','add',1),('add','ecommerce','Add',1),('add','events','add',1),('add','grouping','add',1),('add','humanresource','Add Expense Request Form',1),('add','income','add',2),('add','incomeexpenses','add',1),('add','incomingstock','add',1),('add','incomingstore','Add incoming',1),('add','journalentry','add',1),('add','labourrecords','add',1),('add','leavemanagement','add',0),('add','lowproducts','add',1),('add','lowstocklist','add',6),('add','loyalitycards','add',1),('add','members','add',1),('add','payroll','add',1),('add','payrollsetup','add',1),('add','peoplecategory','add',1),('add','productlist','Add Products',7),('add','products','add',1),('add','productscategory','add',1),('add','projectsmanagement','Create New Project',2),('add','purchases','add',1),('add','quotation','Add Quotaion',1),('add','recorddelivery','Add Delivery',1),('add','sales','add',1),('add','sendsms','add',1),('add','task','add',1),('add','taskscategory','add',1),('add','users','add',1),('add','viewreturnsales','add',1),('add','wholesale','add',1),('addbatchno','purchases','Add batch No',33),('addcharges','accomodation','Add Room Chaerges',4),('adddailycollection','cashiersales','Add Daily Collection',7),('addexpirydate','purchases','Add Expiry Date',34),('addhouse','accomodation','Add House',1),('addpossiblefeedback','deals','Add Possible feedback',20),('addroom','accomodation','Add Room',3),('addstock','productlist','Add stock',4),('addstock','products','addstock',4),('advancebooking','accomodation','advance booking',11),('all','cashiersales','View all Cashier sales',4),('allcompalin','complain','View Others Complain',11),('allleaves ','humanresource','View all leaves',20),('allocate','humanresource','Allocate Money',5),('approve','humanresource','Make Approval',2),('approve','purchases','Approve Purchase order',22),('approveorders','ecommerce','Approve New orders',7),('assignproduction','productlist','Assign Production Items',62),('assignrooms','accomodation','Asign Cleaning rooms',7),('assigntask','task','Assign Task',10),('backdatesales','sales','Back date sales',17),('bioattendance','humanresource','Biometric Attendance',30),('budget','purchases','View Budget',10),('bulk','productlist','Upload bulk stock',1),('bulk','products','bulk',5),('bulkcheckin','accomodation','Bulk Checkin',58),('bulkpriceupdate','productlist','Bulk Price Update',33),('bulkpriceupdate','products','Bulk Price Update',33),('bulkreservation','accomodation','Bulk Reservation',59),('bulkstatuschange','accomodation','Bulk Room Status Change',60),('cancel','accomodation','Cancel Payment/Bookings',3),('card','accomodation','Sale in Visa Card',2),('card','sales','Card Sales',7),('cash','accomodation','Sale in Cash',2),('cash','sales','Sell in Cash',3),('cashiersales','cashiersales','View Sales',5),('change','password','change',1),('changepayment','accomodation','Change payment',9),('changeserialstatus','productlist','Change Serial Status',20),('changestatus','cashiersales','Approve Till Collections',68),('changestatus','recorddelivery','Change Status',6),('changetaxstatus','sales','Change Tax Status',30),('changeuomonsales','sales','Change Unit Of Measurement',33),('checkin','accomodation','View Room window',4),('checkinroom','accomodation','Check in Rooms',2),('checkoutcustomerwithbalance','accomodation','Check out customer with balance',20),('checkoutroom','accomodation','Check out Room',3),('cheque','accomodation','Sale in Cheque/Bank',2),('cheque','sales','Cheque/Bank sales',8),('ClaimDamaged','recorddelivery','Change to Claim Damaged',17),('ClaimOK','recorddelivery','Cahange to Claim OK',16),('Claimraised','recorddelivery','Change to Claim raised',15),('cleanrooms','accomodation','Clean Rooms',4),('clear','viewreturnsales','Clear Sales',5),('clearallsales','cashiersales','Clear all sales for others',10),('clearpayments','sales','Clear/Add payments',7),('clearsales','accomodation','Clear room sales',40),('clearsalesisdefault','cashiersales','Enable Clear-Sales Page As Default',79),('closebill','sales',' Close Bill',6),('closeexpense','incomeexpenses','Close Expense',3),('config','accomodation','Accommodation Settings',33),('credit','accomodation','Sale in Credit',2),('credit','sales','Credit sales',10),('creditnote','sales','Credit Note',8),('customerregister','accomodation','Customer Register',10),('dailycollections','accomodation','Daily Collections',56),('dailypayments','accomodation','View Daily Payments',10),('dailysales','accomodation',' Daily Sales',1),('dailysalesonly','cashiersales','View Only Daily sales Report',40),('delete','assets','Delete',5),('delete','bankdeposits','delete',3),('delete','branch','Delete Branch',5),('delete','callcenter','Delete calls',5),('delete','cashiersales','Delete Sales',4),('delete','complain','Delete Complain',11),('delete','config','delete',0),('delete','damagedproducts','delete',3),('delete','deals','delete',3),('delete','documents','delete',3),('delete','ecommerce','delete',3),('delete','events','delete',3),('delete','grouping','delete',3),('delete','humanresource','Delete Expense Request Form',3),('delete','incomingstock','delete',3),('delete','incomingstore','Delete incoming',3),('delete','peoplecategory','delete',3),('delete','productlist','Delete Products',4),('delete','products','delete',3),('delete','productscategory','delete',3),('delete','projectsmanagement','Delete Products',5),('delete','purchases','delete',3),('delete','quotation','Delete',3),('delete','recorddelivery','Delete Delivery',5),('delete','reports','Delete sales',3),('delete','sales','delete',3),('delete','sendsms','delete',3),('delete','task','delete',3),('delete','taskscategory','delete',3),('delete','users','delete',3),('delete','viewreturnsales','delete',3),('delete','wholesale','delete',2),('deleteallroles','users','Delete all Roles',5),('deletebank','accounting','Delete Bank Account',2),('deletedailycollections','cashiersales','Delete Daily Collections',9),('deleteglaccount','accounting','Delete GL Account',4),('deleteorder','products','Delete Order',5),('deletepeople','members','Delete Contacts',5),('deleteproductionitem','productlist','Delete Production Item',63),('Delivered','recorddelivery','Change to Delivered',14),('detailedvatinvoice','income','Show Detailed Vat Invoice',5),('discount','sales','Print Discount',5),('dispatch','products','Dispatch Products',6),('Dispatched','recorddelivery','Change to Dispatched',10),('displaycustomers','sales','Display employees using buttons',5),('dontprint','sales','Display Dont Print Button',15),('dontshowbp','reports','Dont Show B.Price',7),('dontshowprofit','reports','Don Not Show Profit',10),('dontshowstock','productlist','Dont show stock',82),('dontshowstock','products','Dont show stock',80),('dontshowstock','sales','Dont show stock balance during sales',30),('dontshowtotal','cashiersales','Do Not Show grand Total',6),('download','callcenter','download calls',4),('download','reports','download',2),('editmpesa','cashiersales','Enter Mpesa Amount Directly',3),('editmpesadate','cashiersales','Edit Mpesa Entry date',5),('editopenclosestock','productlist','Update Closing and Opening stock',10),('editsellingprice','sales','Change Selling Price',7),('editstocktaken','productlist','Change closed and stock taken',9),('entermpesacode','cashiersales','Enter Mpesa Code',3),('entermpesacode','sales','Enter Mpesa Code',40),('FailedDelivery','recorddelivery','Change to Failed Delivery',12),('givediscount','accomodation','Give Discount',4),('giveloyalityponts','sales','Give Poinsts',30),('housekeeping','accomodation','House Keeping',9),('leaseitems','sales','Lease Items',30),('leavesetup','humanresource','Add Leave setup',8),('linksalesorders','openclose','Link Order and sales',4),('Logout','sales','Log out After printing',5),('managecustomer','accomodation','Manager Customer',22),('managehotel','accomodation','Manage Hotel',6),('managerental','accomodation','Manage Rental Houses',8),('mergebill','sales','Merge Bill:',32),('more','lowstocklist','View more',6),('more','productlist','View Added stock',2),('more','products','more',4),('moresales','sales','Add More Sales',4),('moresales','viewreturnsales','Add more Sales',5),('move','productlist','Move stock/ Break/Distribute',2),('mpesa','accomodation','Sale in mpesa',2),('mpesa','sales','Sale in Mpesa',6),('mpesabalance','sales','Bank /Mpesa Balance',5),('mpesapendingreport','cashiersales','View All Pending Mpesa Report',20),('mpesaverifiedreport','cashiersales','View All Verified Mpesa Report',21),('negativesales','sales','Make Negative sales',60),('negativestockadjustment','productlist','Negative Stock Adjustment',51),('negativestockadjustment','products','Negative Stock Adjustment',51),('Novatsales','config','No Vat Sales',20),('opencloseshift','members','Open and Close Employee Shift',26),('openclosestock','productlist','Open and Close stock',8),('order','sales','User Order Button',6),('pendingisdefault','cashiersales','Enable Pending Page As Default',69),('plotexpenses','accomodation','Plot Expenses',63),('points','accomodation','Sale in Loyality Points',2),('points','sales','Loyality Point sales',9),('Post Bank Deposits','accomodation','bankdeposits',6),('postexpense','accomodation','Post Expense',5),('postgeneraltask','task','Post General Task',5),('postrentalexpenses','incomeexpenses','Post rental Expeses',20),('postspecifictask','task','Post Specific Task',3),('posttaskforothers','task','Post task for others',11),('price','products','change price',7),('printbill','sales',' Print Bill',6),('printdelivery','sales','Print delivery',38),('printreceipt','sales','Print Receipt',1),('productcode','config','Display Product code in receipt',5),('productdiscount','sales','Give discount Product',6),('receiptno','sales','Enter Receipt No Directly',50),('receiveoverpayment','income','Receive overpayment',7),('recordcoins','sales','Record Savings/Coins',26),('removeallstock','products','View all outgoing stock',7),('removestock','products','Issue stock from store',6),('report','recorddelivery','Delivery Report',9),('reprint','sales','Reprint Receipt',5),('return','viewreturnsales','Return Sales',4),('ReturnedandReceived','recorddelivery','Change to Returned and Received',13),('reversempesa','cashiersales','Reverse Mpesa',9),('sale','sales','sale',4),('sale','wholesale','sale',0),('salebelowbprice','sales','Can sell below set b.price',10),('salesbeyondbprice','sales','Can sell below set s.price',9),('salesorder','purchases','Sales Order',10),('salesperson','sales','Choose Sales person',50),('select','sales','Select Customers',5),('selectcurrency','sales','Select Currency',50),('selectmessage','sales','Select Order Message',1),('selectroom','sales','Select Room',12),('selecttable','sales','Select Table',35),('sell','openclose','Sell',1),('sendsms','sales','Send Digital Receipt/Sms',40),('setup','ecommerce','Setup E-commerce',6),('showdefaultserials','purchases','Generate with default Serial Numbers',20),('splitbill','sales','Split Bill',31),('stocktaking','productlist','Do stock Taking',8),('suspend','sales','Suspend/Cancel Sales',1),('transfer','productlist','Transfer Products',3),('transfersms','sendsms','Transfer sms to others',5),('upadate','callcenter','Update',2),('update','assets','Update',2),('update','bankdeposits','update',2),('update','branch','Update Branch',3),('update','complain','Update Complain',6),('update','config','update',2),('update','damagedproducts','update',2),('update','deals','update',2),('update','documents','update',2),('update','ecommerce','Upadate Data',2),('update','events','update',2),('update','grouping','update',2),('update','humanresource','Update Expense Request Form',2),('update','incomeexpenses','update',3),('update','incomingstock','update',2),('update','lowproducts','update',1),('update','loyalitycards','update',2),('update','members','update',2),('update','peoplecategory','update',2),('update','productlist','Update Product',6),('update','products','update',2),('update','productscategory','update',2),('update','profile','update',1),('update','projectsmanagement','Edit Projects',4),('update','purchases','update',2),('update','quotation','Update',2),('update','recorddelivery','Update Delivery',3),('update','reports','update sales',4),('update','sales','update',2),('update','sendsms','update',2),('update','task','update',2),('update','taskscategory','update',2),('update','users','update',2),('update','viewreturnsales','update',2),('update','wholesale','update',4),('updatebuyingprice','purchases','update buying price',4),('updatecharges','accomodation','Update Room Charges',4),('updateclosedexpenses','incomeexpenses','Edit closed expenses',4),('updateclosedinvoice','purchases','update closed invoice',6),('updatedailycollections','cashiersales','Update Daily Collection',9),('updatehouse','accomodation','Update House',5),('updatepaymentmode','sales','Update Payment Mode',7),('updateproductionitem','productlist','Update Production Item',64),('updateqtysales','sales','Update Quantity on sales Window',61),('UpdateRenewal','members','Update Renewal',30),('updateroom','accomodation','Update Room',5),('updatesellingprice','purchases','update selling price',5),('updatestock','productlist','Update Stock (Cl.Stock)',2),('usekeyboard','sales','Use Internal Keyboard',50),('view','accounting','View Accounting',4),('view','accountingreports','view',1),('view','branch','View Branch',2),('view','callcenter','View Calls',3),('view','complain','View Complain',5),('view','displayreport','Display Report',1),('view','humanresource','View Expense Request Form',4),('View','income','View',1),('view','incomingstock','View Incoming store products',2),('view','incomingstore','View Incoming store products',4),('view','lowstocklist','View',6),('view','productlist','View Products',5),('view','projectsmanagement','View Projects',1),('view','quotation','View',5),('view','recorddelivery','View Delivery',2),('view','reports','view',1),('View others contact','deals','viewcontact',20),('viewall','deals','View other people\'s deals',5),('viewall','quotation','View others quoation',10),('viewall','reports','View all Branches',6),('viewall','task','View other people\'s tasks',2),('viewallcollections','cashiersales','View Others Daily Collection',16),('viewallcounters','cashiersales','View All Counters',20),('viewallcounters','purchases','View All Counters',20),('viewalldocuments','documents','View all Documents',5),('viewallpayroll','humanresource','View Payroll For everyone',5),('viewbills','incomeexpenses','View Bills',6),('viewbprice','productlist','Dont View Bprice',88),('viewbprice','products','Dont View Bprice',88),('viewbuyingprice','sales','view buying price',7),('viewcommission','cashiersales','View Commision',31),('viewcreditors','incomeexpenses','VIew creditors',8),('viewdailycollections','cashiersales','View Daily Collection',8),('viewdebtors','incomeexpenses','View Deptors',7),('viewdirectpurchases','purchases','View Direct Purchase',8),('viewexpense','incomeexpenses','View Expense',6),('viewhouse','accomodation','View House',1),('viewmpesamessages','cashiersales','View Mpesa Messages',40),('vieworders','ecommerce','View Orders',4),('viewothersgeneraltask','task','View Others General Task',9),('viewothersspecifictask','task','View Others Specific Task',7),('viewproduction','productlist','View Production',60),('viewproductsfromallbranches','productlist','View Products From All Branches',30),('viewpurchase','purchases','Purchase Order',9),('viewquotation','purchases','View Quotation',7),('viewreport','openclose','view open and close report',3),('viewreports','accomodation','View Reports',22),('viewroomcleaned','accomodation','View Room Cleaned',33),('viewrooms','accomodation','View All Rooms',1),('viewserials','productlist','View serial Number',20),('viewserials','purchases','View serial Numbers',8),('viewtill','cashiersales','View Till Collections',8),('voucher','accomodation','Sale in Voucher',2),('voucher','sales','Gift Voucher sales',9),('wiewinvoices','income','View all invoices',3),('wiewinvoices','incomeexpenses','View all invoices',5); /*!40000 ALTER TABLE `modulesactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `moneydocuments` -- DROP TABLE IF EXISTS `moneydocuments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `moneydocuments` ( `id` int(50) NOT NULL, `name` text NOT NULL, `imageid` varchar(50) NOT NULL, `user` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `moneydocuments` -- LOCK TABLES `moneydocuments` WRITE; /*!40000 ALTER TABLE `moneydocuments` DISABLE KEYS */; /*!40000 ALTER TABLE `moneydocuments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mpesasales` -- DROP TABLE IF EXISTS `mpesasales`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `mpesasales` ( `id` int(11) NOT NULL AUTO_INCREMENT, `amount` decimal(10,2) NOT NULL, `userid` int(20) NOT NULL, `companyid` int(5) NOT NULL, `dateposted` varchar(30) NOT NULL, `paymentstatus` varchar(10) NOT NULL, `branch` int(10) NOT NULL, `type` varchar(30) NOT NULL, `code` varchar(50) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mpesasales` -- LOCK TABLES `mpesasales` WRITE; /*!40000 ALTER TABLE `mpesasales` DISABLE KEYS */; /*!40000 ALTER TABLE `mpesasales` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nation` -- DROP TABLE IF EXISTS `nation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `nation` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(2) NOT NULL DEFAULT '', `name` varchar(100) NOT NULL DEFAULT '', `description` varchar(40) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=245 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nation` -- LOCK TABLES `nation` WRITE; /*!40000 ALTER TABLE `nation` DISABLE KEYS */; INSERT INTO `nation` VALUES (1,'KE','Kenya',''),(2,'CA','Canada',''),(3,'AF','Afghanistan',''),(4,'AL','Albania',''),(5,'DZ','Algeria',''),(6,'DS','American Samoa',''),(7,'AD','Andorra',''),(8,'AO','Angola',''),(9,'AI','Anguilla',''),(10,'AQ','Antarctica',''),(11,'AG','Antigua and/or Barbuda',''),(12,'AR','Argentina',''),(13,'AM','Armenia',''),(14,'AW','Aruba',''),(15,'AU','Australia',''),(16,'AT','Austria',''),(17,'AZ','Azerbaijan',''),(18,'BS','Bahamas',''),(19,'BH','Bahrain',''),(20,'BD','Bangladesh',''),(21,'BB','Barbados',''),(22,'BY','Belarus',''),(23,'BE','Belgium',''),(24,'BZ','Belize',''),(25,'BJ','Benin',''),(26,'BM','Bermuda',''),(27,'BT','Bhutan',''),(28,'BO','Bolivia',''),(29,'BA','Bosnia and Herzegovina',''),(30,'BW','Botswana',''),(31,'BV','Bouvet Island',''),(32,'BR','Brazil',''),(33,'IO','British lndian Ocean Territory',''),(34,'BN','Brunei Darussalam',''),(35,'BG','Bulgaria',''),(36,'BF','Burkina Faso',''),(37,'BI','Burundi',''),(38,'KH','Cambodia',''),(39,'CM','Cameroon',''),(40,'CV','Cape Verde',''),(41,'KY','Cayman Islands',''),(42,'CF','Central African Republic',''),(43,'TD','Chad',''),(44,'CL','Chile',''),(45,'CN','China',''),(46,'CX','Christmas Island',''),(47,'CC','Cocos (Keeling) Islands',''),(48,'CO','Colombia',''),(49,'KM','Comoros',''),(50,'CG','Congo',''),(51,'CK','Cook Islands',''),(52,'CR','Costa Rica',''),(53,'HR','Croatia (Hrvatska)',''),(54,'CU','Cuba',''),(55,'CY','Cyprus',''),(56,'CZ','Czech Republic',''),(57,'DK','Denmark',''),(58,'DJ','Djibouti',''),(59,'DM','Dominica',''),(60,'DO','Dominican Republic',''),(61,'TP','East Timor',''),(62,'EC','Ecuador',''),(63,'EG','Egypt',''),(64,'SV','El Salvador',''),(65,'GQ','Equatorial Guinea',''),(66,'ER','Eritrea',''),(67,'EE','Estonia',''),(68,'ET','Ethiopia',''),(69,'FK','Falkland Islands (Malvinas)',''),(70,'FO','Faroe Islands',''),(71,'FJ','Fiji',''),(72,'FI','Finland',''),(73,'FR','France',''),(74,'FX','France, Metropolitan',''),(75,'GF','French Guiana',''),(76,'PF','French Polynesia',''),(77,'TF','French Southern Territories',''),(78,'GA','Gabon',''),(79,'GM','Gambia',''),(80,'GE','Georgia',''),(81,'DE','Germany',''),(82,'GH','Ghana',''),(83,'GI','Gibraltar',''),(84,'GR','Greece',''),(85,'GL','Greenland',''),(86,'GD','Grenada',''),(87,'GP','Guadeloupe',''),(88,'GU','Guam',''),(89,'GT','Guatemala',''),(90,'GN','Guinea',''),(91,'GW','Guinea-Bissau',''),(92,'GY','Guyana',''),(93,'HT','Haiti',''),(94,'HM','Heard and Mc Donald Islands',''),(95,'HN','Honduras',''),(96,'HK','Hong Kong',''),(97,'HU','Hungary',''),(98,'IS','Iceland',''),(99,'IN','India',''),(100,'ID','Indonesia',''),(101,'IR','Iran (Islamic Republic of)',''),(102,'IQ','Iraq',''),(103,'IE','Ireland',''),(104,'IL','Israel',''),(105,'IT','Italy',''),(106,'CI','Ivory Coast',''),(107,'JM','Jamaica',''),(108,'JP','Japan',''),(109,'JO','Jordan',''),(110,'KZ','Kazakhstan',''),(111,'US','United States ',''),(112,'KI','Kiribati',''),(113,'KP','Korea, Democratic People\'s Republic of',''),(114,'KR','Korea, Republic of',''),(115,'XK','Kosovo',''),(116,'KW','Kuwait',''),(117,'KG','Kyrgyzstan',''),(118,'LA','Lao People\'s Democratic Republic',''),(119,'LV','Latvia',''),(120,'LB','Lebanon',''),(121,'LS','Lesotho',''),(122,'LR','Liberia',''),(123,'LY','Libyan Arab Jamahiriya',''),(124,'LI','Liechtenstein',''),(125,'LT','Lithuania',''),(126,'LU','Luxembourg',''),(127,'MO','Macau',''),(128,'MK','Macedonia',''),(129,'MG','Madagascar',''),(130,'MW','Malawi',''),(131,'MY','Malaysia',''),(132,'MV','Maldives',''),(133,'ML','Mali',''),(134,'MT','Malta',''),(135,'MH','Marshall Islands',''),(136,'MQ','Martinique',''),(137,'MR','Mauritania',''),(138,'MU','Mauritius',''),(139,'TY','Mayotte',''),(140,'MX','Mexico',''),(141,'FM','Micronesia, Federated States of',''),(142,'MD','Moldova, Republic of',''),(143,'MC','Monaco',''),(144,'MN','Mongolia',''),(145,'ME','Montenegro',''),(146,'MS','Montserrat',''),(147,'MA','Morocco',''),(148,'MZ','Mozambique',''),(149,'MM','Myanmar',''),(150,'NA','Namibia',''),(151,'NR','Nauru',''),(152,'NP','Nepal',''),(153,'NL','Netherlands',''),(154,'AN','Netherlands Antilles',''),(155,'NC','New Caledonia',''),(156,'NZ','New Zealand',''),(157,'NI','Nicaragua',''),(158,'NE','Niger',''),(159,'NG','Nigeria',''),(160,'NU','Niue',''),(161,'NF','Norfork Island',''),(162,'MP','Northern Mariana Islands',''),(163,'NO','Norway',''),(164,'OM','Oman',''),(165,'PK','Pakistan',''),(166,'PW','Palau',''),(167,'PA','Panama',''),(168,'PG','Papua New Guinea',''),(169,'PY','Paraguay',''),(170,'PE','Peru',''),(171,'PH','Philippines',''),(172,'PN','Pitcairn',''),(173,'PL','Poland',''),(174,'PT','Portugal',''),(175,'PR','Puerto Rico',''),(176,'QA','Qatar',''),(177,'RE','Reunion',''),(178,'RO','Romania',''),(179,'RU','Russian Federation',''),(180,'RW','Rwanda',''),(181,'KN','Saint Kitts and Nevis',''),(182,'LC','Saint Lucia',''),(183,'VC','Saint Vincent and the Grenadines',''),(184,'WS','Samoa',''),(185,'SM','San Marino',''),(186,'ST','Sao Tome and Principe',''),(187,'SA','Saudi Arabia',''),(188,'SN','Senegal',''),(189,'RS','Serbia',''),(190,'SC','Seychelles',''),(191,'SL','Sierra Leone',''),(192,'SG','Singapore',''),(193,'SK','Slovakia',''),(194,'SI','Slovenia',''),(195,'SB','Solomon Islands',''),(196,'SO','Somalia',''),(197,'ZA','South Africa',''),(198,'GS','South Georgia South Sandwich Islands',''),(199,'ES','Spain',''),(200,'LK','Sri Lanka',''),(201,'SH','St. Helena',''),(202,'PM','St. Pierre and Miquelon',''),(203,'SD','Sudan',''),(204,'SR','Suriname',''),(205,'SJ','Svalbarn and Jan Mayen Islands',''),(206,'SZ','Swaziland',''),(207,'SE','Sweden',''),(208,'CH','Switzerland',''),(209,'SY','Syrian Arab Republic',''),(210,'TW','Taiwan',''),(211,'TJ','Tajikistan',''),(212,'TZ','Tanzania, United Republic of',''),(213,'TH','Thailand',''),(214,'TG','Togo',''),(215,'TK','Tokelau',''),(216,'TO','Tonga',''),(217,'TT','Trinidad and Tobago',''),(218,'TN','Tunisia',''),(219,'TR','Turkey',''),(220,'TM','Turkmenistan',''),(221,'TC','Turks and Caicos Islands',''),(222,'TV','Tuvalu',''),(223,'UG','Uganda',''),(224,'UA','Ukraine',''),(225,'AE','United Arab Emirates',''),(226,'GB','United Kingdom',''),(227,'UM','United States minor outlying islands',''),(228,'UY','Uruguay',''),(229,'UZ','Uzbekistan',''),(230,'VU','Vanuatu',''),(231,'VA','Vatican City State',''),(232,'VE','Venezuela',''),(233,'VN','Vietnam',''),(234,'VG','Virigan Islands (British)',''),(235,'VI','Virgin Islands (U.S.)',''),(236,'WF','Wallis and Futuna Islands',''),(237,'EH','Western Sahara',''),(238,'YE','Yemen',''),(239,'YU','Yugoslavia',''),(240,'ZR','Zaire',''),(241,'ZM','Zambia',''),(242,'ZW','Zimbabwe',''),(243,'','ugali',' \r\n'),(244,'SA','South Sudan','South Sudan'); /*!40000 ALTER TABLE `nation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newstock` -- DROP TABLE IF EXISTS `newstock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `newstock` ( `id` int(50) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `total` decimal(10,2) NOT NULL, `date` varchar(50) NOT NULL, `item_id1` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'newstock', `companyid` varchar(100) NOT NULL, `invoice_number` varchar(30) NOT NULL, `supplier` varchar(30) NOT NULL, `buyingprice` decimal(10,2) NOT NULL, `amount` varchar(30) NOT NULL, `type` varchar(30) NOT NULL DEFAULT '1', `balance` varchar(30) NOT NULL, `stockfrom` varchar(50) NOT NULL, `stockto` varchar(50) NOT NULL, `item_id` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `discount` varchar(10) NOT NULL, `qty` decimal(10,2) NOT NULL, `tax` varchar(30) NOT NULL, `sellingprice` varchar(11) NOT NULL, `vat` varchar(50) NOT NULL, `taxable` varchar(50) NOT NULL, `vatrate` varchar(50) NOT NULL DEFAULT '16', `serial` varchar(30) NOT NULL, `itemstatus` varchar(30) NOT NULL DEFAULT 'received', `updatedby` int(11) NOT NULL, `updatedat` datetime NOT NULL, `uom` varchar(30) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `branchid` int(11) NOT NULL DEFAULT 1, `buyingpriceinclusive` decimal(10,2) DEFAULT NULL, `taxtype` varchar(20) NOT NULL DEFAULT 'Inclusive', `category` varchar(20) NOT NULL DEFAULT 'branch', `projectid` int(50) DEFAULT NULL, `batchno` varchar(50) NOT NULL, `enddate` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newstock` -- LOCK TABLES `newstock` WRITE; /*!40000 ALTER TABLE `newstock` DISABLE KEYS */; INSERT INTO `newstock` VALUES (1,'EPIMOL-B BABY & JUNIOR EMOLLIENT CREAM 150G','',1.00,'2023-05-26 14:40:56','0.00','1','newstock','1','','',126.60,'','1','1','internal','1','5001872','','',0.00,'','1000','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2,'','1',10.00,'2023-05-26 14:49:50','0.00','1','newstock','1','11685101752','116',126.60,'','1','10','supplier','1','5001872','','',0.00,'VATABLE','1000','174.62','1091.38','16.00','','received',0,'0000-00-00 00:00:00','pcs','10',1,NULL,'Inclusive','branch',NULL,'',''),(3,'','1',10.00,'2023-05-26 14:53:31','10.00','1','newstock','1','11685101992','109',126.60,'','1','20','supplier','1','5001872','','',0.00,'VATABLE','1000','174.62','1091.38','16.00','','received',0,'0000-00-00 00:00:00','pcs','10',1,NULL,'Inclusive','branch',NULL,'',''),(4,'','1',10.00,'2023-05-26 14:55:47','20.00','1','newstock','1','11685102047','112',126.60,'','1','30','supplier','1','5001872','','',0.00,'VATABLE','1000','174.62','1091.38','16.00','','received',0,'0000-00-00 00:00:00','pcs','10',1,NULL,'Inclusive','branch',NULL,'',''),(5,'TRAMAL 50MG TABS 10S','',10.00,'2023-05-26 15:24:46','0.00','1','newstock','1','','',135.60,'','1','10','internal','1','5001871','','',0.00,'','300','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(6,'LAMISIL 250MG TABS 14S','',10.00,'2023-05-26 15:24:54','0.00','1','newstock','1','','',126.60,'','1','10','internal','1','5001870','','',0.00,'','900','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(7,'LAMISIL 250MG TABS 14S','',10.00,'2023-05-26 15:34:51','0.00','1','newstock','1','','',126.60,'','1','10','internal','1','5001870','','',0.00,'','900','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''); /*!40000 ALTER TABLE `newstock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newupgrade` -- DROP TABLE IF EXISTS `newupgrade`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `newupgrade` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) DEFAULT NULL, `companyid` int(11) NOT NULL DEFAULT 1, `description` text NOT NULL, `phone` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, `exactdate` varchar(50) NOT NULL, `comment` text NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'new', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newupgrade` -- LOCK TABLES `newupgrade` WRITE; /*!40000 ALTER TABLE `newupgrade` DISABLE KEYS */; INSERT INTO `newupgrade` VALUES (1,'General systems',1,'','','','','','new'),(2,'E-commerce',1,'','','','','','new'),(3,'Biometric',1,'','','','','','new'),(4,'Website',1,'','','','','','new'),(5,'PMS',1,'','','','','','new'),(6,'Bulk sms',1,'','','','','','new'),(7,'Pos',1,'','','','','','new'); /*!40000 ALTER TABLE `newupgrade` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nhif` -- DROP TABLE IF EXISTS `nhif`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `nhif` ( `id` int(50) NOT NULL AUTO_INCREMENT, `start` decimal(10,2) NOT NULL, `end` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `category` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `nhifrelief` decimal(10,2) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nhif` -- LOCK TABLES `nhif` WRITE; /*!40000 ALTER TABLE `nhif` DISABLE KEYS */; INSERT INTO `nhif` VALUES (1,0.00,5999.00,150.00,1,1,'active','employee',1,22.50),(2,6000.00,7999.00,300.00,1,1,'active','employee',1,45.00),(3,8000.00,11999.00,400.00,1,1,'active','employee',1,60.00),(4,12000.00,14999.00,500.00,1,1,'active','employee',1,75.00),(5,15000.00,19999.00,600.00,1,1,'active','employee',1,90.00),(6,20000.00,24999.00,750.00,1,1,'active','employee',1,112.50),(7,25000.00,29999.00,850.00,1,1,'active','employee',1,127.50),(8,30000.00,34999.00,900.00,1,1,'active','employee',1,135.00),(9,35000.00,39000.00,950.00,1,1,'active','employee',1,142.50),(10,40000.00,44999.00,1000.00,1,1,'active','employee',1,150.00),(11,45000.00,49000.00,1100.00,1,1,'active','employee',1,165.00),(12,50000.00,59999.00,1200.00,1,1,'active','employee',1,180.00),(13,60000.00,69999.00,1300.00,1,1,'active','employee',1,195.00),(14,70000.00,79999.00,1400.00,1,1,'active','employee',1,210.00),(15,80000.00,89999.00,1500.00,1,1,'active','employee',1,225.00),(16,90000.00,99999.00,1600.00,1,1,'active','employee',1,240.00),(17,100000.00,99999999.00,1700.00,1,1,'active','employee',1,255.00),(18,0.00,0.00,500.00,1,1,'active','employer',1,75.00); /*!40000 ALTER TABLE `nhif` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nssf` -- DROP TABLE IF EXISTS `nssf`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `nssf` ( `id` int(11) NOT NULL AUTO_INCREMENT, `start` decimal(10,2) NOT NULL, `end` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `category` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `tire1` decimal(10,2) NOT NULL, `tire2` decimal(10,2) NOT NULL, `tire1tire2` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nssf` -- LOCK TABLES `nssf` WRITE; /*!40000 ALTER TABLE `nssf` DISABLE KEYS */; INSERT INTO `nssf` VALUES (1,0.00,3000.00,180.00,1,1,'active','employee',1,180.00,0.00,180.00),(2,3000.00,4500.00,270.00,1,1,'active','employee',1,270.00,0.00,270.00),(3,4500.00,6000.00,360.00,1,1,'active','employee',1,360.00,0.00,360.00),(4,6000.00,10000.00,360.00,1,1,'active','employee',1,360.00,240.00,600.00),(5,10000.00,14000.00,360.00,1,1,'active','employee',1,360.00,480.00,840.00),(6,14000.00,18000.00,360.00,1,1,'active','employee',1,360.00,720.00,1080.00),(7,18000.00,20000.00,360.00,1,1,'active','employee',1,360.00,720.00,1080.00),(8,20000.00,100000.00,360.00,1,1,'active','employee',1,360.00,720.00,1080.00),(9,100000.00,500000.00,360.00,1,1,'active','employee',1,360.00,720.00,1080.00); /*!40000 ALTER TABLE `nssf` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `offdays` -- DROP TABLE IF EXISTS `offdays`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `offdays` ( `id` int(11) NOT NULL AUTO_INCREMENT, `groupid` int(11) NOT NULL, `offday` varchar(30) NOT NULL, `type` int(11) NOT NULL, `title` varchar(128) NOT NULL, `userid` varchar(30) DEFAULT NULL, `createdate` varchar(30) NOT NULL, PRIMARY KEY (`id`), KEY `type` (`type`), KEY `contract` (`groupid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='List of non working days'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `offdays` -- LOCK TABLES `offdays` WRITE; /*!40000 ALTER TABLE `offdays` DISABLE KEYS */; /*!40000 ALTER TABLE `offdays` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `offtypes` -- DROP TABLE IF EXISTS `offtypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `offtypes` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `offtypes` -- LOCK TABLES `offtypes` WRITE; /*!40000 ALTER TABLE `offtypes` DISABLE KEYS */; INSERT INTO `offtypes` VALUES (1,'All day is off','2018-05-17 04:40:12am'),(2,'Half day is off','2018-05-17 04:41:13am'),(3,'Morning is off ','2018-05-17 04:41:30am'),(4,'Afternoon is off','2018-05-17 04:41:30am'); /*!40000 ALTER TABLE `offtypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `openorders` -- DROP TABLE IF EXISTS `openorders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `openorders` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `description` text NOT NULL, `startdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(30) NOT NULL, `messageid` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `updateddate` varchar(30) NOT NULL, `closedate` text NOT NULL, `receiver` text NOT NULL, `millage` varchar(30) NOT NULL, `fuel` varchar(50) NOT NULL, `trips` text NOT NULL, `createdate` varchar(30) NOT NULL, `nextfuel` varchar(20) NOT NULL, `previoufueldate` varchar(30) NOT NULL, `previousfuelused` varchar(20) NOT NULL, `adjusted` varchar(20) NOT NULL, `fuellimit` varchar(20) NOT NULL, `fuelrate` varchar(20) NOT NULL, `exactfuel` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `openorders` -- LOCK TABLES `openorders` WRITE; /*!40000 ALTER TABLE `openorders` DISABLE KEYS */; /*!40000 ALTER TABLE `openorders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orderlist` -- DROP TABLE IF EXISTS `orderlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `orderlist` ( `id` int(30) NOT NULL AUTO_INCREMENT, `type` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `exactime` varchar(50) NOT NULL, `batchid` varchar(50) NOT NULL, `itemid` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `qty` decimal(10,2) DEFAULT NULL, `companyid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `code` varchar(30) NOT NULL, `amount` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `orderlist` -- LOCK TABLES `orderlist` WRITE; /*!40000 ALTER TABLE `orderlist` DISABLE KEYS */; INSERT INTO `orderlist` VALUES (1,'P.O','1','2023-04-28 18:33:10','11682695987','11','11682666208',1.00,1,1,'1',0.00),(2,'P.O','1','2023-04-28 18:34:56','11682696083','13','11682666208',1.00,1,1,'1',0.00),(3,'P.O','1','2023-04-28 18:34:56','11682696083','12','11682666208',1.00,1,1,'3',0.00); /*!40000 ALTER TABLE `orderlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `outgoingstock` -- DROP TABLE IF EXISTS `outgoingstock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `outgoingstock` ( `id` int(50) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `total` varchar(50) NOT NULL, `date` varchar(50) NOT NULL, `item_id` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'newstock', `companyid` varchar(100) NOT NULL, `invoice_number` varchar(30) NOT NULL, `supplier` varchar(30) NOT NULL, `buyingprice` varchar(30) NOT NULL, `amount` varchar(30) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'shop', `comments` text NOT NULL, `branchid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `outgoingstock` -- LOCK TABLES `outgoingstock` WRITE; /*!40000 ALTER TABLE `outgoingstock` DISABLE KEYS */; /*!40000 ALTER TABLE `outgoingstock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `parceldelivery` -- DROP TABLE IF EXISTS `parceldelivery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `parceldelivery` ( `id` int(10) NOT NULL AUTO_INCREMENT, `branchfrom` varchar(50) NOT NULL, `serial` varchar(50) NOT NULL, `qty` varchar(50) NOT NULL, `details` text NOT NULL, `dateposted` datetime NOT NULL, `customer` varchar(40) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `entrydate` varchar(50) NOT NULL, `supplier` varchar(30) NOT NULL, `original` text NOT NULL, `balance` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `amount` varchar(10) NOT NULL DEFAULT '0.00', `duedate` varchar(20) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'Dispatched', `mode` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `totalamount` varchar(30) NOT NULL DEFAULT '', `type` varchar(50) DEFAULT NULL, `receiver` varchar(50) NOT NULL, `receiverphone` varchar(50) NOT NULL, `receiveraddress` text NOT NULL, `origin` text NOT NULL, `destination` text NOT NULL, `weight` varchar(50) NOT NULL, `receiveremail` varchar(50) DEFAULT NULL, `totalvalue` varchar(20) NOT NULL, `vat` decimal(10,2) NOT NULL, `vatable` decimal(10,2) NOT NULL, `receiveridno` varchar(20) NOT NULL, `riderdetails` text NOT NULL, `senderidno` varchar(50) NOT NULL, `senderphone` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `parceldelivery` -- LOCK TABLES `parceldelivery` WRITE; /*!40000 ALTER TABLE `parceldelivery` DISABLE KEYS */; /*!40000 ALTER TABLE `parceldelivery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `password_resets` -- DROP TABLE IF EXISTS `password_resets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `password_resets` ( `email` varchar(255) NOT NULL, `token` varchar(255) NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), KEY `password_resets_email_index` (`email`), KEY `password_resets_token_index` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `password_resets` -- LOCK TABLES `password_resets` WRITE; /*!40000 ALTER TABLE `password_resets` DISABLE KEYS */; /*!40000 ALTER TABLE `password_resets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paye` -- DROP TABLE IF EXISTS `paye`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `paye` ( `id` int(11) NOT NULL AUTO_INCREMENT, `start` decimal(10,2) NOT NULL, `end` decimal(15,2) NOT NULL, `amt` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `percentage` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paye` -- LOCK TABLES `paye` WRITE; /*!40000 ALTER TABLE `paye` DISABLE KEYS */; INSERT INTO `paye` VALUES (1,0.00,24000.00,24000.00,1,1,'active',10.00),(2,24001.00,32333.00,8333.00,1,1,'active',25.00),(3,32333.00,10000000000.00,32333.00,1,1,'active',30.00); /*!40000 ALTER TABLE `paye` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paymentmethodes` -- DROP TABLE IF EXISTS `paymentmethodes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `paymentmethodes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `description` text NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'active', `dateposted` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `type` text NOT NULL, `balance` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, `accountno` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paymentmethodes` -- LOCK TABLES `paymentmethodes` WRITE; /*!40000 ALTER TABLE `paymentmethodes` DISABLE KEYS */; INSERT INTO `paymentmethodes` VALUES (1,'cash','Cash payment','active','2021-09-07 05:52:05','1','1','1050','',1,NULL),(2,'mpesa','mpesa','active','2021-09-22 10:35:37','1','1','1010','',1,NULL),(3,'card','card payment','active','2021-09-07 05:52:50','1','1','1030','',1,NULL),(4,'bank','Bank payment','active','2021-09-07 05:53:23','1','1','1030','',1,NULL),(5,'credit','account receivable ','active','2021-09-07 06:31:55','1','1','1100','',1,NULL),(6,'voucher','Directors account','active','2021-09-07 06:32:21','1','1','1040','',1,NULL),(7,'creditnote','Account payable','active','2021-09-07 06:34:11','1','1','2130','',1,NULL),(8,'points','Account redeemable','active','2021-09-07 06:36:16','1','1','2130','',1,NULL); /*!40000 ALTER TABLE `paymentmethodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payments` -- DROP TABLE IF EXISTS `payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `payments` ( `id` int(100) NOT NULL AUTO_INCREMENT, `paidto` varchar(100) NOT NULL, `paiby` varchar(100) NOT NULL, `paiddate` varchar(100) NOT NULL, `todate` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `status` varchar(100) NOT NULL, `approvedby` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `receiptno` varchar(100) NOT NULL DEFAULT 'no', `comments` text NOT NULL, `idno` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payments` -- LOCK TABLES `payments` WRITE; /*!40000 ALTER TABLE `payments` DISABLE KEYS */; /*!40000 ALTER TABLE `payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paymentsection` -- DROP TABLE IF EXISTS `paymentsection`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `paymentsection` ( `id` int(40) NOT NULL AUTO_INCREMENT, `methodid` varchar(100) NOT NULL, `name` varchar(100) NOT NULL, `description` text NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paymentsection` -- LOCK TABLES `paymentsection` WRITE; /*!40000 ALTER TABLE `paymentsection` DISABLE KEYS */; INSERT INTO `paymentsection` VALUES (8,'2','KCB Bank','KCB Bank','2016-04-20 10:39:59','','3','3'),(9,'2','Equity Bank','Equity Bank','2016-04-20 10:40:10','','3','3'),(10,'4','cash','CASH','2016-04-20 10:40:34','','3','3'),(11,'3','Lipa rent','','2016-04-20 10:40:48','','3','3'),(12,'1','Airtel Money','Airtel Money','2016-04-20 10:41:17','','3','3'),(13,'1','M-pesa','M-pesa','2016-04-20 10:41:32','','3','3'),(15,'6','Coparent','Coparent','2016-05-25 04:21:55','','3','3'),(16,'2','Unaitas','Unaitas','2017-12-16 06:51:45','','',''); /*!40000 ALTER TABLE `paymentsection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payroll` -- DROP TABLE IF EXISTS `payroll`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `payroll` ( `id` int(100) NOT NULL AUTO_INCREMENT, `type` varchar(255) NOT NULL, `designation` varchar(255) NOT NULL, `allowance` varchar(255) NOT NULL, `paytype` varchar(255) NOT NULL, `nohours` varchar(255) NOT NULL, `salary` varchar(255) NOT NULL, `nodays` varchar(255) NOT NULL, `nodaysyearly` varchar(255) NOT NULL, `annualsalary` varchar(255) NOT NULL, `monthlysalary` varchar(50) NOT NULL, `dailysalary` varchar(100) DEFAULT NULL, `comments` text NOT NULL, `vat` varchar(50) NOT NULL DEFAULT 'active', `payee` varchar(50) NOT NULL, `nssf` varchar(100) NOT NULL, `nihf` text NOT NULL, `employeeid` varchar(100) NOT NULL, `advance` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `other` varchar(50) NOT NULL, `month` varchar(50) NOT NULL, `year` varchar(50) NOT NULL, `loan` varchar(100) NOT NULL, PRIMARY KEY (`id`), KEY `first_name` (`type`), KEY `last_name` (`designation`), KEY `email` (`paytype`), KEY `phppos_people_ibfk_1` (`dailysalary`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payroll` -- LOCK TABLES `payroll` WRITE; /*!40000 ALTER TABLE `payroll` DISABLE KEYS */; /*!40000 ALTER TABLE `payroll` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `people` -- DROP TABLE IF EXISTS `people`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `people` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nhifrelief` decimal(10,2) DEFAULT NULL, `firstname` varchar(255) NOT NULL, `surname` varchar(20) NOT NULL, `lastname` varchar(255) DEFAULT NULL, `phone` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `password` text NOT NULL, `address_1` varchar(255) NOT NULL, `gender` varchar(255) DEFAULT NULL, `city` varchar(255) NOT NULL, `zip` varchar(255) NOT NULL, `country` varchar(255) NOT NULL, `comments` text NOT NULL, `image_id` varchar(100) DEFAULT NULL, `category` varchar(50) NOT NULL DEFAULT 'accommodation', `status` varchar(50) NOT NULL DEFAULT '1', `company` varchar(50) DEFAULT NULL, `account` varchar(100) NOT NULL, `website` text NOT NULL, `idno` varchar(100) NOT NULL, `balance` decimal(10,2) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `entrydate` varchar(50) NOT NULL, `jobstatus` varchar(30) NOT NULL, `salary` decimal(10,2) NOT NULL, `department` varchar(20) NOT NULL, `dob` varchar(20) NOT NULL, `passport` varchar(30) NOT NULL, `ethnicity` varchar(30) NOT NULL, `religion` varchar(30) NOT NULL, `salarystartdate` varchar(30) NOT NULL, `salaryreviewdate` varchar(30) NOT NULL, `bankname` varchar(30) NOT NULL, `bankaccount` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `method` varchar(30) NOT NULL, `probationdate` varchar(30) NOT NULL, `number` varchar(20) NOT NULL, `relief` decimal(10,2) NOT NULL, `leavegroup` varchar(30) NOT NULL, `manager` varchar(30) NOT NULL, `marital` varchar(30) NOT NULL, `smstype` varchar(20) NOT NULL, `totalsms` decimal(10,2) NOT NULL, `apiaccount_id` int(11) NOT NULL, `photo` text NOT NULL, `code` varchar(30) NOT NULL, `service` varchar(20) NOT NULL, `usertype` varchar(20) NOT NULL DEFAULT 'user', `username` varchar(20) NOT NULL, `county` int(11) NOT NULL, `province` int(11) NOT NULL, `box` int(11) NOT NULL, `town` varchar(20) NOT NULL, `updatedate` varchar(20) NOT NULL, `recoverpassword` int(11) NOT NULL, `createddate` varchar(30) NOT NULL, `rate` decimal(10,2) DEFAULT NULL, `kra` varchar(50) DEFAULT NULL, `nssf` varchar(50) DEFAULT NULL, `nhif` varchar(50) DEFAULT NULL, `paid` varchar(20) NOT NULL, `supplierbalance` decimal(10,2) NOT NULL, `balanceuploaded` int(11) DEFAULT 0, `savedcoins` decimal(10,2) NOT NULL, `savedpoints` decimal(10,2) NOT NULL, `customerlimit` varchar(10) NOT NULL DEFAULT 'no', `limitamount` decimal(10,2) NOT NULL, `dropdown` varchar(10) NOT NULL DEFAULT 'no', `lastbalancedate` varchar(30) NOT NULL, `accountname` varchar(30) NOT NULL, `accountno` varchar(30) NOT NULL, `certificate` varchar(30) NOT NULL, `shares` varchar(30) NOT NULL, `certificateno` varchar(30) NOT NULL, `renewaldetails` varchar(30) DEFAULT NULL, `salesperson` varchar(10) DEFAULT NULL, `idnumber` text DEFAULT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `bankcode` varchar(20) DEFAULT NULL, `branchcode` varchar(20) DEFAULT NULL, `group` int(20) DEFAULT NULL, `transactionid` varchar(50) NOT NULL, `smscode` varchar(50) NOT NULL, `timesent` datetime NOT NULL, `computerno` text NOT NULL, `computernostatus` varchar(20) NOT NULL DEFAULT 'new', `computernodate` varchar(50) NOT NULL, `computernouserdata` text NOT NULL, PRIMARY KEY (`id`), KEY `first_name` (`firstname`), KEY `last_name` (`lastname`), KEY `email` (`email`), KEY `phppos_people_ibfk_1` (`image_id`) ) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `people` -- LOCK TABLES `people` WRITE; /*!40000 ALTER TABLE `people` DISABLE KEYS */; INSERT INTO `people` VALUES (1,NULL,'Robisearch','Advanta','JOHN','254718667391','robisearch@gmail.com','12345678','','female','','','0','','132222201635401988','user','1','','','','3343455',60.00,'1','2023-01-03','','1','2019-06-11','Contract',30000.00,'','2019-06-06','','','','2019-06-05','2019-06-06','KCB','2412423','Daily','1','2019-09-20','0222222',0.00,'','','Single','',24.00,1,'','1000','yes','admin','',0,0,0,'','2019-08-28',0,'',0.00,'','','','Yes',2570.00,0,0.00,0.60,'no',200.00,'','2022-08-25 15:15:09','','','','','','','','P06666xxx',1,'022','444',2,'','','0000-00-00 00:00:00','','new','',''),(3,NULL,'Antony Henri Oduor','',NULL,'0725652964','','','','female','','2023-08-22','1','',NULL,'','1','test','','','',0.00,'1','2022-08-22 15:27:25','','1','2022-08-22','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,'',1,NULL,NULL,2,'','','0000-00-00 00:00:00','','new','',''),(71,NULL,'EDISON','BINGU',NULL,'N/A','EDISON','EDISON','','male','','','','',NULL,'user','1',NULL,'','','',0.00,'','2022-11-15','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','admin','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'132763812','','0000-00-00 00:00:00','','new','',''),(72,NULL,'JOSEPH','KINGORI',NULL,'N/A','JOSEPH','Joe@123','','male','','','','',NULL,'user','1',NULL,'','','',0.00,'','2022-12-01','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'904144384','','0000-00-00 00:00:00','','new','',''),(73,NULL,'CYRUS','MWITA',NULL,'N/A','CYRUS','CYRUS','','male','','','','',NULL,'user','1',NULL,'','','',0.00,'','2022-10-27','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'yes','','','','','','',NULL,NULL,NULL,1,NULL,NULL,NULL,'242250263','','0000-00-00 00:00:00','','new','',''),(74,NULL,'ALFRED','KIOKO',NULL,'N/A','ALFRED','ALFRED','','male','','','','',NULL,'user','1',NULL,'','','',0.00,'','2022-10-27','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'yes','','','','','','',NULL,NULL,NULL,1,NULL,NULL,NULL,'035221046','','0000-00-00 00:00:00','','new','',''),(75,NULL,'KAMAU','MUNYOROKU',NULL,'N/A','KAMAU','KAMAU','','male','','','','',NULL,'user','1',NULL,'','','',0.00,'','2022-10-27','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'yes','','','','','','',NULL,NULL,NULL,1,NULL,NULL,NULL,'641962233','','0000-00-00 00:00:00','','new','',''),(76,NULL,'DANIEL','KARUMA',NULL,'N/A','DANIEL','DANIEL','','male','','','','',NULL,'user','1',NULL,'','','',0.00,'','2022-10-27','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'yes','','','','','','',NULL,NULL,NULL,1,NULL,NULL,NULL,'273232261','','0000-00-00 00:00:00','','new','',''),(77,NULL,'Alfred','Kioko',NULL,'N/A','Alfred','Good@123','','male','','','','',NULL,'user','1',NULL,'','','85385857',0.00,'','2022-10-31','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'053332136','','0000-00-00 00:00:00','','new','',''),(78,NULL,'Allan','Chirchir',NULL,'0777235328','Allan','Allan','','male','','','','',NULL,'user','1',NULL,'','','',0.00,'','2022-12-08','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'223397142','','0000-00-00 00:00:00','','new','',''),(82,NULL,'Josephine','Mwihaki',NULL,'0704467333','Jmwihaki','mwihaki2','','female','','','','',NULL,'user','1',NULL,'','','MPL573',0.00,'','2022-12-01','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'662323262','','0000-00-00 00:00:00','','new','',''),(83,NULL,'Okochill','Dennis',NULL,'0727350390','DOkochill','Dnasri28g','','male','','','','',NULL,'user','1',NULL,'','','MPL642',0.00,'','2022-12-01','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'830324489','','0000-00-00 00:00:00','','new','',''),(84,NULL,'Charity','Okoth',NULL,'1','cokoth','Okoth@22','','female','','','','',NULL,'user','1',NULL,'','','Okoth@22',0.00,'','2022-12-08','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'473389306','','0000-00-00 00:00:00','','new','',''),(85,NULL,'Afline','Oyola',NULL,'1','aoyola','Afline@22','','female','','','','',NULL,'user','1',NULL,'','','',0.00,'','2022-12-08','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'223033643','','0000-00-00 00:00:00','','new','',''),(86,NULL,'Beatrice','Kerubo',NULL,'1','bkerubo','Admin.1234','','female','','','','',NULL,'user','1',NULL,'','','',0.00,'','2022-11-15','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'228308622','','0000-00-00 00:00:00','','new','',''),(87,NULL,'Caroline','Mueni',NULL,'1','cmueni','Adin.1234','','female','','','','',NULL,'user','1',NULL,'','','',0.00,'','2022-11-15','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'302108223','','0000-00-00 00:00:00','','new','',''),(88,NULL,'Judy','Kabuthu',NULL,'1','jkabuthu@goodlife.africa.com','Jkab@321','','female','','','','',NULL,'user','1',NULL,'','','',0.00,'','2022-11-21','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'263660382','','0000-00-00 00:00:00','','new','',''),(90,NULL,'OBADIAH','KARANJA',NULL,'N/A','OBADIAH','OBADIAH','','male','','','','',NULL,'user','1',NULL,'','','',0.00,'','2022-11-22','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'032630913','','0000-00-00 00:00:00','','new','',''),(95,NULL,'JANET','CHERONO',NULL,'N/A','janet@gmail.com','janet','','female','','','','',NULL,'user','1',NULL,'','','',0.00,'','2022-11-23','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'930232226','','0000-00-00 00:00:00','','new','',''),(96,NULL,'ARMAAN LTD','','ARMAAN LTD','1','1','','','1','','','0','',NULL,'supplier','1','ARMAAN LTD','','','MTC0000001',0.00,'88','2023-01-23 17:42:57','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051110056I','1','1','',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','','','','1',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(97,NULL,'EROS VENTURES LTD','','EROS VENTURES LTD','2','2','','','2','','','0','',NULL,'supplier','1','EROS VENTURES LTD','','','MTC0000002',0.00,'88','2023-01-23 17:44:02','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051143101B','1','1','',1079.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:12:23','','','','','','','','2',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(98,NULL,'FABIA LIMITED','','FABIA LIMITED','3','3','','','3','','','0','',NULL,'supplier','1','FABIA LIMITED','','','MTC0000003',0.00,'1','2023-01-26 11:59:49','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051389508L','1','1','',4179.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 14:27:47','','','','','','','','3',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(99,NULL,'HARLEYS LIMITED','','HARLEYS LIMITED','4','4','','','4','','','0','',NULL,'supplier','1','HARLEYS LIMITED','','','MTC0000004',0.00,'1','2023-01-26 12:02:55','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P000626483G','1','1','',132648.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:54:01','','','','','','','','4',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(100,NULL,'KRISHNA CHEMIST LTD','','KRISHNA CHEMIST LTD','5','5','','','5','','','0','',NULL,'supplier','1','KRISHNA CHEMIST LTD','','','MTC0000005',0.00,'1','2023-01-26 12:05:23','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051176279L','1','1','',35977.00,0,0.00,0.00,'no',0.00,'no','2023-01-12 17:34:49','','','','','','','','5',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(101,NULL,'KULAL INTERNATIONAL LTD','','KULAL INTERNATIONAL LTD','6','6','','','6','','','0','',NULL,'supplier','1','KULAL INTERNATIONAL LTD','','','MTC0000006',0.00,'1','2023-01-26 12:05:39','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051127404P','1','1','',7644.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:28:35','','','','','','','','6',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(102,NULL,'LABOREX KENYA LTD','','LABOREX KENYA LTD','7','7','','','7','','','0','',NULL,'supplier','1','LABOREX KENYA LTD','','','MTC0000007',0.00,'1','2023-01-26 12:05:54','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051129234X','1','1','',20701.00,0,0.00,0.00,'no',0.00,'no','2023-01-12 17:34:34','','','','','','','','7',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(103,NULL,'METRO PHARMACEUTICALS LTD','','METRO PHARMACEUTICALS LTD','8','8','','','8','','','0','',NULL,'supplier','1','METRO PHARMACEUTICALS LTD','','','MTC0000008',0.00,'1','2023-01-26 12:06:09','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051110548L','1','1','',17310.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:32:35','','','','','','','','8',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(104,NULL,'RADBONE-CLARK KENYA LTD','','RADBONE-CLARK KENYA LTD','9','9','','','9','','','0','',NULL,'supplier','1','RADBONE-CLARK KENYA LTD','','','MTC0000009',0.00,'1','2023-01-26 12:06:44','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P000602343J','1','1','',7661.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:00:30','','','','','','','','9',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(105,NULL,'RIPPLE PHARMACEUTICALS LTD','','RIPPLE PHARMACEUTICALS LTD','10','10','','','10','','','0','',NULL,'supplier','1','RIPPLE PHARMACEUTICALS LTD','','','MTC0000010',0.00,'1','2023-01-26 12:07:15','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051143479C','1','1','',29082.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:29:40','','','','','','','','10',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(106,NULL,'STATIM PHARMACEUTICALS LTD','','STATIM PHARMACEUTICALS LTD','11','11','','','11','','','0','',NULL,'supplier','1','STATIM PHARMACEUTICALS LTD','','','MTC0000011',0.00,'1','2023-01-26 12:07:28','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P000614822O','1','1','',14962.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:24:38','','','','','','','','11',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(107,NULL,'SURGIPHARM LIMITED','','SURGIPHARM LIMITED','12','12','','','12','','','0','',NULL,'supplier','1','SURGIPHARM LIMITED','','','MTC0000012',0.00,'1','2023-01-26 12:07:41','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P000598488U','1','1','',107349.00,0,0.00,0.00,'no',0.00,'no','2023-01-12 17:35:12','','','','','','','','12',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(108,NULL,'X-CENTRIC LIMITED','','X-CENTRIC LIMITED','13','13','','','13','','','0','',NULL,'supplier','1','X-CENTRIC LIMITED','','','MTC0000013',0.00,'1','2023-01-26 12:07:54','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051562889V','1','1','',18222.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:06:28','','','','','','','','13',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(109,NULL,'GOODLIFE PHARMACY-WAREHOUSE','','GOODLIFE PHARMACY-WAREHOUSE','14','14','','','14','','','0','',NULL,'supplier','1','GOODLIFE PHARMACY-WAREHOUSE','','','MTC0000014',0.00,'1','2023-01-26 12:08:08','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'0','1','1','',1266.00,0,0.00,0.00,'no',0.00,'no','2023-05-26 14:53:35','','','','','','','','14',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(110,NULL,'UNISEL LIMITED','','UNISEL LIMITED','15','15','','','15','','','0','',NULL,'supplier','1','UNISEL LIMITED','','','MTC0000015',0.00,'1','2023-01-26 12:08:23','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051157163C','1','1','',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','','','','15',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(111,NULL,'GENERICS AFRICA LTD','','GENERICS AFRICA LTD','16','16','','','16','','','0','',NULL,'supplier','1','GENERICS AFRICA LTD','','','MTC0000016',0.00,'1','2023-01-26 12:08:36','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051124412E','1','1','',13926.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:10:51','','','','','','','','16',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(112,NULL,'OMAERA PHARMACEUTICALS LIMITED','','OMAERA PHARMACEUTICALS LIMITED','17','17','','','17','','','0','',NULL,'supplier','1','OMAERA PHARMACEUTICALS LIMITED','','','MTC0000017',0.00,'1','2023-01-26 12:08:50','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P000641205B','1','1','',89861.51,0,0.00,0.00,'no',0.00,'no','2023-05-26 14:57:22','','','','','','','','17',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(113,NULL,'XTRAMED LTD','','XTRAMED LTD','18','18','','','18','','','0','',NULL,'supplier','1','XTRAMED LTD','','','MTC0000018',0.00,'1','2023-01-26 12:09:31','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051590267I','1','1','',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','','','','18',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(114,NULL,'SYMBIO HEALTHCARE LIMITED','','SYMBIO HEALTHCARE LIMITED','19','19','','','19','','','0','',NULL,'supplier','1','SYMBIO HEALTHCARE LIMITED','','','MTC0000019',0.00,'1','2023-01-26 12:09:16','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051537171N','1','1','',4389.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:13:03','','','','','','','','19',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(115,NULL,'FCL (AFRICA) LTD','','FCL (AFRICA) LTD','20','20','','','20','','','0','',NULL,'supplier','1','FCL (AFRICA) LTD','','','MTC0000020',0.00,'1','2023-01-26 12:09:02','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051626834M','1','1','',1404.00,0,0.00,0.00,'no',0.00,'no','2022-12-14 16:05:01','','','','','','','','20',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(116,NULL,'ACE PHARMACEUTICALS LIMITED','','ACE PHARMACEUTICALS LIMITED','21','21','','','21','','','0','',NULL,'supplier','1','ACE PHARMACEUTICALS LIMITED','','','MTC0000021',0.00,'1','2023-01-26 12:06:59','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051152242K','1','1','',7012.00,0,0.00,0.00,'no',0.00,'no','2023-05-26 14:49:53','','','','','','','','21',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(117,NULL,'LOREAL (ACD) EAST AFRICA LIMITED','','LOREAL (ACD) EAST AFRICA LIMITED','22','22','','','22','','','0','',NULL,'supplier','1','LOREAL (ACD) EAST AFRICA LIMITED','','','MTC0000022',0.00,'1','2023-01-26 12:06:26','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051356496T','1','1','',43416.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 14:21:17','','','','','','','','22',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(118,NULL,'SUNPAR PHARMACEUTICALS LTD','','SUNPAR PHARMACEUTICALS LTD','23','23','','','23','','','0','',NULL,'supplier','1','SUNPAR PHARMACEUTICALS LTD','','','MTC0000023',0.00,'1','2023-01-26 12:04:52','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051129478N','1','1','',9880.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:13:40','','','','','','','','23',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(119,NULL,'PHARMA SPECIALITIES LIMITED','','PHARMA SPECIALITIES LIMITED','24','24','','','24','','','0','',NULL,'supplier','1','PHARMA SPECIALITIES LIMITED','','','MTC0000024',0.00,'1','2023-01-26 12:02:31','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051134839X','1','1','',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','','','','24',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(120,NULL,'EUROPA HEALTHCARE LTD','','EUROPA HEALTHCARE LTD','25','25','','','25','','','0','',NULL,'supplier','1','EUROPA HEALTHCARE LTD','','','MTC0000025',0.00,'1','2023-01-26 12:02:09','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051111598W','1','1','',4471.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:21:14','','','','','','','','25',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(121,NULL,'AQUAMIST LIMITED','','AQUAMIST LIMITED','26','26','','','26','','','0','',NULL,'supplier','1','AQUAMIST LIMITED','','','MTC0000026',0.00,'1','2023-01-26 12:01:50','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051126512L','1','1','',1917.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:02:26','','','','','','','','26',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(122,NULL,'EASTLEIGH PHARMACEUTICALS CO. LTD','','EASTLEIGH PHARMACEUTICALS CO. LTD','27','27','','','27','','','0','',NULL,'supplier','1','EASTLEIGH PHARMACEUTICALS CO. LTD','','','MTC0000027',0.00,'1','2023-01-26 12:01:27','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051208794R','1','1','',11938.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:20:03','','','','','','','','27',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(123,NULL,'HEALTH CLASSIQUE LTD','','HEALTH CLASSIQUE LTD','28','28','','','28','','','0','',NULL,'supplier','1','HEALTH CLASSIQUE LTD','','','MTC0000028',0.00,'1','2023-01-26 12:00:46','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051660145Y','1','1','',3590.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:05:21','','','','','','','','28',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(124,NULL,'HASSCON PHARMACEUTICALS LTD','','HASSCON PHARMACEUTICALS LTD','29','29','','','29','','','0','',NULL,'supplier','1','HASSCON PHARMACEUTICALS LTD','','','MTC0000029',0.00,'1','2023-01-26 12:00:26','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051606271L','1','1','',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','','','','29',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(125,NULL,'PHILLIPS THERAPEUTICS LTD','','PHILLIPS THERAPEUTICS LTD','30','30','','','30','','','0','',NULL,'supplier','1','PHILLIPS THERAPEUTICS LTD','','','MTC0000030',0.00,'1','2023-01-26 11:59:29','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051884953W','1','1','',7674.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:19:31','','','','','','','','30',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(126,NULL,'NILA PHARMACEUTICALS LTD','','NILA PHARMACEUTICALS LTD','31','31','','','31','','','0','',NULL,'supplier','1','NILA PHARMACEUTICALS LTD','','','MTC0000031',0.00,'88','2023-01-23 17:45:20','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051137812R','1','1','',25230.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:54:47','','','','','','','','31',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(127,NULL,'PHARMAKEN LIMITED','','PHARMAKEN LIMITED','32','32','','','32','','','0','',NULL,'supplier','1','PHARMAKEN LIMITED','','','MTC0000032',0.00,'88','2023-01-23 17:43:49','','1','','',1.00,'','','','','','','','','1','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,'P051174692G','1','1','',2724.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:23:59','','','','','','','','32',1,'1','1',1,'','','0000-00-00 00:00:00','','new','',''),(128,NULL,'Irungu','Bernard',NULL,'+254704574983','+254704574983','wanjiku2023','','male','','','','',NULL,'user','1',NULL,'','','MPL814',0.00,'','2022-12-08','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'yes','','','','','','',NULL,NULL,NULL,1,NULL,NULL,NULL,'202933221','','0000-00-00 00:00:00','','new','',''),(129,NULL,'UNCOVER SKIN CARE LTD','','','111111111111','','Jkab@321','','','','2023-12-30','1 ','',NULL,'supplier','1','UNCOVER SKIN CARE LTD','','','',0.00,'88','2023-01-23 17:43:28','','1','2022-12-30','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',0.00,NULL,NULL,NULL,'',5926.00,0,0.00,0.00,'no',0.00,'no','2022-12-30 21:15:05','','','','','','','','',1,NULL,NULL,0,'','','0000-00-00 00:00:00','','new','',''); /*!40000 ALTER TABLE `people` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `peopleregistration` -- DROP TABLE IF EXISTS `peopleregistration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `peopleregistration` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nhifrelief` decimal(10,2) DEFAULT NULL, `firstname` varchar(255) NOT NULL, `surname` varchar(20) NOT NULL, `lastname` varchar(255) DEFAULT NULL, `phone` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `password` text NOT NULL, `address_1` varchar(255) NOT NULL, `gender` varchar(255) DEFAULT NULL, `city` varchar(255) NOT NULL, `zip` varchar(255) NOT NULL, `country` varchar(255) NOT NULL, `comments` text NOT NULL, `image_id` varchar(100) DEFAULT NULL, `category` varchar(50) NOT NULL DEFAULT 'accommodation', `status` varchar(50) NOT NULL DEFAULT '1', `company` varchar(50) DEFAULT NULL, `account` varchar(100) NOT NULL, `website` text NOT NULL, `idno` varchar(100) NOT NULL, `balance` decimal(10,2) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `entrydate` varchar(50) NOT NULL, `jobstatus` varchar(30) NOT NULL, `salary` decimal(10,2) NOT NULL, `department` varchar(20) NOT NULL, `dob` varchar(20) NOT NULL, `passport` varchar(30) NOT NULL, `ethnicity` varchar(30) NOT NULL, `religion` varchar(30) NOT NULL, `salarystartdate` varchar(30) NOT NULL, `salaryreviewdate` varchar(30) NOT NULL, `bankname` varchar(30) NOT NULL, `bankaccount` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `method` varchar(30) NOT NULL, `probationdate` varchar(30) NOT NULL, `number` varchar(20) NOT NULL, `relief` decimal(10,2) NOT NULL, `leavegroup` varchar(30) NOT NULL, `manager` varchar(30) NOT NULL, `marital` varchar(30) NOT NULL, `smstype` varchar(20) NOT NULL, `totalsms` decimal(10,2) NOT NULL, `apiaccount_id` int(11) NOT NULL, `photo` text NOT NULL, `code` varchar(30) NOT NULL, `service` varchar(20) NOT NULL, `usertype` varchar(20) NOT NULL DEFAULT 'user', `username` varchar(20) NOT NULL, `county` int(11) NOT NULL, `province` int(11) NOT NULL, `box` int(11) NOT NULL, `town` varchar(20) NOT NULL, `updatedate` varchar(20) NOT NULL, `recoverpassword` int(11) NOT NULL, `createddate` varchar(30) NOT NULL, `rate` decimal(10,2) DEFAULT NULL, `kra` varchar(50) DEFAULT NULL, `nssf` varchar(50) DEFAULT NULL, `nhif` varchar(50) DEFAULT NULL, `paid` varchar(20) NOT NULL, `supplierbalance` decimal(10,2) NOT NULL, `balanceuploaded` int(11) DEFAULT 0, `savedcoins` decimal(10,2) NOT NULL, `savedpoints` decimal(10,2) NOT NULL, `customerlimit` varchar(10) NOT NULL DEFAULT 'no', `limitamount` decimal(10,2) NOT NULL, `dropdown` varchar(10) NOT NULL DEFAULT 'no', `lastbalancedate` varchar(30) NOT NULL, `accountname` varchar(30) NOT NULL, `accountno` varchar(30) NOT NULL, `certificate` varchar(30) NOT NULL, `shares` varchar(30) NOT NULL, `certificateno` varchar(30) NOT NULL, `renewaldetails` varchar(30) DEFAULT NULL, `salesperson` varchar(10) DEFAULT NULL, `idnumber` text DEFAULT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `bankcode` varchar(20) DEFAULT NULL, `branchcode` varchar(20) DEFAULT NULL, `group` int(20) DEFAULT NULL, `transactionid` varchar(50) NOT NULL, `smscode` varchar(50) NOT NULL, `timesent` datetime NOT NULL, `computerno` text NOT NULL, `computernostatus` varchar(20) NOT NULL DEFAULT 'new', `computernodate` varchar(50) NOT NULL, `computernouserdata` text NOT NULL, PRIMARY KEY (`id`), KEY `first_name` (`firstname`), KEY `last_name` (`lastname`), KEY `email` (`email`), KEY `phppos_people_ibfk_1` (`image_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `peopleregistration` -- LOCK TABLES `peopleregistration` WRITE; /*!40000 ALTER TABLE `peopleregistration` DISABLE KEYS */; /*!40000 ALTER TABLE `peopleregistration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `periods` -- DROP TABLE IF EXISTS `periods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `periods` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `periods` -- LOCK TABLES `periods` WRITE; /*!40000 ALTER TABLE `periods` DISABLE KEYS */; INSERT INTO `periods` VALUES (1,'Daily','Daily','','active','1','','1'),(2,'Weekly','Weekly','','active','1','','1'),(3,'Monthly','Monthly','','active','1','','1'),(4,'Quarterly','Quarterly','','active','1','','1'),(5,'Annually','Annually','','active','1','','1'),(6,'Fortnightly','Fortnightly','','active','1','','1'),(7,'Bi monthly','Bi monthly','','active','1','','1'); /*!40000 ALTER TABLE `periods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `permissions` -- DROP TABLE IF EXISTS `permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `permissions` ( `moduleid` varchar(100) NOT NULL, `userid` int(10) NOT NULL, PRIMARY KEY (`moduleid`,`userid`), KEY `person_id` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `permissions` -- LOCK TABLES `permissions` WRITE; /*!40000 ALTER TABLE `permissions` DISABLE KEYS */; INSERT INTO `permissions` VALUES ('accomodation',1),('accounting',1),('accounting',72),('accounting',74),('accounting',75),('accounting',76),('accounting',77),('accounting',78),('accounting',88),('accounting',90),('accounting',95),('accountingreports',1),('accountingreports',72),('accountingreports',74),('accountingreports',75),('accountingreports',76),('accountingreports',77),('accountingreports',78),('accountingreports',88),('accountingreports',90),('accountingreports',95),('assets',1),('assets',88),('assets',90),('bankdeposits',1),('bankdeposits',74),('bankdeposits',75),('bankdeposits',76),('bankdeposits',88),('bankdeposits',90),('bankdeposits',95),('banktransfer',1),('banktransfer',72),('banktransfer',74),('banktransfer',75),('banktransfer',76),('banktransfer',77),('banktransfer',78),('banktransfer',88),('banktransfer',90),('banktransfer',95),('biometricrecords',1),('branch',1),('branch',71),('callcenter',1),('cashiersales',1),('cashiersales',5),('cashiersales',72),('cashiersales',74),('cashiersales',75),('cashiersales',76),('cashiersales',77),('cashiersales',78),('cashiersales',81),('cashiersales',82),('cashiersales',83),('cashiersales',84),('cashiersales',85),('cashiersales',86),('cashiersales',87),('cashiersales',88),('cashiersales',90),('cashiersales',95),('cashiersales',128),('complain',1),('config',1),('config',72),('config',77),('config',78),('damagedproducts',1),('damagedproducts',71),('damagedproducts',72),('damagedproducts',73),('damagedproducts',74),('damagedproducts',75),('damagedproducts',76),('damagedproducts',77),('damagedproducts',78),('damagedproducts',88),('damagedproducts',90),('damagedproducts',95),('deals',1),('departments',1),('displayreport',1),('documents',1),('documents',72),('documents',74),('documents',75),('documents',76),('documents',77),('documents',78),('documents',88),('documents',90),('documents',95),('ecommerce',1),('events',1),('grouping',1),('humanresource',1),('income',1),('income',71),('income',72),('income',73),('income',74),('income',75),('income',76),('income',77),('income',78),('income',88),('income',90),('income',95),('incomeexpenses',1),('incomeexpenses',72),('incomeexpenses',74),('incomeexpenses',75),('incomeexpenses',76),('incomeexpenses',77),('incomeexpenses',78),('incomeexpenses',88),('incomeexpenses',90),('incomeexpenses',95),('incomingstock',1),('incomingstock',71),('incomingstock',72),('incomingstock',73),('incomingstock',74),('incomingstock',75),('incomingstock',76),('incomingstock',77),('incomingstock',78),('incomingstock',88),('incomingstock',90),('incomingstock',95),('incomingstore',1),('journalentry',1),('journalentry',72),('journalentry',74),('journalentry',75),('journalentry',76),('journalentry',77),('journalentry',78),('journalentry',88),('journalentry',90),('journalentry',95),('labourrecords',1),('leavemanagement',1),('lowproducts',1),('lowstocklist',1),('lowstocklist',71),('lowstocklist',72),('lowstocklist',73),('lowstocklist',74),('lowstocklist',75),('lowstocklist',76),('lowstocklist',77),('lowstocklist',78),('lowstocklist',88),('lowstocklist',90),('lowstocklist',95),('loyalitycards',1),('members',1),('members',71),('members',72),('members',73),('members',74),('members',75),('members',76),('members',77),('members',78),('members',88),('members',90),('members',95),('password',1),('password',5),('password',71),('password',72),('password',73),('password',74),('password',75),('password',76),('password',77),('password',78),('password',81),('password',82),('password',83),('password',84),('password',85),('password',86),('password',87),('password',88),('password',90),('password',95),('password',128),('payroll',1),('payrollsetup',1),('peoplecategory',1),('productlist',1),('productlist',71),('productlist',72),('productlist',73),('productlist',74),('productlist',75),('productlist',76),('productlist',77),('productlist',78),('productlist',88),('productlist',90),('productlist',95),('products',1),('products',71),('products',72),('products',73),('products',74),('products',75),('products',76),('products',77),('products',78),('products',88),('products',90),('products',95),('productscategory',1),('productscategory',71),('productscategory',72),('productscategory',73),('productscategory',74),('productscategory',75),('productscategory',76),('productscategory',77),('productscategory',78),('productscategory',88),('productscategory',90),('productscategory',95),('profile',1),('profile',5),('projectsmanagement',1),('purchases',1),('purchases',71),('purchases',72),('purchases',73),('purchases',74),('purchases',75),('purchases',76),('purchases',77),('purchases',78),('purchases',88),('purchases',90),('purchases',95),('quotation',1),('quotation',72),('quotation',74),('quotation',75),('quotation',76),('quotation',77),('quotation',78),('quotation',88),('quotation',90),('quotation',95),('recorddelivery',1),('reports',1),('reports',72),('reports',74),('reports',75),('reports',76),('reports',77),('reports',78),('reports',88),('reports',90),('reports',95),('sales',1),('sales',5),('sales',72),('sales',74),('sales',75),('sales',76),('sales',77),('sales',78),('sales',81),('sales',82),('sales',83),('sales',84),('sales',85),('sales',86),('sales',87),('sales',88),('sales',90),('sales',95),('sales',128),('sendsms',1),('sendsms',74),('sendsms',75),('sendsms',76),('sendsms',88),('sendsms',90),('sendsms',95),('task',1),('taskscategory',1),('users',1),('users',72),('users',77),('users',78),('viewreturnsales',1),('viewreturnsales',72),('viewreturnsales',74),('viewreturnsales',75),('viewreturnsales',76),('viewreturnsales',77),('viewreturnsales',78),('viewreturnsales',88),('viewreturnsales',90),('viewreturnsales',95),('wholesale',1); /*!40000 ALTER TABLE `permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `permissionsactions` -- DROP TABLE IF EXISTS `permissionsactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `permissionsactions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `moduleid` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `actionid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=83245 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `permissionsactions` -- LOCK TABLES `permissionsactions` WRITE; /*!40000 ALTER TABLE `permissionsactions` DISABLE KEYS */; INSERT INTO `permissionsactions` VALUES (77134,'sales','5','suspend'),(77135,'sales','5','add'),(77136,'sales','5','update'),(77137,'sales','5','cash'),(77138,'sales','5','sale'),(77139,'sales','5','moresales'),(77140,'sales','5','Logout'),(77141,'sales','5','select'),(77142,'sales','5','discount'),(77143,'sales','5','displaycustomers'),(77144,'sales','5','mpesa'),(77145,'sales','5','printbill'),(77146,'sales','5','productdiscount'),(77147,'sales','5','order'),(77148,'sales','5','closebill'),(77149,'sales','5','editsellingprice'),(77150,'sales','5','updatepaymentmode'),(77151,'sales','5','card'),(77152,'sales','5','clearpayments'),(77153,'sales','5','viewbuyingprice'),(77154,'sales','5','cheque'),(77155,'sales','5','creditnote'),(77156,'sales','5','voucher'),(77157,'sales','5','salesbeyondbprice'),(77158,'sales','5','points'),(77159,'sales','5','credit'),(77160,'sales','5','selectroom'),(77161,'sales','5','dontprint'),(77162,'sales','5','backdatesales'),(77163,'sales','5','recordcoins'),(77164,'sales','5','changetaxstatus'),(77165,'sales','5','giveloyalityponts'),(77166,'sales','5','splitbill'),(77167,'sales','5','changeuomonsales'),(77168,'sales','5','selecttable'),(77169,'sales','5','printdelivery'),(77170,'sales','5','sendsms'),(77171,'sales','5','selectcurrency'),(77172,'sales','5','salesperson'),(77173,'sales','5','usekeyboard'),(77174,'sales','5','receiptno'),(77175,'cashiersales','5','entermpesacode'),(77176,'cashiersales','5','editmpesa'),(77177,'cashiersales','5','all'),(77178,'cashiersales','5','cashiersales'),(77179,'cashiersales','5','editmpesadate'),(77180,'cashiersales','5','dontshowtotal'),(77181,'cashiersales','5','viewtill'),(77182,'cashiersales','5','viewdailycollections'),(77183,'cashiersales','5','updatedailycollections'),(77184,'cashiersales','5','viewallcounters'),(77185,'cashiersales','5','viewcommission'),(77186,'cashiersales','5','dailysalesonly'),(77187,'cashiersales','5','viewmpesamessages'),(77188,'password','5','change'),(77189,'profile','5','update'),(77736,'purchases','73','add'),(77737,'purchases','73','update'),(77738,'purchases','73','delete'),(77739,'purchases','73','updatebuyingprice'),(77740,'purchases','73','updatesellingprice'),(77741,'purchases','73','updateclosedinvoice'),(77742,'purchases','73','viewquotation'),(77743,'purchases','73','viewserials'),(77744,'purchases','73','viewdirectpurchases'),(77745,'purchases','73','viewpurchase'),(77746,'purchases','73','salesorder'),(77747,'purchases','73','budget'),(77748,'purchases','73','showdefaultserials'),(77749,'purchases','73','viewallcounters'),(77750,'purchases','73','approve'),(77751,'income','73','View'),(77752,'income','73','add'),(77753,'income','73','wiewinvoices'),(77754,'income','73','detailedvatinvoice'),(77755,'members','73','add'),(77756,'members','73','update'),(77757,'members','73','deletepeople'),(77758,'members','73','opencloseshift'),(77759,'productscategory','73','add'),(77760,'productscategory','73','update'),(77761,'productscategory','73','delete'),(77762,'productlist','73','bulk'),(77763,'productlist','73','more'),(77764,'productlist','73','move'),(77765,'productlist','73','updatestock'),(77766,'productlist','73','transfer'),(77767,'productlist','73','addstock'),(77768,'productlist','73','delete'),(77769,'productlist','73','view'),(77770,'productlist','73','update'),(77771,'productlist','73','add'),(77772,'productlist','73','openclosestock'),(77773,'productlist','73','stocktaking'),(77774,'productlist','73','editstocktaken'),(77775,'productlist','73','editopenclosestock'),(77776,'productlist','73','viewserials'),(77777,'productlist','73','changeserialstatus'),(77778,'productlist','73','viewproductsfromallbranches'),(77779,'productlist','73','bulkpriceupdate'),(77780,'productlist','73','negativestockadjustment'),(77781,'products','73','add'),(77782,'products','73','update'),(77783,'products','73','delete'),(77784,'products','73','addstock'),(77785,'products','73','more'),(77786,'products','73','bulk'),(77787,'products','73','deleteorder'),(77788,'products','73','dispatch'),(77789,'products','73','removestock'),(77790,'products','73','price'),(77791,'products','73','removeallstock'),(77792,'products','73','bulkpriceupdate'),(77793,'products','73','negativestockadjustment'),(77794,'incomingstock','73','add'),(77795,'incomingstock','73','update'),(77796,'incomingstock','73','view'),(77797,'incomingstock','73','delete'),(77798,'lowstocklist','73','add'),(77799,'lowstocklist','73','more'),(77800,'lowstocklist','73','view'),(77801,'damagedproducts','73','add'),(77802,'damagedproducts','73','update'),(77803,'damagedproducts','73','delete'),(77804,'password','73','change'),(77805,'sales','74','add'),(77806,'sales','74','suspend'),(77807,'sales','74','printreceipt'),(77808,'sales','74','update'),(77809,'sales','74','cash'),(77810,'sales','74','delete'),(77811,'sales','74','moresales'),(77812,'sales','74','sale'),(77813,'sales','74','Logout'),(77814,'sales','74','mpesabalance'),(77815,'sales','74','discount'),(77816,'sales','74','reprint'),(77817,'sales','74','select'),(77818,'sales','74','printbill'),(77819,'sales','74','productdiscount'),(77820,'sales','74','mpesa'),(77821,'sales','74','closebill'),(77822,'sales','74','viewbuyingprice'),(77823,'sales','74','updatepaymentmode'),(77824,'sales','74','editsellingprice'),(77825,'sales','74','card'),(77826,'sales','74','clearpayments'),(77827,'sales','74','cheque'),(77828,'sales','74','creditnote'),(77829,'sales','74','voucher'),(77830,'sales','74','salesbeyondbprice'),(77831,'sales','74','points'),(77832,'sales','74','credit'),(77833,'sales','74','dontprint'),(77834,'sales','74','backdatesales'),(77835,'sales','74','recordcoins'),(77836,'sales','74','giveloyalityponts'),(77837,'sales','74','leaseitems'),(77838,'sales','74','updateqtysales'),(77839,'cashiersales','74','entermpesacode'),(77840,'cashiersales','74','editmpesa'),(77841,'cashiersales','74','all'),(77842,'cashiersales','74','delete'),(77843,'cashiersales','74','cashiersales'),(77844,'cashiersales','74','editmpesadate'),(77845,'cashiersales','74','adddailycollection'),(77846,'cashiersales','74','viewtill'),(77847,'cashiersales','74','viewdailycollections'),(77848,'cashiersales','74','deletedailycollections'),(77849,'cashiersales','74','updatedailycollections'),(77850,'cashiersales','74','reversempesa'),(77851,'cashiersales','74','clearallsales'),(77852,'cashiersales','74','viewallcollections'),(77853,'cashiersales','74','viewallcounters'),(77854,'cashiersales','74','mpesapendingreport'),(77855,'cashiersales','74','mpesaverifiedreport'),(77856,'cashiersales','74','viewcommission'),(77857,'cashiersales','74','dailysalesonly'),(77858,'purchases','74','add'),(77859,'purchases','74','update'),(77860,'purchases','74','delete'),(77861,'purchases','74','updatebuyingprice'),(77862,'purchases','74','updatesellingprice'),(77863,'purchases','74','updateclosedinvoice'),(77864,'purchases','74','viewquotation'),(77865,'purchases','74','viewserials'),(77866,'purchases','74','viewdirectpurchases'),(77867,'purchases','74','viewpurchase'),(77868,'purchases','74','salesorder'),(77869,'purchases','74','budget'),(77870,'purchases','74','showdefaultserials'),(77871,'purchases','74','viewallcounters'),(77872,'purchases','74','approve'),(77873,'viewreturnsales','74','add'),(77874,'viewreturnsales','74','update'),(77875,'viewreturnsales','74','delete'),(77876,'viewreturnsales','74','return'),(77877,'viewreturnsales','74','clear'),(77878,'viewreturnsales','74','moresales'),(77879,'income','74','View'),(77880,'income','74','add'),(77881,'income','74','wiewinvoices'),(77882,'income','74','detailedvatinvoice'),(77883,'incomeexpenses','74','add'),(77884,'incomeexpenses','74','closeexpense'),(77885,'incomeexpenses','74','update'),(77886,'incomeexpenses','74','updateclosedexpenses'),(77887,'incomeexpenses','74','wiewinvoices'),(77888,'incomeexpenses','74','viewbills'),(77889,'incomeexpenses','74','viewexpense'),(77890,'incomeexpenses','74','viewdebtors'),(77891,'incomeexpenses','74','viewcreditors'),(77892,'members','74','add'),(77893,'members','74','update'),(77894,'members','74','deletepeople'),(77895,'members','74','opencloseshift'),(77896,'productscategory','74','add'),(77897,'productscategory','74','update'),(77898,'productscategory','74','delete'),(77899,'productlist','74','bulk'),(77900,'productlist','74','more'),(77901,'productlist','74','move'),(77902,'productlist','74','updatestock'),(77903,'productlist','74','transfer'),(77904,'productlist','74','addstock'),(77905,'productlist','74','delete'),(77906,'productlist','74','view'),(77907,'productlist','74','update'),(77908,'productlist','74','add'),(77909,'productlist','74','openclosestock'),(77910,'productlist','74','stocktaking'),(77911,'productlist','74','editstocktaken'),(77912,'productlist','74','editopenclosestock'),(77913,'productlist','74','viewserials'),(77914,'productlist','74','changeserialstatus'),(77915,'productlist','74','viewproductsfromallbranches'),(77916,'productlist','74','bulkpriceupdate'),(77917,'productlist','74','negativestockadjustment'),(77918,'products','74','add'),(77919,'products','74','update'),(77920,'products','74','delete'),(77921,'products','74','addstock'),(77922,'products','74','more'),(77923,'products','74','bulk'),(77924,'products','74','deleteorder'),(77925,'products','74','dispatch'),(77926,'products','74','removestock'),(77927,'products','74','price'),(77928,'products','74','removeallstock'),(77929,'products','74','bulkpriceupdate'),(77930,'products','74','negativestockadjustment'),(77931,'incomingstock','74','add'),(77932,'incomingstock','74','update'),(77933,'incomingstock','74','view'),(77934,'incomingstock','74','delete'),(77935,'lowstocklist','74','add'),(77936,'lowstocklist','74','more'),(77937,'lowstocklist','74','view'),(77938,'damagedproducts','74','add'),(77939,'damagedproducts','74','update'),(77940,'damagedproducts','74','delete'),(77941,'accounting','74','deletebank'),(77942,'accounting','74','deleteglaccount'),(77943,'accounting','74','view'),(77944,'bankdeposits','74','add'),(77945,'bankdeposits','74','update'),(77946,'bankdeposits','74','delete'),(77947,'banktransfer','74','add'),(77948,'journalentry','74','add'),(77949,'accountingreports','74','view'),(77950,'reports','74','view'),(77951,'reports','74','download'),(77952,'reports','74','delete'),(77953,'reports','74','update'),(77954,'reports','74','viewall'),(77955,'sendsms','74','add'),(77956,'sendsms','74','update'),(77957,'sendsms','74','delete'),(77958,'sendsms','74','transfersms'),(77959,'documents','74','add'),(77960,'documents','74','update'),(77961,'documents','74','delete'),(77962,'documents','74','viewalldocuments'),(77963,'password','74','change'),(77964,'quotation','74','add'),(77965,'quotation','74','update'),(77966,'quotation','74','delete'),(77967,'quotation','74','view'),(77968,'quotation','74','viewall'),(77969,'sales','75','add'),(77970,'sales','75','suspend'),(77971,'sales','75','printreceipt'),(77972,'sales','75','update'),(77973,'sales','75','cash'),(77974,'sales','75','delete'),(77975,'sales','75','moresales'),(77976,'sales','75','sale'),(77977,'sales','75','Logout'),(77978,'sales','75','mpesabalance'),(77979,'sales','75','discount'),(77980,'sales','75','reprint'),(77981,'sales','75','select'),(77982,'sales','75','printbill'),(77983,'sales','75','productdiscount'),(77984,'sales','75','mpesa'),(77985,'sales','75','closebill'),(77986,'sales','75','viewbuyingprice'),(77987,'sales','75','updatepaymentmode'),(77988,'sales','75','editsellingprice'),(77989,'sales','75','card'),(77990,'sales','75','clearpayments'),(77991,'sales','75','cheque'),(77992,'sales','75','creditnote'),(77993,'sales','75','voucher'),(77994,'sales','75','salesbeyondbprice'),(77995,'sales','75','points'),(77996,'sales','75','credit'),(77997,'sales','75','dontprint'),(77998,'sales','75','backdatesales'),(77999,'sales','75','recordcoins'),(78000,'sales','75','giveloyalityponts'),(78001,'sales','75','leaseitems'),(78002,'sales','75','updateqtysales'),(78003,'cashiersales','75','entermpesacode'),(78004,'cashiersales','75','editmpesa'),(78005,'cashiersales','75','all'),(78006,'cashiersales','75','delete'),(78007,'cashiersales','75','cashiersales'),(78008,'cashiersales','75','editmpesadate'),(78009,'cashiersales','75','adddailycollection'),(78010,'cashiersales','75','viewtill'),(78011,'cashiersales','75','viewdailycollections'),(78012,'cashiersales','75','deletedailycollections'),(78013,'cashiersales','75','updatedailycollections'),(78014,'cashiersales','75','reversempesa'),(78015,'cashiersales','75','clearallsales'),(78016,'cashiersales','75','viewallcollections'),(78017,'cashiersales','75','viewallcounters'),(78018,'cashiersales','75','mpesapendingreport'),(78019,'cashiersales','75','mpesaverifiedreport'),(78020,'cashiersales','75','viewcommission'),(78021,'cashiersales','75','dailysalesonly'),(78022,'purchases','75','add'),(78023,'purchases','75','update'),(78024,'purchases','75','delete'),(78025,'purchases','75','updatebuyingprice'),(78026,'purchases','75','updatesellingprice'),(78027,'purchases','75','updateclosedinvoice'),(78028,'purchases','75','viewquotation'),(78029,'purchases','75','viewserials'),(78030,'purchases','75','viewdirectpurchases'),(78031,'purchases','75','viewpurchase'),(78032,'purchases','75','salesorder'),(78033,'purchases','75','budget'),(78034,'purchases','75','showdefaultserials'),(78035,'purchases','75','viewallcounters'),(78036,'purchases','75','approve'),(78037,'viewreturnsales','75','add'),(78038,'viewreturnsales','75','update'),(78039,'viewreturnsales','75','delete'),(78040,'viewreturnsales','75','return'),(78041,'viewreturnsales','75','clear'),(78042,'viewreturnsales','75','moresales'),(78043,'income','75','View'),(78044,'income','75','add'),(78045,'income','75','wiewinvoices'),(78046,'income','75','detailedvatinvoice'),(78047,'incomeexpenses','75','add'),(78048,'incomeexpenses','75','closeexpense'),(78049,'incomeexpenses','75','update'),(78050,'incomeexpenses','75','updateclosedexpenses'),(78051,'incomeexpenses','75','wiewinvoices'),(78052,'incomeexpenses','75','viewbills'),(78053,'incomeexpenses','75','viewexpense'),(78054,'incomeexpenses','75','viewdebtors'),(78055,'incomeexpenses','75','viewcreditors'),(78056,'members','75','add'),(78057,'members','75','update'),(78058,'members','75','deletepeople'),(78059,'members','75','opencloseshift'),(78060,'productscategory','75','add'),(78061,'productscategory','75','update'),(78062,'productscategory','75','delete'),(78063,'productlist','75','bulk'),(78064,'productlist','75','more'),(78065,'productlist','75','move'),(78066,'productlist','75','updatestock'),(78067,'productlist','75','transfer'),(78068,'productlist','75','addstock'),(78069,'productlist','75','delete'),(78070,'productlist','75','view'),(78071,'productlist','75','update'),(78072,'productlist','75','add'),(78073,'productlist','75','openclosestock'),(78074,'productlist','75','stocktaking'),(78075,'productlist','75','editstocktaken'),(78076,'productlist','75','editopenclosestock'),(78077,'productlist','75','viewserials'),(78078,'productlist','75','changeserialstatus'),(78079,'productlist','75','viewproductsfromallbranches'),(78080,'productlist','75','bulkpriceupdate'),(78081,'productlist','75','negativestockadjustment'),(78082,'products','75','add'),(78083,'products','75','update'),(78084,'products','75','delete'),(78085,'products','75','addstock'),(78086,'products','75','more'),(78087,'products','75','bulk'),(78088,'products','75','deleteorder'),(78089,'products','75','dispatch'),(78090,'products','75','removestock'),(78091,'products','75','price'),(78092,'products','75','removeallstock'),(78093,'products','75','bulkpriceupdate'),(78094,'products','75','negativestockadjustment'),(78095,'incomingstock','75','add'),(78096,'incomingstock','75','update'),(78097,'incomingstock','75','view'),(78098,'incomingstock','75','delete'),(78099,'lowstocklist','75','add'),(78100,'lowstocklist','75','more'),(78101,'lowstocklist','75','view'),(78102,'damagedproducts','75','add'),(78103,'damagedproducts','75','update'),(78104,'damagedproducts','75','delete'),(78105,'accounting','75','deletebank'),(78106,'accounting','75','deleteglaccount'),(78107,'accounting','75','view'),(78108,'bankdeposits','75','add'),(78109,'bankdeposits','75','update'),(78110,'bankdeposits','75','delete'),(78111,'banktransfer','75','add'),(78112,'journalentry','75','add'),(78113,'accountingreports','75','view'),(78114,'reports','75','view'),(78115,'reports','75','download'),(78116,'reports','75','delete'),(78117,'reports','75','update'),(78118,'reports','75','viewall'),(78119,'sendsms','75','add'),(78120,'sendsms','75','update'),(78121,'sendsms','75','delete'),(78122,'sendsms','75','transfersms'),(78123,'documents','75','add'),(78124,'documents','75','update'),(78125,'documents','75','delete'),(78126,'documents','75','viewalldocuments'),(78127,'password','75','change'),(78128,'quotation','75','add'),(78129,'quotation','75','update'),(78130,'quotation','75','delete'),(78131,'quotation','75','view'),(78132,'quotation','75','viewall'),(78133,'sales','76','add'),(78134,'sales','76','suspend'),(78135,'sales','76','printreceipt'),(78136,'sales','76','update'),(78137,'sales','76','cash'),(78138,'sales','76','delete'),(78139,'sales','76','moresales'),(78140,'sales','76','sale'),(78141,'sales','76','Logout'),(78142,'sales','76','mpesabalance'),(78143,'sales','76','discount'),(78144,'sales','76','reprint'),(78145,'sales','76','select'),(78146,'sales','76','printbill'),(78147,'sales','76','productdiscount'),(78148,'sales','76','mpesa'),(78149,'sales','76','closebill'),(78150,'sales','76','viewbuyingprice'),(78151,'sales','76','updatepaymentmode'),(78152,'sales','76','editsellingprice'),(78153,'sales','76','card'),(78154,'sales','76','clearpayments'),(78155,'sales','76','cheque'),(78156,'sales','76','creditnote'),(78157,'sales','76','voucher'),(78158,'sales','76','salesbeyondbprice'),(78159,'sales','76','points'),(78160,'sales','76','credit'),(78161,'sales','76','dontprint'),(78162,'sales','76','backdatesales'),(78163,'sales','76','recordcoins'),(78164,'sales','76','giveloyalityponts'),(78165,'sales','76','leaseitems'),(78166,'sales','76','updateqtysales'),(78167,'cashiersales','76','entermpesacode'),(78168,'cashiersales','76','editmpesa'),(78169,'cashiersales','76','all'),(78170,'cashiersales','76','delete'),(78171,'cashiersales','76','cashiersales'),(78172,'cashiersales','76','editmpesadate'),(78173,'cashiersales','76','adddailycollection'),(78174,'cashiersales','76','viewtill'),(78175,'cashiersales','76','viewdailycollections'),(78176,'cashiersales','76','deletedailycollections'),(78177,'cashiersales','76','updatedailycollections'),(78178,'cashiersales','76','reversempesa'),(78179,'cashiersales','76','clearallsales'),(78180,'cashiersales','76','viewallcollections'),(78181,'cashiersales','76','viewallcounters'),(78182,'cashiersales','76','mpesapendingreport'),(78183,'cashiersales','76','mpesaverifiedreport'),(78184,'cashiersales','76','viewcommission'),(78185,'cashiersales','76','dailysalesonly'),(78186,'purchases','76','add'),(78187,'purchases','76','update'),(78188,'purchases','76','delete'),(78189,'purchases','76','updatebuyingprice'),(78190,'purchases','76','updatesellingprice'),(78191,'purchases','76','updateclosedinvoice'),(78192,'purchases','76','viewquotation'),(78193,'purchases','76','viewserials'),(78194,'purchases','76','viewdirectpurchases'),(78195,'purchases','76','viewpurchase'),(78196,'purchases','76','salesorder'),(78197,'purchases','76','budget'),(78198,'purchases','76','showdefaultserials'),(78199,'purchases','76','viewallcounters'),(78200,'purchases','76','approve'),(78201,'viewreturnsales','76','add'),(78202,'viewreturnsales','76','update'),(78203,'viewreturnsales','76','delete'),(78204,'viewreturnsales','76','return'),(78205,'viewreturnsales','76','clear'),(78206,'viewreturnsales','76','moresales'),(78207,'income','76','View'),(78208,'income','76','add'),(78209,'income','76','wiewinvoices'),(78210,'income','76','detailedvatinvoice'),(78211,'incomeexpenses','76','add'),(78212,'incomeexpenses','76','closeexpense'),(78213,'incomeexpenses','76','update'),(78214,'incomeexpenses','76','updateclosedexpenses'),(78215,'incomeexpenses','76','wiewinvoices'),(78216,'incomeexpenses','76','viewbills'),(78217,'incomeexpenses','76','viewexpense'),(78218,'incomeexpenses','76','viewdebtors'),(78219,'incomeexpenses','76','viewcreditors'),(78220,'members','76','add'),(78221,'members','76','update'),(78222,'members','76','deletepeople'),(78223,'members','76','opencloseshift'),(78224,'productscategory','76','add'),(78225,'productscategory','76','update'),(78226,'productscategory','76','delete'),(78227,'productlist','76','bulk'),(78228,'productlist','76','more'),(78229,'productlist','76','move'),(78230,'productlist','76','updatestock'),(78231,'productlist','76','transfer'),(78232,'productlist','76','addstock'),(78233,'productlist','76','delete'),(78234,'productlist','76','view'),(78235,'productlist','76','update'),(78236,'productlist','76','add'),(78237,'productlist','76','openclosestock'),(78238,'productlist','76','stocktaking'),(78239,'productlist','76','editstocktaken'),(78240,'productlist','76','editopenclosestock'),(78241,'productlist','76','viewserials'),(78242,'productlist','76','changeserialstatus'),(78243,'productlist','76','viewproductsfromallbranches'),(78244,'productlist','76','bulkpriceupdate'),(78245,'productlist','76','negativestockadjustment'),(78246,'products','76','add'),(78247,'products','76','update'),(78248,'products','76','delete'),(78249,'products','76','addstock'),(78250,'products','76','more'),(78251,'products','76','bulk'),(78252,'products','76','deleteorder'),(78253,'products','76','dispatch'),(78254,'products','76','removestock'),(78255,'products','76','price'),(78256,'products','76','removeallstock'),(78257,'products','76','bulkpriceupdate'),(78258,'products','76','negativestockadjustment'),(78259,'incomingstock','76','add'),(78260,'incomingstock','76','update'),(78261,'incomingstock','76','view'),(78262,'incomingstock','76','delete'),(78263,'lowstocklist','76','add'),(78264,'lowstocklist','76','more'),(78265,'lowstocklist','76','view'),(78266,'damagedproducts','76','add'),(78267,'damagedproducts','76','update'),(78268,'damagedproducts','76','delete'),(78269,'accounting','76','deletebank'),(78270,'accounting','76','deleteglaccount'),(78271,'accounting','76','view'),(78272,'bankdeposits','76','add'),(78273,'bankdeposits','76','update'),(78274,'bankdeposits','76','delete'),(78275,'banktransfer','76','add'),(78276,'journalentry','76','add'),(78277,'accountingreports','76','view'),(78278,'reports','76','view'),(78279,'reports','76','download'),(78280,'reports','76','delete'),(78281,'reports','76','update'),(78282,'reports','76','viewall'),(78283,'sendsms','76','add'),(78284,'sendsms','76','update'),(78285,'sendsms','76','delete'),(78286,'sendsms','76','transfersms'),(78287,'documents','76','add'),(78288,'documents','76','update'),(78289,'documents','76','delete'),(78290,'documents','76','viewalldocuments'),(78291,'password','76','change'),(78292,'quotation','76','add'),(78293,'quotation','76','update'),(78294,'quotation','76','delete'),(78295,'quotation','76','view'),(78296,'quotation','76','viewall'),(78471,'sales','77','add'),(78472,'sales','77','suspend'),(78473,'sales','77','printreceipt'),(78474,'sales','77','update'),(78475,'sales','77','cash'),(78476,'sales','77','delete'),(78477,'sales','77','moresales'),(78478,'sales','77','sale'),(78479,'sales','77','Logout'),(78480,'sales','77','mpesabalance'),(78481,'sales','77','discount'),(78482,'sales','77','reprint'),(78483,'sales','77','select'),(78484,'sales','77','printbill'),(78485,'sales','77','productdiscount'),(78486,'sales','77','mpesa'),(78487,'sales','77','closebill'),(78488,'sales','77','viewbuyingprice'),(78489,'sales','77','updatepaymentmode'),(78490,'sales','77','editsellingprice'),(78491,'sales','77','card'),(78492,'sales','77','clearpayments'),(78493,'sales','77','cheque'),(78494,'sales','77','creditnote'),(78495,'sales','77','voucher'),(78496,'sales','77','salesbeyondbprice'),(78497,'sales','77','points'),(78498,'sales','77','credit'),(78499,'sales','77','dontprint'),(78500,'sales','77','backdatesales'),(78501,'sales','77','recordcoins'),(78502,'sales','77','giveloyalityponts'),(78503,'sales','77','leaseitems'),(78504,'sales','77','changetaxstatus'),(78505,'sales','77','splitbill'),(78506,'sales','77','changeuomonsales'),(78507,'sales','77','selecttable'),(78508,'sales','77','printdelivery'),(78509,'sales','77','sendsms'),(78510,'sales','77','entermpesacode'),(78511,'sales','77','selectcurrency'),(78512,'sales','77','salesperson'),(78513,'sales','77','negativesales'),(78514,'sales','77','updateqtysales'),(78515,'cashiersales','77','entermpesacode'),(78516,'cashiersales','77','editmpesa'),(78517,'cashiersales','77','all'),(78518,'cashiersales','77','delete'),(78519,'cashiersales','77','cashiersales'),(78520,'cashiersales','77','editmpesadate'),(78521,'cashiersales','77','adddailycollection'),(78522,'cashiersales','77','viewtill'),(78523,'cashiersales','77','viewdailycollections'),(78524,'cashiersales','77','deletedailycollections'),(78525,'cashiersales','77','updatedailycollections'),(78526,'cashiersales','77','reversempesa'),(78527,'cashiersales','77','clearallsales'),(78528,'cashiersales','77','viewallcollections'),(78529,'cashiersales','77','viewallcounters'),(78530,'cashiersales','77','mpesapendingreport'),(78531,'cashiersales','77','mpesaverifiedreport'),(78532,'cashiersales','77','viewcommission'),(78533,'cashiersales','77','viewmpesamessages'),(78534,'purchases','77','add'),(78535,'purchases','77','update'),(78536,'purchases','77','delete'),(78537,'purchases','77','updatebuyingprice'),(78538,'purchases','77','updatesellingprice'),(78539,'purchases','77','updateclosedinvoice'),(78540,'purchases','77','viewquotation'),(78541,'purchases','77','viewserials'),(78542,'purchases','77','viewdirectpurchases'),(78543,'purchases','77','viewpurchase'),(78544,'purchases','77','salesorder'),(78545,'purchases','77','budget'),(78546,'purchases','77','showdefaultserials'),(78547,'purchases','77','viewallcounters'),(78548,'purchases','77','approve'),(78549,'viewreturnsales','77','add'),(78550,'viewreturnsales','77','update'),(78551,'viewreturnsales','77','delete'),(78552,'viewreturnsales','77','return'),(78553,'viewreturnsales','77','clear'),(78554,'viewreturnsales','77','moresales'),(78555,'income','77','View'),(78556,'income','77','add'),(78557,'income','77','wiewinvoices'),(78558,'income','77','detailedvatinvoice'),(78559,'incomeexpenses','77','add'),(78560,'incomeexpenses','77','closeexpense'),(78561,'incomeexpenses','77','update'),(78562,'incomeexpenses','77','updateclosedexpenses'),(78563,'incomeexpenses','77','wiewinvoices'),(78564,'incomeexpenses','77','viewbills'),(78565,'incomeexpenses','77','viewexpense'),(78566,'incomeexpenses','77','viewdebtors'),(78567,'incomeexpenses','77','viewcreditors'),(78568,'members','77','add'),(78569,'members','77','update'),(78570,'members','77','deletepeople'),(78571,'members','77','opencloseshift'),(78572,'users','77','add'),(78573,'users','77','update'),(78574,'users','77','delete'),(78575,'users','77','deleteallroles'),(78576,'productscategory','77','add'),(78577,'productscategory','77','update'),(78578,'productscategory','77','delete'),(78579,'productlist','77','bulk'),(78580,'productlist','77','more'),(78581,'productlist','77','move'),(78582,'productlist','77','updatestock'),(78583,'productlist','77','transfer'),(78584,'productlist','77','addstock'),(78585,'productlist','77','delete'),(78586,'productlist','77','view'),(78587,'productlist','77','update'),(78588,'productlist','77','add'),(78589,'productlist','77','openclosestock'),(78590,'productlist','77','stocktaking'),(78591,'productlist','77','editstocktaken'),(78592,'productlist','77','editopenclosestock'),(78593,'productlist','77','viewserials'),(78594,'productlist','77','changeserialstatus'),(78595,'productlist','77','viewproductsfromallbranches'),(78596,'productlist','77','bulkpriceupdate'),(78597,'productlist','77','negativestockadjustment'),(78598,'products','77','add'),(78599,'products','77','update'),(78600,'products','77','delete'),(78601,'products','77','addstock'),(78602,'products','77','more'),(78603,'products','77','bulk'),(78604,'products','77','deleteorder'),(78605,'products','77','dispatch'),(78606,'products','77','removestock'),(78607,'products','77','price'),(78608,'products','77','removeallstock'),(78609,'products','77','bulkpriceupdate'),(78610,'products','77','negativestockadjustment'),(78611,'incomingstock','77','add'),(78612,'incomingstock','77','update'),(78613,'incomingstock','77','view'),(78614,'incomingstock','77','delete'),(78615,'lowstocklist','77','add'),(78616,'lowstocklist','77','more'),(78617,'lowstocklist','77','view'),(78618,'damagedproducts','77','add'),(78619,'damagedproducts','77','update'),(78620,'damagedproducts','77','delete'),(78621,'accounting','77','deletebank'),(78622,'accounting','77','deleteglaccount'),(78623,'accounting','77','view'),(78624,'banktransfer','77','add'),(78625,'journalentry','77','add'),(78626,'accountingreports','77','view'),(78627,'reports','77','view'),(78628,'reports','77','download'),(78629,'reports','77','delete'),(78630,'reports','77','update'),(78631,'reports','77','viewall'),(78632,'documents','77','add'),(78633,'documents','77','update'),(78634,'documents','77','delete'),(78635,'documents','77','viewalldocuments'),(78636,'password','77','change'),(78637,'quotation','77','add'),(78638,'quotation','77','update'),(78639,'quotation','77','delete'),(78640,'quotation','77','view'),(78641,'quotation','77','viewall'),(78642,'config','77','delete'),(78643,'config','77','add'),(78644,'config','77','update'),(78645,'config','77','Novatsales'),(79853,'sales','78','add'),(79854,'sales','78','suspend'),(79855,'sales','78','printreceipt'),(79856,'sales','78','update'),(79857,'sales','78','cash'),(79858,'sales','78','delete'),(79859,'sales','78','moresales'),(79860,'sales','78','sale'),(79861,'sales','78','Logout'),(79862,'sales','78','mpesabalance'),(79863,'sales','78','discount'),(79864,'sales','78','reprint'),(79865,'sales','78','select'),(79866,'sales','78','printbill'),(79867,'sales','78','productdiscount'),(79868,'sales','78','mpesa'),(79869,'sales','78','closebill'),(79870,'sales','78','viewbuyingprice'),(79871,'sales','78','updatepaymentmode'),(79872,'sales','78','editsellingprice'),(79873,'sales','78','card'),(79874,'sales','78','clearpayments'),(79875,'sales','78','cheque'),(79876,'sales','78','creditnote'),(79877,'sales','78','voucher'),(79878,'sales','78','salesbeyondbprice'),(79879,'sales','78','points'),(79880,'sales','78','credit'),(79881,'sales','78','dontprint'),(79882,'sales','78','backdatesales'),(79883,'sales','78','recordcoins'),(79884,'sales','78','giveloyalityponts'),(79885,'sales','78','leaseitems'),(79886,'sales','78','changetaxstatus'),(79887,'sales','78','splitbill'),(79888,'sales','78','changeuomonsales'),(79889,'sales','78','printdelivery'),(79890,'sales','78','sendsms'),(79891,'sales','78','entermpesacode'),(79892,'sales','78','selectcurrency'),(79893,'sales','78','negativesales'),(79894,'cashiersales','78','entermpesacode'),(79895,'cashiersales','78','editmpesa'),(79896,'cashiersales','78','all'),(79897,'cashiersales','78','delete'),(79898,'cashiersales','78','cashiersales'),(79899,'cashiersales','78','editmpesadate'),(79900,'cashiersales','78','adddailycollection'),(79901,'cashiersales','78','viewtill'),(79902,'cashiersales','78','viewdailycollections'),(79903,'cashiersales','78','deletedailycollections'),(79904,'cashiersales','78','updatedailycollections'),(79905,'cashiersales','78','reversempesa'),(79906,'cashiersales','78','clearallsales'),(79907,'cashiersales','78','viewallcollections'),(79908,'cashiersales','78','viewallcounters'),(79909,'cashiersales','78','mpesapendingreport'),(79910,'cashiersales','78','mpesaverifiedreport'),(79911,'cashiersales','78','viewcommission'),(79912,'cashiersales','78','viewmpesamessages'),(79913,'purchases','78','add'),(79914,'purchases','78','update'),(79915,'purchases','78','delete'),(79916,'purchases','78','updatebuyingprice'),(79917,'purchases','78','updatesellingprice'),(79918,'purchases','78','updateclosedinvoice'),(79919,'purchases','78','viewquotation'),(79920,'purchases','78','viewserials'),(79921,'purchases','78','viewdirectpurchases'),(79922,'purchases','78','viewpurchase'),(79923,'purchases','78','salesorder'),(79924,'purchases','78','budget'),(79925,'purchases','78','showdefaultserials'),(79926,'purchases','78','viewallcounters'),(79927,'purchases','78','approve'),(79928,'viewreturnsales','78','add'),(79929,'viewreturnsales','78','update'),(79930,'viewreturnsales','78','delete'),(79931,'viewreturnsales','78','return'),(79932,'viewreturnsales','78','clear'),(79933,'viewreturnsales','78','moresales'),(79934,'income','78','View'),(79935,'income','78','add'),(79936,'income','78','wiewinvoices'),(79937,'income','78','detailedvatinvoice'),(79938,'incomeexpenses','78','add'),(79939,'incomeexpenses','78','closeexpense'),(79940,'incomeexpenses','78','update'),(79941,'incomeexpenses','78','updateclosedexpenses'),(79942,'incomeexpenses','78','wiewinvoices'),(79943,'incomeexpenses','78','viewbills'),(79944,'incomeexpenses','78','viewexpense'),(79945,'incomeexpenses','78','viewdebtors'),(79946,'incomeexpenses','78','viewcreditors'),(79947,'members','78','add'),(79948,'members','78','update'),(79949,'members','78','deletepeople'),(79950,'members','78','opencloseshift'),(79951,'users','78','add'),(79952,'users','78','update'),(79953,'users','78','delete'),(79954,'users','78','deleteallroles'),(79955,'productscategory','78','add'),(79956,'productscategory','78','update'),(79957,'productscategory','78','delete'),(79958,'productlist','78','bulk'),(79959,'productlist','78','more'),(79960,'productlist','78','move'),(79961,'productlist','78','updatestock'),(79962,'productlist','78','transfer'),(79963,'productlist','78','addstock'),(79964,'productlist','78','delete'),(79965,'productlist','78','view'),(79966,'productlist','78','update'),(79967,'productlist','78','add'),(79968,'productlist','78','openclosestock'),(79969,'productlist','78','stocktaking'),(79970,'productlist','78','editstocktaken'),(79971,'productlist','78','editopenclosestock'),(79972,'productlist','78','viewserials'),(79973,'productlist','78','changeserialstatus'),(79974,'productlist','78','viewproductsfromallbranches'),(79975,'productlist','78','bulkpriceupdate'),(79976,'productlist','78','negativestockadjustment'),(79977,'products','78','add'),(79978,'products','78','update'),(79979,'products','78','delete'),(79980,'products','78','addstock'),(79981,'products','78','more'),(79982,'products','78','bulk'),(79983,'products','78','deleteorder'),(79984,'products','78','dispatch'),(79985,'products','78','removestock'),(79986,'products','78','price'),(79987,'products','78','removeallstock'),(79988,'products','78','bulkpriceupdate'),(79989,'products','78','negativestockadjustment'),(79990,'incomingstock','78','add'),(79991,'incomingstock','78','update'),(79992,'incomingstock','78','view'),(79993,'incomingstock','78','delete'),(79994,'lowstocklist','78','add'),(79995,'lowstocklist','78','more'),(79996,'lowstocklist','78','view'),(79997,'damagedproducts','78','add'),(79998,'damagedproducts','78','update'),(79999,'damagedproducts','78','delete'),(80000,'accounting','78','deletebank'),(80001,'accounting','78','deleteglaccount'),(80002,'accounting','78','view'),(80003,'banktransfer','78','add'),(80004,'journalentry','78','add'),(80005,'accountingreports','78','view'),(80006,'reports','78','view'),(80007,'reports','78','download'),(80008,'reports','78','delete'),(80009,'reports','78','update'),(80010,'reports','78','viewall'),(80011,'documents','78','add'),(80012,'documents','78','update'),(80013,'documents','78','delete'),(80014,'documents','78','viewalldocuments'),(80015,'password','78','change'),(80016,'quotation','78','add'),(80017,'quotation','78','update'),(80018,'quotation','78','delete'),(80019,'quotation','78','view'),(80020,'quotation','78','viewall'),(80021,'config','78','delete'),(80022,'config','78','add'),(80023,'config','78','update'),(80024,'config','78','Novatsales'),(80623,'purchases','71','add'),(80624,'purchases','71','update'),(80625,'purchases','71','delete'),(80626,'purchases','71','updatebuyingprice'),(80627,'purchases','71','updatesellingprice'),(80628,'purchases','71','updateclosedinvoice'),(80629,'purchases','71','viewquotation'),(80630,'purchases','71','viewserials'),(80631,'purchases','71','viewdirectpurchases'),(80632,'purchases','71','viewpurchase'),(80633,'purchases','71','salesorder'),(80634,'purchases','71','budget'),(80635,'purchases','71','showdefaultserials'),(80636,'purchases','71','viewallcounters'),(80637,'purchases','71','approve'),(80638,'income','71','View'),(80639,'income','71','add'),(80640,'income','71','wiewinvoices'),(80641,'income','71','detailedvatinvoice'),(80642,'branch','71','add'),(80643,'branch','71','view'),(80644,'branch','71','update'),(80645,'members','71','add'),(80646,'members','71','update'),(80647,'members','71','deletepeople'),(80648,'members','71','opencloseshift'),(80649,'productscategory','71','add'),(80650,'productscategory','71','update'),(80651,'productscategory','71','delete'),(80652,'productlist','71','bulk'),(80653,'productlist','71','more'),(80654,'productlist','71','move'),(80655,'productlist','71','updatestock'),(80656,'productlist','71','transfer'),(80657,'productlist','71','addstock'),(80658,'productlist','71','delete'),(80659,'productlist','71','view'),(80660,'productlist','71','update'),(80661,'productlist','71','add'),(80662,'productlist','71','openclosestock'),(80663,'productlist','71','stocktaking'),(80664,'productlist','71','editstocktaken'),(80665,'productlist','71','editopenclosestock'),(80666,'productlist','71','viewserials'),(80667,'productlist','71','changeserialstatus'),(80668,'productlist','71','viewproductsfromallbranches'),(80669,'productlist','71','bulkpriceupdate'),(80670,'productlist','71','negativestockadjustment'),(80671,'products','71','add'),(80672,'products','71','update'),(80673,'products','71','delete'),(80674,'products','71','addstock'),(80675,'products','71','more'),(80676,'products','71','bulk'),(80677,'products','71','deleteorder'),(80678,'products','71','dispatch'),(80679,'products','71','removestock'),(80680,'products','71','price'),(80681,'products','71','removeallstock'),(80682,'products','71','bulkpriceupdate'),(80683,'products','71','negativestockadjustment'),(80684,'incomingstock','71','add'),(80685,'incomingstock','71','update'),(80686,'incomingstock','71','view'),(80687,'incomingstock','71','delete'),(80688,'lowstocklist','71','add'),(80689,'lowstocklist','71','more'),(80690,'lowstocklist','71','view'),(80691,'damagedproducts','71','add'),(80692,'damagedproducts','71','update'),(80693,'damagedproducts','71','delete'),(80694,'password','71','change'),(80881,'sales','87','add'),(80882,'sales','87','suspend'),(80883,'sales','87','printreceipt'),(80884,'sales','87','update'),(80885,'sales','87','cash'),(80886,'sales','87','moresales'),(80887,'sales','87','sale'),(80888,'sales','87','reprint'),(80889,'sales','87','mpesa'),(80890,'sales','87','updatepaymentmode'),(80891,'sales','87','card'),(80892,'sales','87','clearpayments'),(80893,'sales','87','cheque'),(80894,'sales','87','dontprint'),(80895,'sales','87','entermpesacode'),(80896,'cashiersales','87','entermpesacode'),(80897,'cashiersales','87','editmpesa'),(80898,'cashiersales','87','all'),(80899,'cashiersales','87','cashiersales'),(80900,'cashiersales','87','editmpesadate'),(80901,'cashiersales','87','dontshowtotal'),(80902,'cashiersales','87','adddailycollection'),(80903,'cashiersales','87','viewtill'),(80904,'cashiersales','87','viewdailycollections'),(80905,'cashiersales','87','updatedailycollections'),(80906,'cashiersales','87','viewallcounters'),(80907,'cashiersales','87','mpesapendingreport'),(80908,'cashiersales','87','mpesaverifiedreport'),(80909,'cashiersales','87','viewcommission'),(80910,'cashiersales','87','viewmpesamessages'),(80911,'cashiersales','87','dailysalesonly'),(80912,'password','87','change'),(80913,'sales','86','add'),(80914,'sales','86','suspend'),(80915,'sales','86','printreceipt'),(80916,'sales','86','update'),(80917,'sales','86','cash'),(80918,'sales','86','moresales'),(80919,'sales','86','sale'),(80920,'sales','86','reprint'),(80921,'sales','86','mpesa'),(80922,'sales','86','updatepaymentmode'),(80923,'sales','86','card'),(80924,'sales','86','clearpayments'),(80925,'sales','86','cheque'),(80926,'sales','86','dontprint'),(80927,'sales','86','entermpesacode'),(80928,'cashiersales','86','entermpesacode'),(80929,'cashiersales','86','editmpesa'),(80930,'cashiersales','86','all'),(80931,'cashiersales','86','cashiersales'),(80932,'cashiersales','86','editmpesadate'),(80933,'cashiersales','86','dontshowtotal'),(80934,'cashiersales','86','adddailycollection'),(80935,'cashiersales','86','viewtill'),(80936,'cashiersales','86','viewdailycollections'),(80937,'cashiersales','86','updatedailycollections'),(80938,'cashiersales','86','viewallcounters'),(80939,'cashiersales','86','mpesapendingreport'),(80940,'cashiersales','86','mpesaverifiedreport'),(80941,'cashiersales','86','viewcommission'),(80942,'cashiersales','86','viewmpesamessages'),(80943,'cashiersales','86','dailysalesonly'),(80944,'password','86','change'),(81072,'sales','81','add'),(81073,'sales','81','suspend'),(81074,'sales','81','printreceipt'),(81075,'sales','81','update'),(81076,'sales','81','cash'),(81077,'sales','81','moresales'),(81078,'sales','81','sale'),(81079,'sales','81','mpesa'),(81080,'sales','81','updatepaymentmode'),(81081,'sales','81','card'),(81082,'sales','81','clearpayments'),(81083,'sales','81','cheque'),(81084,'sales','81','dontprint'),(81085,'sales','81','entermpesacode'),(81086,'cashiersales','81','entermpesacode'),(81087,'cashiersales','81','editmpesa'),(81088,'cashiersales','81','all'),(81089,'cashiersales','81','cashiersales'),(81090,'cashiersales','81','editmpesadate'),(81091,'cashiersales','81','adddailycollection'),(81092,'cashiersales','81','viewtill'),(81093,'cashiersales','81','viewdailycollections'),(81094,'cashiersales','81','updatedailycollections'),(81095,'cashiersales','81','viewallcounters'),(81096,'cashiersales','81','mpesapendingreport'),(81097,'cashiersales','81','mpesaverifiedreport'),(81098,'cashiersales','81','viewcommission'),(81099,'cashiersales','81','viewmpesamessages'),(81100,'cashiersales','81','dailysalesonly'),(81101,'password','81','change'),(81430,'sales','88','add'),(81431,'sales','88','suspend'),(81432,'sales','88','printreceipt'),(81433,'sales','88','update'),(81434,'sales','88','cash'),(81435,'sales','88','delete'),(81436,'sales','88','moresales'),(81437,'sales','88','sale'),(81438,'sales','88','Logout'),(81439,'sales','88','mpesabalance'),(81440,'sales','88','discount'),(81441,'sales','88','reprint'),(81442,'sales','88','select'),(81443,'sales','88','printbill'),(81444,'sales','88','productdiscount'),(81445,'sales','88','mpesa'),(81446,'sales','88','closebill'),(81447,'sales','88','viewbuyingprice'),(81448,'sales','88','updatepaymentmode'),(81449,'sales','88','editsellingprice'),(81450,'sales','88','card'),(81451,'sales','88','clearpayments'),(81452,'sales','88','cheque'),(81453,'sales','88','creditnote'),(81454,'sales','88','voucher'),(81455,'sales','88','salesbeyondbprice'),(81456,'sales','88','points'),(81457,'sales','88','credit'),(81458,'sales','88','dontprint'),(81459,'sales','88','backdatesales'),(81460,'sales','88','recordcoins'),(81461,'sales','88','giveloyalityponts'),(81462,'sales','88','leaseitems'),(81463,'sales','88','updateqtysales'),(81464,'cashiersales','88','entermpesacode'),(81465,'cashiersales','88','editmpesa'),(81466,'cashiersales','88','all'),(81467,'cashiersales','88','delete'),(81468,'cashiersales','88','cashiersales'),(81469,'cashiersales','88','editmpesadate'),(81470,'cashiersales','88','adddailycollection'),(81471,'cashiersales','88','viewtill'),(81472,'cashiersales','88','viewdailycollections'),(81473,'cashiersales','88','deletedailycollections'),(81474,'cashiersales','88','updatedailycollections'),(81475,'cashiersales','88','reversempesa'),(81476,'cashiersales','88','clearallsales'),(81477,'cashiersales','88','viewallcollections'),(81478,'cashiersales','88','viewallcounters'),(81479,'cashiersales','88','mpesapendingreport'),(81480,'cashiersales','88','mpesaverifiedreport'),(81481,'cashiersales','88','viewcommission'),(81482,'cashiersales','88','viewmpesamessages'),(81483,'purchases','88','add'),(81484,'purchases','88','update'),(81485,'purchases','88','delete'),(81486,'purchases','88','updatebuyingprice'),(81487,'purchases','88','updatesellingprice'),(81488,'purchases','88','updateclosedinvoice'),(81489,'purchases','88','viewquotation'),(81490,'purchases','88','viewserials'),(81491,'purchases','88','viewdirectpurchases'),(81492,'purchases','88','viewpurchase'),(81493,'purchases','88','salesorder'),(81494,'purchases','88','budget'),(81495,'purchases','88','showdefaultserials'),(81496,'purchases','88','viewallcounters'),(81497,'purchases','88','approve'),(81498,'viewreturnsales','88','add'),(81499,'viewreturnsales','88','update'),(81500,'viewreturnsales','88','delete'),(81501,'viewreturnsales','88','return'),(81502,'viewreturnsales','88','clear'),(81503,'viewreturnsales','88','moresales'),(81504,'income','88','View'),(81505,'income','88','add'),(81506,'income','88','wiewinvoices'),(81507,'income','88','detailedvatinvoice'),(81508,'incomeexpenses','88','add'),(81509,'incomeexpenses','88','closeexpense'),(81510,'incomeexpenses','88','update'),(81511,'incomeexpenses','88','updateclosedexpenses'),(81512,'incomeexpenses','88','wiewinvoices'),(81513,'incomeexpenses','88','viewbills'),(81514,'incomeexpenses','88','viewexpense'),(81515,'incomeexpenses','88','viewdebtors'),(81516,'incomeexpenses','88','viewcreditors'),(81517,'members','88','add'),(81518,'members','88','update'),(81519,'members','88','deletepeople'),(81520,'members','88','opencloseshift'),(81521,'productscategory','88','add'),(81522,'productscategory','88','update'),(81523,'productscategory','88','delete'),(81524,'productlist','88','bulk'),(81525,'productlist','88','more'),(81526,'productlist','88','move'),(81527,'productlist','88','updatestock'),(81528,'productlist','88','transfer'),(81529,'productlist','88','addstock'),(81530,'productlist','88','delete'),(81531,'productlist','88','view'),(81532,'productlist','88','update'),(81533,'productlist','88','add'),(81534,'productlist','88','openclosestock'),(81535,'productlist','88','stocktaking'),(81536,'productlist','88','editstocktaken'),(81537,'productlist','88','editopenclosestock'),(81538,'productlist','88','viewserials'),(81539,'productlist','88','changeserialstatus'),(81540,'productlist','88','viewproductsfromallbranches'),(81541,'productlist','88','bulkpriceupdate'),(81542,'productlist','88','negativestockadjustment'),(81543,'products','88','add'),(81544,'products','88','update'),(81545,'products','88','delete'),(81546,'products','88','addstock'),(81547,'products','88','more'),(81548,'products','88','bulk'),(81549,'products','88','deleteorder'),(81550,'products','88','dispatch'),(81551,'products','88','removestock'),(81552,'products','88','price'),(81553,'products','88','removeallstock'),(81554,'products','88','bulkpriceupdate'),(81555,'products','88','negativestockadjustment'),(81556,'incomingstock','88','add'),(81557,'incomingstock','88','update'),(81558,'incomingstock','88','view'),(81559,'incomingstock','88','delete'),(81560,'lowstocklist','88','add'),(81561,'lowstocklist','88','more'),(81562,'lowstocklist','88','view'),(81563,'damagedproducts','88','add'),(81564,'damagedproducts','88','update'),(81565,'damagedproducts','88','delete'),(81566,'assets','88','add'),(81567,'assets','88','update'),(81568,'assets','88','delete'),(81569,'accounting','88','deletebank'),(81570,'accounting','88','deleteglaccount'),(81571,'accounting','88','view'),(81572,'bankdeposits','88','add'),(81573,'bankdeposits','88','update'),(81574,'bankdeposits','88','delete'),(81575,'banktransfer','88','add'),(81576,'journalentry','88','add'),(81577,'accountingreports','88','view'),(81578,'reports','88','view'),(81579,'reports','88','download'),(81580,'reports','88','delete'),(81581,'reports','88','update'),(81582,'reports','88','viewall'),(81583,'sendsms','88','add'),(81584,'sendsms','88','update'),(81585,'sendsms','88','delete'),(81586,'sendsms','88','transfersms'),(81587,'documents','88','add'),(81588,'documents','88','update'),(81589,'documents','88','delete'),(81590,'documents','88','viewalldocuments'),(81591,'password','88','change'),(81592,'quotation','88','add'),(81593,'quotation','88','update'),(81594,'quotation','88','delete'),(81595,'quotation','88','view'),(81596,'quotation','88','viewall'),(81761,'sales','90','add'),(81762,'sales','90','suspend'),(81763,'sales','90','printreceipt'),(81764,'sales','90','update'),(81765,'sales','90','cash'),(81766,'sales','90','delete'),(81767,'sales','90','moresales'),(81768,'sales','90','sale'),(81769,'sales','90','Logout'),(81770,'sales','90','mpesabalance'),(81771,'sales','90','discount'),(81772,'sales','90','reprint'),(81773,'sales','90','select'),(81774,'sales','90','printbill'),(81775,'sales','90','productdiscount'),(81776,'sales','90','mpesa'),(81777,'sales','90','closebill'),(81778,'sales','90','viewbuyingprice'),(81779,'sales','90','updatepaymentmode'),(81780,'sales','90','editsellingprice'),(81781,'sales','90','card'),(81782,'sales','90','clearpayments'),(81783,'sales','90','cheque'),(81784,'sales','90','creditnote'),(81785,'sales','90','voucher'),(81786,'sales','90','salesbeyondbprice'),(81787,'sales','90','points'),(81788,'sales','90','credit'),(81789,'sales','90','dontprint'),(81790,'sales','90','backdatesales'),(81791,'sales','90','recordcoins'),(81792,'sales','90','giveloyalityponts'),(81793,'sales','90','leaseitems'),(81794,'sales','90','updateqtysales'),(81795,'cashiersales','90','entermpesacode'),(81796,'cashiersales','90','editmpesa'),(81797,'cashiersales','90','all'),(81798,'cashiersales','90','delete'),(81799,'cashiersales','90','cashiersales'),(81800,'cashiersales','90','editmpesadate'),(81801,'cashiersales','90','adddailycollection'),(81802,'cashiersales','90','viewtill'),(81803,'cashiersales','90','viewdailycollections'),(81804,'cashiersales','90','deletedailycollections'),(81805,'cashiersales','90','updatedailycollections'),(81806,'cashiersales','90','reversempesa'),(81807,'cashiersales','90','clearallsales'),(81808,'cashiersales','90','viewallcollections'),(81809,'cashiersales','90','viewallcounters'),(81810,'cashiersales','90','mpesapendingreport'),(81811,'cashiersales','90','mpesaverifiedreport'),(81812,'cashiersales','90','viewcommission'),(81813,'purchases','90','add'),(81814,'purchases','90','update'),(81815,'purchases','90','delete'),(81816,'purchases','90','updatebuyingprice'),(81817,'purchases','90','updatesellingprice'),(81818,'purchases','90','updateclosedinvoice'),(81819,'purchases','90','viewquotation'),(81820,'purchases','90','viewserials'),(81821,'purchases','90','viewdirectpurchases'),(81822,'purchases','90','viewpurchase'),(81823,'purchases','90','salesorder'),(81824,'purchases','90','budget'),(81825,'purchases','90','showdefaultserials'),(81826,'purchases','90','viewallcounters'),(81827,'purchases','90','approve'),(81828,'purchases','90','addbatchno'),(81829,'purchases','90','addexpirydate'),(81830,'viewreturnsales','90','add'),(81831,'viewreturnsales','90','update'),(81832,'viewreturnsales','90','delete'),(81833,'viewreturnsales','90','return'),(81834,'viewreturnsales','90','clear'),(81835,'viewreturnsales','90','moresales'),(81836,'income','90','View'),(81837,'income','90','add'),(81838,'income','90','wiewinvoices'),(81839,'income','90','detailedvatinvoice'),(81840,'incomeexpenses','90','add'),(81841,'incomeexpenses','90','closeexpense'),(81842,'incomeexpenses','90','update'),(81843,'incomeexpenses','90','updateclosedexpenses'),(81844,'incomeexpenses','90','wiewinvoices'),(81845,'incomeexpenses','90','viewbills'),(81846,'incomeexpenses','90','viewexpense'),(81847,'incomeexpenses','90','viewdebtors'),(81848,'incomeexpenses','90','viewcreditors'),(81849,'members','90','add'),(81850,'members','90','update'),(81851,'members','90','deletepeople'),(81852,'members','90','opencloseshift'),(81853,'productscategory','90','add'),(81854,'productscategory','90','update'),(81855,'productscategory','90','delete'),(81856,'productlist','90','bulk'),(81857,'productlist','90','more'),(81858,'productlist','90','move'),(81859,'productlist','90','updatestock'),(81860,'productlist','90','transfer'),(81861,'productlist','90','addstock'),(81862,'productlist','90','delete'),(81863,'productlist','90','view'),(81864,'productlist','90','update'),(81865,'productlist','90','add'),(81866,'productlist','90','openclosestock'),(81867,'productlist','90','stocktaking'),(81868,'productlist','90','editstocktaken'),(81869,'productlist','90','editopenclosestock'),(81870,'productlist','90','viewserials'),(81871,'productlist','90','changeserialstatus'),(81872,'productlist','90','viewproductsfromallbranches'),(81873,'productlist','90','bulkpriceupdate'),(81874,'productlist','90','negativestockadjustment'),(81875,'products','90','add'),(81876,'products','90','update'),(81877,'products','90','delete'),(81878,'products','90','addstock'),(81879,'products','90','more'),(81880,'products','90','bulk'),(81881,'products','90','deleteorder'),(81882,'products','90','dispatch'),(81883,'products','90','removestock'),(81884,'products','90','price'),(81885,'products','90','removeallstock'),(81886,'products','90','bulkpriceupdate'),(81887,'products','90','negativestockadjustment'),(81888,'incomingstock','90','add'),(81889,'incomingstock','90','update'),(81890,'incomingstock','90','view'),(81891,'incomingstock','90','delete'),(81892,'lowstocklist','90','add'),(81893,'lowstocklist','90','more'),(81894,'lowstocklist','90','view'),(81895,'damagedproducts','90','add'),(81896,'damagedproducts','90','update'),(81897,'damagedproducts','90','delete'),(81898,'assets','90','add'),(81899,'assets','90','update'),(81900,'assets','90','delete'),(81901,'accounting','90','deletebank'),(81902,'accounting','90','deleteglaccount'),(81903,'accounting','90','view'),(81904,'bankdeposits','90','add'),(81905,'bankdeposits','90','update'),(81906,'bankdeposits','90','delete'),(81907,'banktransfer','90','add'),(81908,'journalentry','90','add'),(81909,'accountingreports','90','view'),(81910,'reports','90','view'),(81911,'reports','90','download'),(81912,'reports','90','delete'),(81913,'reports','90','update'),(81914,'reports','90','viewall'),(81915,'sendsms','90','add'),(81916,'sendsms','90','update'),(81917,'sendsms','90','delete'),(81918,'sendsms','90','transfersms'),(81919,'documents','90','add'),(81920,'documents','90','update'),(81921,'documents','90','delete'),(81922,'documents','90','viewalldocuments'),(81923,'password','90','change'),(81924,'quotation','90','add'),(81925,'quotation','90','update'),(81926,'quotation','90','delete'),(81927,'quotation','90','view'),(81928,'quotation','90','viewall'),(82093,'sales','95','add'),(82094,'sales','95','suspend'),(82095,'sales','95','printreceipt'),(82096,'sales','95','update'),(82097,'sales','95','cash'),(82098,'sales','95','delete'),(82099,'sales','95','moresales'),(82100,'sales','95','sale'),(82101,'sales','95','Logout'),(82102,'sales','95','mpesabalance'),(82103,'sales','95','discount'),(82104,'sales','95','reprint'),(82105,'sales','95','select'),(82106,'sales','95','printbill'),(82107,'sales','95','productdiscount'),(82108,'sales','95','mpesa'),(82109,'sales','95','closebill'),(82110,'sales','95','viewbuyingprice'),(82111,'sales','95','updatepaymentmode'),(82112,'sales','95','editsellingprice'),(82113,'sales','95','card'),(82114,'sales','95','clearpayments'),(82115,'sales','95','cheque'),(82116,'sales','95','creditnote'),(82117,'sales','95','voucher'),(82118,'sales','95','salesbeyondbprice'),(82119,'sales','95','points'),(82120,'sales','95','credit'),(82121,'sales','95','dontprint'),(82122,'sales','95','backdatesales'),(82123,'sales','95','recordcoins'),(82124,'sales','95','giveloyalityponts'),(82125,'sales','95','leaseitems'),(82126,'sales','95','updateqtysales'),(82127,'cashiersales','95','entermpesacode'),(82128,'cashiersales','95','editmpesa'),(82129,'cashiersales','95','all'),(82130,'cashiersales','95','delete'),(82131,'cashiersales','95','cashiersales'),(82132,'cashiersales','95','editmpesadate'),(82133,'cashiersales','95','adddailycollection'),(82134,'cashiersales','95','viewtill'),(82135,'cashiersales','95','viewdailycollections'),(82136,'cashiersales','95','deletedailycollections'),(82137,'cashiersales','95','updatedailycollections'),(82138,'cashiersales','95','reversempesa'),(82139,'cashiersales','95','clearallsales'),(82140,'cashiersales','95','viewallcollections'),(82141,'cashiersales','95','viewallcounters'),(82142,'cashiersales','95','mpesapendingreport'),(82143,'cashiersales','95','mpesaverifiedreport'),(82144,'cashiersales','95','viewcommission'),(82145,'purchases','95','add'),(82146,'purchases','95','update'),(82147,'purchases','95','delete'),(82148,'purchases','95','updatebuyingprice'),(82149,'purchases','95','updatesellingprice'),(82150,'purchases','95','updateclosedinvoice'),(82151,'purchases','95','viewquotation'),(82152,'purchases','95','viewserials'),(82153,'purchases','95','viewdirectpurchases'),(82154,'purchases','95','viewpurchase'),(82155,'purchases','95','salesorder'),(82156,'purchases','95','budget'),(82157,'purchases','95','showdefaultserials'),(82158,'purchases','95','viewallcounters'),(82159,'purchases','95','approve'),(82160,'viewreturnsales','95','add'),(82161,'viewreturnsales','95','update'),(82162,'viewreturnsales','95','delete'),(82163,'viewreturnsales','95','return'),(82164,'viewreturnsales','95','clear'),(82165,'viewreturnsales','95','moresales'),(82166,'income','95','View'),(82167,'income','95','add'),(82168,'income','95','wiewinvoices'),(82169,'income','95','detailedvatinvoice'),(82170,'incomeexpenses','95','add'),(82171,'incomeexpenses','95','closeexpense'),(82172,'incomeexpenses','95','update'),(82173,'incomeexpenses','95','updateclosedexpenses'),(82174,'incomeexpenses','95','wiewinvoices'),(82175,'incomeexpenses','95','viewbills'),(82176,'incomeexpenses','95','viewexpense'),(82177,'incomeexpenses','95','viewdebtors'),(82178,'incomeexpenses','95','viewcreditors'),(82179,'members','95','add'),(82180,'members','95','update'),(82181,'members','95','deletepeople'),(82182,'members','95','opencloseshift'),(82183,'productscategory','95','add'),(82184,'productscategory','95','update'),(82185,'productscategory','95','delete'),(82186,'productlist','95','bulk'),(82187,'productlist','95','more'),(82188,'productlist','95','move'),(82189,'productlist','95','updatestock'),(82190,'productlist','95','transfer'),(82191,'productlist','95','addstock'),(82192,'productlist','95','delete'),(82193,'productlist','95','view'),(82194,'productlist','95','update'),(82195,'productlist','95','add'),(82196,'productlist','95','openclosestock'),(82197,'productlist','95','stocktaking'),(82198,'productlist','95','editstocktaken'),(82199,'productlist','95','editopenclosestock'),(82200,'productlist','95','viewserials'),(82201,'productlist','95','changeserialstatus'),(82202,'productlist','95','viewproductsfromallbranches'),(82203,'productlist','95','bulkpriceupdate'),(82204,'productlist','95','negativestockadjustment'),(82205,'products','95','add'),(82206,'products','95','update'),(82207,'products','95','delete'),(82208,'products','95','addstock'),(82209,'products','95','more'),(82210,'products','95','bulk'),(82211,'products','95','deleteorder'),(82212,'products','95','dispatch'),(82213,'products','95','removestock'),(82214,'products','95','price'),(82215,'products','95','removeallstock'),(82216,'products','95','bulkpriceupdate'),(82217,'products','95','negativestockadjustment'),(82218,'incomingstock','95','add'),(82219,'incomingstock','95','update'),(82220,'incomingstock','95','view'),(82221,'incomingstock','95','delete'),(82222,'lowstocklist','95','add'),(82223,'lowstocklist','95','more'),(82224,'lowstocklist','95','view'),(82225,'damagedproducts','95','add'),(82226,'damagedproducts','95','update'),(82227,'damagedproducts','95','delete'),(82228,'accounting','95','deletebank'),(82229,'accounting','95','deleteglaccount'),(82230,'accounting','95','view'),(82231,'bankdeposits','95','add'),(82232,'bankdeposits','95','update'),(82233,'bankdeposits','95','delete'),(82234,'banktransfer','95','add'),(82235,'journalentry','95','add'),(82236,'accountingreports','95','view'),(82237,'reports','95','view'),(82238,'reports','95','download'),(82239,'reports','95','delete'),(82240,'reports','95','update'),(82241,'reports','95','viewall'),(82242,'sendsms','95','add'),(82243,'sendsms','95','update'),(82244,'sendsms','95','delete'),(82245,'sendsms','95','transfersms'),(82246,'documents','95','add'),(82247,'documents','95','update'),(82248,'documents','95','delete'),(82249,'documents','95','viewalldocuments'),(82250,'password','95','change'),(82251,'quotation','95','add'),(82252,'quotation','95','update'),(82253,'quotation','95','delete'),(82254,'quotation','95','view'),(82255,'quotation','95','viewall'),(82291,'sales','82','add'),(82292,'sales','82','suspend'),(82293,'sales','82','printreceipt'),(82294,'sales','82','update'),(82295,'sales','82','cash'),(82296,'sales','82','moresales'),(82297,'sales','82','sale'),(82298,'sales','82','reprint'),(82299,'sales','82','productdiscount'),(82300,'sales','82','mpesa'),(82301,'sales','82','updatepaymentmode'),(82302,'sales','82','editsellingprice'),(82303,'sales','82','card'),(82304,'sales','82','clearpayments'),(82305,'sales','82','cheque'),(82306,'sales','82','salesbeyondbprice'),(82307,'sales','82','dontprint'),(82308,'sales','82','entermpesacode'),(82309,'cashiersales','82','entermpesacode'),(82310,'cashiersales','82','editmpesa'),(82311,'cashiersales','82','all'),(82312,'cashiersales','82','cashiersales'),(82313,'cashiersales','82','editmpesadate'),(82314,'cashiersales','82','adddailycollection'),(82315,'cashiersales','82','viewtill'),(82316,'cashiersales','82','viewdailycollections'),(82317,'cashiersales','82','updatedailycollections'),(82318,'cashiersales','82','viewallcounters'),(82319,'cashiersales','82','mpesapendingreport'),(82320,'cashiersales','82','mpesaverifiedreport'),(82321,'cashiersales','82','viewcommission'),(82322,'cashiersales','82','viewmpesamessages'),(82323,'cashiersales','82','dailysalesonly'),(82324,'password','82','change'),(82325,'sales','83','add'),(82326,'sales','83','suspend'),(82327,'sales','83','printreceipt'),(82328,'sales','83','update'),(82329,'sales','83','cash'),(82330,'sales','83','moresales'),(82331,'sales','83','sale'),(82332,'sales','83','reprint'),(82333,'sales','83','productdiscount'),(82334,'sales','83','mpesa'),(82335,'sales','83','updatepaymentmode'),(82336,'sales','83','editsellingprice'),(82337,'sales','83','card'),(82338,'sales','83','clearpayments'),(82339,'sales','83','cheque'),(82340,'sales','83','salesbeyondbprice'),(82341,'sales','83','dontprint'),(82342,'sales','83','entermpesacode'),(82343,'cashiersales','83','entermpesacode'),(82344,'cashiersales','83','editmpesa'),(82345,'cashiersales','83','all'),(82346,'cashiersales','83','cashiersales'),(82347,'cashiersales','83','editmpesadate'),(82348,'cashiersales','83','dontshowtotal'),(82349,'cashiersales','83','adddailycollection'),(82350,'cashiersales','83','viewtill'),(82351,'cashiersales','83','viewdailycollections'),(82352,'cashiersales','83','updatedailycollections'),(82353,'cashiersales','83','viewallcounters'),(82354,'cashiersales','83','mpesapendingreport'),(82355,'cashiersales','83','mpesaverifiedreport'),(82356,'cashiersales','83','viewcommission'),(82357,'cashiersales','83','viewmpesamessages'),(82358,'cashiersales','83','dailysalesonly'),(82359,'password','83','change'),(82360,'sales','72','add'),(82361,'sales','72','suspend'),(82362,'sales','72','printreceipt'),(82363,'sales','72','update'),(82364,'sales','72','cash'),(82365,'sales','72','delete'),(82366,'sales','72','moresales'),(82367,'sales','72','sale'),(82368,'sales','72','Logout'),(82369,'sales','72','mpesabalance'),(82370,'sales','72','discount'),(82371,'sales','72','reprint'),(82372,'sales','72','select'),(82373,'sales','72','printbill'),(82374,'sales','72','productdiscount'),(82375,'sales','72','mpesa'),(82376,'sales','72','closebill'),(82377,'sales','72','viewbuyingprice'),(82378,'sales','72','updatepaymentmode'),(82379,'sales','72','editsellingprice'),(82380,'sales','72','card'),(82381,'sales','72','clearpayments'),(82382,'sales','72','cheque'),(82383,'sales','72','creditnote'),(82384,'sales','72','voucher'),(82385,'sales','72','salesbeyondbprice'),(82386,'sales','72','points'),(82387,'sales','72','credit'),(82388,'sales','72','dontprint'),(82389,'sales','72','backdatesales'),(82390,'sales','72','recordcoins'),(82391,'sales','72','giveloyalityponts'),(82392,'sales','72','leaseitems'),(82393,'sales','72','changetaxstatus'),(82394,'sales','72','splitbill'),(82395,'sales','72','changeuomonsales'),(82396,'sales','72','printdelivery'),(82397,'sales','72','sendsms'),(82398,'sales','72','entermpesacode'),(82399,'sales','72','selectcurrency'),(82400,'sales','72','negativesales'),(82401,'sales','72','updateqtysales'),(82402,'cashiersales','72','entermpesacode'),(82403,'cashiersales','72','editmpesa'),(82404,'cashiersales','72','all'),(82405,'cashiersales','72','delete'),(82406,'cashiersales','72','cashiersales'),(82407,'cashiersales','72','editmpesadate'),(82408,'cashiersales','72','adddailycollection'),(82409,'cashiersales','72','viewtill'),(82410,'cashiersales','72','viewdailycollections'),(82411,'cashiersales','72','deletedailycollections'),(82412,'cashiersales','72','updatedailycollections'),(82413,'cashiersales','72','reversempesa'),(82414,'cashiersales','72','clearallsales'),(82415,'cashiersales','72','viewallcollections'),(82416,'cashiersales','72','viewallcounters'),(82417,'cashiersales','72','mpesapendingreport'),(82418,'cashiersales','72','mpesaverifiedreport'),(82419,'cashiersales','72','viewcommission'),(82420,'cashiersales','72','viewmpesamessages'),(82421,'purchases','72','add'),(82422,'purchases','72','update'),(82423,'purchases','72','delete'),(82424,'purchases','72','updatebuyingprice'),(82425,'purchases','72','updatesellingprice'),(82426,'purchases','72','updateclosedinvoice'),(82427,'purchases','72','viewquotation'),(82428,'purchases','72','viewserials'),(82429,'purchases','72','viewdirectpurchases'),(82430,'purchases','72','viewpurchase'),(82431,'purchases','72','salesorder'),(82432,'purchases','72','budget'),(82433,'purchases','72','showdefaultserials'),(82434,'purchases','72','viewallcounters'),(82435,'purchases','72','approve'),(82436,'viewreturnsales','72','add'),(82437,'viewreturnsales','72','update'),(82438,'viewreturnsales','72','delete'),(82439,'viewreturnsales','72','return'),(82440,'viewreturnsales','72','clear'),(82441,'viewreturnsales','72','moresales'),(82442,'income','72','View'),(82443,'income','72','add'),(82444,'income','72','wiewinvoices'),(82445,'income','72','detailedvatinvoice'),(82446,'incomeexpenses','72','add'),(82447,'incomeexpenses','72','closeexpense'),(82448,'incomeexpenses','72','update'),(82449,'incomeexpenses','72','updateclosedexpenses'),(82450,'incomeexpenses','72','wiewinvoices'),(82451,'incomeexpenses','72','viewbills'),(82452,'incomeexpenses','72','viewexpense'),(82453,'incomeexpenses','72','viewdebtors'),(82454,'incomeexpenses','72','viewcreditors'),(82455,'members','72','add'),(82456,'members','72','update'),(82457,'members','72','deletepeople'),(82458,'members','72','opencloseshift'),(82459,'users','72','add'),(82460,'users','72','update'),(82461,'users','72','delete'),(82462,'users','72','deleteallroles'),(82463,'productscategory','72','add'),(82464,'productscategory','72','update'),(82465,'productscategory','72','delete'),(82466,'productlist','72','bulk'),(82467,'productlist','72','more'),(82468,'productlist','72','move'),(82469,'productlist','72','updatestock'),(82470,'productlist','72','transfer'),(82471,'productlist','72','addstock'),(82472,'productlist','72','delete'),(82473,'productlist','72','view'),(82474,'productlist','72','update'),(82475,'productlist','72','add'),(82476,'productlist','72','openclosestock'),(82477,'productlist','72','stocktaking'),(82478,'productlist','72','editstocktaken'),(82479,'productlist','72','editopenclosestock'),(82480,'productlist','72','viewserials'),(82481,'productlist','72','changeserialstatus'),(82482,'productlist','72','viewproductsfromallbranches'),(82483,'productlist','72','bulkpriceupdate'),(82484,'productlist','72','negativestockadjustment'),(82485,'products','72','add'),(82486,'products','72','update'),(82487,'products','72','delete'),(82488,'products','72','addstock'),(82489,'products','72','more'),(82490,'products','72','bulk'),(82491,'products','72','deleteorder'),(82492,'products','72','dispatch'),(82493,'products','72','removestock'),(82494,'products','72','price'),(82495,'products','72','removeallstock'),(82496,'products','72','bulkpriceupdate'),(82497,'products','72','negativestockadjustment'),(82498,'incomingstock','72','add'),(82499,'incomingstock','72','update'),(82500,'incomingstock','72','view'),(82501,'incomingstock','72','delete'),(82502,'lowstocklist','72','add'),(82503,'lowstocklist','72','more'),(82504,'lowstocklist','72','view'),(82505,'damagedproducts','72','add'),(82506,'damagedproducts','72','update'),(82507,'damagedproducts','72','delete'),(82508,'accounting','72','deletebank'),(82509,'accounting','72','deleteglaccount'),(82510,'accounting','72','view'),(82511,'banktransfer','72','add'),(82512,'journalentry','72','add'),(82513,'accountingreports','72','view'),(82514,'reports','72','view'),(82515,'reports','72','download'),(82516,'reports','72','delete'),(82517,'reports','72','update'),(82518,'reports','72','viewall'),(82519,'documents','72','add'),(82520,'documents','72','update'),(82521,'documents','72','delete'),(82522,'documents','72','viewalldocuments'),(82523,'password','72','change'),(82524,'quotation','72','add'),(82525,'quotation','72','update'),(82526,'quotation','72','delete'),(82527,'quotation','72','view'),(82528,'quotation','72','viewall'),(82529,'config','72','delete'),(82530,'config','72','add'),(82531,'config','72','update'),(82532,'config','72','Novatsales'),(82533,'sales','85','add'),(82534,'sales','85','suspend'),(82535,'sales','85','printreceipt'),(82536,'sales','85','update'),(82537,'sales','85','cash'),(82538,'sales','85','moresales'),(82539,'sales','85','sale'),(82540,'sales','85','reprint'),(82541,'sales','85','productdiscount'),(82542,'sales','85','mpesa'),(82543,'sales','85','updatepaymentmode'),(82544,'sales','85','editsellingprice'),(82545,'sales','85','card'),(82546,'sales','85','clearpayments'),(82547,'sales','85','cheque'),(82548,'sales','85','salesbeyondbprice'),(82549,'sales','85','dontprint'),(82550,'sales','85','entermpesacode'),(82551,'cashiersales','85','entermpesacode'),(82552,'cashiersales','85','editmpesa'),(82553,'cashiersales','85','all'),(82554,'cashiersales','85','cashiersales'),(82555,'cashiersales','85','editmpesadate'),(82556,'cashiersales','85','dontshowtotal'),(82557,'cashiersales','85','adddailycollection'),(82558,'cashiersales','85','viewtill'),(82559,'cashiersales','85','viewdailycollections'),(82560,'cashiersales','85','updatedailycollections'),(82561,'cashiersales','85','viewallcounters'),(82562,'cashiersales','85','mpesapendingreport'),(82563,'cashiersales','85','mpesaverifiedreport'),(82564,'cashiersales','85','viewcommission'),(82565,'cashiersales','85','viewmpesamessages'),(82566,'cashiersales','85','dailysalesonly'),(82567,'password','85','change'),(82568,'sales','84','add'),(82569,'sales','84','suspend'),(82570,'sales','84','printreceipt'),(82571,'sales','84','update'),(82572,'sales','84','cash'),(82573,'sales','84','moresales'),(82574,'sales','84','sale'),(82575,'sales','84','reprint'),(82576,'sales','84','productdiscount'),(82577,'sales','84','mpesa'),(82578,'sales','84','updatepaymentmode'),(82579,'sales','84','editsellingprice'),(82580,'sales','84','card'),(82581,'sales','84','clearpayments'),(82582,'sales','84','cheque'),(82583,'sales','84','salesbeyondbprice'),(82584,'sales','84','dontprint'),(82585,'sales','84','entermpesacode'),(82586,'cashiersales','84','entermpesacode'),(82587,'cashiersales','84','editmpesa'),(82588,'cashiersales','84','all'),(82589,'cashiersales','84','cashiersales'),(82590,'cashiersales','84','editmpesadate'),(82591,'cashiersales','84','dontshowtotal'),(82592,'cashiersales','84','adddailycollection'),(82593,'cashiersales','84','viewtill'),(82594,'cashiersales','84','viewdailycollections'),(82595,'cashiersales','84','updatedailycollections'),(82596,'cashiersales','84','viewallcounters'),(82597,'cashiersales','84','mpesapendingreport'),(82598,'cashiersales','84','mpesaverifiedreport'),(82599,'cashiersales','84','viewcommission'),(82600,'cashiersales','84','viewmpesamessages'),(82601,'cashiersales','84','dailysalesonly'),(82602,'password','84','change'),(82603,'sales','128','add'),(82604,'sales','128','suspend'),(82605,'sales','128','printreceipt'),(82606,'sales','128','update'),(82607,'sales','128','cash'),(82608,'sales','128','moresales'),(82609,'sales','128','sale'),(82610,'sales','128','reprint'),(82611,'sales','128','mpesa'),(82612,'sales','128','updatepaymentmode'),(82613,'sales','128','card'),(82614,'sales','128','clearpayments'),(82615,'sales','128','cheque'),(82616,'sales','128','dontprint'),(82617,'sales','128','entermpesacode'),(82618,'cashiersales','128','entermpesacode'),(82619,'cashiersales','128','editmpesa'),(82620,'cashiersales','128','all'),(82621,'cashiersales','128','cashiersales'),(82622,'cashiersales','128','editmpesadate'),(82623,'cashiersales','128','dontshowtotal'),(82624,'cashiersales','128','adddailycollection'),(82625,'cashiersales','128','viewtill'),(82626,'cashiersales','128','viewdailycollections'),(82627,'cashiersales','128','updatedailycollections'),(82628,'cashiersales','128','viewallcounters'),(82629,'cashiersales','128','mpesapendingreport'),(82630,'cashiersales','128','mpesaverifiedreport'),(82631,'cashiersales','128','viewcommission'),(82632,'cashiersales','128','viewmpesamessages'),(82633,'cashiersales','128','dailysalesonly'),(82634,'password','128','change'),(82939,'sales','1','add'),(82940,'sales','1','suspend'),(82941,'sales','1','selectmessage'),(82942,'sales','1','printreceipt'),(82943,'sales','1','update'),(82944,'sales','1','cash'),(82945,'sales','1','delete'),(82946,'sales','1','moresales'),(82947,'sales','1','sale'),(82948,'sales','1','Logout'),(82949,'sales','1','mpesabalance'),(82950,'sales','1','displaycustomers'),(82951,'sales','1','discount'),(82952,'sales','1','select'),(82953,'sales','1','printbill'),(82954,'sales','1','productdiscount'),(82955,'sales','1','mpesa'),(82956,'sales','1','order'),(82957,'sales','1','viewbuyingprice'),(82958,'sales','1','updatepaymentmode'),(82959,'sales','1','card'),(82960,'sales','1','clearpayments'),(82961,'sales','1','cheque'),(82962,'sales','1','creditnote'),(82963,'sales','1','voucher'),(82964,'sales','1','salesbeyondbprice'),(82965,'sales','1','points'),(82966,'sales','1','credit'),(82967,'sales','1','selectroom'),(82968,'sales','1','dontprint'),(82969,'sales','1','backdatesales'),(82970,'sales','1','recordcoins'),(82971,'sales','1','giveloyalityponts'),(82972,'sales','1','leaseitems'),(82973,'sales','1','splitbill'),(82974,'sales','1','changeuomonsales'),(82975,'sales','1','selecttable'),(82976,'sales','1','printdelivery'),(82977,'sales','1','sendsms'),(82978,'sales','1','entermpesacode'),(82979,'sales','1','selectcurrency'),(82980,'sales','1','salesperson'),(82981,'sales','1','updateqtysales'),(82982,'wholesale','1','sale'),(82983,'wholesale','1','add'),(82984,'wholesale','1','delete'),(82985,'wholesale','1','update'),(82986,'cashiersales','1','entermpesacode'),(82987,'cashiersales','1','editmpesa'),(82988,'cashiersales','1','all'),(82989,'cashiersales','1','delete'),(82990,'cashiersales','1','cashiersales'),(82991,'cashiersales','1','editmpesadate'),(82992,'cashiersales','1','adddailycollection'),(82993,'cashiersales','1','viewtill'),(82994,'cashiersales','1','viewdailycollections'),(82995,'cashiersales','1','deletedailycollections'),(82996,'cashiersales','1','updatedailycollections'),(82997,'cashiersales','1','reversempesa'),(82998,'cashiersales','1','clearallsales'),(82999,'cashiersales','1','viewallcollections'),(83000,'cashiersales','1','viewallcounters'),(83001,'cashiersales','1','mpesapendingreport'),(83002,'cashiersales','1','mpesaverifiedreport'),(83003,'cashiersales','1','viewcommission'),(83004,'cashiersales','1','viewmpesamessages'),(83005,'recorddelivery','1','add'),(83006,'recorddelivery','1','view'),(83007,'recorddelivery','1','update'),(83008,'recorddelivery','1','delete'),(83009,'recorddelivery','1','changestatus'),(83010,'recorddelivery','1','report'),(83011,'recorddelivery','1','Dispatched'),(83012,'recorddelivery','1','FailedDelivery'),(83013,'recorddelivery','1','ReturnedandReceived'),(83014,'recorddelivery','1','Delivered'),(83015,'recorddelivery','1','Claimraised'),(83016,'recorddelivery','1','ClaimOK'),(83017,'recorddelivery','1','ClaimDamaged'),(83018,'purchases','1','add'),(83019,'purchases','1','update'),(83020,'purchases','1','delete'),(83021,'purchases','1','updatebuyingprice'),(83022,'purchases','1','updatesellingprice'),(83023,'purchases','1','updateclosedinvoice'),(83024,'purchases','1','viewquotation'),(83025,'purchases','1','viewserials'),(83026,'purchases','1','viewdirectpurchases'),(83027,'purchases','1','viewpurchase'),(83028,'purchases','1','salesorder'),(83029,'purchases','1','budget'),(83030,'purchases','1','showdefaultserials'),(83031,'purchases','1','approve'),(83032,'purchases','1','addbatchno'),(83033,'purchases','1','addexpirydate'),(83034,'viewreturnsales','1','add'),(83035,'viewreturnsales','1','update'),(83036,'viewreturnsales','1','delete'),(83037,'viewreturnsales','1','return'),(83038,'viewreturnsales','1','clear'),(83039,'viewreturnsales','1','moresales'),(83040,'income','1','View'),(83041,'income','1','add'),(83042,'income','1','wiewinvoices'),(83043,'incomeexpenses','1','add'),(83044,'incomeexpenses','1','closeexpense'),(83045,'incomeexpenses','1','update'),(83046,'incomeexpenses','1','wiewinvoices'),(83047,'incomeexpenses','1','viewbills'),(83048,'incomeexpenses','1','viewdebtors'),(83049,'incomeexpenses','1','viewcreditors'),(83050,'incomeexpenses','1','postrentalexpenses'),(83051,'accomodation','1','viewrooms'),(83052,'accomodation','1','addhouse'),(83053,'accomodation','1','dailysales'),(83054,'accomodation','1','viewhouse'),(83055,'accomodation','1','voucher'),(83056,'accomodation','1','mpesa'),(83057,'accomodation','1','points'),(83058,'accomodation','1','credit'),(83059,'accomodation','1','card'),(83060,'accomodation','1','cash'),(83061,'accomodation','1','cheque'),(83062,'accomodation','1','checkinroom'),(83063,'accomodation','1','checkoutroom'),(83064,'accomodation','1','addroom'),(83065,'accomodation','1','cancel'),(83066,'accomodation','1','checkin'),(83067,'accomodation','1','addcharges'),(83068,'accomodation','1','givediscount'),(83069,'accomodation','1','cleanrooms'),(83070,'accomodation','1','updatecharges'),(83071,'accomodation','1','updateroom'),(83072,'accomodation','1','postexpense'),(83073,'accomodation','1','updatehouse'),(83074,'accomodation','1','Post Bank Deposits'),(83075,'accomodation','1','managehotel'),(83076,'accomodation','1','assignrooms'),(83077,'accomodation','1','managerental'),(83078,'accomodation','1','changepayment'),(83079,'accomodation','1','housekeeping'),(83080,'accomodation','1','customerregister'),(83081,'accomodation','1','dailypayments'),(83082,'accomodation','1','advancebooking'),(83083,'accomodation','1','checkoutcustomerwithbalance'),(83084,'accomodation','1','managecustomer'),(83085,'accomodation','1','viewreports'),(83086,'accomodation','1','config'),(83087,'accomodation','1','viewroomcleaned'),(83088,'accomodation','1','clearsales'),(83089,'accomodation','1','dailycollections'),(83090,'branch','1','add'),(83091,'branch','1','view'),(83092,'branch','1','update'),(83093,'branch','1','delete'),(83094,'members','1','add'),(83095,'members','1','update'),(83096,'members','1','opencloseshift'),(83097,'users','1','add'),(83098,'users','1','update'),(83099,'users','1','delete'),(83100,'users','1','deleteallroles'),(83101,'productscategory','1','add'),(83102,'productscategory','1','update'),(83103,'productscategory','1','delete'),(83104,'productlist','1','bulk'),(83105,'productlist','1','more'),(83106,'productlist','1','move'),(83107,'productlist','1','updatestock'),(83108,'productlist','1','transfer'),(83109,'productlist','1','addstock'),(83110,'productlist','1','delete'),(83111,'productlist','1','view'),(83112,'productlist','1','update'),(83113,'productlist','1','add'),(83114,'productlist','1','stocktaking'),(83115,'productlist','1','editstocktaken'),(83116,'productlist','1','editopenclosestock'),(83117,'productlist','1','viewserials'),(83118,'productlist','1','changeserialstatus'),(83119,'productlist','1','viewproductsfromallbranches'),(83120,'productlist','1','viewbprice'),(83121,'products','1','add'),(83122,'products','1','update'),(83123,'products','1','delete'),(83124,'products','1','addstock'),(83125,'products','1','more'),(83126,'products','1','bulk'),(83127,'products','1','deleteorder'),(83128,'products','1','dispatch'),(83129,'products','1','removestock'),(83130,'products','1','price'),(83131,'products','1','removeallstock'),(83132,'products','1','bulkpriceupdate'),(83133,'products','1','viewbprice'),(83134,'incomingstock','1','add'),(83135,'incomingstock','1','update'),(83136,'incomingstock','1','view'),(83137,'incomingstock','1','delete'),(83138,'incomingstore','1','add'),(83139,'incomingstore','1','delete'),(83140,'incomingstore','1','view'),(83141,'lowstocklist','1','more'),(83142,'lowstocklist','1','view'),(83143,'lowproducts','1','add'),(83144,'lowproducts','1','update'),(83145,'damagedproducts','1','add'),(83146,'damagedproducts','1','update'),(83147,'damagedproducts','1','delete'),(83148,'projectsmanagement','1','view'),(83149,'projectsmanagement','1','add'),(83150,'projectsmanagement','1','update'),(83151,'projectsmanagement','1','delete'),(83152,'assets','1','add'),(83153,'assets','1','update'),(83154,'assets','1','delete'),(83155,'accounting','1','deletebank'),(83156,'accounting','1','deleteglaccount'),(83157,'accounting','1','view'),(83158,'bankdeposits','1','update'),(83159,'bankdeposits','1','delete'),(83160,'banktransfer','1','add'),(83161,'journalentry','1','add'),(83162,'accountingreports','1','view'),(83163,'peoplecategory','1','add'),(83164,'peoplecategory','1','update'),(83165,'peoplecategory','1','delete'),(83166,'departments','1','add'),(83167,'payrollsetup','1','add'),(83168,'labourrecords','1','add'),(83169,'leavemanagement','1','add'),(83170,'biometricrecords','1','add'),(83171,'payroll','1','add'),(83172,'loyalitycards','1','add'),(83173,'loyalitycards','1','update'),(83174,'reports','1','view'),(83175,'reports','1','download'),(83176,'reports','1','delete'),(83177,'reports','1','update'),(83178,'reports','1','viewall'),(83179,'displayreport','1','view'),(83180,'grouping','1','add'),(83181,'grouping','1','update'),(83182,'grouping','1','delete'),(83183,'sendsms','1','add'),(83184,'sendsms','1','update'),(83185,'sendsms','1','delete'),(83186,'sendsms','1','transfersms'),(83187,'documents','1','add'),(83188,'documents','1','update'),(83189,'documents','1','delete'),(83190,'documents','1','viewalldocuments'),(83191,'humanresource','1','add'),(83192,'humanresource','1','approve'),(83193,'humanresource','1','update'),(83194,'humanresource','1','delete'),(83195,'humanresource','1','view'),(83196,'humanresource','1','allocate'),(83197,'humanresource','1','viewallpayroll'),(83198,'humanresource','1','leavesetup'),(83199,'humanresource','1','allleaves '),(83200,'humanresource','1','bioattendance'),(83201,'taskscategory','1','add'),(83202,'taskscategory','1','update'),(83203,'taskscategory','1','delete'),(83204,'task','1','add'),(83205,'task','1','update'),(83206,'task','1','viewall'),(83207,'task','1','delete'),(83208,'task','1','postspecifictask'),(83209,'task','1','postgeneraltask'),(83210,'task','1','viewothersspecifictask'),(83211,'task','1','viewothersgeneraltask'),(83212,'task','1','assigntask'),(83213,'task','1','posttaskforothers'),(83214,'callcenter','1','add'),(83215,'callcenter','1','upadate'),(83216,'callcenter','1','view'),(83217,'callcenter','1','download'),(83218,'callcenter','1','delete'),(83219,'deals','1','update'),(83220,'deals','1','delete'),(83221,'deals','1','viewall'),(83222,'complain','1','add'),(83223,'complain','1','view'),(83224,'complain','1','update'),(83225,'complain','1','allcompalin'),(83226,'complain','1','delete'),(83227,'events','1','add'),(83228,'events','1','update'),(83229,'events','1','delete'),(83230,'password','1','change'),(83231,'profile','1','update'),(83232,'ecommerce','1','add'),(83233,'ecommerce','1','update'),(83234,'ecommerce','1','delete'),(83235,'ecommerce','1','vieworders'),(83236,'ecommerce','1','setup'),(83237,'ecommerce','1','approveorders'),(83238,'quotation','1','add'),(83239,'quotation','1','update'),(83240,'quotation','1','delete'),(83241,'quotation','1','view'),(83242,'quotation','1','viewall'),(83243,'config','1','delete'),(83244,'config','1','update'); /*!40000 ALTER TABLE `permissionsactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plot` -- DROP TABLE IF EXISTS `plot`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `plot` ( `id` int(20) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `name` varchar(100) NOT NULL, `location` varchar(100) NOT NULL, `agentid` varchar(100) NOT NULL, `landlordid` varchar(100) NOT NULL, `totalhouse` varchar(100) NOT NULL, `country` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `description` text NOT NULL, `userid` varchar(100) NOT NULL, `accountname` varchar(100) NOT NULL, `accountno` varchar(100) NOT NULL, `commission` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `status` varchar(10) NOT NULL DEFAULT '1', `tax` decimal(10,2) NOT NULL, `bank` text NOT NULL, `branch` text NOT NULL, `penalty` decimal(10,2) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'rental', `branchid` int(11) NOT NULL, `penaltytype` varchar(30) NOT NULL DEFAULT 'percentage', `areas` varchar(30) NOT NULL DEFAULT 'yes', `coparent` varchar(30) NOT NULL DEFAULT 'yes', `water` varchar(30) NOT NULL DEFAULT 'yes', `garbage` varchar(30) NOT NULL DEFAULT 'yes', `power` varchar(30) NOT NULL DEFAULT 'yes', `showpenalty` varchar(30) NOT NULL, `partial` varchar(30) NOT NULL DEFAULT '', `vat2` decimal(10,0) DEFAULT 0, `invoicedate` varchar(10) NOT NULL DEFAULT '01', `penaltydate` varchar(10) NOT NULL DEFAULT '10', `duedate` varchar(30) NOT NULL DEFAULT '10', `taxtype` varchar(30) NOT NULL DEFAULT 'Landlord', `invoicesms` text NOT NULL, `receiptsms` text NOT NULL, `utility` varchar(20) NOT NULL DEFAULT 'yes', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plot` -- LOCK TABLES `plot` WRITE; /*!40000 ALTER TABLE `plot` DISABLE KEYS */; /*!40000 ALTER TABLE `plot` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plotcharges` -- DROP TABLE IF EXISTS `plotcharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `plotcharges` ( `id` int(100) NOT NULL AUTO_INCREMENT, `chargeid` varchar(40) NOT NULL, `description` text NOT NULL, `plotno` varchar(100) NOT NULL, `cost` varchar(100) NOT NULL, `status` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `order` int(10) NOT NULL, `plotcharges` int(5) NOT NULL DEFAULT 1, `companyid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plotcharges` -- LOCK TABLES `plotcharges` WRITE; /*!40000 ALTER TABLE `plotcharges` DISABLE KEYS */; /*!40000 ALTER TABLE `plotcharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `post` -- DROP TABLE IF EXISTS `post`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `post` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `createdat` varchar(30) NOT NULL DEFAULT '0000-00-00 00:00:00', `updatedat` varchar(30) NOT NULL DEFAULT '0000-00-00 00:00:00', `total` int(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `post` -- LOCK TABLES `post` WRITE; /*!40000 ALTER TABLE `post` DISABLE KEYS */; /*!40000 ALTER TABLE `post` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `postrecharge` -- DROP TABLE IF EXISTS `postrecharge`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `postrecharge` ( `id` int(11) NOT NULL AUTO_INCREMENT, `amount` decimal(10,2) NOT NULL, `userid` int(20) NOT NULL, `companyid` int(5) NOT NULL, `dateposted` varchar(30) NOT NULL, `paymentstatus` varchar(10) NOT NULL, `branch` int(10) NOT NULL, `type` varchar(30) NOT NULL, `description` text NOT NULL, `balance` double(10,2) NOT NULL, `rate` decimal(10,2) NOT NULL, `balancebefore` decimal(10,2) DEFAULT NULL, `units` decimal(10,2) NOT NULL, `code` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `business` text NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `postrecharge` -- LOCK TABLES `postrecharge` WRITE; /*!40000 ALTER TABLE `postrecharge` DISABLE KEYS */; /*!40000 ALTER TABLE `postrecharge` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `printers` -- DROP TABLE IF EXISTS `printers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `printers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `categoryno` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `printers` -- LOCK TABLES `printers` WRITE; /*!40000 ALTER TABLE `printers` DISABLE KEYS */; /*!40000 ALTER TABLE `printers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `productcategory` -- DROP TABLE IF EXISTS `productcategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `productcategory` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` int(11) NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `maincategory` varchar(30) NOT NULL, `commission` varchar(20) NOT NULL DEFAULT '0', `shipping` varchar(20) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'Percentage', `imgid` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `productcategory` -- LOCK TABLES `productcategory` WRITE; /*!40000 ALTER TABLE `productcategory` DISABLE KEYS */; INSERT INTO `productcategory` VALUES (1,'ANTIMICROBIAL',0,'2022-10-31 16:32:09','active','1','','1','1','5','','Percentage',NULL),(2,'CREAMS/OINT/GELS',0,'','active','1','','1','1','0','','Percentage',NULL),(3,'DDA',0,'','active','1','','1','1','0','','Percentage',NULL),(4,'DROPS',0,'','active','1','','1','1','0','','Percentage',NULL),(5,'INJECTION',0,'','active','1','','1','1','0','','Percentage',NULL),(6,'OTC',0,'','active','1','','1','1','0','','Percentage',NULL),(7,'PESSARY/SUPPOSITORY',0,'','active','1','','1','1','0','','Percentage',NULL),(8,'SYSTEMIC',0,'','active','1','','1','1','0','','Percentage',NULL),(9,'BEAUTY',0,'','active','1','','1','1','0','','Percentage',NULL),(10,'PHARMA',0,'','active','1','','1','1','0','','Percentage',NULL),(11,'CHRONIC MED',0,'','active','1','','1','1','0','','Percentage',NULL),(12,'PERSONAL CARE',0,'','active','1','','1','1','0','','Percentage',NULL),(13,'STATIONERY',0,'2022-11-25 11:08:26','active','1','','1','1','0','','Percentage',NULL),(14,'SERVICES',0,'','active','1','','1','1','0','','Percentage',NULL),(15,'OFFICE TOILETRIES',0,'','active','1','','1','1','0','','Percentage',NULL); /*!40000 ALTER TABLE `productcategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `productcategorybox` -- DROP TABLE IF EXISTS `productcategorybox`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `productcategorybox` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` int(11) NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `maincategory` varchar(30) NOT NULL, `commission` varchar(20) NOT NULL DEFAULT '0', `shipping` varchar(20) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'New', `imgid` varchar(50) DEFAULT NULL, `myheader` varchar(50) DEFAULT 'primary', `icon` varchar(50) NOT NULL DEFAULT 'home', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `productcategorybox` -- LOCK TABLES `productcategorybox` WRITE; /*!40000 ALTER TABLE `productcategorybox` DISABLE KEYS */; /*!40000 ALTER TABLE `productcategorybox` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `productlist` -- DROP TABLE IF EXISTS `productlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `productlist` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `category` varchar(50) NOT NULL, `supplier` varchar(51) DEFAULT NULL, `description` varchar(255) NOT NULL, `tax_included` decimal(10,2) NOT NULL DEFAULT 16.00, `buyingprice` varchar(50) NOT NULL, `sellingprice` varchar(50) NOT NULL DEFAULT '0.00', `promoprice` varchar(50) DEFAULT NULL, `wholesaleprice` varchar(50) NOT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `reorderevel` varchar(50) DEFAULT NULL, `allow_alt_description` tinyint(1) NOT NULL, `is_serialized` tinyint(1) NOT NULL, `imgid` varchar(255) DEFAULT NULL, `override_default_tax` int(1) NOT NULL DEFAULT 0, `is_service` int(1) NOT NULL DEFAULT 0, `deleted` int(1) NOT NULL DEFAULT 0, `qty` decimal(10,2) NOT NULL, `dateposted` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `branch` varchar(50) NOT NULL, `expdate` date NOT NULL, `orderamount` varchar(50) NOT NULL DEFAULT 'mainitem', `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `shortname` text NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `store` text NOT NULL, `code` varchar(100) NOT NULL, `uom` varchar(20) NOT NULL DEFAULT 'pcs', `producttype` varchar(30) NOT NULL DEFAULT 'Inventory', `vattype` varchar(20) NOT NULL DEFAULT 'VATABLE', `reorderquantity` varchar(20) DEFAULT NULL, `hscode` varchar(100) DEFAULT NULL, `iddd` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`,`branch`), KEY `phppos_items_ibfk_1` (`supplier`), KEY `name` (`name`), KEY `deleted` (`deleted`), KEY `phppos_items_ibfk_2` (`imgid`) ) ENGINE=InnoDB AUTO_INCREMENT=6015 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `productlist` -- LOCK TABLES `productlist` WRITE; /*!40000 ALTER TABLE `productlist` DISABLE KEYS */; INSERT INTO `productlist` VALUES (1,'NEUROCARE PLUS CAPS 30S.','6',NULL,'1100001',16.00,'53','89',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000001','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2,'ABZ SUSPENSION 10ML','6',NULL,'1100064',16.00,'34','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000002','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3,'ABZ TABLETS','6',NULL,'1100065',16.00,'22','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000003','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4,'ACLOTAS 100MG TABS 50S','10',NULL,'1100088',16.00,'28.1','47',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000004','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5,'ACTIFED WET COUGH&COLD SYRUP 100ML','6',NULL,'1100112',16.00,'348','595',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000005','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(6,'ACYCLOVIR 5% CREAM 2GMS','10',NULL,'1100141',16.00,'210','360',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000006','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(7,'ACYCLOVIR 200MG DENK TABS 25S','10',NULL,'1100143',16.00,'40','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000007','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(8,'ACYCLOVIR 400MG TABS 56S','10',NULL,'1100144',16.00,'9.643','17',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000008','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(9,'ADALAT LA 30MG TABS 30S','11',NULL,'1100149',16.00,'65.761','116',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000009','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(10,'ADALAT RETARD 20MG TABS 60S','11',NULL,'1100150',16.00,'49.719','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000010','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(11,'ADOL 125MG SUPPOSITORIES 10S','10',NULL,'1100164',16.00,'29.23','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000011','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(12,'AERIUS 5MG TABS 30S','10',NULL,'1100184',16.00,'71.3','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000012','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(13,'AERIUS SYRUP 150ML','10',NULL,'1100185',16.00,'1025.36','1695',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000013','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(14,'AIRTAL 100MG TABS 40S','10',NULL,'1100200',16.00,'70.25','119',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000014','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(15,'ALCOHOL SWABS 100S','11',NULL,'1100223',16.00,'1.1','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000015','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(16,'ALDACTONE 25MG TABS 100S','11',NULL,'1100225',16.00,'18.068','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000016','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(17,'ALLOPURINOL 300MG TABS 28S','11',NULL,'1100251',16.00,'7.143','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000017','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(18,'ALOE PURA ALOE VERA JUICE 500ML','6',NULL,'1100280',16.00,'1107.8','1910.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000018','pcs','Inventory','VATABLE','0',NULL,0),(19,'AMARYL 2MG TABS 30S','11',NULL,'1100326',16.00,'38.805','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000019','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(20,'AMLOSUN 10MG TABS 30S','11',NULL,'1100349',16.00,'40.167','71',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000020','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(21,'AMLOVAS 5MG TABS 30S','11',NULL,'1100353',16.00,'17.878','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000021','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(22,'AMOXIL 500MG CAPS 100S','10',NULL,'1100358',16.00,'16.09','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000022','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(23,'AMOXIL SYRUP 125MG/5ML 100ML','10',NULL,'1100361',16.00,'244.5','410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000023','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(24,'AMOXYCILLIN 500MG CAPS 500S','10',NULL,'1100364',16.00,'0.76','1.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000024','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(25,'AMPICLOX 500MG CAPS 100S','10',NULL,'1100369',16.00,'15.847','26.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000025','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(26,'ANDOLEX C MOUTH WASH 200ML','6',NULL,'1100383',16.00,'1148.4','1980.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000026','pcs','Inventory','VATABLE','0',NULL,0),(27,'ANUSOL OINTMENT 25GM','6',NULL,'1100410',16.00,'465','800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000027','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(28,'ANUSOL PLUS HC OINTMENT 15GM','6',NULL,'1100411',16.00,'685','1180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000028','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(29,'APPEVITE SYRUP 100ML','6',NULL,'1100420',16.00,'158.4','275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000029','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(30,'ARTEQUICK 62.5/375mg TABS 4S','10',NULL,'1100512',16.00,'455','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000030','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(31,'ASCARD 75MG TABLETS','11',NULL,'1100522',16.00,'99.9','175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000031','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(32,'ASCORIL EXPECTORANT 100ML','6',NULL,'1100530',16.00,'191.35','330',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000032','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(33,'ASCORIL EXPECTORANT 200ML','6',NULL,'1100531',16.00,'332.86','580',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000033','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(34,'ASHTONS TEETHING POWDER IMPORTED 20S','6',NULL,'1100534',16.00,'20','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000034','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(35,'ASOMEX 2.5MG 30S','11',NULL,'1100535',16.00,'46.267','81',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000035','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(36,'ATACAND 8MG TABS 28S','11',NULL,'1100560',16.00,'65.234','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000036','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(37,'ATENOLOL 100MG TABS 28S','11',NULL,'1100568',16.00,'4.286','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000037','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(38,'ATENOLOL 25MG TABS 28S','11',NULL,'1100569',16.00,'5','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000038','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(39,'ATRIZIN 5MG/5ML SYRUP 60ML','10',NULL,'1100589',16.00,'97.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000039','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(40,'AUGMENTIN 1GM TABLETS 14S','10',NULL,'1100598',16.00,'134.929','215',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000040','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(41,'AUGMENTIN 375MG TABS 20S','10',NULL,'1100599',16.00,'59.1','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000041','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(42,'AUGMENTIN 625MG TABS 14S','10',NULL,'1100600',16.00,'82','119',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000042','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(43,'AUGMENTIN 228MG/5ML SUSP - 70ML','10',NULL,'1100602',16.00,'506','840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000043','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(44,'AUGMENTIN SYRUP 457MG/5ML - 70ML','10',NULL,'1100603',16.00,'788.2','1335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000044','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(45,'AVAMYS 27.5MCG NASAL SPRAY 120 DOSES','10',NULL,'1100615',16.00,'738','1255',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000045','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(46,'AZTOR 10MG 50S','11',NULL,'1100701',16.00,'28.5','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000046','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(47,'AZTOR 20MG 50S','11',NULL,'1100702',16.00,'38.24','68',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000047','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(48,'BACTIFLOX 500MG 10S','10',NULL,'1100825',16.00,'149.684','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000048','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(49,'BALLET MOSQUITO REPELLANT LOTION 130ML','9',NULL,'1100926',16.00,'151.99944','194.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000049','pcs','Inventory','VATABLE','0',NULL,0),(50,'BAYER ASPIRIN CARDIO 100MG 30S','11',NULL,'1100970',16.00,'156.114','270',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000050','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(51,'NAIL CUTTER BABY BELLS','12',NULL,'1101023',16.00,'174','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000051','pcs','Inventory','VATABLE','0',NULL,0),(52,'NAIL CUTTER SIZE M BELL','12',NULL,'1101025',16.00,'220.4','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000052','pcs','Inventory','VATABLE','0',NULL,0),(53,'BENYLIN 4 FLU 200ML','6',NULL,'1101045',16.00,'624','1065',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000053','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(54,'BENYLIN COLD & FLU MAX STRENGTH CAPS 16S','6',NULL,'1101047',16.00,'550','950',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000054','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(55,'BENYLIN DRY COUGH 100ML','6',NULL,'1101053',16.00,'449.1','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000055','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(56,'BENYLIN EXPECTORANT 100ML','6',NULL,'1101054',16.00,'449.1','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000056','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(57,'BENYLIN PAEDIATRIC 100ML','6',NULL,'1101056',16.00,'449.1','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000057','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(58,'BENYLIN WITH CODEINE 100ML','10',NULL,'1101057',16.00,'629.1','1065',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000058','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(59,'BETA GRIPE WATER 100ML','6',NULL,'1101073',16.00,'80','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000059','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(60,'BETADINE ANTISEPTIC SOLN 125ML','6',NULL,'1101081',16.00,'357.28','614.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000060','pcs','Inventory','VATABLE','0',NULL,0),(61,'BETADINE MOUTHWASH 125ML','6',NULL,'1101083',16.00,'458.2','780.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000061','pcs','Inventory','VATABLE','0',NULL,0),(62,'BETADINE MOUTHWASH 250ML','6',NULL,'1101084',16.00,'690.2','1174.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000062','pcs','Inventory','VATABLE','0',NULL,0),(63,'BETADINE SPRAY POWDER 55G','6',NULL,'1101086',16.00,'522','890',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000063','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(64,'BETASON CREAM 15GM','10',NULL,'1101107',16.00,'32.6','55',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000064','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(65,'BETASON G OINT 15GM','10',NULL,'1101108',16.00,'71.5','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000065','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(66,'BETASON S OINTMENT 15GM','10',NULL,'1101111',16.00,'73','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000066','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(67,'BIO OIL 200ML','9',NULL,'1101210',16.00,'1208.15044','1995.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000067','pcs','Inventory','VATABLE','0',NULL,0),(68,'BISODOL TABLETS','6',NULL,'1101224',16.00,'581.4','1005',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000068','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(69,'BISOLVON LINCTUS 200ML','6',NULL,'1101227',16.00,'470.704','815',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000069','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(70,'BLISTEX INTENSIVE MOISTURISER','9',NULL,'1101290',16.00,'345.0072','614.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000070','pcs','Inventory','VATABLE','0',NULL,0),(71,'BONIUM TABLETS','6',NULL,'1101345',16.00,'12.9','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000071','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(72,'BONNISAN SYRUP 120ML','6',NULL,'1101350',16.00,'259.44','450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000072','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(73,'BOUNTY CHOCOLATE 57G','12',NULL,'1101465',16.00,'98.79372','164.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000073','pcs','Inventory','VATABLE','0',NULL,0),(74,'BRUFEN SUSP 100MG/5ML - 100ML','6',NULL,'1101526',16.00,'447.175','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000074','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(75,'BRUSTAN TABS 10S','6',NULL,'1101552',16.00,'8.64','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000075','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(76,'BULKOT B CREAM 15GM','10',NULL,'1101594',16.00,'52','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000076','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(77,'BULKOT CREAM 15GM','10',NULL,'1101595',16.00,'21.85','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000077','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(78,'BULKOT MIXI CREAM 20GM','10',NULL,'1101597',16.00,'116','195',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000078','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(79,'BUMP PATROL 7 DAY TREATMENT SOLUTION 65ML','12',NULL,'1101609',16.00,'433.84','744.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000079','pcs','Inventory','VATABLE','0',NULL,0),(80,'BUSCOPAN 10MG TABS 50S','10',NULL,'1101638',16.00,'15.5','27',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000080','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(81,'CACHNERVE CAPS 30S','10',NULL,'1101712',16.00,'38.333','64',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000081','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(82,'CADIPHEN SYRUP 100ML','6',NULL,'1101726',16.00,'100','175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000082','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(83,'CADISTIN EXPECTORANT 100ML','6',NULL,'1101727',16.00,'105','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000083','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(84,'CALAMINE LOTION 100ML','9',NULL,'1101746',16.00,'32.48','57.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000084','pcs','Inventory','VATABLE','0',NULL,0),(85,'CALPOL SUSPENSION 100ML','6',NULL,'1101771',16.00,'271.311','435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000085','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(86,'CALPOL SUSPENSION 60ML','6',NULL,'1101772',16.00,'183.559','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000086','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(87,'CANDID B CREAM 15GM','10',NULL,'1101813',16.00,'163.76','280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000087','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(88,'CANDID B CREAM 30GM','10',NULL,'1101814',16.00,'317.73','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000088','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(89,'CANDID B LOTION','10',NULL,'1101815',16.00,'247.42','430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000089','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(90,'CANDID CREAM 20GM','10',NULL,'1101816',16.00,'219.83','370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000090','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(91,'CANDID EAR DROPS','10',NULL,'1101817',16.00,'140.62','235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000091','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(92,'CANDID LOTION 20ML','10',NULL,'1101818',16.00,'166','285',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000092','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(93,'CANDID MOUTH PAINT','10',NULL,'1101819',16.00,'159.31','270',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000093','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(94,'CANDID POWDER','6',NULL,'1101820',16.00,'210.04','370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000094','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(95,'CANDID T V SUSPENSION','10',NULL,'1101822',16.00,'331.97','560',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000095','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(96,'CANDID V 1 PESSARIES','10',NULL,'1101823',16.00,'238.57','410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000096','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(97,'CANDID V 3 PESSARIES','10',NULL,'1101824',16.00,'299.04','500',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000097','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(98,'CANDID VAGINAL GEL','10',NULL,'1101827',16.00,'317.73','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000098','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(99,'CANDIFEM VAGINAL PESSARIES 6S','10',NULL,'1101828',16.00,'264','460',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000099','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(100,'CANESTEN CREAM 20GM','10',NULL,'1101849',16.00,'585','980',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000100','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(101,'CARCA 25MG TABS 30S','11',NULL,'1101870',16.00,'56.367','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000101','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(102,'CARCA 12.5MG TABS 30S','11',NULL,'1101872',16.00,'41.667','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000102','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(103,'CARDINOL 25MG TABS 28S','11',NULL,'1101873',16.00,'3.628','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000103','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(104,'CARDINOL 100MG TABS 28S','11',NULL,'1101874',16.00,'6.929','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000104','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(105,'CARDISPRIN 75MG TABS 28S','11',NULL,'1101878',16.00,'57.14','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000105','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(106,'CARNATION CORN CAPS 5S','6',NULL,'1101911',16.00,'240','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000106','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(107,'CASTOR OIL 100ML','6',NULL,'1101923',16.00,'81.2','140.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000107','pcs','Inventory','VATABLE','0',NULL,0),(108,'CATAFLAM 50MG TABS 100S','10',NULL,'1101925',16.00,'31.476','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000108','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(109,'CATOXYMAG SUSPENSION 200ML','6',NULL,'1101929',16.00,'180','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000109','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(110,'CAUSTIC PENCIL 95%','10',NULL,'1101931',16.00,'268.424','449.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000110','pcs','Inventory','VATABLE','0','0039.11.28',0),(111,'CENTRUM ADVANCE 60S','6',NULL,'1101969',16.00,'1400','2340',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000111','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(112,'CEPROLEN D EYE/EAR DROPS 5ML','10',NULL,'1101986',16.00,'241','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000112','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(113,'CEPROLEN E/E DROPS','10',NULL,'1101987',16.00,'160','270',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000113','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(114,'CERUMOL EAR DROPS','6',NULL,'1101993',16.00,'370','640',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000114','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(115,'CETAMOL 500MG TABS 100S','6',NULL,'1101997',16.00,'1.155','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000115','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(116,'CETAMOL SYRUP 100ML','6',NULL,'1101998',16.00,'54.6','95',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000116','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(117,'CETRIZET 10MG TABS 100S','10',NULL,'1102002',16.00,'20.1','34.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000117','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(118,'CETRIZET D TABS 100S','10',NULL,'1102003',16.00,'23','38.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000118','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(119,'CHARCOAL TABS ACTIVATED 100S (LOCAL)','6',NULL,'1102025',16.00,'3.9','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000119','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(120,'CARMEX LIPBALM STRAWBERRY TUBE 10G','9',NULL,'1102059',16.00,'348','620.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000120','pcs','Inventory','VATABLE','0',NULL,0),(121,'CIALIS 20MG TABS 2S','11',NULL,'1102117',16.00,'923.5','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000121','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(122,'CIPRO DENK 500MG TABS 10S','10',NULL,'1102141',16.00,'51.589','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000122','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(123,'CIPROINTA 500MG TABS 10S','10',NULL,'1102142',16.00,'15.725','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000123','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(124,'CLARINASE TABS 14S','10',NULL,'1102170',16.00,'47.875','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000124','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(125,'CLARITYNE 10MG TABS 30S','10',NULL,'1102187',16.00,'48.599','74',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000125','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(126,'CLARITYNE 5MG/5ML SYRUP 100ML','10',NULL,'1102188',16.00,'476.685','800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000126','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(127,'CLAVULIN 457MG/5ML - 70ML','10',NULL,'1102203',16.00,'613.285','1055',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000127','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(128,'CLAVULIN 625MG TABS 14S','10',NULL,'1102204',16.00,'64.5','109',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000128','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(129,'CLOB B CREAM 15GM','10',NULL,'1102278',16.00,'67.5','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000129','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(130,'CLOB CREAM 15GM','10',NULL,'1102279',16.00,'41','75',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000130','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(131,'CLOBEDERM OINTMENT 15GM','10',NULL,'1102280',16.00,'96','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000131','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(132,'CLOPILET 75MG TABS 30S','11',NULL,'1102286',16.00,'50','92',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000132','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(133,'CLOPIXOL INJ ACUPHASE 100MG/2ML','10',NULL,'1102289',16.00,'1774','3055',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000133','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(134,'CLOZOLE B CREAM15GM','10',NULL,'1102298',16.00,'66.1','100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000134','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(135,'CLOZOLE CREAM','10',NULL,'1102299',16.00,'16.8','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000135','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(136,'CO-DIOVAN 80/12.5MG TABS 28S','11',NULL,'1102326',16.00,'78.443','138',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000136','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(137,'COLDCAP DAY AND NIGHT CAPS 24S','6',NULL,'1102331',16.00,'139.65','245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000137','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(138,'COLDCAP DAY TIME 12S','6',NULL,'1102332',16.00,'67.2','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000138','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(139,'COLDCAP NIGHT TIME 12S','6',NULL,'1102333',16.00,'67.2','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000139','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(140,'COLDCAP ORIGINAL 12S','6',NULL,'1102334',16.00,'78.75','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000140','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(141,'COLDCAP ORIGINAL 96S','6',NULL,'1102335',16.00,'5.95','10.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000141','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(142,'COLDCAP SYRUP 100ML','6',NULL,'1102336',16.00,'71.4','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000142','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(143,'COLGATE KIDS T/PASTE SMILES 50ML (2-5YRS)','12',NULL,'1102348',16.00,'232','345.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000143','pcs','Inventory','VATABLE','0',NULL,0),(144,'CO-MICARDIS 80MG TABS 28S','11',NULL,'1102428',16.00,'93.857','163',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000144','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(145,'CONCOR 10MG TABS 30S','11',NULL,'1102438',16.00,'44','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000145','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(146,'CONCOR 5MG TABS 30S','11',NULL,'1102439',16.00,'20.833','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000146','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(147,'CONTEMPO CONDOMS ROUGH RIDER 3S','6',NULL,'1102450',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000147','pcs','Inventory','VATABLE','0',NULL,0),(148,'COSATRIM DS TABS 100S','10',NULL,'1102501',16.00,'4.21','7.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000148','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(149,'COSVATE GM CREAM 15GM','10',NULL,'1102523',16.00,'171','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000149','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(150,'COTTON WOOL 100GM','12',NULL,'1102539',16.00,'62','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000150','pcs','Inventory','EXEMPTED','0','0039.11.33',0),(151,'COTTON WOOL 400GM','12',NULL,'1102540',16.00,'220','425',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000151','pcs','Inventory','EXEMPTED','0','0039.11.33',0),(152,'COTTON WOOL 50GM','12',NULL,'1102541',16.00,'30','75',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000152','pcs','Inventory','EXEMPTED','0','0039.11.33',0),(153,'COVERAM 10/5MG TABS 30S','11',NULL,'1102553',16.00,'67.941','119',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000153','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(154,'COX B 200MG CAPS 50S','10',NULL,'1102558',16.00,'24.75','41',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000154','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(155,'CREPE BANDAGE 3IN 7.5CM ELASTOLITE','6',NULL,'1102574',16.00,'18','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000155','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(156,'CREPE BANDAGE 4IN 10CM ELASTOLITE','6',NULL,'1102575',16.00,'22','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000156','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(157,'CREPE BANDAGE 6IN 15CM ELASTOLITE','6',NULL,'1102576',16.00,'30','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000157','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(158,'CYCLOPAM SUSPENSION 30ML','6',NULL,'1102642',16.00,'154','265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000158','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(159,'CYCLOPAM TABLETS 20S','10',NULL,'1102643',16.00,'8.989','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000159','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(160,'CYPON 100ML','10',NULL,'1102648',16.00,'148','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000160','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(161,'CYPON 200ML','10',NULL,'1102649',16.00,'259','430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000161','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(162,'DAFLON 500MG TABS 30S','11',NULL,'1102669',16.00,'17.409','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000162','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(163,'DAKTARIN CREAM 20GM','10',NULL,'1102672',16.00,'341','575',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000163','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(164,'DALACIN C 300MG TABS 16S','10',NULL,'1102676',16.00,'90.75','151',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000164','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(165,'DALACIN T SOLUTION','10',NULL,'1102678',16.00,'806','1395',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000165','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(166,'DEEP FREEZE GEL 35G','6',NULL,'1102718',16.00,'263','440',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000166','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(167,'DEEP FREEZE SPRAY 150ML','6',NULL,'1102719',16.00,'572','965',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000167','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(168,'DEEP HEAT CREAM 15GM','6',NULL,'1102721',16.00,'177','300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000168','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(169,'DEEP HEAT CREAM 35GM','6',NULL,'1102722',16.00,'195','330',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000169','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(170,'DEEP HEAT CREAM 67GM','6',NULL,'1102723',16.00,'339','570',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000170','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(171,'DEEP HEAT RUB 100GM','6',NULL,'1102725',16.00,'420','705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000171','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(172,'DEEP HEAT SPRAY','6',NULL,'1102726',16.00,'455','760',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000172','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(173,'DEEP RELIEF GEL 30GM','6',NULL,'1102729',16.00,'501.3','840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000173','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(174,'DEEP RELIEF GEL 50GM','6',NULL,'1102730',16.00,'662','1115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000174','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(175,'DELASED CHESTY COUGH 100ML','6',NULL,'1102732',16.00,'94.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000175','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(176,'DELASED DRY COUGH 100ML','6',NULL,'1102734',16.00,'94.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000176','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(177,'DELASED DRY NON DROWSY 100ML','6',NULL,'1102735',16.00,'94.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000177','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(178,'DERMIDEX CREAM','10',NULL,'1102786',16.00,'59.85','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000178','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(179,'DETTOL LIQUID 125ML','6',NULL,'1102808',16.00,'272.2752','454.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000179','pcs','Inventory','VATABLE','0',NULL,0),(180,'DETTOL LIQUID 250ML','6',NULL,'1102809',16.00,'527.394','884.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000180','pcs','Inventory','VATABLE','0',NULL,0),(181,'DETTOL LIQUID 500ML','6',NULL,'1102810',16.00,'1066.04','1784.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000181','pcs','Inventory','VATABLE','0',NULL,0),(182,'DETTOL LIQUID 50ML','6',NULL,'1102811',16.00,'101.9872','174.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000182','pcs','Inventory','VATABLE','0',NULL,0),(183,'DEXA-G EYE DROPS 5ML','10',NULL,'1102815',16.00,'384.93','645',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000183','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(184,'DIALIN CAPS 2MG','6',NULL,'1102841',16.00,'26.25','47',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000184','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(185,'DIAMOX 250MG TABS 100S','11',NULL,'1102844',16.00,'29.25','51.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000185','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(186,'DICLODENK 100MG TABS 100S','10',NULL,'1102862',16.00,'9.365','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000186','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(187,'DICLOGENTA EYE DROPS 5ML','10',NULL,'1102865',16.00,'182.45','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000187','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(188,'DICLOMOL EC 50MG TABS 100S','10',NULL,'1102866',16.00,'1','2',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000188','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(189,'DICLOMOL GEL 20GM','10',NULL,'1102867',16.00,'154','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000189','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(190,'DICLOMOL PLUS TABS 100S','10',NULL,'1102868',16.00,'10.665','18',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000190','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(191,'DICLOMOL SR 100MG TABS 100S','10',NULL,'1102869',16.00,'3.53','6.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000191','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(192,'DIFLUCAN 150MG CAPS','10',NULL,'1102880',16.00,'751.18','1280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000192','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(193,'DISFLATYL TABS 100S','6',NULL,'1102947',16.00,'17','30',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000193','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(194,'DISPOSABLE 3PLY SURGICAL MASKS 50S','10',NULL,'1102953',16.00,'3.2','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000194','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(195,'DISPOSABLE SYRINGES 20ML','10',NULL,'1102957',16.00,'8.7','17',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000195','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(196,'DISPOSABLE SYRINGES 5ML','10',NULL,'1102960',16.00,'4','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000196','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(197,'DOLOACT MR TABS 100S','10',NULL,'1102992',16.00,'16.501','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000197','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(198,'DOLOMED MR TABS 100S','10',NULL,'1102996',16.00,'12.25','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000198','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(199,'DOXYCYCLINE 100MG 50S U.K','10',NULL,'1103057',16.00,'16.5','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000199','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(200,'DOXYCYCLINE CAPSULES *100S LOCAL','10',NULL,'1103059',16.00,'3','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000200','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(201,'DULCOLAX 5MG TABS 30S','10',NULL,'1103150',16.00,'9.075','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000201','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(202,'DULCOLAX 10MG SUPPOSITORIES 12S','10',NULL,'1103151',16.00,'52.5','89',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000202','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(203,'DUPHALAC LIQUID 200ML','6',NULL,'1103172',16.00,'603.4','1030',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000203','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(204,'DUPHASTON 10MG TABS 20S','10',NULL,'1103174',16.00,'57.05','98',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000204','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(205,'DUREX CONDOMS ELITE','6',NULL,'1103191',16.00,'179.8','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000205','pcs','Inventory','VATABLE','0',NULL,0),(206,'DUREX CONDOMS EXTRA SAFE','6',NULL,'1103192',16.00,'199.636','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000206','pcs','Inventory','VATABLE','0',NULL,0),(207,'DUREX CONDOMS FETHERLITE 3S','6',NULL,'1103193',16.00,'199.636','349.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000207','pcs','Inventory','VATABLE','0',NULL,0),(208,'DUREX CONDOMS PERFORMA','6',NULL,'1103198',16.00,'241.9876','424.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000208','pcs','Inventory','VATABLE','0',NULL,0),(209,'EBASTEL 10MG TABS 20S','10',NULL,'1103402',16.00,'75.6','126',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000209','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(210,'ELASTOPLAST FABRIC 100S','6',NULL,'1103431',16.00,'1.34','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000210','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(211,'ELOCOM CREAM 15GM','10',NULL,'1103785',16.00,'705.1','1165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000211','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(212,'ELOCOM OINTMENT 15GM','10',NULL,'1103787',16.00,'709.71','1190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000212','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(213,'ELTROXIN 100MCG TABS 100S','11',NULL,'1103788',16.00,'10.06','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000213','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(214,'ELYCORT CREAM 15GM','10',NULL,'1103790',16.00,'50','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000214','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(215,'ELYCORT OINTMENT 15GM','10',NULL,'1103791',16.00,'53','92',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000215','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(216,'ELYVATE CREAM 15GM','10',NULL,'1103793',16.00,'41.65','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000216','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(217,'EMITINO SUSPENSION 30ML','10',NULL,'1103806',16.00,'400','680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000217','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(218,'EMITINO 4MG TABS 10S','10',NULL,'1103807',16.00,'40','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000218','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(219,'ENAPRIL 20 H TABS 30S','11',NULL,'1103817',16.00,'49.335','87',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000219','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(220,'ENAPRIL 5MG TABS 100S','11',NULL,'1103818',16.00,'4.984','9.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000220','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(221,'ENAPRIL 10MG TABS 100S','11',NULL,'1103819',16.00,'8.9','16.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000221','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(222,'ENAPRIL 20MG TABS 100S','11',NULL,'1103820',16.00,'15.556','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000222','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(223,'ENAT 400IU VIT E CAPSULES','6',NULL,'1103822',16.00,'1280','2230',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000223','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(224,'ENO LEMON 48S','6',NULL,'1103854',16.00,'10.813','18',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000224','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(225,'ENSURE POWDER VANILLA 400G','6',NULL,'1103863',16.00,'1257','2100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000225','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(226,'ENTAMIZOLE SYRUP 100ML','10',NULL,'1103865',16.00,'393.9','680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000226','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(227,'ENTEROGERMINA 5ML 10S','6',NULL,'1103868',16.00,'51.24','87',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000227','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(228,'ENZOFLAM TABS 10S','10',NULL,'1103869',16.00,'30','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000228','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(229,'EPANUTIN 100MG CAPS 84S','11',NULL,'1103871',16.00,'12.032','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000229','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(230,'EROSTIN 10MG TABS 10S','10',NULL,'1103905',16.00,'30.737','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000230','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(231,'EROVITA EASY PREGNANCY KIT','6',NULL,'1103907',16.00,'114.84','200.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000231','pcs','Inventory','VATABLE','0',NULL,0),(232,'ERYTHROMYCIN 500MG TABS 100S','10',NULL,'1103933',16.00,'6.5','11.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000232','pcs','Inventory','EXEMPTED','0','0039.11.06',0),(233,'ESOSE 40MG TABS 10S','11',NULL,'1103955',16.00,'46.725','83',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000233','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(234,'EUCRYL SMOKERS T/PASTE','12',NULL,'1103985',16.00,'290','499.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000234','pcs','Inventory','VATABLE','0',NULL,0),(235,'EUCRYL SMOKERS T/POWDER','12',NULL,'1103986',16.00,'278.4','479.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000235','pcs','Inventory','VATABLE','0',NULL,0),(236,'EUMOVATE OINTMENT 25GM','10',NULL,'1103989',16.00,'519','875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000236','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(237,'EURAX HC ANTI-ITCH CREAM 15GM','6',NULL,'1103995',16.00,'490','1060',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000237','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(238,'EVRA PATCH 3S','10',NULL,'1104017',16.00,'1417.5','2355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000238','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(239,'LATEX EXAMINATION GLOVES MEDIUM 100S','6',NULL,'1104019',16.00,'4.4','11',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000239','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(240,'EXEVATE MF OINTMENT','10',NULL,'1104023',16.00,'315.95','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000240','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(241,'EXFORGE 160/5MG TABS 28S','11',NULL,'1104026',16.00,'65.15','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000241','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(242,'FASTUM GEL 50GM','10',NULL,'1104133',16.00,'660','1125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000242','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(243,'FCN 150MG CAPS','10',NULL,'1104137',16.00,'64.35','110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000243','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(244,'FEBREX PLUS SYRUP 100ML','6',NULL,'1104139',16.00,'135','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000244','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(245,'FEBREX PLUS TABS 20S','6',NULL,'1104140',16.00,'5.8','11',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000245','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(246,'FERROGLOBIN CAPS 30S','6',NULL,'1104184',16.00,'564','945',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000246','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(247,'FISHERMANS FRIEND LOZS 25G LEMON','6',NULL,'1104245',16.00,'145','249.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000247','pcs','Inventory','VATABLE','0',NULL,0),(248,'FISHERMANS FRIEND LOZS 25G MINT S/FREE','6',NULL,'1104246',16.00,'145','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000248','pcs','Inventory','VATABLE','0',NULL,0),(249,'FISHERMANS FRIEND LOZS 25G ORIGINAL EXTRA STRONG','6',NULL,'1104247',16.00,'145','249.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000249','pcs','Inventory','VATABLE','0','0039.11.20',0),(250,'FISHERMANS FRIEND LOZS 25G BLACKCURRANT','6',NULL,'1104248',16.00,'145','249.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000250','pcs','Inventory','VATABLE','0',NULL,0),(251,'FLAGYL 200MG/5ML SUSP 100ML','10',NULL,'1104268',16.00,'502','855',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000251','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(252,'FLATAMEAL DS SUSPENSION 200ML','6',NULL,'1104275',16.00,'195','335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000252','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(253,'FLATAMEAL DS TABLETS 200S','6',NULL,'1104276',16.00,'3','5.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000253','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(254,'FLORANORM 250MG SACCHAROMYCES BOULARDII SACHETS 10S','6',NULL,'1104301',16.00,'83','142',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000254','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(255,'FLUCLOXACILLIN 500MG CAPS 100S','10',NULL,'1104375',16.00,'6.25','10.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000255','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(256,'FLUCOZAL 200MG CAPS 10S','10',NULL,'1104382',16.00,'132.206','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000256','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(257,'FLUGONE C+F TABLETS 10S','6',NULL,'1104384',16.00,'88','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000257','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(258,'FLUGONE CAPSULES 10S','6',NULL,'1104385',16.00,'93.99','155',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000258','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(259,'FLUGONE DM COUGH SYRUP 120ML','6',NULL,'1104386',16.00,'194','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000259','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(260,'FLUGONE DM SYRUP 60ML','6',NULL,'1104387',16.00,'122.06','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000260','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(261,'FLUGONE P COUGH SYRUP 120ML','6',NULL,'1104388',16.00,'186.99','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000261','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(262,'FLUGONE P SYRUP 60ML','6',NULL,'1104389',16.00,'122.06','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000262','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(263,'FOLIC ACID 5MG TABS 28S','10',NULL,'1104403',16.00,'4.286','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000263','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(264,'FRAMYDEX EYE/EAR DROP 8ML','10',NULL,'1104421',16.00,'198.45','335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000264','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(265,'FUROSEMIDE 40MG TABS 100S','11',NULL,'1104461',16.00,'1.29','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000265','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(266,'FUCICORT CREAM 15GM','10',NULL,'1104462',16.00,'486.92','830',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000266','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(267,'FYBOGEL ORANGE 60S','6',NULL,'1104511',16.00,'30.8','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(268,'GAUZE SWABS STERILE 3*3 (100S)','6',NULL,'1104748',16.00,'3.16','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000268','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(269,'GAUZE SWABS STERILE 4*4 (100S)','6',NULL,'1104749',16.00,'3.9','7.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000269','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(270,'GAVISCON DOUBLE ACTION LIQUID 150ML','6',NULL,'1104757',16.00,'586.46','990',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000270','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(271,'GINSOMIN CAPSULES 30S','6',NULL,'1104866',16.00,'27.358','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000271','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(272,'GLUCOMET 500MG TABS 28S','11',NULL,'1104908',16.00,'3.393','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000272','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(273,'GLUCOMET 850MG TABS 28S','11',NULL,'1104909',16.00,'7.107','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000273','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(274,'GLUCOPHAGE 1GM TABS 60S','11',NULL,'1104910',16.00,'9.167','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000274','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(275,'GLUCOPHAGE 500MG TABS 90S','11',NULL,'1104911',16.00,'4.667','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000275','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(276,'GLUCOPHAGE 850MG TABS 60S','11',NULL,'1104912',16.00,'8.5','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000276','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(277,'GLUCOPHAGE XR 500MG 90S','11',NULL,'1104913',16.00,'8.444','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000277','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(278,'GLUCOPLUS MACHINE','11',NULL,'1104914',16.00,'1160','2030',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000278','pcs','Inventory','VATABLE','0',NULL,0),(279,'GLUCOSE POWDER 100G','6',NULL,'1104918',16.00,'34.8','59.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000279','pcs','Inventory','VATABLE','0',NULL,0),(280,'GLYCERINE INFANT SUPPOSITORIES 1G','6',NULL,'1104936',16.00,'33.167','57',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000280','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(281,'GLYCERINE LIQUID 50ML','9',NULL,'1104937',16.00,'33.64','55.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000281','pcs','Inventory','VATABLE','0',NULL,0),(282,'GRABACIN DUSTING POWDER','10',NULL,'1104972',16.00,'99.28','170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000282','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(283,'GRABACIN-3 OINTMENT 20GM','10',NULL,'1104973',16.00,'186.3','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000283','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(284,'GRISEOFULVIN 250MG TABS 100S','10',NULL,'1104986',16.00,'3.583','6.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000284','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(285,'GRISEOFULVIN 500MG TABS 100S','10',NULL,'1104987',16.00,'7.2','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000285','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(286,'HEDEX TABLETS 100S','6',NULL,'1105372',16.00,'3.849','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000286','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(287,'HEMOSAN CAPSULES *30S','6',NULL,'1105383',16.00,'6.705','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000287','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(288,'HEMSAMIC 500MG CAPS 20S','10',NULL,'1105385',16.00,'36.237','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000288','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(289,'HUMALOG 3ML CARTRIDGE 5S','11',NULL,'1105479',16.00,'1110.6','1855',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000289','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(290,'HYDROCHLOROTHIAZIDE 50MG TABS 100S','11',NULL,'1105499',16.00,'1.74','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000290','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(291,'HYDROCORTISONE CREAM 30GM','10',NULL,'1105503',16.00,'310','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000291','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(292,'HYDROGEN PEROXIDE 20V 200ML','6',NULL,'1105509',16.00,'27.84','49.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000292','pcs','Inventory','VATABLE','0',NULL,0),(293,'HYDROXYCHLOROQUINE 200MG TABS 30S','10',NULL,'1105511',16.00,'34.829','59',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000293','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(294,'IBUMEX GEL 25GM','6',NULL,'1105537',16.00,'52.5','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000294','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(295,'IBUMEX SUSP 60ML','6',NULL,'1105539',16.00,'49.35','85',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000295','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(296,'IBUPROFEN 400MG TABLETS B/P 84S','6',NULL,'1105541',16.00,'3.81','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000296','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(297,'IMODIUM LOPERAMIDE 2MG CAPS 6S','6',NULL,'1105561',16.00,'206.1','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000297','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(298,'INFA-V VAGINAL PESSARIES 8S','10',NULL,'1105589',16.00,'407','680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000298','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(299,'INTAMINE CREAM 25GM','6',NULL,'1105669',16.00,'63','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000299','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(300,'IROVEL H TABS 30S','11',NULL,'1105691',16.00,'55.667','98',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000300','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(301,'IROVEL 150MG TABS 30S','11',NULL,'1105692',16.00,'48.082','85',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000301','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(302,'JOINTACE (COLLAGEN/GLUCOSAMINE & CHONDROITIN) *30S','6',NULL,'1105850',16.00,'1051.818','1935',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000302','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(303,'JOLEN FACIAL STRIP WAX 16STRIPS','12',NULL,'1105859',16.00,'185.6','324.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000303','pcs','Inventory','VATABLE','0',NULL,0),(304,'KARVOL DECONGESTANT CAPSULES','6',NULL,'1105907',16.00,'30.5','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000304','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(305,'KEPPRA 250MG TABS 60S','11',NULL,'1105941',16.00,'41.367','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000305','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(306,'KETOLAC EYE DROPS 5ML','10',NULL,'1105948',16.00,'220','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000306','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(307,'KLY LUBRICATING JELLY 42G','6',NULL,'1105998',16.00,'150','255',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000307','pcs','Inventory','EXEMPTED','0','0039.11.41',0),(308,'KOFOL SYRUP 100ML','6',NULL,'1106001',16.00,'168','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000308','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(309,'KOTEX PANTY LINERS REGULAR 20S','12',NULL,'1106020',16.00,'117.02312','174.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000309','pcs','Inventory','VATABLE','0',NULL,0),(310,'KOTEX TAMPONS REGULAR 16S','12',NULL,'1106022',16.00,'237.576','355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000310','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(311,'KOTEX TAMPONS SUPER 16S','12',NULL,'1106023',16.00,'233.333','350',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000311','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(312,'LACTULAC LIQUID 200ML','6',NULL,'1106207',16.00,'412.25','715',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000312','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(313,'LAMISIL CREAM 15GM','10',NULL,'1106243',16.00,'960','1585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000313','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(314,'LASIX 40MG TABS 20S','11',NULL,'1106284',16.00,'35.098','63',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000314','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(315,'LEFLOX 500MG TABS 10S','10',NULL,'1106304',16.00,'70.85','118',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000315','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(316,'LEMSIP COLD & FLU SATCHETS BLACKCURRANT 10S','6',NULL,'1106313',16.00,'57','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000316','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(317,'LEMSIP MAX COLD & FLU SATCHETS LEMON 10S','6',NULL,'1106329',16.00,'63.5','107',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000317','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(318,'LETROZ 2.5MG TABS 25S','11',NULL,'1106348',16.00,'134','235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000318','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(319,'LEXOTANIL 1.5MG TABS 30S','10',NULL,'1106356',16.00,'16.23','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000319','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(320,'LEXOTANIL 3.0MG TABS 30S','10',NULL,'1106357',16.00,'22.71','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000320','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(321,'SKYN ORIGINAL NON LATEX CONDOM','6',NULL,'1106367',16.00,'401.2092','690.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000321','pcs','Inventory','VATABLE','0',NULL,0),(322,'LIQUID PARAFFIN 100ML','6',NULL,'1106454',16.00,'52.2','89.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000322','pcs','Inventory','VATABLE','0',NULL,0),(323,'LISTERINE COOL MINT M/WASH 250ML','12',NULL,'1106460',16.00,'532.44','789.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000323','pcs','Inventory','VATABLE','0',NULL,0),(324,'LONART DS TABLETS 6S','10',NULL,'1106500',16.00,'22.832','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000324','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(325,'LANCETS 100S','11',NULL,'1106522',16.00,'1.1','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000325','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(326,'LOSARTAS HT 50/12.5MG TABS 30S','11',NULL,'1106528',16.00,'29.5','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000326','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(327,'LOSARTAS 50MG 28S','11',NULL,'1106529',16.00,'24.464','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000327','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(328,'LYRICA 25MG CAPS 28S','11',NULL,'1106605',16.00,'33.882','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000328','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(329,'LYRICA 75MG CAPS 28S','11',NULL,'1106606',16.00,'85.786','151',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000329','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(330,'MANIX TABLETS 20S','6',NULL,'1106781',16.00,'31.6','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000330','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(331,'MARAMOJA TABLETS 100S','6',NULL,'1106782',16.00,'3.58','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000331','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(332,'MARAMOJA TABLETS 20S','6',NULL,'1106783',16.00,'130.31','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000332','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(333,'MARS BARS 51G','12',NULL,'1106790',16.00,'98.79372','155.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000333','pcs','Inventory','VATABLE','0',NULL,0),(334,'MAXIDEX EYE DROPS','10',NULL,'1106800',16.00,'280.5','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000334','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(335,'MAXIDEX EYE OINTMENT','10',NULL,'1106801',16.00,'433.5','730',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000335','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(336,'MAXITROL EYE DROPS','10',NULL,'1106803',16.00,'175.2','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000336','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(337,'MEBO OINTMENT 15 GRAMS','10',NULL,'1106818',16.00,'639.2','1090',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000337','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(338,'MEBO OINTMENT 30 GRAMS','10',NULL,'1106819',16.00,'1288.92','2130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000338','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(339,'MEDI-KEEL THROAT LOZENGES 16S ORIGINAL','6',NULL,'1106840',16.00,'25','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000339','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(340,'MEDIPLAST FABRIC 100S','6',NULL,'1106842',16.00,'0.55','2',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000340','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(341,'MEDIVEN CREAM 15GM','10',NULL,'1106855',16.00,'44.9','75',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000341','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(342,'MEDIVEN S OINTMENT 15GM','10',NULL,'1106857',16.00,'132.75','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000342','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(343,'MEFTAL FORTE TABS 20S','10',NULL,'1106868',16.00,'16.5','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000343','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(344,'MEFTAL 500MG TABS 20S','10',NULL,'1106869',16.00,'14.05','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000344','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(345,'MENTHODEX COUGH SYRUP 200ML','6',NULL,'1106892',16.00,'318.6','545',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000345','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(346,'MENTHODEX COUGH SYRUP 100ML','6',NULL,'1106893',16.00,'212.4','365',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000346','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(347,'MERCILON 3*21S','10',NULL,'1106899',16.00,'663.333','1105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000347','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(348,'METROMAG MILK OF MAGNESIA 100ML','6',NULL,'1106933',16.00,'99','175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000348','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(349,'MICROFINE INSULIN SYRINGES *1ML','11',NULL,'1106955',16.00,'12.85','22.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000349','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(350,'MICROGYNON-30 PILLS 21S','10',NULL,'1106959',16.00,'253.269','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000350','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(351,'MILTON STERILISING FLUID 500ML','12',NULL,'1106980',16.00,'326.772','530.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000351','pcs','Inventory','VATABLE','0',NULL,0),(352,'MILTON STERILISING TABLETS 28S','12',NULL,'1106981',16.00,'533.6','850.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000352','pcs','Inventory','VATABLE','0',NULL,0),(353,'MINOCYCLINE 100MG 28S','10',NULL,'1106987',16.00,'72.5','121',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000353','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(354,'MOBIC 15MG TABS 10S','10',NULL,'1107086',16.00,'69.673','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000354','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(355,'MOMATE CREAM 15GM','10',NULL,'1107108',16.00,'448.56','760',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000355','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(356,'MONTALLERG 10/5MG TABS 20S','11',NULL,'1107120',16.00,'47.25','82',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000356','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(357,'MONTIGET GRANULES 4MG 14S','11',NULL,'1107123',16.00,'34.405','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000357','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(358,'MONTIGET 10MG TABS 14S','11',NULL,'1107124',16.00,'50.717','89',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000358','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(359,'MONTIGET 5MG TABS 14S','11',NULL,'1107125',16.00,'36.5','64',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000359','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(360,'MOTILIUM 10MG TABS 20S','10',NULL,'1107151',16.00,'26.46','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000360','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(361,'MOTILIUM SYRUP 100 ML','10',NULL,'1107153',16.00,'430.2','730',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000361','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(362,'MOVICOL SATCHETS 30S','6',NULL,'1107156',16.00,'65','111',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000362','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(363,'MUCOSOLVAN LIQUID 100ML','6',NULL,'1107168',16.00,'393.12','665',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000363','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(364,'MUVERA 15MG TABS 100S','10',NULL,'1107188',16.00,'22.4','37.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000364','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(365,'MUVERA 7.5MG TABS 100S','10',NULL,'1107189',16.00,'13.365','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000365','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(366,'MYCOTA CREAM','6',NULL,'1107196',16.00,'230','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000366','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(367,'MYCOTA POWDER 70G','6',NULL,'1107197',16.00,'650','1120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000367','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(368,'MYOSPAZ TABS 100S','10',NULL,'1107203',16.00,'15.8','26.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000368','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(369,'NAPROSYN 500MG TABS 56S','10',NULL,'1107351',16.00,'38.393','64',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000369','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(370,'NASIVION PAEDIATRIC NASAL DROPS','6',NULL,'1107355',16.00,'#N/A','#N/A',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000370','pcs','Inventory','EXEMPTED','0',NULL,0),(371,'NASOSAL DROPS 10ML','6',NULL,'1107358',16.00,'424','715',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000371','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(372,'NATRILIX SR 1.5MG TABS 30S','11',NULL,'1107408',16.00,'24.598','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000372','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(373,'NEBILET 5MG TABS 28S','11',NULL,'1107423',16.00,'63.714','112',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000373','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(374,'NETAZOX 500MG TABS 6S','10',NULL,'1107477',16.00,'47.578','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000374','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(375,'NEURORUBINE FORTE TABLETS 20S','10',NULL,'1107486',16.00,'20','34',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000375','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(376,'NEXIUM 20MG TABS 14S','11',NULL,'1107612',16.00,'86.949','147',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000376','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(377,'NEXIUM 40MG TABS 14S','11',NULL,'1107613',16.00,'126.6','213',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000377','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(378,'NICORETTE FRUITFUSION GUM 2MG','6',NULL,'1107627',16.00,'285.714','478',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000378','pcs','Inventory','EXEMPTED','0',NULL,0),(379,'NICORETTE FRUITFUSION GUM 4MG','6',NULL,'1107628',16.00,'335.71','561',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000379','pcs','Inventory','EXEMPTED','0',NULL,0),(380,'NICORETTE FRESHMINT GUM 4MG','6',NULL,'1107630',16.00,'335.71','561',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000380','pcs','Inventory','EXEMPTED','0',NULL,0),(381,'NIFEDIDENK RETARD 20MG TABS 100S','11',NULL,'1107637',16.00,'11.256','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000381','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(382,'NIFELAT RETARD 20MG TABS 100S','11',NULL,'1107638',16.00,'5.15','9.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000382','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(383,'NILOL 50/20MG TABS 30S','11',NULL,'1107642',16.00,'24.167','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000383','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(384,'NOGLUC 5MG TABS 28S','11',NULL,'1107675',16.00,'3.742','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000384','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(385,'NORMAL SALINE 500ML','10',NULL,'1107684',16.00,'95','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000385','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(386,'NORMAL SALINE NASAL DROPS 10ML','6',NULL,'1107685',16.00,'25','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000386','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(387,'NORVASC 5MG TABS 30S','11',NULL,'1107690',16.00,'47.296','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000387','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(388,'NORVASC 10MG TABS 30S','11',NULL,'1107691',16.00,'86.886','146',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000388','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(389,'NOSIC TABS 20S','10',NULL,'1107694',16.00,'16.465','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000389','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(390,'NOVORIN SALINE NASAL DROPS 15ML','6',NULL,'1107754',16.00,'81','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000390','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(391,'NUROFEN COLD & FLU TABS 24S','6',NULL,'1107803',16.00,'1005','1680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000391','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(392,'NUROFEN SUSP ORANGE 200ML','6',NULL,'1107819',16.00,'1250','2090',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000392','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(393,'NYSTAN ORAL DROPS 30ML','10',NULL,'1107843',16.00,'45','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000393','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(394,'NYSTATIN ORAL DROPS 30ML','10',NULL,'1107844',16.00,'40','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000394','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(395,'OB REGULAR TAMPONS 8S','12',NULL,'1107868',16.00,'160','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000395','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(396,'OB SUPER TAMPONS 8S','12',NULL,'1107870',16.00,'184','275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000396','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(397,'OCID 20MG CAPS 100S','11',NULL,'1107881',16.00,'1.84','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000397','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(398,'OILATUM CREAM TUBE 150GM','9',NULL,'1107898',16.00,'997.6','1710.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000398','pcs','Inventory','VATABLE','0',NULL,0),(399,'OILATUM SOAP 100GM','9',NULL,'1107916',16.00,'446.55','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000399','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(400,'OJEN OZ TABS 10S','10',NULL,'1107917',16.00,'23.678','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000400','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(401,'OLBAS OIL 10ML ADULTS','6',NULL,'1107923',16.00,'430','740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000401','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(402,'OLBAS OIL CHILDREN','6',NULL,'1107924',16.00,'430','740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000402','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(403,'OLFEN 100MG SR DEPOCAPS 10S','10',NULL,'1107945',16.00,'71','121',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000403','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(404,'OLFEN 75MG SR DEPOTABS 30S','10',NULL,'1107947',16.00,'36.167','62',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000404','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(405,'OLFEN GEL 20GM','10',NULL,'1107950',16.00,'490','820',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000405','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(406,'OMASTIN 50mg/5ml SUSPENSION 35ML','10',NULL,'1107962',16.00,'313.5','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000406','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(407,'OMEGA H3 CAPSULES 30S','6',NULL,'1107963',16.00,'28.16','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000407','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(408,'OMEPRAZOLE 20MG TABS 28S','11',NULL,'1107964',16.00,'5','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000408','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(409,'ON CALL PLUS TEST STRIPS 50S','11',NULL,'1107974',16.00,'599.99956','1179.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000409','pcs','Inventory','VATABLE','0',NULL,0),(410,'ONAZIN EYE DROPS 10ML','6',NULL,'1107975',16.00,'267.3','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000410','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(411,'ORAL B DENTAL FLOSS WAXED MINT 50M','12',NULL,'1108082',16.00,'208.8','319.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000411','pcs','Inventory','VATABLE','0',NULL,0),(412,'ORAL REHYDRATION SALTS 14G 100S','6',NULL,'1108120',16.00,'8.5','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000412','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(413,'ORELOX SUSPENSION 40MG/5ML 100ML','10',NULL,'1108136',16.00,'1710.485','2860',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000413','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(414,'OSTEOCARE JOINT GLUCOSAMINE & CHONDROITIN TABS 60S','6',NULL,'1108185',16.00,'1428','2385',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000414','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(415,'OSTEOCARE TABLETS 30S','6',NULL,'1108189',16.00,'432','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000415','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(416,'OTOREX EAR DROPS 10ML','6',NULL,'1108194',16.00,'206','350',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000416','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(417,'P-ALAXIN TABS 9S','10',NULL,'1108229',16.00,'187','325',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000417','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(418,'PANADOL ADVANCE 100S','6',NULL,'1108283',16.00,'4.693','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000418','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(419,'PANADOL ADVANCE 20S','6',NULL,'1108285',16.00,'130.578','215',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000419','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(420,'PANADOL BABY & INFANT SUSP 100ML','6',NULL,'1108287',16.00,'238','385',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000420','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(421,'PANADOL EXTRA With Opti Zorb 100S','6',NULL,'1108293',16.00,'4.801','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000421','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(422,'PANADOL EXTRA with Opti Zorb 20S','6',NULL,'1108295',16.00,'130.939','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000422','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(423,'PANDERM OINTMENT 15GM','10',NULL,'1108303',16.00,'470','810',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000423','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(424,'PANTOCID 40MG TABS 50S','11',NULL,'1108325',16.00,'43','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000424','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(425,'PARIET 20MG TABS 28S','11',NULL,'1108339',16.00,'172.061','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000425','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(426,'PEDITRAL ORANGE O.R.S','6',NULL,'1108375',16.00,'58.01','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000426','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(427,'PERNEX AC 5% GEL 20GM','10',NULL,'1108408',16.00,'286','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000427','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(428,'PHARMASAL OINTMENT','10',NULL,'1108425',16.00,'43','72',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000428','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(429,'PIRITON EXPECTORANT 100ML','6',NULL,'1108573',16.00,'343.19','555',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000429','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(430,'PIRITON SYRUP 100ML','6',NULL,'1108574',16.00,'296','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000430','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(431,'PIRITON 4MG TABS 1000S','10',NULL,'1108575',16.00,'2.361','4.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000431','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(432,'PIROXICAM 20MG CAPS 100S','10',NULL,'1108576',16.00,'0.95','2.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000432','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(433,'PONSTAN FORTE 500MG TABS 50S','10',NULL,'1108653',16.00,'19.824','34',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000433','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(434,'POSTINOR 0.75MG TABLETS','10',NULL,'1108663',16.00,'126.9','215',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000434','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(435,'POWERGESIC PLUS GEL 30G','6',NULL,'1108703',16.00,'180','310',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000435','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(436,'PREDNISOLONE 5MG TABS 100S','11',NULL,'1108713',16.00,'1.64','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000436','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(437,'PREDNISONE 5MG TABS 100S','11',NULL,'1108714',16.00,'1.799','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000437','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(438,'PREDSOL FORTE 60ML','10',NULL,'1108716',16.00,'773.5','1300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000438','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(439,'PREGNACARE CAPS 30S','6',NULL,'1108719',16.00,'566','950',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000439','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(440,'PREGNACARE PLUS','6',NULL,'1108722',16.00,'1100','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000440','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(441,'PRIMAPORE AWD 6CM*8.3CM 50S','6',NULL,'1108764',16.00,'40','69',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000441','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(442,'PRIMOLUT N 5MG TABS 30S','10',NULL,'1108767',16.00,'26.925','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000442','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(443,'PROBETA N DROPS','10',NULL,'1108787',16.00,'90','155',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000443','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(444,'PROMETHAZINE 25MG TABS 100S','10',NULL,'1108807',16.00,'1.22','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000444','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(445,'PULMICORT 0.5MG/ML NEBULISING SOLN 20S','11',NULL,'1108874',16.00,'242.445','418',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000445','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(446,'QUEST MARINE OMEGA EPA 1000MG CAPS 90S FOR 45S','6',NULL,'1108943',16.00,'620','1045',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000446','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(447,'QUITIPIN 200MG TABS 30S','11',NULL,'1108978',16.00,'66','119',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000447','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(448,'RANFERON 12 SYRUP 200ML','6',NULL,'1109009',16.00,'275','475',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000448','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(449,'RANFERON CAPSULES 30S','6',NULL,'1109010',16.00,'11.634','21',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000449','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(450,'RECARTIX CAPS 30S','6',NULL,'1109026',16.00,'42.667','73.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000450','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(451,'REGENOVEX CAPSULES 30S','6',NULL,'1109058',16.00,'3499.72','6019.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000451','pcs','Inventory','VATABLE','0',NULL,0),(452,'RELCER GEL 180ML','6',NULL,'1109067',16.00,'283.91','475',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000452','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(453,'REMIDIN MOUTHWASH 100ML','6',NULL,'1109072',16.00,'218.08','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000453','pcs','Inventory','VATABLE','0',NULL,0),(454,'RHINATHIOL INFANT SYRUP 125ML','6',NULL,'1109252',16.00,'290.407','490',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000454','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(455,'RHINATHIOL WITH PROMETHAZINE 125ML','6',NULL,'1109253',16.00,'292.02','495',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000455','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(456,'RHIZIN 5MG/5ML SYRUP 60ML','10',NULL,'1109258',16.00,'180','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000456','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(457,'RILIF MR TABS 20S','10',NULL,'1109274',16.00,'26.25','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000457','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(458,'RILIF PLUS TABS 30S','10',NULL,'1109275',16.00,'15.733','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000458','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(459,'RILIF SR 200MG TABS 30S','10',NULL,'1109276',16.00,'27.076','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000459','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(460,'RIVOTRIL 2MG TABS 30S','10',NULL,'1109295',16.00,'26.652','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000460','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(461,'ROBITUSSIN DRY COUGH 100ML','6',NULL,'1109305',16.00,'530','915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000461','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(462,'ROZAVEL 10MG TABS 30S','11',NULL,'1109343',16.00,'48.698','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000462','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(463,'ROZAVEL 5MG TABS 30S','11',NULL,'1109344',16.00,'38.266','68',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000463','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(464,'SALBUTAMOL 4MG TABS 100S','11',NULL,'1109388',16.00,'0.79','2',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000464','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(465,'SATROGYL 300MG TABS 30S','10',NULL,'1109430',16.00,'32','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000465','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(466,'SAVLON ANTISEPTIC LIQUID 75ML','6',NULL,'1109442',16.00,'99.76','179.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000466','pcs','Inventory','VATABLE','0',NULL,0),(467,'SCABION CREAM 20GM','10',NULL,'1109446',16.00,'97.46','170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000467','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(468,'SCOTTS EMULSION ORANGE 100ML','6',NULL,'1109525',16.00,'324.169','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000468','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(469,'SCOTTS EMULSION ORANGE 200ML.','6',NULL,'1109526',16.00,'624.245','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000469','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(470,'SCOTTS EMULSION REGULAR 200ML','6',NULL,'1109528',16.00,'624.245','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000470','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(471,'SECZOLE DS 1GM TABS','10',NULL,'1109590',16.00,'70','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000471','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(472,'SELSUN SHAMPOO 100ML','12',NULL,'1109607',16.00,'719.2','1230.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000472','pcs','Inventory','VATABLE','0',NULL,0),(473,'SENNA NATURAL LAXATIVE TABS 50S','6',NULL,'1109609',16.00,'2.7','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000473','pcs','Inventory','EXEMPTED','0','0039.11.82',0),(474,'SEPTRIN FORTE DS 960MG 10S','10',NULL,'1109646',16.00,'39.848','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000474','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(475,'SEVEN SEAS COD LIVER OIL 100ML','6',NULL,'1109671',16.00,'370.6','598',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000475','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(476,'SEVEN SEAS ONE A DAY CAPS 60S','6',NULL,'1109685',16.00,'1079.75','1775',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000476','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(477,'SILVEREX CREAM 10GM','10',NULL,'1109734',16.00,'76','135',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000477','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(478,'SILVEREX CREAM 25GM','10',NULL,'1109735',16.00,'142','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000478','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(479,'SIMPLE REPLENISHING RICH MOIST. 125ML','9',NULL,'1109803',16.00,'747.8984','1130.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000479','pcs','Inventory','VATABLE','0',NULL,0),(480,'SIMPLE SOOTHING FACIAL TONER 200ML','9',NULL,'1109812',16.00,'671.9996','1025.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000480','pcs','Inventory','VATABLE','0',NULL,0),(481,'SINUTAB ND TABLETS','6',NULL,'1109845',16.00,'620','1070',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000481','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(482,'SNICKERS BAR 50G','12',NULL,'1109947',16.00,'91.205','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000482','pcs','Inventory','VATABLE','0',NULL,0),(483,'SOLVIN PLUS EXPECTORANT 120ML','6',NULL,'1109985',16.00,'259','450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000483','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(484,'SOLVIN PLUS TABS 100S','10',NULL,'1109987',16.00,'9.25','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000484','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(485,'SONATEC MOUTHWASH 250ML','12',NULL,'1109994',16.00,'172.956','285.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000485','pcs','Inventory','VATABLE','0',NULL,0),(486,'STERILE GLOVES 7.5','10',NULL,'1110103',16.00,'27.84','45.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000486','pcs','Inventory','VATABLE','0',NULL,0),(487,'STERON 5MG TABS 100S','10',NULL,'1110109',16.00,'16.732','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000487','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(488,'STREPSILS ORANGE/VITAMIN C 36S','6',NULL,'1110152',16.00,'690','1210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000488','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(489,'SUBSYDE-DR 100MG CAPS 10S','10',NULL,'1110166',16.00,'24.338','41',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000489','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(490,'SUDOCREAM 60GM','12',NULL,'1110180',16.00,'440.8','754.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000490','pcs','Inventory','VATABLE','0',NULL,0),(491,'SURGICAL SPIRIT 100ML','6',NULL,'1110256',16.00,'40','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000491','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(492,'SYLATE 500mg TABS 18S','11',NULL,'1110291',16.00,'65.278','121',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000492','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(493,'SYMBICORT TURBUHALER 160/4.5UG -120DOSES','11',NULL,'1110292',16.00,'678.125','1190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000493','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(494,'SYSTANE EYE DROPS 15ML','10',NULL,'1110304',16.00,'1190','1990',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000494','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(495,'SYSTANE ULTRA EYE DROPS','10',NULL,'1110305',16.00,'1408','2340',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000495','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(496,'TAGERA FORTE 1GM 2S','10',NULL,'1110317',16.00,'47','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000496','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(497,'TAMOXIFEN 20MG TABS 30S','11',NULL,'1110322',16.00,'10.74','21',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000497','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(498,'TEARS NATURALE II','6',NULL,'1110365',16.00,'573.75','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000498','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(499,'TELMI H 80/12.5mg TABS 30S','11',NULL,'1110382',16.00,'60.567','107',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000499','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(500,'TENORETIC 100/25MG TABS 28S','11',NULL,'1110416',16.00,'60.566','106',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000500','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(501,'TENORMIN 50MG TABS 28S','11',NULL,'1110420',16.00,'34.764','62',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000501','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(502,'TETRACYCLINE EYE OINTMENT','10',NULL,'1110436',16.00,'33','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000502','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(503,'TINIDAZOLE 500MG TABS 4s','10',NULL,'1110479',16.00,'3','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000503','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(504,'TIXYLIX TODDLER SYRUP 3MTHS -5 YRS','6',NULL,'1110549',16.00,'600','1035',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000504','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(505,'TOBRADEX EYE DROPS','10',NULL,'1110550',16.00,'663','1125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000505','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(506,'TODAY PREMIUM PESSARIES','10',NULL,'1110554',16.00,'110','190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000506','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(507,'TOUCH & GO TOOTHACHE SOLUTION','6',NULL,'1110589',16.00,'180','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000507','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(508,'TRAMAL 100MG TABS 30S','10',NULL,'1110600',16.00,'135.12','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000508','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(509,'TRAMED 500/250MG TABS 30S','11',NULL,'1110602',16.00,'38.85','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000509','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(510,'TRAVOCORT CREAM 15GM','10',NULL,'1110617',16.00,'678','1120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000510','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(511,'TRES ORIX FORTE CAPS 20S','6',NULL,'1110620',16.00,'28.75','50',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000511','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(512,'TRES ORIX FORTE SYRUP 100ML','6',NULL,'1110621',16.00,'450','780',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000512','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(513,'TRES ORIX FORTE SYRUP 250ML','6',NULL,'1110622',16.00,'645','1110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000513','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(514,'TRICOHIST EXPECTORANT 100ML','6',NULL,'1110631',16.00,'130','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000514','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(515,'TRIMEX DIABETIC EXPECTORANT 100ML','6',NULL,'1110639',16.00,'136.5','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000515','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(516,'TRIMEX EXPECTORANT ADULT 100ML','6',NULL,'1110640',16.00,'105','180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000516','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(517,'TRIMEX MUCOLYTIC SYRUP 100ML','6',NULL,'1110641',16.00,'52.5','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000517','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(518,'TRIMEX PAEDIATRIC 100ML','6',NULL,'1110642',16.00,'105','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000518','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(519,'TRIOKIT TABS 4 (COMBIKIT)','10',NULL,'1110648',16.00,'623','1045',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000519','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(520,'TRUST CONDOMS 24S','6',NULL,'1110677',16.00,'23.49','41.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000520','pcs','Inventory','VATABLE','0',NULL,0),(521,'TRUST CONDOMS STUDDED 24S','6',NULL,'1110678',16.00,'37.50628','64.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000521','pcs','Inventory','VATABLE','0',NULL,0),(522,'TUSPEL PLUS SYRUP 100ML','6',NULL,'1110698',16.00,'137.06','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000522','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(523,'TUSPEL SYRUP 100ML','6',NULL,'1110699',16.00,'121','210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000523','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(524,'TUSPRESS SYRUP 100ML','6',NULL,'1110700',16.00,'136.17','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000524','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(525,'UNIBROL 250MG TABS 24S','10',NULL,'1110842',16.00,'26.25','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000525','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(526,'UNIBROL 125MG/5ML SYRUP','10',NULL,'1110843',16.00,'248.063','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000526','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(527,'UNISTEN HC CREAM 20G','10',NULL,'1110853',16.00,'105','180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000527','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(528,'UNIVIR 400MG TABS 10s','10',NULL,'1110858',16.00,'33.075','56',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000528','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(529,'UNIVIR CREAM 10GM','10',NULL,'1110859',16.00,'123.28','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000529','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(530,'VALIUM 5MG TABS 25S','10',NULL,'1110981',16.00,'20.045','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000530','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(531,'VASELINE LIP THERAPY TIN (ALOE) 20G','9',NULL,'1111002',16.00,'185.6','334.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000531','pcs','Inventory','VATABLE','0',NULL,0),(532,'VASELINE LIP THERAPY TIN ( ORIGINAL) 20G','9',NULL,'1111004',16.00,'185.6','334.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000532','pcs','Inventory','VATABLE','0',NULL,0),(533,'VASELINE LIP THERAPY TIN (ROSY LIPS)','9',NULL,'1111006',16.00,'185.6','334.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000533','pcs','Inventory','VATABLE','0',NULL,0),(534,'VDM-KIT','10',NULL,'1111018',16.00,'507.3','865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000534','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(535,'VENTOLIN EVOHALER*200DOSES','11',NULL,'1111069',16.00,'232','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000535','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(536,'VERMOX MEBENDAZOLE 100MG TABS 6S','6',NULL,'1111079',16.00,'482.4','825',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000536','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(537,'VERMOX MEBENDAZOLE 500MG TABS 1S','6',NULL,'1111080',16.00,'482.4','825',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000537','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(538,'VIAGRA 100MG TABS 4S','11',NULL,'1111093',16.00,'687.262','1235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000538','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(539,'VICKS INHALER UK','6',NULL,'1111105',16.00,'285','500',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000539','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(540,'VICKS SINEX MICROMIST NASAL SPRAY 15ML','6',NULL,'1111108',16.00,'560','965',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000540','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(541,'VICKS VAPO RUB JAR 25GM','6',NULL,'1111114',16.00,'395','660',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000541','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(542,'VISCID GEL 200ML','6',NULL,'1111138',16.00,'166','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000542','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(543,'VISINE EYE DROPS 15ML','6',NULL,'1111139',16.00,'720','1205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000543','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(544,'VOLINI GEL 30G','6',NULL,'1111287',16.00,'200','340',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000544','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(545,'VOLTAREN GEL 50G','6',NULL,'1111293',16.00,'463.408','790',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000545','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(546,'VOLTAREN R 100MG TABS 100S','10',NULL,'1111295',16.00,'49.949','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000546','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(547,'VOLTAREN SR 75MG TABS 30S','10',NULL,'1111296',16.00,'74.007','124',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000547','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(548,'VOLTFAST 50MG SATCHETS 9S','10',NULL,'1111301',16.00,'67.5','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000548','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(549,'WARFARIN 5MG TABLETS 28S','11',NULL,'1111311',16.00,'2.5','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000549','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(550,'WELLKID MULTIVITAMIN LIQ 4-12YRS 150ML','6',NULL,'1111345',16.00,'998','1670',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000550','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(551,'WELLMAN 50+ TABLETS *30S','6',NULL,'1111347',16.00,'1008','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000551','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(552,'WELLWOMAN 50+ TABLETS','6',NULL,'1111352',16.00,'1008','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000552','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(553,'WISDOM DENTAL FLOSS 100M','12',NULL,'1111378',16.00,'249.516','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000553','pcs','Inventory','VATABLE','0',NULL,0),(554,'WOODWARDS GRIPE WATER 100ML','6',NULL,'1111392',16.00,'98','170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000554','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(555,'WOW GAUZE BANDAGES 3 12S','6',NULL,'1111399',16.00,'5','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000555','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(556,'XALATAN DROPS','11',NULL,'1111417',16.00,'1960.94','3455',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000556','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(557,'XANAX 0.5MG TABS 30S','10',NULL,'1111419',16.00,'24.678','43',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000557','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(558,'XATRAL 10MG TABS 30S','11',NULL,'1111423',16.00,'84.833','146',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000558','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(559,'XTRADERM CREAM 20GM','10',NULL,'1111429',16.00,'127.88','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000559','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(560,'XYLO-MEPHA ADULT XYLOMETAZOLINE NASAL SPRAY0.1% 10ML','6',NULL,'1111435',16.00,'627.9','1080',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000560','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(561,'XYZAL 5MG TABS 30S','10',NULL,'1111438',16.00,'64.833','109',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000561','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(562,'XYZAL SYRUP 75ML','10',NULL,'1111439',16.00,'652','1110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000562','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(563,'ZECUF HERBAL COUGH SYRUP 100ML','6',NULL,'1111474',16.00,'132','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000563','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(564,'ZECUF LOZENGES HERBAL RASBERRY','6',NULL,'1111476',16.00,'176.32','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000564','pcs','Inventory','VATABLE','0',NULL,0),(565,'ZEDEX SYRUP 100ML','6',NULL,'1111483',16.00,'136','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000565','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(566,'ZEFCOLIN COUGH SYRUP 100ML','6',NULL,'1111486',16.00,'228.96','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000566','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(567,'ZENTEL 400MG TABLETS 1S','6',NULL,'1111489',16.00,'149.5','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000567','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(568,'ZENTEL SUSPENSION 20ML','6',NULL,'1111490',16.00,'149.5','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000568','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(569,'ZINNAT 500MG TABLETS 10S','10',NULL,'1111531',16.00,'121.948','190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000569','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(570,'ZINNAT SUSP. 125MG/5ML 50ML','10',NULL,'1111533',16.00,'619.2','1035',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000570','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(571,'ZINNAT SUSP. 250MG/5ML 50ML','10',NULL,'1111534',16.00,'1083.6','1845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000571','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(572,'ZOVIRAX CREAM 2GM','10',NULL,'1111567',16.00,'1004','1680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000572','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(573,'ZUPRICIN OINTMENT 15GM','10',NULL,'1111570',16.00,'444.11','755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000573','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(574,'ZYLORIC 300MG TABS 28S','11',NULL,'1111574',16.00,'64.429','116',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000574','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(575,'ZYNCET 10MG TABS 50S','10',NULL,'1111576',16.00,'3.06','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000575','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(576,'ZYNCET SYRUP 60ML','10',NULL,'1111577',16.00,'112.66','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000576','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(577,'ZYRTAL MR TABLETS 20S','10',NULL,'1111585',16.00,'28.125','49',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000577','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(578,'ZYRTEC CETRIZINE 10MG TABLETS 30S','10',NULL,'1111587',16.00,'55.967','89',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000578','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(579,'BECLOMIN OINTMENT 15GM','10',NULL,'1111596',16.00,'120','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000579','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(580,'STREPSILS EXTRA STRENGTH B/CURRANT 24 S','6',NULL,'1111820',16.00,'690','1175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000580','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(581,'ROBIDOM SR 20/30MG CAPS 30S','10',NULL,'1111843',16.00,'58.667','97',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000581','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(582,'PEPTO BISMOL PEPPERMINT TABS 24S','6',NULL,'1111878',16.00,'750','1300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000582','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(583,'ANUSOL PLUS HC SUPPOSITORIES 12S','6',NULL,'1111886',16.00,'60','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000583','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(584,'ANTHISAN BITE AND STING CREAM 20GM','6',NULL,'1111944',16.00,'455','785',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000584','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(585,'KAMAGRA ORAL JELLY SATCHETS','10',NULL,'1112097',16.00,'68.286','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000585','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(586,'NEURO FORTE TABS 20S','10',NULL,'1112419',16.00,'11.9','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000586','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(587,'NEOPEPTINE CAPS 10S','6',NULL,'1112570',16.00,'29.75','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000587','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(588,'VASELINE LIP THERAPY TIN (COCOA BUTTER) 20G','9',NULL,'1112641',16.00,'185.6','334.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000588','pcs','Inventory','VATABLE','0',NULL,0),(589,'NEXIUM 10MG SACHETS 28S','11',NULL,'1112653',16.00,'125.742','221',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000589','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(590,'DABORAL 125MG/5ML SYRUP 60 ML','10',NULL,'1112811',16.00,'205','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000590','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(591,'ANIMAL PARADE KIDS MULTIVITAMIN 90S','6',NULL,'1112899',16.00,'1625','2795',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000591','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(592,'ANIMAL PARADE KIDS IMMUNE BOOSTER 90S','6',NULL,'1112904',16.00,'1400','2410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000592','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(593,'WOODWARDS GRIPE WATER ALCOHOL AND SUGAR FREE 150ML','6',NULL,'1112968',16.00,'715','1230',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000593','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(594,'SENSODYNE RAPID ACTION TOOTHPASTE 75ML','12',NULL,'1113193',16.00,'460.47128','614.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000594','pcs','Inventory','VATABLE','0',NULL,0),(595,'ASOMEX LT 2.5/50MG TABS 60S','11',NULL,'1113207',16.00,'38.25','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000595','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(596,'SUNDOWN VITAMIN E 400IU SOFTGELS 100S','6',NULL,'1113553',16.00,'1350','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000596','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(597,'ONDEM MD 8MG TABS 10S','10',NULL,'1113896',16.00,'82.5','138',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000597','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(598,'STREPSILS HONEY & LEMON LOZ 24S UK','6',NULL,'1113918',16.00,'630','1105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000598','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(599,'ZERODOL P 100MG TABS 30S','10',NULL,'1114026',16.00,'26.23','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000599','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(600,'KAMAGRA 100MG TABS 4S','10',NULL,'1114178',16.00,'56.75','95',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000600','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(601,'KAMAGRA 50MG TABS 4S','10',NULL,'1114179',16.00,'46.5','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000601','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(602,'SAWA POWER CAPSULES 450MG','6',NULL,'1114222',16.00,'712.53','1182',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000602','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(603,'PHYTORAL OINTMENT 15GMS','10',NULL,'1114236',16.00,'243.1','410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000603','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(604,'BANEOCIN OINTMENT 20GM','10',NULL,'1114242',16.00,'198','335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000604','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(605,'SUNDOWN BIOTIN 5000MCG 60S','6',NULL,'1114246',16.00,'1125','1915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000605','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(606,'SUNDOWN CALMAGZINC 100S','6',NULL,'1114247',16.00,'1138.5','1940',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000606','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(607,'ALWAYS ULTRA LONG 8S','12',NULL,'1114636',16.00,'92.03','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000607','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(608,'SULPHUR OINTMENT 25G','10',NULL,'1114657',16.00,'18','33',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000608','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(609,'TINCTURE OF IODINE 100ML','6',NULL,'1114664',16.00,'88','160',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000609','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(610,'POLYGYNAX PESSARIES 6S','10',NULL,'1114673',16.00,'68.5','114',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000610','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(611,'DUREX PLAY (CHERRY)LUBRICATING GEL 50ML','6',NULL,'1114710',16.00,'582.7028','1000.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000611','pcs','Inventory','VATABLE','0',NULL,0),(612,'OPSITE POST-OP DRESSING 9.5CM*8.5CM','6',NULL,'1114821',16.00,'175','303',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000612','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(613,'WELLWOMAN PLUS OMEGA 3-6-9','6',NULL,'1114846',16.00,'1373','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000613','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(614,'KALUMA PAIN BALM 9ML','6',NULL,'1114871',16.00,'70','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000614','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(615,'BECOACTIN SYRUP 200ML','6',NULL,'1114874',16.00,'218','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000615','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(616,'L-MONTUS 5/10MG TABS 10S','10',NULL,'1114875',16.00,'40.7','68',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000616','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(617,'COSVATE CREAM 15GMS','10',NULL,'1115056',16.00,'147','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000617','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(618,'ALWAYS MAXI THICK EXTRA LONG 7S','12',NULL,'1115227',16.00,'92.113','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000618','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(619,'NEUROCARE TABS 30S','10',NULL,'1115331',16.00,'41.499','69',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000619','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(620,'CURAM 625MG TABS 14S','10',NULL,'1115380',16.00,'21.857','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000620','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(621,'AMLONG 5MG TABS 30S','11',NULL,'1115512',16.00,'12.828','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000621','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(622,'ZYRTEC SYRUP 75ML','10',NULL,'1115569',16.00,'456.3','760',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000622','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(623,'ALWAYS MAXI THICK LONG 7S','12',NULL,'1115573',16.00,'92.114','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000623','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(624,'AMLOZAAR 50MG TABS 30S','11',NULL,'1115613',16.00,'44.352','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000624','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(625,'CENTRUM WOMAN 30S','6',NULL,'1115699',16.00,'1050','1755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000625','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(626,'DIAMICRON MR 60MG 30S','11',NULL,'1115770',16.00,'32.66','66',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000626','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(627,'ETORIX 90MG TABLETS 30S','10',NULL,'1115783',16.00,'43.267','72',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000627','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(628,'WISDOM INTERDENTAL BRUSHES 0.45MM 5S','12',NULL,'1115894',16.00,'328.86','530.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000628','pcs','Inventory','VATABLE','0',NULL,0),(629,'DISPOSABLE NEEDLES G23* 25MM 100S','10',NULL,'1116013',16.00,'1.2','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000629','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(630,'XARELTO 20MG TABS 14S','11',NULL,'1116104',16.00,'125.357','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000630','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(631,'MICROGYNON FE PILLS 28S','10',NULL,'1116236',16.00,'72.225','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000631','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(632,'SURGICAL BLADE SIZE 22','10',NULL,'1116272',16.00,'3.8','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000632','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(633,'DIPROSALIC OINTMENT 30GM','10',NULL,'1116714',16.00,'794.5','1330',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000633','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(634,'AMLONG 10MG TABS 30S','11',NULL,'1116845',16.00,'22.428','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000634','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(635,'NIZORAL SHAMPOO 120ML','10',NULL,'1116854',16.00,'995','1655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000635','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(636,'FLUCONA DENK 150MG CAPS','10',NULL,'1117002',16.00,'152.45','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000636','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(637,'ETORIX 60MG TABS 40S','10',NULL,'1117053',16.00,'28.85','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000637','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(638,'MICROFINE G32 (4MM) PEN NEEDLES 100S','11',NULL,'1117056',16.00,'21.6','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000638','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(639,'ANDOLEX C SPRAY 30ML','6',NULL,'1117142',16.00,'983.68','1695.00012',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000639','pcs','Inventory','VATABLE','0',NULL,0),(640,'CARTIL OMEGA CAPS 30S','6',NULL,'1117148',16.00,'46.668','81',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000640','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(641,'PANADOL ELIXIR SYRUP CHILD 5-12 YEARS 100ML','6',NULL,'1117153',16.00,'307.677','500',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000641','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(642,'MAXIPLAST PLASTER FABRIC 100S','6',NULL,'1117183',16.00,'1.25','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000642','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(643,'NOGLUC 5MG TABS 112S','11',NULL,'1117186',16.00,'3.537','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000643','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(644,'COARTEM 80MG/480MG 6S','10',NULL,'1117209',16.00,'324.7','545',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000644','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(645,'ORELOX 200MG TABS 10S','10',NULL,'1117252',16.00,'140.868','236',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000645','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(646,'NEBILONG AM 5/5mg TABS 30S','11',NULL,'1117294',16.00,'46.367','82',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000646','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(647,'CENTRUM 50+ WOMAN 30S','6',NULL,'1117539',16.00,'1200','2005',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000647','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(648,'FEXET 120MG TABS 20S','10',NULL,'1117562',16.00,'28.7','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000648','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(649,'FEXET 180MG TABS 20S','10',NULL,'1117563',16.00,'34.3','57',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000649','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(650,'OMICAP 20MG CAPS 100S','11',NULL,'1117629',16.00,'1.15','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000650','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(651,'AMOKLAVIN 625MG TABS 14S','10',NULL,'1117634',16.00,'36.09','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000651','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(652,'KOTEX ULTRA THIN PADS NORMAL 8S','12',NULL,'1117814',16.00,'91.875','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000652','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(653,'EPIMAX BABY & JUNIOR JAR 400G','12',NULL,'1117819',16.00,'1566','2665.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000653','pcs','Inventory','VATABLE','0',NULL,0),(654,'STREPSILS LOZ HONEY & LEMON 100S','6',NULL,'1117962',16.00,'8.74','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000654','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(655,'LIPITOR 10MG TABS 30S','11',NULL,'1118126',16.00,'61.393','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000655','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(656,'ESOME 40MG CAPS 14S','11',NULL,'1118327',16.00,'29.668','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000656','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(657,'ZAART-H 50/12.5MG TABS 30S','11',NULL,'1118346',16.00,'26.895','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000657','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(658,'DIRACIP M TABS','10',NULL,'1118347',16.00,'5.567','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000658','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(659,'DIRACIP M DS TABS 15S','10',NULL,'1118350',16.00,'11.133','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000659','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(660,'DIRACIP M SUSPENSION 100ML','10',NULL,'1118351',16.00,'167','280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000660','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(661,'ESOMAC 20MG TABS 28S','11',NULL,'1118361',16.00,'21.77','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000661','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(662,'ESOMAC 40MG TABS 14S','11',NULL,'1118387',16.00,'43.539','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000662','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(663,'MS TELLME PREGNANCY TEST KIT CASSETTE','6',NULL,'1118436',16.00,'99.992','174.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000663','pcs','Inventory','VATABLE','0',NULL,0),(664,'MS TELLME PREGNANCY TEST KIT MIDSTREAM','6',NULL,'1118437',16.00,'199.9956','349.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000664','pcs','Inventory','VATABLE','0',NULL,0),(665,'CEFASYN 500MG TABS 10S','10',NULL,'1118445',16.00,'22.618','116',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000665','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(666,'AMOXYCILLIN 500MG CAPS 100S','10',NULL,'1118494',16.00,'5.2','11',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000666','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(667,'STREPSILS REGULAR 100S','6',NULL,'1118553',16.00,'8.74','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000667','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(668,'YOU C 1000 ISOTONIC LEMON WATER 500ML','6',NULL,'1118696',16.00,'157.296','255.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000668','pcs','Inventory','VATABLE','0',NULL,0),(669,'YOU C 1000 ISOTONIC ORANGE WATER 500ML','6',NULL,'1118697',16.00,'157.296','255.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000669','pcs','Inventory','VATABLE','0',NULL,0),(670,'YOU C VITAMIN ORANGE DRINK 140ML','6',NULL,'1118698',16.00,'92.3012','149.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000670','pcs','Inventory','VATABLE','0',NULL,0),(671,'YOU C VITAMIN LEMON DRINK 140ML','6',NULL,'1118699',16.00,'92.3012','149.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000671','pcs','Inventory','VATABLE','0',NULL,0),(672,'EROVITA HCG PREGNANCY STRIPS 100S','6',NULL,'1118701',16.00,'9.86','17.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000672','pcs','Inventory','VATABLE','0',NULL,0),(673,'ARCOXIA 90MG TABS 7S','10',NULL,'1119829',16.00,'116.499','195',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000673','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(674,'KOMBIGLYZE 5/1000MG TABS 30S','11',NULL,'1120052',16.00,'145.283','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000674','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(675,'GLYCERINE IDEAL 200ML','9',NULL,'1120108',16.00,'197.2','304.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000675','pcs','Inventory','VATABLE','0',NULL,0),(676,'FUCOL 150MG','10',NULL,'1120177',16.00,'184','310',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000676','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(677,'DICLOFENAC GEL 20GMS','10',NULL,'1120719',16.00,'20.22','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000677','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(678,'ESOME 20MG CAPS 14S','11',NULL,'1120740',16.00,'18.24','33',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000678','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(679,'GAVISCON LIQUID PEPPERMINT 200ML','6',NULL,'1120746',16.00,'534.33','900',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000679','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(680,'VOLTAREN R 100MG TABS 30S','10',NULL,'1120748',16.00,'77.152','128',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000680','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(681,'EFFERALGAN 1000MG TABLETS 8S','6',NULL,'1120749',16.00,'238','415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000681','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(682,'DUREX CONDOMS PLEASUREMAX ME','6',NULL,'1120778',16.00,'203','354.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000682','pcs','Inventory','VATABLE','0',NULL,0),(683,'D3 60K 60 000IU 4S','10',NULL,'1120824',16.00,'65','110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000683','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(684,'FULCOVER 100MG TABS 10S','10',NULL,'1120854',16.00,'85.5','148',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000684','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(685,'CEZINE 10MG TABS 10S','10',NULL,'1120866',16.00,'17.25','30',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000685','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(686,'PANTOCID D 40MG TABS 30S','11',NULL,'1120871',16.00,'32.016','56.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000686','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(687,'CIPLADON 1000MG EFF TABLETS 8S','6',NULL,'1120877',16.00,'34.569','58',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000687','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(688,'ACNEVIT ANTI ACNE SERUM 30ML','9',NULL,'1120885',16.00,'1505.00024','2560.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000688','pcs','Inventory','VATABLE','0',NULL,0),(689,'CIALIS 5MG TABS 28S','11',NULL,'1120906',16.00,'214.643','383',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000689','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(690,'CIALIS 20MG TABS 4S','11',NULL,'1120998',16.00,'855.5','1560',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000690','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(691,'AMLOZAAR H 50/5MG TABS 30S','11',NULL,'1121421',16.00,'49.919','88',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000691','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(692,'ACCURATE MALARIA TEST KIT 1S ( WITH BUFFER)','6',NULL,'1121601',16.00,'185.6','319.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000692','pcs','Inventory','VATABLE','0',NULL,0),(693,'PREGNACARE TABS 30S','6',NULL,'1122065',16.00,'487','815',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000693','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(694,'BISOPROLOL 2.5MG TABS 28S','11',NULL,'1122091',16.00,'3.143','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000694','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(695,'WISDOM FRESH EFFECT FRESH BREATH SPRAY 12.5ML','12',NULL,'1122475',16.00,'294.408','475.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000695','pcs','Inventory','VATABLE','0',NULL,0),(696,'LRP PIGMENTCLAR SERUM 30ml','9',NULL,'1122500',16.00,'3440.81056','5539.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000696','pcs','Inventory','VATABLE','0',NULL,0),(697,'LRP EFFACLAR FOAMING CLEANSER 200ML','9',NULL,'1122504',16.00,'1433.93284','2309.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000697','pcs','Inventory','VATABLE','0',NULL,0),(698,'LRP ANTHELIOS SHAKA FLUID FACE SPF50+ 50ML','9',NULL,'1122529',16.00,'2006.7072','3094.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000698','pcs','Inventory','VATABLE','0',NULL,0),(699,'LRP ANTHELIOS SHAKA SPRAY SPF50+ 200ML','9',NULL,'1122530',16.00,'2424.26312','3904.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000699','pcs','Inventory','VATABLE','0',NULL,0),(700,'FISHERMANS FRIEND LOZS 25G H/LEMON','6',NULL,'1122615',16.00,'145','249.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000700','pcs','Inventory','VATABLE','0','0039.11.20',0),(701,'ETORIX 120MG TABLETS 20S','10',NULL,'1123030',16.00,'57.7','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000701','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(702,'CLOFORT 250MG/5ML SUSP 75ML','10',NULL,'1123312',16.00,'935.3','1610',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000702','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(703,'TALGENTIS 20MG TABS 4S','10',NULL,'1123314',16.00,'110.75','190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000703','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(704,'OTOBIOTIC EAR DROPS','10',NULL,'1123380',16.00,'249.2','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000704','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(705,'LYCLEAR DERMAL CREAM 30 GM','9',NULL,'1123387',16.00,'1250','2200',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000705','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(706,'RISEK 40MG SATCHETS 10S','11',NULL,'1123388',16.00,'34.3','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000706','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(707,'TALGENTIS 5MG TABS 30S','10',NULL,'1123395',16.00,'70.125','117',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000707','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(708,'NEBILET 5/12.5MG TABS 28S','11',NULL,'1123464',16.00,'63.714','112',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000708','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(709,'NIVEA ROLL-ON WOMEN INVIS B & W CLEAR 50ML','12',NULL,'1123532',16.00,'375.00016','494.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000709','pcs','Inventory','VATABLE','0',NULL,0),(710,'FEMELLE COTTON BUDS 100S','12',NULL,'1123536',16.00,'104.4','179.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000710','pcs','Inventory','VATABLE','0',NULL,0),(711,'SUNDOWN ESSENTIAL ZINC 50MG CAPLETS 100S','6',NULL,'1123805',16.00,'1125','1915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000711','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(712,'BLACK OPAL EVEN TRUE OIL FREE MOISTURIZER SPF 15','9',NULL,'1124298',16.00,'1505.00024','2575.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000712','pcs','Inventory','VATABLE','0',NULL,0),(713,'QUEST VITAMIN C EFFERVESCENT 1000MG 20S','6',NULL,'1124302',16.00,'510','855',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000713','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(714,'MENTHOL PLUS BALM 30ML','6',NULL,'1124421',16.00,'95','164',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000714','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(715,'PRINCIPLE IMMUNE BOOST + EFF 20S','6',NULL,'1124427',16.00,'634.5','1100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000715','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(716,'GOFEN 400MG TABS 60S','6',NULL,'1124454',16.00,'17.82','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000716','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(717,'SKYN INTENSE FEL DOTTED NON LATEX CONDOM','6',NULL,'1125014',16.00,'401.2092','690.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000717','pcs','Inventory','VATABLE','0',NULL,0),(718,'GOOD MORNING LUNG TONIC 60ML','6',NULL,'1125044',16.00,'75','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000718','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(719,'CARTIL FORTE CAPSULES 30S','6',NULL,'1125064',16.00,'40.202','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000719','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(720,'BELL BRAND NAIL CLIPPER L/S','12',NULL,'1125084',16.00,'232','409.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000720','pcs','Inventory','VATABLE','0',NULL,0),(721,'EUTHYROX 50MCG TABS 30S','11',NULL,'1125092',16.00,'4.9','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000721','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(722,'EUTHYROX 100MCG TABS 30S','11',NULL,'1125093',16.00,'7.767','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000722','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(723,'EROVITA MIDSTREAM PREGNANCY KIT','6',NULL,'1125372',16.00,'197.2','339.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000723','pcs','Inventory','VATABLE','0',NULL,0),(724,'MEDISIGN BLOOD GLUCOSE STRIPS 50S','11',NULL,'1125382',16.00,'1393.12','2345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000724','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(725,'TRUST CONDOMS RIBBED 24S','6',NULL,'1125451',16.00,'37.5086','64.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000725','pcs','Inventory','VATABLE','0',NULL,0),(726,'ACNES SCAR CARE 12G','9',NULL,'1125462',16.00,'343.36','569.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000726','pcs','Inventory','VATABLE','0',NULL,0),(727,'ACNES VIT C C10 SERUM 15ML','9',NULL,'1125465',16.00,'1654.45','2729.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000727','pcs','Inventory','VATABLE','0',NULL,0),(728,'ACNES TREATMENT 3PC PACK','9',NULL,'1125466',16.00,'1154.2812','1919.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000728','pcs','Inventory','VATABLE','0',NULL,0),(729,'DUREX CONDOMS FETHERLITE ULTRA 3S','6',NULL,'1125627',16.00,'241.9876','454.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000729','pcs','Inventory','VATABLE','0',NULL,0),(730,'ONE TOUCH SELECT PLUS STRIPS','11',NULL,'1125767',16.00,'1357.2','2285.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000730','pcs','Inventory','VATABLE','0',NULL,0),(731,'DUREX CONDOMS FETHERLITE ULTRA 12S','6',NULL,'1125816',16.00,'902.2596','1554.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000731','pcs','Inventory','VATABLE','0',NULL,0),(732,'JANUMET 50/500MG 56S','11',NULL,'1125819',16.00,'60.714','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000732','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(733,'AMLODENK 5MG TABS 50S','11',NULL,'1125909',16.00,'11.4','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000733','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(734,'ZULU TABS 10S','10',NULL,'1125951',16.00,'22.799','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000734','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(735,'N/AID PRO-30 MAX 30 billion CAPS 30S','6',NULL,'1125986',16.00,'2160','3675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000735','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(736,'MAALOX SATCHETS LEMON 20S','6',NULL,'1125989',16.00,'433.982','750',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000736','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(737,'N/AID CHEW VITAMIN C 500MG TABLETS sugar free 50S','6',NULL,'1126407',16.00,'1080','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000737','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(738,'CEZINE 10MG/5ML 60MLS','10',NULL,'1126415',16.00,'173.25','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000738','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(739,'PAROL SYRUP 100MLS','6',NULL,'1126418',16.00,'165','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000739','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(740,'LEVOBACT 500MG TABS 10S','10',NULL,'1126427',16.00,'22.202','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000740','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(741,'SEVEN SEAS MULTIVITAMIN SYRUP 100ML','6',NULL,'1126521',16.00,'491.3','810',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000741','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(742,'GLEMONT L 10/5MG TABS 7S','10',NULL,'1127044',16.00,'76.54','128',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000742','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(743,'ZULU MR TABLETS 20S','10',NULL,'1127074',16.00,'29.68','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000743','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(744,'N/AID D3 5000IU TABS 60S','6',NULL,'1127085',16.00,'1282.5','2185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000744','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(745,'QUEST OAD ENERGY B+C TABS 30s','6',NULL,'1127104',16.00,'415','695',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000745','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(746,'QUEST OAD IMMUNE C TABS 30s','6',NULL,'1127106',16.00,'470','785',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000746','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(747,'QUEST OAD MULTI TABS 30s','6',NULL,'1127110',16.00,'480','810',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000747','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(748,'MENTHOL PLUS BALM 9ML JAR','6',NULL,'1127115',16.00,'41','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000748','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(749,'M $ MS PEANUT 45G','12',NULL,'1127371',16.00,'129.195','200.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000749','pcs','Inventory','VATABLE','0',NULL,0),(750,'FAY WET WIPES PURE 10S','12',NULL,'1127382',16.00,'52.45636','89.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000750','pcs','Inventory','VATABLE','0',NULL,0),(751,'FAY POCKET HANKIES 10S','12',NULL,'1127384',16.00,'16.80724','29.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000751','pcs','Inventory','VATABLE','0',NULL,0),(752,'WELLKID IMMUNE CHEWABLE TABS 30S','6',NULL,'1127444',16.00,'1150','1925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000752','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(753,'ARCOXIA 90MG TABS 28S','10',NULL,'1127589',16.00,'116.439','198',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000753','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(754,'BIC J5MINI ASSORTED LIGHTER','12',NULL,'1127629',16.00,'59.58224','95.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000754','pcs','Inventory','VATABLE','0',NULL,0),(755,'PREVA CEREBROPROTEIN HYDROSYLATE 90MG CAPS 30S','10',NULL,'1127876',16.00,'74.52','129',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000755','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(756,'ACCU-CHEK ACTIVE STRIPS 50S','11',NULL,'1128055',16.00,'1450','2439.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000756','pcs','Inventory','VATABLE','0',NULL,0),(757,'ANUSOL SUPPOSITORIES 12S','6',NULL,'1128129',16.00,'38.75','68',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000757','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(758,'ULTRA VIT C PLUS ZINC EFF 20S','6',NULL,'1128183',16.00,'568.5','955',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000758','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(759,'LRP EFFACLAR DUO(+) SPF30 40ml','9',NULL,'1128242',16.00,'1993.6978','3209.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000759','pcs','Inventory','VATABLE','0',NULL,0),(760,'ORAQUICK HIV SELF TEST..','10',NULL,'1128305',16.00,'382.8','660.05392',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000760','pcs','Inventory','VATABLE','0',NULL,0),(761,'DESLORADENK 5MG TABLETS 10S','10',NULL,'1128321',16.00,'20.894','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000761','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(762,'KY JELLY 82GM','6',NULL,'1128322',16.00,'700','1190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000762','pcs','Inventory','EXEMPTED','0','0039.11.41',0),(763,'WELLBABY MULTIVITAMIN LIQUID 4M-4YRS 150ML','6',NULL,'1128430',16.00,'998','1670',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000763','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(764,'ZITHROMAX 500MG TABS 3S','10',NULL,'1128436',16.00,'1140','1930',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000764','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(765,'VAGI PLUS PESSARIES','10',NULL,'1128438',16.00,'685.3','1170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000765','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(766,'DAY AND NIGHT NURSE CAPS 24S','6',NULL,'1128442',16.00,'1250','2025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000766','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(767,'SUNDOWN CALCIUM 600 PLUS TABS 120S','6',NULL,'1128446',16.00,'1350','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000767','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(768,'SUNDOWN MELATONIN 3MG TABS 60S','6',NULL,'1128453',16.00,'1080','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000768','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(769,'FLAGENTYL 500MG TABS 4S','10',NULL,'1128476',16.00,'407.62','675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000769','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(770,'GALVUS MET 50/500MG TABS 30S','11',NULL,'1128481',16.00,'86.105','149',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000770','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(771,'MAALOX PLUS TABS 40S','6',NULL,'1128483',16.00,'16.794','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000771','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(772,'GALVUS MET 50/1000MG TABS 30S','11',NULL,'1128486',16.00,'86.105','149',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000772','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(773,'BEECHAMS COLD & FLU HOT BLACKCURRANT 5S.','6',NULL,'1128756',16.00,'348','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000773','pcs','Inventory','VATABLE','0',NULL,0),(774,'HYDROCHLOROTHIAZIDE 25MG TABS 100S','11',NULL,'1129047',16.00,'1.464','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000774','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(775,'ORBIT COMPLETE STRIPS PEPPERMINT 12s (14x12x32) - SUGAR FREE','12',NULL,'1129057',16.00,'149.9996','230.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000775','pcs','Inventory','VATABLE','0',NULL,0),(776,'ORBIT COMPLETE STRIPS STRAWBERRY 12s (14x12x32) - SUGAR FREE','12',NULL,'1129058',16.00,'149.9996','230.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000776','pcs','Inventory','VATABLE','0',NULL,0),(777,'ORBIT COMPLETE STRIPS RASBERRY 12s (14x12x32) - SUGAR FREE','12',NULL,'1129059',16.00,'149.9996','230.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000777','pcs','Inventory','VATABLE','0',NULL,0),(778,'ORBIT WILD STRAWBERRY 10s (20x30x10)','12',NULL,'1129061',16.00,'52.50044','85.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000778','pcs','Inventory','VATABLE','0',NULL,0),(779,'ORBIT BUBBLEMINT 10s (20x30x10)','12',NULL,'1129063',16.00,'52.50044','85.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000779','pcs','Inventory','VATABLE','0',NULL,0),(780,'ORBIT PEPPERMINT 10s (20x30x10)','12',NULL,'1129064',16.00,'52.50044','85.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000780','pcs','Inventory','VATABLE','0',NULL,0),(781,'SKITTLES BIGGER CANDY 38GM (1x14x38)- SUGAR COATED','12',NULL,'1129067',16.00,'82.4992','130.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000781','pcs','Inventory','VATABLE','0',NULL,0),(782,'KOTEX ULTRA THIN PADS SUPER 8s','12',NULL,'1129079',16.00,'91.875','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000782','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(783,'SKINS PERFORMANCE RING 1S','6',NULL,'1129095',16.00,'490.0072','835.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000783','pcs','Inventory','VATABLE','0',NULL,0),(784,'SKINS CONDOMS NATURAL 4S','6',NULL,'1129106',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000784','pcs','Inventory','VATABLE','0',NULL,0),(785,'SKINS CONDOMS ULTRA THIN 4S','6',NULL,'1129107',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000785','pcs','Inventory','VATABLE','0',NULL,0),(786,'GAVISCON DOUBLE ACTION TABLETS 24S','6',NULL,'1129109',16.00,'750','1420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000786','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(787,'GAVISCON DOUBLE ACTION TABLETS 48S','6',NULL,'1129110',16.00,'1200','2415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000787','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(788,'AVALIFE DAILY FLORA BALANCE CAPS 30S','6',NULL,'1129111',16.00,'765','1325',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000788','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(789,'ACCU-CHEK INSTANT MACHINE','11',NULL,'1129138',16.00,'0.0116','4160.0036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000789','pcs','Inventory','VATABLE','0',NULL,0),(790,'FEMIPLAN PILLS 28S','10',NULL,'1129160',16.00,'60','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000790','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(791,'BIO HEALTH EXTRA ZINC 60S','6',NULL,'1129317',16.00,'905','1540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000791','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(792,'APTAMIL BABY MILK 3 800GM','6',NULL,'1129417',16.00,'2160.64964','2874.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000792','pcs','Inventory','VATABLE','0',NULL,0),(793,'NIGHT NURSE LIQUID 160ML','6',NULL,'1129439',16.00,'1130','1890',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000793','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(794,'STEROPLAST FABRIC ASS 16S','6',NULL,'1129496',16.00,'75','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000794','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(795,'STEROPLAST WASHPROOF ASS 16S','6',NULL,'1129497',16.00,'75','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000795','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(796,'STEROPLAST CLEAR ASS 16S','6',NULL,'1129498',16.00,'75','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000796','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(797,'ENO LEMON SACHETS 4S','6',NULL,'1129499',16.00,'71.051','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000797','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(798,'CEOVIT TABS 250MG 200S','6',NULL,'1129519',16.00,'4.785','11.50024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000798','pcs','Inventory','VATABLE','0',NULL,0),(799,'MELCAM 7.5 TABLET 100S','10',NULL,'1129522',16.00,'2.438','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000799','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(800,'MELCAM 15 TABLET 50S','10',NULL,'1129523',16.00,'4.5','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000800','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(801,'LORATIN FAST 100S','10',NULL,'1129524',16.00,'6','10.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000801','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(802,'NILACID SUSPENSION 200ML','6',NULL,'1129530',16.00,'180','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000802','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(803,'OSMOLAX SOLUTION 200ML','6',NULL,'1129532',16.00,'450','780',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000803','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(804,'AMBROX SYRUP 100ML','6',NULL,'1129533',16.00,'131.25','230',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000804','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(805,'ADOVAS SYRUP 100ML','6',NULL,'1129534',16.00,'170','300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000805','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(806,'ZIMAX 500 TABLET','10',NULL,'1129538',16.00,'112.5','195',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000806','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(807,'SQUARE ZINC 20 TABLET 100S','6',NULL,'1129561',16.00,'3.654','6.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000807','pcs','Inventory','VATABLE','0',NULL,0),(808,'VISINE ALLERGY EYE DROPS 15ML','6',NULL,'1129564',16.00,'1010','1690',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000808','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(809,'VALUPAK VITAMIN B COMPLEX TABS 60S','6',NULL,'1129581',16.00,'200','350',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000809','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(810,'CANESPOR SOLUTION','10',NULL,'1129603',16.00,'657.08','1125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000810','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(811,'ECOFREE PLUS 10S','10',NULL,'1129605',16.00,'35.2','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000811','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(812,'LRP EFFACLAR DUO(+) 40ml','9',NULL,'1129841',16.00,'1538.49524','2479.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000812','pcs','Inventory','VATABLE','0',NULL,0),(813,'LRP EFFACLAR FOAM CLEANSER 400ml','9',NULL,'1129843',16.00,'2118.30616','3264.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000813','pcs','Inventory','VATABLE','0',NULL,0),(814,'LRP LIPIKAR SYNDET AP+ WASH 200ml','12',NULL,'1129881',16.00,'1111.09092','1789.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000814','pcs','Inventory','VATABLE','0',NULL,0),(815,'DISSENTEN 2MG 15S','6',NULL,'1129899',16.00,'345','590',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000815','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(816,'BENYLIN EXPECTORANT 200ML','6',NULL,'1129910',16.00,'450','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000816','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(817,'LENOR -72 TABS','10',NULL,'1129921',16.00,'25','43',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000817','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(818,'PAPERMINTS 24 STRIPS','12',NULL,'1129979',16.00,'118.1112','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000818','pcs','Inventory','VATABLE','0',NULL,0),(819,'AVALIFE FEMIFLORA CAPS 30S','6',NULL,'1129983',16.00,'1360','2340',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000819','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(820,'NIVEA DEEP DEO ROLL ON FOR MEN 50ML','12',NULL,'1130024',16.00,'375.00016','524.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000820','pcs','Inventory','VATABLE','0',NULL,0),(821,'ONE TOUCH SELECT PLUS FLEX SYSTEM KIT-for exchange','11',NULL,'1130041',16.00,'0.0116','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000821','pcs','Inventory','VATABLE','0',NULL,0),(822,'METFORMIN HCL 500MG TABS 60S','11',NULL,'1130049',16.00,'1.935','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000822','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(823,'VITAHEALTH COD LIVER OIL 100ML','6',NULL,'1130057',16.00,'323','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000823','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(824,'VITAHEALTH COD LIVER OIL 500ML','6',NULL,'1130059',16.00,'1466.25','2435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000824','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(825,'VITAHEALTH PURE FISH OIL CAPS 60S','6',NULL,'1130060',16.00,'786.25','1315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000825','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(826,'VITAHEALTH JOINTCARE DAILY CAPS 30S','6',NULL,'1130061',16.00,'1037','1725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000826','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(827,'FLEMING 457MG/5ML SUSP 70ML','10',NULL,'1130080',16.00,'414.923','715',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000827','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(828,'FLEMING 1GM TABS 14S','10',NULL,'1130081',16.00,'34.674','58',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000828','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(829,'N/AID ZINC PICOLINATE TABS 30S','6',NULL,'1130091',16.00,'729','1240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000829','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(830,'DOVE SOAP GO -FRESH RESTORE 100G','12',NULL,'1130159',16.00,'178.0716','279.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000830','pcs','Inventory','VATABLE','0',NULL,0),(831,'ENO TABLETS 100S','6',NULL,'1130178',16.00,'4.282','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000831','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(832,'GILLETTE BLUE 11 PLUS DISPOSABLES 3S','12',NULL,'1130196',16.00,'135.05532','209.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000832','pcs','Inventory','VATABLE','0',NULL,0),(833,'AQUAMIST WATER 300ML * 24s','6',NULL,'1130232',16.00,'27.02916','49.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000833','pcs','Inventory','VATABLE','0',NULL,0),(834,'AQUAMIST WATER 500ML *24s','6',NULL,'1130233',16.00,'35.19092','64.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000834','pcs','Inventory','VATABLE','0',NULL,0),(835,'WELLTEEN HIM PLUS','6',NULL,'1130236',16.00,'712','1190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000835','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(836,'AQUAMIST LEMON FLAVOURED WATER *12','6',NULL,'1130271',16.00,'51.62812','89.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000836','pcs','Inventory','VATABLE','0',NULL,0),(837,'AZITHRAX 500MG 3S','10',NULL,'1130294',16.00,'293.22','495',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000837','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(838,'TRANDATE 200MG TABS 100S','11',NULL,'1130481',16.00,'33.6','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000838','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(839,'TRANDATE 100MG TABS 100S','11',NULL,'1130482',16.00,'28','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000839','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(840,'COLGATE T/BRUSH DOUBLE ACTION - STD','12',NULL,'1130545',16.00,'51.098','74.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000840','pcs','Inventory','VATABLE','0',NULL,0),(841,'COLGATE HERBAL T/PASTE 35G - ANTIBACTERIA','12',NULL,'1130552',16.00,'58.41876','89.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000841','pcs','Inventory','VATABLE','0',NULL,0),(842,'GRAMOCEF-O 400MG CAPS 10S','10',NULL,'1130566',16.00,'79.6','133',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000842','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(843,'SWISS HERBAL LOZENGES EUCALYPTUS & MENTHOL 12S','6',NULL,'1130592',16.00,'270','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000843','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(844,'SWISS HERBAL LOZENGES HONEY 12S','6',NULL,'1130594',16.00,'270','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000844','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(845,'TREVIAMET 50/1000MG TABS 35S','11',NULL,'1130635',16.00,'49.286','85',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000845','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(846,'LEMSIP CHESTY COUGH SYRUP 180ML','6',NULL,'1130643',16.00,'1300','2175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000846','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(847,'TREVIAMET 50/500MG TABS 35S','11',NULL,'1130666',16.00,'49.286','85',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000847','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(848,'MAALOX PLUS SUSPENSION 250ML','6',NULL,'1130671',16.00,'527.99','910',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000848','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(849,'INVOLYN 408MG CAPS 10S','10',NULL,'1130698',16.00,'209.15','360',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000849','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(850,'LRP EFFACLAR ACNE ROUTINE KIT -3 in 1','9',NULL,'1130715',16.00,'2202.38296','3550.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000850','pcs','Inventory','VATABLE','0',NULL,0),(851,'CLARIWIN TABS 500MG 10S','10',NULL,'1130744',16.00,'24.211','42.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000851','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(852,'QUEST OAD MULTI CHEWABL KIDS 30S','6',NULL,'1130907',16.00,'460','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000852','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(853,'BEUFLOX D EYE DROPS 5ML','10',NULL,'1131008',16.00,'204','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000853','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(854,'DUREX PLAY WARMING 50ML','6',NULL,'1131031',16.00,'586.4612','1000.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000854','pcs','Inventory','VATABLE','0',NULL,0),(855,'GOODLIFE HAND SANITIZER 50ML','12',NULL,'1131037',16.00,'58','119.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000855','pcs','Inventory','VATABLE','0',NULL,0),(856,'CELABET TABS 30S','10',NULL,'1131167',16.00,'11.167','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000856','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(857,'IBUPROFEN-DENK 400MGS 20S','6',NULL,'1131190',16.00,'10','17',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000857','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(858,'FLUGONE EX 120ML','6',NULL,'1131209',16.00,'194','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000858','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(859,'MTM 100MG TABLETS 4S','10',NULL,'1131240',16.00,'43','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000859','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(860,'MTM 50MG TABLETS 4S','10',NULL,'1131241',16.00,'32','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000860','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(861,'EMPIGET 10MG 14S','11',NULL,'1131254',16.00,'64.286','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000861','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(862,'STREPSILS HONEY AND LEMON 6S','6',NULL,'1131259',16.00,'56.39','96.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000862','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(863,'STREPSILS REGULAR 6S','6',NULL,'1131260',16.00,'56.39','96.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000863','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(864,'SMUGEL LUBRICATION GEL 50G','6',NULL,'1131321',16.00,'200','350',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000864','pcs','Inventory','EXEMPTED','0','0039.11.41',0),(865,'EPIMOL-B BABY & JUNIOR EMOLLIENT CREAM 400G','12',NULL,'1131325',16.00,'1084.94452','1814.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000865','pcs','Inventory','VATABLE','0',NULL,0),(866,'JAMIESON B6+B12 AND FOLIC ACID TABLETS 110S','6',NULL,'1131342',16.00,'343.71','595',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000866','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(867,'JAMIESON ZINC LOZENGES HONEY LEMON 30S','6',NULL,'1131354',16.00,'758.7','1305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000867','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(868,'JAMIESON COLD FIGHTER CHEWABLE TABLETS 30S','6',NULL,'1131355',16.00,'633.1','1090',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000868','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(869,'JAMIESON MULTI KIDS CHEWABLE TABLETS 60S','6',NULL,'1131356',16.00,'1087.75','1875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000869','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(870,'CIPZICON 500MG TABS 10S','10',NULL,'1131369',16.00,'7.5','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000870','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(871,'CLAVCON 625 MG TABS 14S','10',NULL,'1131370',16.00,'17.857','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000871','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(872,'CONACE MR TABS 30S','10',NULL,'1131371',16.00,'6.667','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000872','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(873,'CONZIT 500MG TABS 3S','10',NULL,'1131376',16.00,'70','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000873','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(874,'ESOMCON 20MG TABS 28S','11',NULL,'1131378',16.00,'7.143','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000874','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(875,'ESOMCON 4OMG TABS 14S','11',NULL,'1131379',16.00,'14.286','27',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000875','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(876,'LRP LIPIKAR BAUME AP+M 400ml','12',NULL,'1131399',16.00,'2376.30292','3684.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000876','pcs','Inventory','VATABLE','0',NULL,0),(877,'NATURAL COTTONS MAXI PADS SUPER 10S','12',NULL,'1131470',16.00,'463.5','705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000877','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(878,'LIPITAS 10MG TABS 30S','11',NULL,'1131480',16.00,'35.833','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000878','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(879,'NEALGYL 80MG ORODISPERSIBLE TABS 10S','10',NULL,'1131489',16.00,'59.5','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000879','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(880,'CAL-C-VITA PLUS EFF TABLETS 10S','6',NULL,'1131510',16.00,'326.7','565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000880','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(881,'GOODLIFE HAND SANITIZER 500ML','12',NULL,'1131535',16.00,'290','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000881','pcs','Inventory','VATABLE','0',NULL,0),(882,'DIGEVA F SATCHETS 25s','6',NULL,'1131571',16.00,'20.4','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000882','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(883,'LEPONEX 25MG 100S','10',NULL,'1131578',16.00,'61.275','112.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000883','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(884,'NAT C VITAMIN C TABS 1000MG 30S','6',NULL,'1131586',16.00,'820.75','1375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000884','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(885,'IBUBROFEN DENK 400MG TABS 100S','6',NULL,'1131589',16.00,'6.996','12.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000885','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(886,'IBUBROFEN DENK 600MG 20S','6',NULL,'1131590',16.00,'16.482','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000886','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(887,'MEDIPHEN 400MG TABS 100S','6',NULL,'1131748',16.00,'1.3','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000887','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(888,'PHARMAGENTACIN E/E DROPS 10ML','10',NULL,'1131755',16.00,'21','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000888','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(889,'PHARMAPHENICOL EYE DROPS 10ML','10',NULL,'1131764',16.00,'23','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000889','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(890,'PHARMADEXONE EYE DROPS 5ML','10',NULL,'1131766',16.00,'81','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000890','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(891,'PHARMADEXNICOL EYE DROPS 5ML','10',NULL,'1131769',16.00,'130','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000891','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(892,'PHARMADEXNEOCIN EYE/EAR DROPS 10ML','10',NULL,'1131771',16.00,'88.2','150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000892','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(893,'PHARMASINE EYE DROPS 10ML','10',NULL,'1131778',16.00,'207','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000893','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(894,'PHARMACROM EYE DROPS 10ML','10',NULL,'1131779',16.00,'180','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000894','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(895,'BUSCOPAN PLUS TABS 40S','6',NULL,'1131784',16.00,'31.032','50',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000895','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(896,'TAMEPYN TABS 20S','10',NULL,'1131792',16.00,'10.8','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000896','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(897,'NAT C YUMMY GUMMIES 125MG 25S','6',NULL,'1131797',16.00,'933','1450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000897','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(898,'QUEST OAD ZINC PLUS 15MG TABS 30S','6',NULL,'1131802',16.00,'370','620',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000898','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(899,'COLFRESH GUM ICEMINT SUGARFREE 21G','12',NULL,'1131859',16.00,'75.4','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000899','pcs','Inventory','VATABLE','0',NULL,0),(900,'COLFRESH GUM SPEARMINT SUGARFREE 21G','12',NULL,'1131860',16.00,'75.4','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000900','pcs','Inventory','VATABLE','0',NULL,0),(901,'COLFRESH GUM WHITE SUGARFREE 21G','12',NULL,'1131861',16.00,'75.4','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000901','pcs','Inventory','VATABLE','0',NULL,0),(902,'COLFRESH GUM STRAWBERRY SUGARFREE 21G','12',NULL,'1131862',16.00,'75.4','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000902','pcs','Inventory','VATABLE','0',NULL,0),(903,'PYNSTOP TABS 20S','10',NULL,'1131871',16.00,'13.384','24',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000903','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(904,'H&B VITAMIN C &ZINC ORANGE EFF 20S','6',NULL,'1131907',16.00,'701.75','1210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000904','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(905,'MAMALAIT GRANULES 100GM','6',NULL,'1131921',16.00,'1183.2','2015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000905','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(906,'NOVACLAV 625MG TABS 20S','10',NULL,'1131927',16.00,'16.168','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000906','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(907,'DISPOSABLE KIDS 3PLY SURGICAL MASKS 50S','10',NULL,'1131940',16.00,'6.4','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000907','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(908,'JAMIESON ZINC 50MG 100 S','6',NULL,'1131945',16.00,'1296.9','2235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000908','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(909,'QUEST OAD IMMUNE MULTI TABS 30S','6',NULL,'1131954',16.00,'595','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000909','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(910,'APTAMIL BABY MILK 400GM 2','6',NULL,'1132095',16.00,'1121.80004','1494.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000910','pcs','Inventory','VATABLE','0',NULL,0),(911,'RHINAPHYTO 100ML','6',NULL,'1132098',16.00,'348.154','585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000911','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(912,'MENTHODEX SUGAR FREE LOZENGES BLACKCURRANT 36S','6',NULL,'1132101',16.00,'449.58','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000912','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(913,'AZIX 500MG TABS 3S','10',NULL,'1132130',16.00,'383','655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000913','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(914,'BENYLIN 4 FLU 100ML','6',NULL,'1132148',16.00,'342','585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000914','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(915,'DISPOSABLE 3PLY BLACK SURGICAL MASKS 50S','10',NULL,'1132162',16.00,'7','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000915','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(916,'BEROCCA PERFORMANCE EFF TABS ORANGE 20S','6',NULL,'1132175',16.00,'724.5','1275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000916','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(917,'EMCON 0.75MG TABLETS','10',NULL,'1132215',16.00,'29','55',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000917','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(918,'PANADOL ACTIFAST SOLUBLE TABS 12S','6',NULL,'1132216',16.00,'276','475',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000918','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(919,'KLEAR DECONGESTANT CAPSULES 10S','6',NULL,'1132239',16.00,'20','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000919','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(920,'MAXIMMUNE CHEW TABS 30S','6',NULL,'1132240',16.00,'720','1240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000920','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(921,'BENYLIN CHILD WET COUGH MUCUS RELIEF 100ML','6',NULL,'1132317',16.00,'423','720',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000921','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(922,'GOODLIFE PURE PETROLEUM JELLY TUBE 50GM','9',NULL,'1132323',16.00,'39.5908','74.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000922','pcs','Inventory','VATABLE','0',NULL,0),(923,'GOODLIFE BABY PETROLEUM JELLY TUBE 100GM','12',NULL,'1132324',16.00,'68.3588','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000923','pcs','Inventory','VATABLE','0',NULL,0),(924,'GOODLIFE SANITIZER SPRAY WITH MOISTURIZER 120ML','12',NULL,'1132328',16.00,'97.44','219.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000924','pcs','Inventory','VATABLE','0',NULL,0),(925,'AZICIP 500MG TABS 3S','10',NULL,'1132339',16.00,'190.01','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000925','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(926,'MEGYL 400MG TABS 100S','10',NULL,'1132455',16.00,'1.5','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000926','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(927,'KN95 MEDICAL PROTECTIVE FACE MASK 25S','10',NULL,'1132547',16.00,'84','180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000927','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(928,'ELYMOX SUSP 125MG/5ML ML','10',NULL,'1132556',16.00,'50','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000928','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(929,'AXYLIN SUSP 100ML','10',NULL,'1132562',16.00,'65','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000929','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(930,'CLOTRINE CREAM 20GM','10',NULL,'1132564',16.00,'31.5','55',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000930','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(931,'ACINET 457MG/5ML SUSP 100ML','10',NULL,'1132568',16.00,'220','385',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000931','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(932,'DOMADOL 50MG TABS 10S','10',NULL,'1132578',16.00,'10.519','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000932','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(933,'GIFOL TABS 100S','11',NULL,'1132588',16.00,'2.12','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000933','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(934,'CURAMOL SUSPENSION 60ML','6',NULL,'1132696',16.00,'23','42',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000934','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(935,'BACTROBAN 2% OINTMENT 15G','10',NULL,'1132971',16.00,'405.5','755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000935','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(936,'DUREX CONDOMS FEEL','6',NULL,'1133235',16.00,'185.6','319.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000936','pcs','Inventory','VATABLE','0',NULL,0),(937,'PANADOL BABY & INFANT SUSP 60ML','6',NULL,'1133291',16.00,'145.892','235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000937','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(938,'CONCEIVE PLUS FERTILITY SUPPORT CAPSULES FOR WOMEN 60S','6',NULL,'1133351',16.00,'3160','5435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000938','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(939,'STEROPLAST BLISTER CUSHIONS 4s','6',NULL,'1133387',16.00,'160','270',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000939','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(940,'STEROPLAST LARGE PLASTERS 4s','6',NULL,'1133388',16.00,'110','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000940','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(941,'MYLAN HIV SELF TEST KIT','10',NULL,'1133464',16.00,'464.464','810.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000941','pcs','Inventory','VATABLE','0',NULL,0),(942,'THOMPSON VIT E 265MG(400 IU) 30S','6',NULL,'1133519',16.00,'839','1410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000942','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(943,'SUNDOWN MELATONIN 3MG TABS 120S','6',NULL,'1133546',16.00,'1620','2760',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000943','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(944,'DIATESSE XPER GLUCOSE-KETONE METER','11',NULL,'1133548',16.00,'1955.421','3540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000944','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(945,'DIATESSE XPER GLUCOSE TEST STRIPS 50S','11',NULL,'1133549',16.00,'1564.803','2835',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000945','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(946,'DIATESSE B-KETONE TEST STRIPS 10S','11',NULL,'1133550',16.00,'2011.896','3645',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000946','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(947,'QUEST OAD MULTI CHEWABLE KIDS + CHEWABLE KIDS PROBIOTIC GIFT','6',NULL,'1133580',16.00,'460','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000947','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(948,'GOFEN 200MG SOFTGEL CAPS 60S','6',NULL,'1133883',16.00,'11.983','22',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000948','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(949,'NEUROCARE PLUS CAPS 30S.','6','1','1100001',16.00,'53','89',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000001','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(950,'ABZ SUSPENSION 10ML','6','1','1100064',16.00,'34.00','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000002','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(951,'ABZ TABLETS','6','1','1100065',16.00,'22.00','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,13.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000003','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(952,'ACLOTAS 100MG TABS 50S','10','1','1100088',16.00,'28.1','47',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,50.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000004','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(953,'ACTIFED WET COUGH&COLD SYRUP 100ML','6','1','1100112',16.00,'348','595',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000005','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(954,'ACYCLOVIR 5% CREAM 2GMS','10','1','1100141',16.00,'210','360',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000006','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(955,'ACYCLOVIR 200MG DENK TABS 25S','10','1','1100143',16.00,'40','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000007','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(956,'ACYCLOVIR 400MG TABS 56S','10','1','1100144',16.00,'9.643','17',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000008','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(957,'ADALAT LA 30MG TABS 30S','11','1','1100149',16.00,'65.761','116',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000009','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(958,'ADALAT RETARD 20MG TABS 60S','11','1','1100150',16.00,'49.719','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000010','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(959,'ADOL 125MG SUPPOSITORIES 10S','10','1','1100164',16.00,'29.23','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000011','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(960,'AERIUS 5MG TABS 30S','10','1','1100184',16.00,'71.3','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,35.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000012','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(961,'AERIUS SYRUP 150ML','10','1','1100185',16.00,'1025.36','1695',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000013','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(962,'AIRTAL 100MG TABS 40S','10','1','1100200',16.00,'70.25','119',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000014','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(963,'ALCOHOL SWABS 100S','11','1','1100223',16.00,'1.1','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,200.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000015','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(964,'ALDACTONE 25MG TABS 100S','11','1','1100225',16.00,'18.068','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,137.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000016','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(965,'ALLOPURINOL 300MG TABS 28S','11','1','1100251',16.00,'7.143','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,15.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000017','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(966,'ALOE PURA ALOE VERA JUICE 500ML','6','1','1100280',16.00,'1107.8','1910.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000018','pcs','Inventory','VATABLE','0',NULL,0),(967,'AMARYL 2MG TABS 30S','11','1','1100326',16.00,'38.805','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000019','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(968,'AMLOSUN 10MG TABS 30S','11','1','1100349',16.00,'40.167','71',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000020','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(969,'AMLOVAS 5MG TABS 30S','11','1','1100353',16.00,'17.878','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000021','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(970,'AMOXIL 500MG CAPS 100S','10','1','1100358',16.00,'16.09','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000022','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(971,'AMOXIL SYRUP 125MG/5ML 100ML','10','1','1100361',16.00,'244.5','410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000023','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(972,'AMOXYCILLIN 500MG CAPS 500S','10','1','1100364',16.00,'0.76','1.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000024','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(973,'AMPICLOX 500MG CAPS 100S','10','1','1100369',16.00,'15.85','26.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,150.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000025','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(974,'ANDOLEX C MOUTH WASH 200ML','6','1','1100383',16.00,'1148.4','1980.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000026','pcs','Inventory','VATABLE','0',NULL,0),(975,'ANUSOL OINTMENT 25GM','6','1','1100410',16.00,'465','800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000027','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(976,'ANUSOL PLUS HC OINTMENT 15GM','6','1','1100411',16.00,'685','1180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000028','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(977,'APPEVITE SYRUP 100ML','6','1','1100420',16.00,'158.4','275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000029','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(978,'ARTEQUICK 62.5/375mg TABS 4S','10','1','1100512',16.00,'455','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000030','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(979,'ASCARD 75MG TABLETS','11','1','1100522',16.00,'99.9','175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000031','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(980,'ASCORIL EXPECTORANT 100ML','6','1','1100530',16.00,'191.18','330',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000032','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(981,'ASCORIL EXPECTORANT 200ML','6','1','1100531',16.00,'332.86','580',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000033','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(982,'ASHTONS TEETHING POWDER IMPORTED 20S','6','1','1100534',16.00,'20','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000034','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(983,'ASOMEX 2.5MG 30S','11','1','1100535',16.00,'46.267','81',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000035','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(984,'ATACAND 8MG TABS 28S','11','1','1100560',16.00,'65.234','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000036','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(985,'ATENOLOL 100MG TABS 28S','11','1','1100568',16.00,'4.286','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000037','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(986,'ATENOLOL 25MG TABS 28S','11','1','1100569',16.00,'5','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000038','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(987,'ATRIZIN 5MG/5ML SYRUP 60ML','10','1','1100589',16.00,'97.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000039','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(988,'AUGMENTIN 1GM TABLETS 14S','10','1','1100598',16.00,'134.929','215',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,18.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000040','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(989,'AUGMENTIN 375MG TABS 20S','10','1','1100599',16.00,'59.1','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000041','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(990,'AUGMENTIN 625MG TABS 14S','10','1','1100600',16.00,'82','119',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000042','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(991,'AUGMENTIN 228MG/5ML SUSP - 70ML','10','1','1100602',16.00,'506','840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000043','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(992,'AUGMENTIN SYRUP 457MG/5ML - 70ML','10','1','1100603',16.00,'788.2','1335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000044','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(993,'AVAMYS 27.5MCG NASAL SPRAY 120 DOSES','10','1','1100615',16.00,'738','1255',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000045','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(994,'AZTOR 10MG 50S','11','1','1100701',16.00,'28.5','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,50.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000046','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(995,'AZTOR 20MG 50S','11','1','1100702',16.00,'38.24','68',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000047','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(996,'BACTIFLOX 500MG 10S','10','1','1100825',16.00,'149.684','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000048','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(997,'BALLET MOSQUITO REPELLANT LOTION 130ML','9','1','1100926',16.00,'151.99944','194.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000049','pcs','Inventory','VATABLE','0',NULL,0),(998,'BAYER ASPIRIN CARDIO 100MG 30S','11','1','1100970',16.00,'156.114','270',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000050','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(999,'NAIL CUTTER BABY BELLS','12','1','1101023',16.00,'174','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,9.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000051','pcs','Inventory','VATABLE','0',NULL,0),(1000,'NAIL CUTTER SIZE M BELL','12','1','1101025',16.00,'220.4','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000052','pcs','Inventory','VATABLE','0',NULL,0),(1001,'BENYLIN 4 FLU 200ML','6','1','1101045',16.00,'624','1065',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000053','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1002,'BENYLIN COLD & FLU MAX STRENGTH CAPS 16S','6','1','1101047',16.00,'550','950',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000054','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1003,'BENYLIN DRY COUGH 100ML','6','1','1101053',16.00,'449.1','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000055','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1004,'BENYLIN EXPECTORANT 100ML','6','1','1101054',16.00,'449.1','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000056','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1005,'BENYLIN PAEDIATRIC 100ML','6','1','1101056',16.00,'449.1','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000057','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1006,'BENYLIN WITH CODEINE 100ML','10','1','1101057',16.00,'629.1','1065',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000058','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1007,'BETA GRIPE WATER 100ML','6','1','1101073',16.00,'80','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000059','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1008,'BETADINE ANTISEPTIC SOLN 125ML','6','1','1101081',16.00,'357.28','614.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000060','pcs','Inventory','VATABLE','0',NULL,0),(1009,'BETADINE MOUTHWASH 125ML','6','1','1101083',16.00,'458.2','780.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000061','pcs','Inventory','VATABLE','0',NULL,0),(1010,'BETADINE MOUTHWASH 250ML','6','1','1101084',16.00,'690.2','1174.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000062','pcs','Inventory','VATABLE','0',NULL,0),(1011,'BETADINE SPRAY POWDER 55G','6','1','1101086',16.00,'522','890',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000063','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1012,'BETASON CREAM 15GM','10','1','1101107',16.00,'32.6','55',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000064','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1013,'BETASON G OINT 15GM','10','1','1101108',16.00,'71.5','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000065','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1014,'BETASON S OINTMENT 15GM','10','1','1101111',16.00,'73','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000066','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1015,'BIO OIL 200ML','9','1','1101210',16.00,'1208.15044','1995.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000067','pcs','Inventory','VATABLE','0',NULL,0),(1016,'BISODOL TABLETS','6','1','1101224',16.00,'581.4','1005',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000068','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1017,'BISOLVON LINCTUS 200ML','6','1','1101227',16.00,'470.704','815',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000069','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1018,'BLISTEX INTENSIVE MOISTURISER','9','1','1101290',16.00,'345.0072','614.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000070','pcs','Inventory','VATABLE','0',NULL,0),(1019,'BONIUM TABLETS','6','1','1101345',16.00,'12.9','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000071','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1020,'BONNISAN SYRUP 120ML','6','1','1101350',16.00,'259.44','450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000072','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1021,'BOUNTY CHOCOLATE 57G','12','1','1101465',16.00,'98.79372','164.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000073','pcs','Inventory','VATABLE','0',NULL,0),(1022,'BRUFEN SUSP 100MG/5ML - 100ML','6','1','1101526',16.00,'447.175','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000074','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1023,'BRUSTAN TABS 10S','6','1','1101552',16.00,'8.64','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,15.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000075','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1024,'BULKOT B CREAM 15GM','10','1','1101594',16.00,'52','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000076','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1025,'BULKOT CREAM 15GM','10','1','1101595',16.00,'21.85','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000077','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1026,'BULKOT MIXI CREAM 20GM','10','1','1101597',16.00,'116','195',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000078','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1027,'BUMP PATROL 7 DAY TREATMENT SOLUTION 65ML','12','1','1101609',16.00,'433.84','744.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000079','pcs','Inventory','VATABLE','0',NULL,0),(1028,'BUSCOPAN 10MG TABS 50S','10','1','1101638',16.00,'15.5','27',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,32.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000080','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1029,'CACHNERVE CAPS 30S','10','1','1101712',16.00,'38.333','64',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,13.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000081','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1030,'CADIPHEN SYRUP 100ML','6','1','1101726',16.00,'100.00','175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000082','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1031,'CADISTIN EXPECTORANT 100ML','6','1','1101727',16.00,'105','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000083','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1032,'CALAMINE LOTION 100ML','9','1','1101746',16.00,'32.48','57.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000084','pcs','Inventory','VATABLE','0',NULL,0),(1033,'CALPOL SUSPENSION 100ML','6','1','1101771',16.00,'271.311','435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000085','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1034,'CALPOL SUSPENSION 60ML','6','1','1101772',16.00,'183.559','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000086','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1035,'CANDID B CREAM 15GM','10','1','1101813',16.00,'163.76','280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000087','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1036,'CANDID B CREAM 30GM','10','1','1101814',16.00,'317.73','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000088','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1037,'CANDID B LOTION','10','1','1101815',16.00,'247.42','430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000089','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1038,'CANDID CREAM 20GM','10','1','1101816',16.00,'219.83','370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000090','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1039,'CANDID EAR DROPS','10','1','1101817',16.00,'140.62','235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000091','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1040,'CANDID LOTION 20ML','10','1','1101818',16.00,'166','285',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000092','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1041,'CANDID MOUTH PAINT','10','1','1101819',16.00,'159.31','270',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000093','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1042,'CANDID POWDER','6','1','1101820',16.00,'210.04','370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000094','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1043,'CANDID T V SUSPENSION','10','1','1101822',16.00,'331.97','560',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000095','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1044,'CANDID V 1 PESSARIES','10','1','1101823',16.00,'238.57','410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000096','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1045,'CANDID V 3 PESSARIES','10','1','1101824',16.00,'299.04','500',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000097','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1046,'CANDID VAGINAL GEL','10','1','1101827',16.00,'317.73','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000098','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1047,'CANDIFEM VAGINAL PESSARIES 6S','10','1','1101828',16.00,'264','460',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000099','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1048,'CANESTEN CREAM 20GM','10','1','1101849',16.00,'585','980',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000100','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1049,'CARCA 25MG TABS 30S','11','1','1101870',16.00,'56.367','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000101','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1050,'CARCA 12.5MG TABS 30S','11','1','1101872',16.00,'41.667','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000102','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1051,'CARDINOL 25MG TABS 28S','11','1','1101873',16.00,'3.628','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000103','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1052,'CARDINOL 100MG TABS 28S','11','1','1101874',16.00,'6.929','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000104','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1053,'CARDISPRIN 75MG TABS 28S','11','1','1101878',16.00,'57.14','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000105','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1054,'CARNATION CORN CAPS 5S','6','1','1101911',16.00,'240','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000106','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1055,'CASTOR OIL 100ML','6','1','1101923',16.00,'81.2','140.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000107','pcs','Inventory','VATABLE','0',NULL,0),(1056,'CATAFLAM 50MG TABS 100S','10','1','1101925',16.00,'31.48','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,155.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000108','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1057,'CATOXYMAG SUSPENSION 200ML','6','1','1101929',16.00,'180','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000109','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1058,'CAUSTIC PENCIL 95%','10','1','1101931',16.00,'268.424','449.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000110','pcs','Inventory','VATABLE','0','0039.11.28',0),(1059,'CENTRUM ADVANCE 60S','6','1','1101969',16.00,'1400','2340',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000111','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1060,'CEPROLEN D EYE/EAR DROPS 5ML','10','1','1101986',16.00,'241','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000112','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1061,'CEPROLEN E/E DROPS','10','1','1101987',16.00,'160','270',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000113','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1062,'CERUMOL EAR DROPS','6','1','1101993',16.00,'370','640',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000114','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1063,'CETAMOL 500MG TABS 100S','6','1','1101997',16.00,'1.16','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,79.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000115','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1064,'CETAMOL SYRUP 100ML','6','1','1101998',16.00,'54.6','95',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000116','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1065,'CETRIZET 10MG TABS 100S','10','1','1102002',16.00,'20.1','34.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,115.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000117','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1066,'CETRIZET D TABS 100S','10','1','1102003',16.00,'23','38.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,56.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000118','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1067,'CHARCOAL TABS ACTIVATED 100S (LOCAL)','6','1','1102025',16.00,'3.9','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000119','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1068,'CARMEX LIPBALM STRAWBERRY TUBE 10G','9','1','1102059',16.00,'348','620.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000120','pcs','Inventory','VATABLE','0',NULL,0),(1069,'CIALIS 20MG TABS 2S','11','1','1102117',16.00,'923.5','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000121','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1070,'CIPRO DENK 500MG TABS 10S','10','1','1102141',16.00,'51.589','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000122','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1071,'CIPROINTA 500MG TABS 10S','10','1','1102142',16.00,'15.73','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000123','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1072,'CLARINASE TABS 14S','10','1','1102170',16.00,'47.875','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000124','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1073,'CLARITYNE 10MG TABS 30S','10','1','1102187',16.00,'48.60','74',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,27.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000125','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1074,'CLARITYNE 5MG/5ML SYRUP 100ML','10','1','1102188',16.00,'476.685','800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000126','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1075,'CLAVULIN 457MG/5ML - 70ML','10','1','1102203',16.00,'613.285','1055',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000127','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1076,'CLAVULIN 625MG TABS 14S','10','1','1102204',16.00,'64.5','109',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000128','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1077,'CLOB B CREAM 15GM','10','1','1102278',16.00,'67.50','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000129','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1078,'CLOB CREAM 15GM','10','1','1102279',16.00,'41','75',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000130','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1079,'CLOBEDERM OINTMENT 15GM','10','1','1102280',16.00,'96','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000131','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1080,'CLOPILET 75MG TABS 30S','11','1','1102286',16.00,'50','92',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000132','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1081,'CLOPIXOL INJ ACUPHASE 100MG/2ML','10','1','1102289',16.00,'1774','3055',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000133','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1082,'CLOZOLE B CREAM15GM','10','1','1102298',16.00,'66.1','100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000134','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1083,'CLOZOLE CREAM','10','1','1102299',16.00,'16.8','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000135','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1084,'CO-DIOVAN 80/12.5MG TABS 28S','11','1','1102326',16.00,'78.443','138',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000136','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1085,'COLDCAP DAY AND NIGHT CAPS 24S','6','1','1102331',16.00,'139.65','245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000137','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1086,'COLDCAP DAY TIME 12S','6','1','1102332',16.00,'67.20','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000138','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1087,'COLDCAP NIGHT TIME 12S','6','1','1102333',16.00,'67.2','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000139','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1088,'COLDCAP ORIGINAL 12S','6','1','1102334',16.00,'78.75','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000140','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1089,'COLDCAP ORIGINAL 96S','6','1','1102335',16.00,'5.95','10.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,178.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000141','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1090,'COLDCAP SYRUP 100ML','6','1','1102336',16.00,'71.4','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000142','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1091,'COLGATE KIDS T/PASTE SMILES 50ML (2-5YRS)','12','1','1102348',16.00,'232','345.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000143','pcs','Inventory','VATABLE','0',NULL,0),(1092,'CO-MICARDIS 80MG TABS 28S','11','1','1102428',16.00,'93.857','163',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000144','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1093,'CONCOR 10MG TABS 30S','11','1','1102438',16.00,'44','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000145','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1094,'CONCOR 5MG TABS 30S','11','1','1102439',16.00,'20.833','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000146','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1095,'CONTEMPO CONDOMS ROUGH RIDER 3S','6','1','1102450',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000147','pcs','Inventory','VATABLE','0',NULL,0),(1096,'COSATRIM DS TABS 100S','10','1','1102501',16.00,'4.21','7.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000148','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1097,'COSVATE GM CREAM 15GM','10','1','1102523',16.00,'171','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000149','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1098,'COTTON WOOL 100GM','12','1','1102539',16.00,'62','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000150','pcs','Inventory','EXEMPTED','0','0039.11.33',0),(1099,'COTTON WOOL 400GM','12','1','1102540',16.00,'220','425',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000151','pcs','Inventory','EXEMPTED','0','0039.11.33',0),(1100,'COTTON WOOL 50GM','12','1','1102541',16.00,'30','75',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000152','pcs','Inventory','EXEMPTED','0','0039.11.33',0),(1101,'COVERAM 10/5MG TABS 30S','11','1','1102553',16.00,'67.941','119',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000153','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1102,'COX B 200MG CAPS 50S','10','1','1102558',16.00,'24.75','41',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,29.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000154','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1103,'CREPE BANDAGE 3IN 7.5CM ELASTOLITE','6','1','1102574',16.00,'18','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000155','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1104,'CREPE BANDAGE 4IN 10CM ELASTOLITE','6','1','1102575',16.00,'22','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000156','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1105,'CREPE BANDAGE 6IN 15CM ELASTOLITE','6','1','1102576',16.00,'30','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000157','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1106,'CYCLOPAM SUSPENSION 30ML','6','1','1102642',16.00,'154','265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000158','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1107,'CYCLOPAM TABLETS 20S','10','1','1102643',16.00,'8.989','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,105.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000159','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1108,'CYPON 100ML','10','1','1102648',16.00,'148','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000160','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1109,'CYPON 200ML','10','1','1102649',16.00,'259','430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000161','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1110,'DAFLON 500MG TABS 30S','11','1','1102669',16.00,'17.409','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,74.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000162','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1111,'DAKTARIN CREAM 20GM','10','1','1102672',16.00,'341','575',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000163','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1112,'DALACIN C 300MG TABS 16S','10','1','1102676',16.00,'90.75','151',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000164','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1113,'DALACIN T SOLUTION','10','1','1102678',16.00,'806','1395',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000165','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1114,'DEEP FREEZE GEL 35G','6','1','1102718',16.00,'263','440',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000166','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1115,'DEEP FREEZE SPRAY 150ML','6','1','1102719',16.00,'572','965',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000167','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1116,'DEEP HEAT CREAM 15GM','6','1','1102721',16.00,'177','300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000168','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1117,'DEEP HEAT CREAM 35GM','6','1','1102722',16.00,'195','330',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000169','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1118,'DEEP HEAT CREAM 67GM','6','1','1102723',16.00,'339','570',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000170','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1119,'DEEP HEAT RUB 100GM','6','1','1102725',16.00,'420','705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000171','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1120,'DEEP HEAT SPRAY','6','1','1102726',16.00,'455','760',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000172','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1121,'DEEP RELIEF GEL 30GM','6','1','1102729',16.00,'501.3','840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000173','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1122,'DEEP RELIEF GEL 50GM','6','1','1102730',16.00,'662','1115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000174','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1123,'DELASED CHESTY COUGH 100ML','6','1','1102732',16.00,'94.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000175','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1124,'DELASED DRY COUGH 100ML','6','1','1102734',16.00,'94.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000176','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1125,'DELASED DRY NON DROWSY 100ML','6','1','1102735',16.00,'94.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000177','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1126,'DERMIDEX CREAM','10','1','1102786',16.00,'59.85','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000178','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1127,'DETTOL LIQUID 125ML','6','1','1102808',16.00,'272.2752','454.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000179','pcs','Inventory','VATABLE','0',NULL,0),(1128,'DETTOL LIQUID 250ML','6','1','1102809',16.00,'527.394','884.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000180','pcs','Inventory','VATABLE','0',NULL,0),(1129,'DETTOL LIQUID 500ML','6','1','1102810',16.00,'1066.04','1784.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000181','pcs','Inventory','VATABLE','0',NULL,0),(1130,'DETTOL LIQUID 50ML','6','1','1102811',16.00,'101.9872','174.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000182','pcs','Inventory','VATABLE','0',NULL,0),(1131,'DEXA-G EYE DROPS 5ML','10','1','1102815',16.00,'384.93','645',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000183','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1132,'DIALIN CAPS 2MG','6','1','1102841',16.00,'26.25','47',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000184','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1133,'DIAMOX 250MG TABS 100S','11','1','1102844',16.00,'29.25','51.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000185','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1134,'DICLODENK 100MG TABS 100S','10','1','1102862',16.00,'9.365','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000186','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1135,'DICLOGENTA EYE DROPS 5ML','10','1','1102865',16.00,'182.45','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000187','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1136,'DICLOMOL EC 50MG TABS 100S','10','1','1102866',16.00,'1','2',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000188','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1137,'DICLOMOL GEL 20GM','10','1','1102867',16.00,'154','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000189','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1138,'DICLOMOL PLUS TABS 100S','10','1','1102868',16.00,'10.665','18',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000190','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1139,'DICLOMOL SR 100MG TABS 100S','10','1','1102869',16.00,'3.53','6.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000191','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1140,'DIFLUCAN 150MG CAPS','10','1','1102880',16.00,'751.18','1280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000192','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1141,'DISFLATYL TABS 100S','6','1','1102947',16.00,'17','30',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000193','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1142,'DISPOSABLE 3PLY SURGICAL MASKS 50S','10','1','1102953',16.00,'3.2','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,73.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000194','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(1143,'DISPOSABLE SYRINGES 20ML','10','1','1102957',16.00,'8.7','17',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000195','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(1144,'DISPOSABLE SYRINGES 5ML','10','1','1102960',16.00,'4','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,79.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000196','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(1145,'DOLOACT MR TABS 100S','10','1','1102992',16.00,'16.501','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,114.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000197','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1146,'DOLOMED MR TABS 100S','10','1','1102996',16.00,'12.25','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000198','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1147,'DOXYCYCLINE 100MG 50S U.K','10','1','1103057',16.00,'16.5','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,58.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000199','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1148,'DOXYCYCLINE CAPSULES *100S LOCAL','10','1','1103059',16.00,'3','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,149.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000200','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1149,'DULCOLAX 5MG TABS 30S','10','1','1103150',16.00,'9.075','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,33.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000201','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1150,'DULCOLAX 10MG SUPPOSITORIES 12S','10','1','1103151',16.00,'52.5','89',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000202','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1151,'DUPHALAC LIQUID 200ML','6','1','1103172',16.00,'603.4','1030',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000203','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1152,'DUPHASTON 10MG TABS 20S','10','1','1103174',16.00,'60','98',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000204','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(1153,'DUREX CONDOMS ELITE','6','1','1103191',16.00,'179.8','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000205','pcs','Inventory','VATABLE','0',NULL,0),(1154,'DUREX CONDOMS EXTRA SAFE','6','1','1103192',16.00,'199.636','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000206','pcs','Inventory','VATABLE','0',NULL,0),(1155,'DUREX CONDOMS FETHERLITE 3S','6','1','1103193',16.00,'199.636','349.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000207','pcs','Inventory','VATABLE','0',NULL,0),(1156,'DUREX CONDOMS PERFORMA','6','1','1103198',16.00,'241.9876','424.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000208','pcs','Inventory','VATABLE','0',NULL,0),(1157,'EBASTEL 10MG TABS 20S','10','1','1103402',16.00,'75.6','126',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000209','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1158,'ELASTOPLAST FABRIC 100S','6','1','1103431',16.00,'1.34','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000210','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1159,'ELOCOM CREAM 15GM','10','1','1103785',16.00,'705.1','1165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000211','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1160,'ELOCOM OINTMENT 15GM','10','1','1103787',16.00,'709.71','1190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000212','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1161,'ELTROXIN 100MCG TABS 100S','11','1','1103788',16.00,'10.06','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000213','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(1162,'ELYCORT CREAM 15GM','10','1','1103790',16.00,'50','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000214','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1163,'ELYCORT OINTMENT 15GM','10','1','1103791',16.00,'53','92',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000215','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1164,'ELYVATE CREAM 15GM','10','1','1103793',16.00,'41.65','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000216','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1165,'EMITINO SUSPENSION 30ML','10','1','1103806',16.00,'400','680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000217','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1166,'EMITINO 4MG TABS 10S','10','1','1103807',16.00,'40','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,23.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000218','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1167,'ENAPRIL 20 H TABS 30S','11','1','1103817',16.00,'49.335','87',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000219','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1168,'ENAPRIL 5MG TABS 100S','11','1','1103818',16.00,'4.984','9.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,88.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000220','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1169,'ENAPRIL 10MG TABS 100S','11','1','1103819',16.00,'8.9','16.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000221','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1170,'ENAPRIL 20MG TABS 100S','11','1','1103820',16.00,'15.556','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000222','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1171,'ENAT 400IU VIT E CAPSULES','6','1','1103822',16.00,'1280','2230',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000223','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1172,'ENO LEMON 48S','6','1','1103854',16.00,'10.81','18',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,124.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000224','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1173,'ENSURE POWDER VANILLA 400G','6','1','1103863',16.00,'1257','2100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000225','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(1174,'ENTAMIZOLE SYRUP 100ML','10','1','1103865',16.00,'393.9','680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000226','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1175,'ENTEROGERMINA 5ML 10S','6','1','1103868',16.00,'51.24','87',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000227','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1176,'ENZOFLAM TABS 10S','10','1','1103869',16.00,'30','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000228','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1177,'EPANUTIN 100MG CAPS 84S','11','1','1103871',16.00,'12.032','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000229','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1178,'EROSTIN 10MG TABS 10S','10','1','1103905',16.00,'30.737','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000230','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1179,'EROVITA EASY PREGNANCY KIT','6','1','1103907',16.00,'114.84','200.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000231','pcs','Inventory','VATABLE','0',NULL,0),(1180,'ERYTHROMYCIN 500MG TABS 100S','10','1','1103933',16.00,'6.5','11.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000232','pcs','Inventory','EXEMPTED','0','0039.11.06',0),(1181,'ESOSE 40MG TABS 10S','11','1','1103955',16.00,'46.725','83',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000233','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1182,'EUCRYL SMOKERS T/PASTE','12','1','1103985',16.00,'290','499.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000234','pcs','Inventory','VATABLE','0',NULL,0),(1183,'EUCRYL SMOKERS T/POWDER','12','1','1103986',16.00,'278.4','479.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000235','pcs','Inventory','VATABLE','0',NULL,0),(1184,'EUMOVATE OINTMENT 25GM','10','1','1103989',16.00,'519','875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000236','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1185,'EURAX HC ANTI-ITCH CREAM 15GM','6','1','1103995',16.00,'490','1060',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000237','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1186,'EVRA PATCH 3S','10','1','1104017',16.00,'1417.5','2355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000238','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(1187,'LATEX EXAMINATION GLOVES MEDIUM 100S','6','1','1104019',16.00,'4.4','11',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,84.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000239','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(1188,'EXEVATE MF OINTMENT','10','1','1104023',16.00,'315.95','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000240','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1189,'EXFORGE 160/5MG TABS 28S','11','1','1104026',16.00,'65.15','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000241','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1190,'FASTUM GEL 50GM','10','1','1104133',16.00,'660','1125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000242','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1191,'FCN 150MG CAPS','10','1','1104137',16.00,'64.35','110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000243','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1192,'FEBREX PLUS SYRUP 100ML','6','1','1104139',16.00,'135','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000244','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1193,'FEBREX PLUS TABS 20S','6','1','1104140',16.00,'5.8','11',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,9.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000245','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1194,'FERROGLOBIN CAPS 30S','6','1','1104184',16.00,'564','945',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000246','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1195,'FISHERMANS FRIEND LOZS 25G LEMON','6','1','1104245',16.00,'145','249.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000247','pcs','Inventory','VATABLE','0',NULL,0),(1196,'FISHERMANS FRIEND LOZS 25G MINT S/FREE','6','1','1104246',16.00,'145','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000248','pcs','Inventory','VATABLE','0',NULL,0),(1197,'FISHERMANS FRIEND LOZS 25G ORIGINAL EXTRA STRONG','6','1','1104247',16.00,'145','249.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000249','pcs','Inventory','VATABLE','0','0039.11.20',0),(1198,'FISHERMANS FRIEND LOZS 25G BLACKCURRANT','6','1','1104248',16.00,'145','249.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000250','pcs','Inventory','VATABLE','0',NULL,0),(1199,'FLAGYL 200MG/5ML SUSP 100ML','10','1','1104268',16.00,'502','855',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000251','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1200,'FLATAMEAL DS SUSPENSION 200ML','6','1','1104275',16.00,'195.00','335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000252','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1201,'FLATAMEAL DS TABLETS 200S','6','1','1104276',16.00,'3.00','5.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,386.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000253','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1202,'FLORANORM 250MG SACCHAROMYCES BOULARDII SACHETS 10S','6','1','1104301',16.00,'83','142',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,25.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000254','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1203,'FLUCLOXACILLIN 500MG CAPS 100S','10','1','1104375',16.00,'6.25','10.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,310.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000255','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1204,'FLUCOZAL 200MG CAPS 10S','10','1','1104382',16.00,'132.206','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000256','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1205,'FLUGONE C+F TABLETS 10S','6','1','1104384',16.00,'88','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000257','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1206,'FLUGONE CAPSULES 10S','6','1','1104385',16.00,'93.99','155',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000258','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1207,'FLUGONE DM COUGH SYRUP 120ML','6','1','1104386',16.00,'194','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000259','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1208,'FLUGONE DM SYRUP 60ML','6','1','1104387',16.00,'122.06','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000260','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1209,'FLUGONE P COUGH SYRUP 120ML','6','1','1104388',16.00,'186.99','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000261','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1210,'FLUGONE P SYRUP 60ML','6','1','1104389',16.00,'122.06','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000262','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1211,'FOLIC ACID 5MG TABS 28S','10','1','1104403',16.00,'4.29','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,56.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000263','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1212,'FRAMYDEX EYE/EAR DROP 8ML','10','1','1104421',16.00,'198.45','335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000264','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1213,'FUROSEMIDE 40MG TABS 100S','11','1','1104461',16.00,'1.29','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,103.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000265','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1214,'FUCICORT CREAM 15GM','10','1','1104462',16.00,'486.92','830',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000266','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1215,'FYBOGEL ORANGE 60S','6','1','1104511',16.00,'30.80','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,110.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000267','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1216,'GAUZE SWABS STERILE 3*3 (100S)','6','1','1104748',16.00,'3.16','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,50.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000268','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1217,'GAUZE SWABS STERILE 4*4 (100S)','6','1','1104749',16.00,'3.9','7.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000269','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1218,'GAVISCON DOUBLE ACTION LIQUID 150ML','6','1','1104757',16.00,'586.46','990',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000270','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1219,'GINSOMIN CAPSULES 30S','6','1','1104866',16.00,'27.36','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000271','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1220,'GLUCOMET 500MG TABS 28S','11','1','1104908',16.00,'3.393','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,18.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000272','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1221,'GLUCOMET 850MG TABS 28S','11','1','1104909',16.00,'7.107','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000273','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1222,'GLUCOPHAGE 1GM TABS 60S','11','1','1104910',16.00,'9.167','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,39.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000274','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1223,'GLUCOPHAGE 500MG TABS 90S','11','1','1104911',16.00,'4.67','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,113.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000275','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1224,'GLUCOPHAGE 850MG TABS 60S','11','1','1104912',16.00,'8.5','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,19.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000276','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1225,'GLUCOPHAGE XR 500MG 90S','11','1','1104913',16.00,'8.444','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000277','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1226,'GLUCOPLUS MACHINE','11','1','1104914',16.00,'1160','2030',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000278','pcs','Inventory','VATABLE','0',NULL,0),(1227,'GLUCOSE POWDER 100G','6','1','1104918',16.00,'34.8','59.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000279','pcs','Inventory','VATABLE','0',NULL,0),(1228,'GLYCERINE INFANT SUPPOSITORIES 1G','6','1','1104936',16.00,'33.167','57',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000280','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1229,'GLYCERINE LIQUID 50ML','9','1','1104937',16.00,'33.64','55.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000281','pcs','Inventory','VATABLE','0',NULL,0),(1230,'GRABACIN DUSTING POWDER','10','1','1104972',16.00,'99.28','170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000282','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1231,'GRABACIN-3 OINTMENT 20GM','10','1','1104973',16.00,'186.3','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000283','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1232,'GRISEOFULVIN 250MG TABS 100S','10','1','1104986',16.00,'3.583','6.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000284','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1233,'GRISEOFULVIN 500MG TABS 100S','10','1','1104987',16.00,'7.2','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000285','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1234,'HEDEX TABLETS 100S','6','1','1105372',16.00,'3.849','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,77.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000286','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1235,'HEMOSAN CAPSULES *30S','6','1','1105383',16.00,'6.705','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000287','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1236,'HEMSAMIC 500MG CAPS 20S','10','1','1105385',16.00,'36.237','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000288','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1237,'HUMALOG 3ML CARTRIDGE 5S','11','1','1105479',16.00,'1110.6','1855',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000289','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(1238,'HYDROCHLOROTHIAZIDE 50MG TABS 100S','11','1','1105499',16.00,'1.74','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,74.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000290','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1239,'HYDROCORTISONE CREAM 30GM','10','1','1105503',16.00,'310','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000291','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1240,'HYDROGEN PEROXIDE 20V 200ML','6','1','1105509',16.00,'27.84','49.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000292','pcs','Inventory','VATABLE','0',NULL,0),(1241,'HYDROXYCHLOROQUINE 200MG TABS 30S','10','1','1105511',16.00,'34.829','59',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,22.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000293','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1242,'IBUMEX GEL 25GM','6','1','1105537',16.00,'52.5','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000294','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1243,'IBUMEX SUSP 60ML','6','1','1105539',16.00,'49.35','85',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000295','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1244,'IBUPROFEN 400MG TABLETS B/P 84S','6','1','1105541',16.00,'3.81','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000296','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1245,'IMODIUM LOPERAMIDE 2MG CAPS 6S','6','1','1105561',16.00,'206.13','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000297','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1246,'INFA-V VAGINAL PESSARIES 8S','10','1','1105589',16.00,'407','680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000298','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1247,'INTAMINE CREAM 25GM','6','1','1105669',16.00,'63','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000299','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1248,'IROVEL H TABS 30S','11','1','1105691',16.00,'55.667','98',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,16.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000300','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1249,'IROVEL 150MG TABS 30S','11','1','1105692',16.00,'48.082','85',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,9.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000301','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1250,'JOINTACE (COLLAGEN/GLUCOSAMINE & CHONDROITIN) *30S','6','1','1105850',16.00,'1051.82','1935',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000302','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1251,'JOLEN FACIAL STRIP WAX 16STRIPS','12','1','1105859',16.00,'185.6','324.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000303','pcs','Inventory','VATABLE','0',NULL,0),(1252,'KARVOL DECONGESTANT CAPSULES','6','1','1105907',16.00,'30.50','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000304','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1253,'KEPPRA 250MG TABS 60S','11','1','1105941',16.00,'41.367','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000305','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1254,'KETOLAC EYE DROPS 5ML','10','1','1105948',16.00,'220','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000306','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1255,'KLY LUBRICATING JELLY 42G','6','1','1105998',16.00,'150.00','255',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000307','pcs','Inventory','EXEMPTED','0','0039.11.41',0),(1256,'KOFOL SYRUP 100ML','6','1','1106001',16.00,'168','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000308','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1257,'KOTEX PANTY LINERS REGULAR 20S','12','1','1106020',16.00,'117.02312','174.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000309','pcs','Inventory','VATABLE','0',NULL,0),(1258,'KOTEX TAMPONS REGULAR 16S','12','1','1106022',16.00,'237.576','355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000310','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(1259,'KOTEX TAMPONS SUPER 16S','12','1','1106023',16.00,'233.333','350',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000311','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(1260,'LACTULAC LIQUID 200ML','6','1','1106207',16.00,'412.25','715',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000312','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1261,'LAMISIL CREAM 15GM','10','1','1106243',16.00,'960','1585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000313','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1262,'LASIX 40MG TABS 20S','11','1','1106284',16.00,'35.098','63',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000314','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1263,'LEFLOX 500MG TABS 10S','10','1','1106304',16.00,'70.85','118',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000315','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1264,'LEMSIP COLD & FLU SATCHETS BLACKCURRANT 10S','6','1','1106313',16.00,'57','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000316','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1265,'LEMSIP MAX COLD & FLU SATCHETS LEMON 10S','6','1','1106329',16.00,'63.5','107',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000317','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1266,'LETROZ 2.5MG TABS 25S','11','1','1106348',16.00,'134','235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000318','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1267,'LEXOTANIL 1.5MG TABS 30S','10','1','1106356',16.00,'16.23','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000319','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1268,'LEXOTANIL 3.0MG TABS 30S','10','1','1106357',16.00,'22.71','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000320','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1269,'SKYN ORIGINAL NON LATEX CONDOM','6','1','1106367',16.00,'401.2034','690.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000321','pcs','Inventory','VATABLE','0',NULL,0),(1270,'LIQUID PARAFFIN 100ML','6','1','1106454',16.00,'52.2','89.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000322','pcs','Inventory','VATABLE','0',NULL,0),(1271,'LISTERINE COOL MINT M/WASH 250ML','12','1','1106460',16.00,'532.44','789.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000323','pcs','Inventory','VATABLE','0',NULL,0),(1272,'LONART DS TABLETS 6S','10','1','1106500',16.00,'22.832','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000324','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(1273,'LANCETS 100S','11','1','1106522',16.00,'1.1','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,150.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000325','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(1274,'LOSARTAS HT 50/12.5MG TABS 30S','11','1','1106528',16.00,'29.50','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000326','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1275,'LOSARTAS 50MG 28S','11','1','1106529',16.00,'24.46','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,61.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000327','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1276,'LYRICA 25MG CAPS 28S','11','1','1106605',16.00,'33.882','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000328','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1277,'LYRICA 75MG CAPS 28S','11','1','1106606',16.00,'85.786','151',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,22.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000329','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1278,'MANIX TABLETS 20S','6','1','1106781',16.00,'31.6','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000330','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1279,'MARAMOJA TABLETS 100S','6','1','1106782',16.00,'3.58','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,44.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000331','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1280,'MARAMOJA TABLETS 20S','6','1','1106783',16.00,'130.28','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000332','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1281,'MARS BARS 51G','12','1','1106790',16.00,'98.79372','155.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,22.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000333','pcs','Inventory','VATABLE','0',NULL,0),(1282,'MAXIDEX EYE DROPS','10','1','1106800',16.00,'280.50','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000334','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1283,'MAXIDEX EYE OINTMENT','10','1','1106801',16.00,'433.5','730',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000335','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1284,'MAXITROL EYE DROPS','10','1','1106803',16.00,'175.2','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000336','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1285,'MEBO OINTMENT 15 GRAMS','10','1','1106818',16.00,'639.2','1090',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000337','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1286,'MEBO OINTMENT 30 GRAMS','10','1','1106819',16.00,'1288.92','2130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000338','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1287,'MEDI-KEEL THROAT LOZENGES 16S ORIGINAL','6','1','1106840',16.00,'25.00','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,24.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000339','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1288,'MEDIPLAST FABRIC 100S','6','1','1106842',16.00,'0.55','2',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000340','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1289,'MEDIVEN CREAM 15GM','10','1','1106855',16.00,'44.9','75',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000341','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1290,'MEDIVEN S OINTMENT 15GM','10','1','1106857',16.00,'132.75','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000342','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1291,'MEFTAL FORTE TABS 20S','10','1','1106868',16.00,'16.5','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000343','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1292,'MEFTAL 500MG TABS 20S','10','1','1106869',16.00,'14.05','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000344','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1293,'MENTHODEX COUGH SYRUP 200ML','6','1','1106892',16.00,'318.6','545',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000345','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1294,'MENTHODEX COUGH SYRUP 100ML','6','1','1106893',16.00,'212.4','365',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000346','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1295,'MERCILON 3*21S','10','1','1106899',16.00,'663.333','1105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000347','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(1296,'METROMAG MILK OF MAGNESIA 100ML','6','1','1106933',16.00,'99','175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000348','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1297,'MICROFINE INSULIN SYRINGES *1ML','11','1','1106955',16.00,'12.85','22.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,64.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000349','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(1298,'MICROGYNON-30 PILLS 21S','10','1','1106959',16.00,'253.269','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000350','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(1299,'MILTON STERILISING FLUID 500ML','12','1','1106980',16.00,'326.772','530.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000351','pcs','Inventory','VATABLE','0',NULL,0),(1300,'MILTON STERILISING TABLETS 28S','12','1','1106981',16.00,'533.6','850.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000352','pcs','Inventory','VATABLE','0',NULL,0),(1301,'MINOCYCLINE 100MG 28S','10','1','1106987',16.00,'72.5','121',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000353','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1302,'MOBIC 15MG TABS 10S','10','1','1107086',16.00,'69.673','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000354','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1303,'MOMATE CREAM 15GM','10','1','1107108',16.00,'448.56','760',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000355','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1304,'MONTALLERG 10/5MG TABS 20S','11','1','1107120',16.00,'47.25','82',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000356','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1305,'MONTIGET GRANULES 4MG 14S','11','1','1107123',16.00,'34.42','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,31.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000357','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1306,'MONTIGET 10MG TABS 14S','11','1','1107124',16.00,'50.717','89',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,17.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000358','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1307,'MONTIGET 5MG TABS 14S','11','1','1107125',16.00,'36.50','64',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,32.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000359','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1308,'MOTILIUM 10MG TABS 20S','10','1','1107151',16.00,'26.46','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000360','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1309,'MOTILIUM SYRUP 100 ML','10','1','1107153',16.00,'430.2','730',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000361','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1310,'MOVICOL SATCHETS 30S','6','1','1107156',16.00,'65.00','111',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,53.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000362','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1311,'MUCOSOLVAN LIQUID 100ML','6','1','1107168',16.00,'393.12','665',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000363','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1312,'MUVERA 15MG TABS 100S','10','1','1107188',16.00,'22.4','37.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000364','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1313,'MUVERA 7.5MG TABS 100S','10','1','1107189',16.00,'13.365','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000365','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1314,'MYCOTA CREAM','6','1','1107196',16.00,'230','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000366','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1315,'MYCOTA POWDER 70G','6','1','1107197',16.00,'650','1120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000367','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1316,'MYOSPAZ TABS 100S','10','1','1107203',16.00,'15.80','26.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,99.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000368','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1317,'NAPROSYN 500MG TABS 56S','10','1','1107351',16.00,'38.393','64',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000369','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1318,'NASIVION PAEDIATRIC NASAL DROPS','6','1','1107355',16.00,'112.50','166.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000370','pcs','Inventory','EXEMPTED','0',NULL,0),(1319,'NASOSAL DROPS 10ML','6','1','1107358',16.00,'424','715',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000371','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1320,'NATRILIX SR 1.5MG TABS 30S','11','1','1107408',16.00,'24.598','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000372','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1321,'NEBILET 5MG TABS 28S','11','1','1107423',16.00,'63.57142857','112',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,84.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000373','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1322,'NETAZOX 500MG TABS 6S','10','1','1107477',16.00,'47.54','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000374','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1323,'NEURORUBINE FORTE TABLETS 20S','10','1','1107486',16.00,'20','34',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,38.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000375','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1324,'NEXIUM 20MG TABS 14S','11','1','1107612',16.00,'86.949','147',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000376','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1325,'NEXIUM 40MG TABS 14S','11','1','1107613',16.00,'126.6','213',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000377','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1326,'NICORETTE FRUITFUSION GUM 2MG','6','1','1107627',16.00,'285.714','478',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000378','pcs','Inventory','EXEMPTED','0',NULL,0),(1327,'NICORETTE FRUITFUSION GUM 4MG','6','1','1107628',16.00,'335.71','561',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000379','pcs','Inventory','EXEMPTED','0',NULL,0),(1328,'NICORETTE FRESHMINT GUM 4MG','6','1','1107630',16.00,'335.71','561',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000380','pcs','Inventory','EXEMPTED','0',NULL,0),(1329,'NIFEDIDENK RETARD 20MG TABS 100S','11','1','1107637',16.00,'11.256','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000381','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1330,'NIFELAT RETARD 20MG TABS 100S','11','1','1107638',16.00,'5.15','9.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000382','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1331,'NILOL 50/20MG TABS 30S','11','1','1107642',16.00,'24.167','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000383','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1332,'NOGLUC 5MG TABS 28S','11','1','1107675',16.00,'3.742','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,33.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000384','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1333,'NORMAL SALINE 500ML','10','1','1107684',16.00,'95','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000385','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1334,'NORMAL SALINE NASAL DROPS 10ML','6','1','1107685',16.00,'25','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000386','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1335,'NORVASC 5MG TABS 30S','11','1','1107690',16.00,'47.30','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,58.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000387','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1336,'NORVASC 10MG TABS 30S','11','1','1107691',16.00,'86.886','146',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000388','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1337,'NOSIC TABS 20S','10','1','1107694',16.00,'16.47','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,17.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000389','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1338,'NOVORIN SALINE NASAL DROPS 15ML','6','1','1107754',16.00,'81','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000390','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1339,'NUROFEN COLD & FLU TABS 24S','6','1','1107803',16.00,'1005','1680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000391','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1340,'NUROFEN SUSP ORANGE 200ML','6','1','1107819',16.00,'1250','2090',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000392','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1341,'NYSTAN ORAL DROPS 30ML','10','1','1107843',16.00,'45','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000393','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1342,'NYSTATIN ORAL DROPS 30ML','10','1','1107844',16.00,'40','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000394','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1343,'OB REGULAR TAMPONS 8S','12','1','1107868',16.00,'160','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000395','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(1344,'OB SUPER TAMPONS 8S','12','1','1107870',16.00,'184','275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000396','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(1345,'OCID 20MG CAPS 100S','11','1','1107881',16.00,'1.84','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,87.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000397','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1346,'OILATUM CREAM TUBE 150GM','9','1','1107898',16.00,'997.6','1710.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000398','pcs','Inventory','VATABLE','0',NULL,0),(1347,'OILATUM SOAP 100GM','9','1','1107916',16.00,'446.55','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000399','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1348,'OJEN OZ TABS 10S','10','1','1107917',16.00,'23.678','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000400','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1349,'OLBAS OIL 10ML ADULTS','6','1','1107923',16.00,'430','740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000401','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1350,'OLBAS OIL CHILDREN','6','1','1107924',16.00,'430','740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000402','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1351,'OLFEN 100MG SR DEPOCAPS 10S','10','1','1107945',16.00,'71','121',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000403','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1352,'OLFEN 75MG SR DEPOTABS 30S','10','1','1107947',16.00,'36.167','62',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000404','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1353,'OLFEN GEL 20GM','10','1','1107950',16.00,'490','820',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000405','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1354,'OMASTIN 50mg/5ml SUSPENSION 35ML','10','1','1107962',16.00,'313.5','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000406','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1355,'OMEGA H3 CAPSULES 30S','6','1','1107963',16.00,'28.16','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000407','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1356,'OMEPRAZOLE 20MG TABS 28S','11','1','1107964',16.00,'5.00','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,43.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000408','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1357,'ON CALL PLUS TEST STRIPS 50S','11','1','1107974',16.00,'599.99956','1179.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000409','pcs','Inventory','VATABLE','0',NULL,0),(1358,'ONAZIN EYE DROPS 10ML','6','1','1107975',16.00,'267.3','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000410','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1359,'ORAL B DENTAL FLOSS WAXED MINT 50M','12','1','1108082',16.00,'208.8','319.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000411','pcs','Inventory','VATABLE','0',NULL,0),(1360,'ORAL REHYDRATION SALTS 14G 100S','6','1','1108120',16.00,'8.5','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,94.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000412','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1361,'ORELOX SUSPENSION 40MG/5ML 100ML','10','1','1108136',16.00,'1710.49','2860',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000413','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1362,'OSTEOCARE JOINT GLUCOSAMINE & CHONDROITIN TABS 60S','6','1','1108185',16.00,'1428.00','2385',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000414','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1363,'OSTEOCARE TABLETS 30S','6','1','1108189',16.00,'432','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000415','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1364,'OTOREX EAR DROPS 10ML','6','1','1108194',16.00,'206.00','350',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000416','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1365,'P-ALAXIN TABS 9S','10','1','1108229',16.00,'187','325',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000417','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(1366,'PANADOL ADVANCE 100S','6','1','1108283',16.00,'4.693','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000418','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1367,'PANADOL ADVANCE 20S','6','1','1108285',16.00,'130.578','215',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000419','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1368,'PANADOL BABY & INFANT SUSP 100ML','6','1','1108287',16.00,'238','385',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000420','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1369,'PANADOL EXTRA With Opti Zorb 100S','6','1','1108293',16.00,'4.801','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000421','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1370,'PANADOL EXTRA with Opti Zorb 20S','6','1','1108295',16.00,'130.939','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000422','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1371,'PANDERM OINTMENT 15GM','10','1','1108303',16.00,'470','810',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000423','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1372,'PANTOCID 40MG TABS 50S','11','1','1108325',16.00,'43','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000424','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1373,'PARIET 20MG TABS 28S','11','1','1108339',16.00,'172.061','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000425','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1374,'PEDITRAL ORANGE O.R.S','6','1','1108375',16.00,'58.00','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000426','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1375,'PERNEX AC 5% GEL 20GM','10','1','1108408',16.00,'286','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000427','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1376,'PHARMASAL OINTMENT','10','1','1108425',16.00,'43','72',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000428','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1377,'PIRITON EXPECTORANT 100ML','6','1','1108573',16.00,'343.19','555',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000429','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1378,'PIRITON SYRUP 100ML','6','1','1108574',16.00,'296.00','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000430','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1379,'PIRITON 4MG TABS 1000S','10','1','1108575',16.00,'2.361','4.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000431','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1380,'PIROXICAM 20MG CAPS 100S','10','1','1108576',16.00,'0.95','2.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,72.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000432','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1381,'PONSTAN FORTE 500MG TABS 50S','10','1','1108653',16.00,'19.824','34',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000433','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1382,'POSTINOR 0.75MG TABLETS','10','1','1108663',16.00,'126.90','215',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000434','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(1383,'POWERGESIC PLUS GEL 30G','6','1','1108703',16.00,'180','310',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000435','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1384,'PREDNISOLONE 5MG TABS 100S','11','1','1108713',16.00,'1.64','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000436','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1385,'PREDNISONE 5MG TABS 100S','11','1','1108714',16.00,'1.799','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,18.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000437','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1386,'PREDSOL FORTE 60ML','10','1','1108716',16.00,'773.5','1300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000438','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1387,'PREGNACARE CAPS 30S','6','1','1108719',16.00,'566','950',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000439','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1388,'PREGNACARE PLUS','6','1','1108722',16.00,'1100.00','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000440','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1389,'PRIMAPORE AWD 6CM*8.3CM 50S','6','1','1108764',16.00,'40','69',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000441','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1390,'PRIMOLUT N 5MG TABS 30S','10','1','1108767',16.00,'26.925','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,9.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000442','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(1391,'PROBETA N DROPS','10','1','1108787',16.00,'90.00','155',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000443','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1392,'PROMETHAZINE 25MG TABS 100S','10','1','1108807',16.00,'1.22','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,195.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000444','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1393,'PULMICORT 0.5MG/ML NEBULISING SOLN 20S','11','1','1108874',16.00,'242.445','418',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000445','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1394,'QUEST MARINE OMEGA EPA 1000MG CAPS 90S FOR 45S','6','1','1108943',16.00,'620','1045',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000446','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1395,'QUITIPIN 200MG TABS 30S','11','1','1108978',16.00,'66','119',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000447','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1396,'RANFERON 12 SYRUP 200ML','6','1','1109009',16.00,'275','475',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000448','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1397,'RANFERON CAPSULES 30S','6','1','1109010',16.00,'11.634','21',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000449','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1398,'RECARTIX CAPS 30S','6','1','1109026',16.00,'42.667','73.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000450','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1399,'REGENOVEX CAPSULES 30S','6','1','1109058',16.00,'3499.72','6019.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000451','pcs','Inventory','VATABLE','0',NULL,0),(1400,'RELCER GEL 180ML','6','1','1109067',16.00,'283.91','475',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000452','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1401,'REMIDIN MOUTHWASH 100ML','6','1','1109072',16.00,'218.08','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000453','pcs','Inventory','VATABLE','0',NULL,0),(1402,'RHINATHIOL INFANT SYRUP 125ML','6','1','1109252',16.00,'290.407','490',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000454','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1403,'RHINATHIOL WITH PROMETHAZINE 125ML','6','1','1109253',16.00,'292.01','495',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000455','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1404,'RHIZIN 5MG/5ML SYRUP 60ML','10','1','1109258',16.00,'180.00','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000456','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1405,'RILIF MR TABS 20S','10','1','1109274',16.00,'26.25','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,57.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000457','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1406,'RILIF PLUS TABS 30S','10','1','1109275',16.00,'15.733','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000458','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1407,'RILIF SR 200MG TABS 30S','10','1','1109276',16.00,'27.076','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000459','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1408,'RIVOTRIL 2MG TABS 30S','10','1','1109295',16.00,'26.652','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,35.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000460','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1409,'ROBITUSSIN DRY COUGH 100ML','6','1','1109305',16.00,'530','915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000461','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1410,'ROZAVEL 10MG TABS 30S','11','1','1109343',16.00,'48.698','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000462','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1411,'ROZAVEL 5MG TABS 30S','11','1','1109344',16.00,'38.266','68',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000463','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1412,'SALBUTAMOL 4MG TABS 100S','11','1','1109388',16.00,'0.79','2',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,53.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000464','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1413,'SATROGYL 300MG TABS 30S','10','1','1109430',16.00,'32','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000465','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1414,'SAVLON ANTISEPTIC LIQUID 75ML','6','1','1109442',16.00,'99.76','179.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000466','pcs','Inventory','VATABLE','0',NULL,0),(1415,'SCABION CREAM 20GM','10','1','1109446',16.00,'97.46','170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000467','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1416,'SCOTTS EMULSION ORANGE 100ML','6','1','1109525',16.00,'324.169','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000468','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1417,'SCOTTS EMULSION ORANGE 200ML.','6','1','1109526',16.00,'624.245','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000469','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1418,'SCOTTS EMULSION REGULAR 200ML','6','1','1109528',16.00,'624.245','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000470','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1419,'SECZOLE DS 1GM TABS','10','1','1109590',16.00,'70','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000471','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1420,'SELSUN SHAMPOO 100ML','12','1','1109607',16.00,'719.2','1230.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000472','pcs','Inventory','VATABLE','0',NULL,0),(1421,'SENNA NATURAL LAXATIVE TABS 50S','6','1','1109609',16.00,'2.7','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000473','pcs','Inventory','EXEMPTED','0','0039.11.82',0),(1422,'SEPTRIN FORTE DS 960MG 10S','10','1','1109646',16.00,'39.848','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000474','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1423,'SEVEN SEAS COD LIVER OIL 100ML','6','1','1109671',16.00,'370.6','598',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000475','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1424,'SEVEN SEAS ONE A DAY CAPS 60S','6','1','1109685',16.00,'1079.75','1775',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000476','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1425,'SILVEREX CREAM 10GM','10','1','1109734',16.00,'76','135',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000477','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1426,'SILVEREX CREAM 25GM','10','1','1109735',16.00,'142','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000478','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1427,'SIMPLE REPLENISHING RICH MOIST. 125ML','9','1','1109803',16.00,'747.8984','1130.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000479','pcs','Inventory','VATABLE','0',NULL,0),(1428,'SIMPLE SOOTHING FACIAL TONER 200ML','9','1','1109812',16.00,'671.9996','1025.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000480','pcs','Inventory','VATABLE','0',NULL,0),(1429,'SINUTAB ND TABLETS','6','1','1109845',16.00,'620','1070',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000481','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(1430,'SNICKERS BAR 50G','12','1','1109947',16.00,'91.205','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000482','pcs','Inventory','VATABLE','0',NULL,0),(1431,'SOLVIN PLUS EXPECTORANT 120ML','6','1','1109985',16.00,'259.00','450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000483','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1432,'SOLVIN PLUS TABS 100S','10','1','1109987',16.00,'9.25','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,52.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000484','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1433,'SONATEC MOUTHWASH 250ML','12','1','1109994',16.00,'172.956','285.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000485','pcs','Inventory','VATABLE','0',NULL,0),(1434,'STERILE GLOVES 7.5','10','1','1110103',16.00,'27.84','45.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000486','pcs','Inventory','VATABLE','0',NULL,0),(1435,'STERON 5MG TABS 100S','10','1','1110109',16.00,'16.732','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,91.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000487','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(1436,'STREPSILS ORANGE/VITAMIN C 36S','6','1','1110152',16.00,'690','1210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000488','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(1437,'SUBSYDE-DR 100MG CAPS 10S','10','1','1110166',16.00,'24.338','41',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,19.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000489','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1438,'SUDOCREAM 60GM','12','1','1110180',16.00,'440.8','754.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000490','pcs','Inventory','VATABLE','0',NULL,0),(1439,'SURGICAL SPIRIT 100ML','6','1','1110256',16.00,'40','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000491','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1440,'SYLATE 500mg TABS 18S','11','1','1110291',16.00,'65.278','121',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,15.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000492','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1441,'SYMBICORT TURBUHALER 160/4.5UG -120DOSES','11','1','1110292',16.00,'678.125','1190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000493','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1442,'SYSTANE EYE DROPS 15ML','10','1','1110304',16.00,'1190','1990',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000494','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1443,'SYSTANE ULTRA EYE DROPS','10','1','1110305',16.00,'1408','2340',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000495','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1444,'TAGERA FORTE 1GM 2S','10','1','1110317',16.00,'47.00','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,9.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000496','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1445,'TAMOXIFEN 20MG TABS 30S','11','1','1110322',16.00,'10.74','21',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000497','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1446,'TEARS NATURALE II','6','1','1110365',16.00,'573.75','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000498','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1447,'TELMI H 80/12.5mg TABS 30S','11','1','1110382',16.00,'60.567','107',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000499','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1448,'TENORETIC 100/25MG TABS 28S','11','1','1110416',16.00,'60.566','106',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000500','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1449,'TENORMIN 50MG TABS 28S','11','1','1110420',16.00,'34.764','62',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000501','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1450,'TETRACYCLINE EYE OINTMENT','10','1','1110436',16.00,'33.00','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000502','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1451,'TINIDAZOLE 500MG TABS 4s','10','1','1110479',16.00,'3.00','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000503','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1452,'TIXYLIX TODDLER SYRUP 3MTHS -5 YRS','6','1','1110549',16.00,'600','1035',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000504','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1453,'TOBRADEX EYE DROPS','10','1','1110550',16.00,'663','1125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000505','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1454,'TODAY PREMIUM PESSARIES','10','1','1110554',16.00,'110','190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000506','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1455,'TOUCH & GO TOOTHACHE SOLUTION','6','1','1110589',16.00,'180','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000507','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1456,'TRAMAL 100MG TABS 30S','10','1','1110600',16.00,'135.12','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000508','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1457,'TRAMED 500/250MG TABS 30S','11','1','1110602',16.00,'38.85','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000509','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1458,'TRAVOCORT CREAM 15GM','10','1','1110617',16.00,'678','1120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000510','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1459,'TRES ORIX FORTE CAPS 20S','6','1','1110620',16.00,'28.75','50',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000511','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1460,'TRES ORIX FORTE SYRUP 100ML','6','1','1110621',16.00,'450','780',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000512','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1461,'TRES ORIX FORTE SYRUP 250ML','6','1','1110622',16.00,'645','1110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000513','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1462,'TRICOHIST EXPECTORANT 100ML','6','1','1110631',16.00,'130','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000514','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1463,'TRIMEX DIABETIC EXPECTORANT 100ML','6','1','1110639',16.00,'136.5','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000515','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1464,'TRIMEX EXPECTORANT ADULT 100ML','6','1','1110640',16.00,'105.00','180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000516','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1465,'TRIMEX MUCOLYTIC SYRUP 100ML','6','1','1110641',16.00,'52.5','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000517','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1466,'TRIMEX PAEDIATRIC 100ML','6','1','1110642',16.00,'105','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000518','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1467,'TRIOKIT TABS 4 (COMBIKIT)','10','1','1110648',16.00,'623.00','1045',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000519','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1468,'TRUST CONDOMS 24S','6','1','1110677',16.00,'23.49','41.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,9.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000520','pcs','Inventory','VATABLE','0',NULL,0),(1469,'TRUST CONDOMS STUDDED 24S','6','1','1110678',16.00,'37.50666667','64.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,32.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000521','pcs','Inventory','VATABLE','0',NULL,0),(1470,'TUSPEL PLUS SYRUP 100ML','6','1','1110698',16.00,'137.06','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000522','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1471,'TUSPEL SYRUP 100ML','6','1','1110699',16.00,'121','210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000523','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1472,'TUSPRESS SYRUP 100ML','6','1','1110700',16.00,'136.17','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000524','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1473,'UNIBROL 250MG TABS 24S','10','1','1110842',16.00,'26.25','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,24.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000525','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1474,'UNIBROL 125MG/5ML SYRUP','10','1','1110843',16.00,'248.063','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000526','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1475,'UNISTEN HC CREAM 20G','10','1','1110853',16.00,'105','180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000527','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1476,'UNIVIR 400MG TABS 10s','10','1','1110858',16.00,'33.075','56',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000528','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1477,'UNIVIR CREAM 10GM','10','1','1110859',16.00,'123.28','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000529','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1478,'VALIUM 5MG TABS 25S','10','1','1110981',16.00,'20.045','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000530','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1479,'VASELINE LIP THERAPY TIN (ALOE) 20G','9','1','1111002',16.00,'185.6','334.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000531','pcs','Inventory','VATABLE','0',NULL,0),(1480,'VASELINE LIP THERAPY TIN ( ORIGINAL) 20G','9','1','1111004',16.00,'185.6','334.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000532','pcs','Inventory','VATABLE','0',NULL,0),(1481,'VASELINE LIP THERAPY TIN (ROSY LIPS)','9','1','1111006',16.00,'185.6','334.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000533','pcs','Inventory','VATABLE','0',NULL,0),(1482,'VDM-KIT','10','1','1111018',16.00,'507.3','865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000534','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1483,'VENTOLIN EVOHALER*200DOSES','11','1','1111069',16.00,'232','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000535','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1484,'VERMOX MEBENDAZOLE 100MG TABS 6S','6','1','1111079',16.00,'482.4','825',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000536','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1485,'VERMOX MEBENDAZOLE 500MG TABS 1S','6','1','1111080',16.00,'482.4','825',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000537','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1486,'VIAGRA 100MG TABS 4S','11','1','1111093',16.00,'687.262','1235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000538','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1487,'VICKS INHALER UK','6','1','1111105',16.00,'285','500',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000539','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1488,'VICKS SINEX MICROMIST NASAL SPRAY 15ML','6','1','1111108',16.00,'560','965',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000540','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1489,'VICKS VAPO RUB JAR 25GM','6','1','1111114',16.00,'395','660',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000541','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1490,'VISCID GEL 200ML','6','1','1111138',16.00,'166','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000542','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1491,'VISINE EYE DROPS 15ML','6','1','1111139',16.00,'720','1205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000543','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1492,'VOLINI GEL 30G','6','1','1111287',16.00,'200','340',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000544','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1493,'VOLTAREN GEL 50G','6','1','1111293',16.00,'463.408','790',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000545','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1494,'VOLTAREN R 100MG TABS 100S','10','1','1111295',16.00,'49.95','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,163.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000546','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1495,'VOLTAREN SR 75MG TABS 30S','10','1','1111296',16.00,'74.007','124',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000547','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1496,'VOLTFAST 50MG SATCHETS 9S','10','1','1111301',16.00,'67.5','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000548','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1497,'WARFARIN 5MG TABLETS 28S','11','1','1111311',16.00,'2.5','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000549','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1498,'WELLKID MULTIVITAMIN LIQ 4-12YRS 150ML','6','1','1111345',16.00,'998.00','1670',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000550','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1499,'WELLMAN 50+ TABLETS *30S','6','1','1111347',16.00,'1008','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000551','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1500,'WELLWOMAN 50+ TABLETS','6','1','1111352',16.00,'1008','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000552','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1501,'WISDOM DENTAL FLOSS 100M','12','1','1111378',16.00,'249.516','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000553','pcs','Inventory','VATABLE','0',NULL,0),(1502,'WOODWARDS GRIPE WATER 100ML','6','1','1111392',16.00,'98.00','170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000554','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1503,'WOW GAUZE BANDAGES 3 12S','6','1','1111399',16.00,'5','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000555','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1504,'XALATAN DROPS','11','1','1111417',16.00,'1960.94','3455',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000556','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1505,'XANAX 0.5MG TABS 30S','10','1','1111419',16.00,'24.678','43',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000557','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1506,'XATRAL 10MG TABS 30S','11','1','1111423',16.00,'84.833','146',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000558','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1507,'XTRADERM CREAM 20GM','10','1','1111429',16.00,'127.88','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000559','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1508,'XYLO-MEPHA ADULT XYLOMETAZOLINE NASAL SPRAY0.1% 10ML','6','1','1111435',16.00,'627.9','1080',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000560','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1509,'XYZAL 5MG TABS 30S','10','1','1111438',16.00,'64.833','109',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000561','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1510,'XYZAL SYRUP 75ML','10','1','1111439',16.00,'652','1110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000562','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1511,'ZECUF HERBAL COUGH SYRUP 100ML','6','1','1111474',16.00,'132','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000563','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1512,'ZECUF LOZENGES HERBAL RASBERRY','6','1','1111476',16.00,'176.32','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000564','pcs','Inventory','VATABLE','0',NULL,0),(1513,'ZEDEX SYRUP 100ML','6','1','1111483',16.00,'136','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000565','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1514,'ZEFCOLIN COUGH SYRUP 100ML','6','1','1111486',16.00,'228.96','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000566','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1515,'ZENTEL 400MG TABLETS 1S','6','1','1111489',16.00,'149.5','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000567','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1516,'ZENTEL SUSPENSION 20ML','6','1','1111490',16.00,'149.50','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000568','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1517,'ZINNAT 500MG TABLETS 10S','10','1','1111531',16.00,'121.92','190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,16.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000569','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1518,'ZINNAT SUSP. 125MG/5ML 50ML','10','1','1111533',16.00,'619.10','1035',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000570','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1519,'ZINNAT SUSP. 250MG/5ML 50ML','10','1','1111534',16.00,'1083.6','1845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000571','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1520,'ZOVIRAX CREAM 2GM','10','1','1111567',16.00,'1004','1680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000572','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1521,'ZUPRICIN OINTMENT 15GM','10','1','1111570',16.00,'444.11','656.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000573','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1522,'ZYLORIC 300MG TABS 28S','11','1','1111574',16.00,'64.43','95.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000574','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1523,'ZYNCET 10MG TABS 50S','10','1','1111576',16.00,'3.06','5.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,78.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000575','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1524,'ZYNCET SYRUP 60ML','10','1','1111577',16.00,'112.66','166.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000576','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1525,'ZYRTAL MR TABLETS 20S','10','1','1111585',16.00,'28.12','42.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000577','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1526,'ZYRTEC CETRIZINE 10MG TABLETS 30S','10','1','1111587',16.00,'55.97','83.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,43.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000578','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1527,'BECLOMIN OINTMENT 15GM','10','1','1111596',16.00,'120','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000579','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1528,'STREPSILS EXTRA STRENGTH B/CURRANT 24 S','6','1','1111820',16.00,'690','1175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000580','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1529,'ROBIDOM SR 20/30MG CAPS 30S','10','1','1111843',16.00,'58.667','97',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000581','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1530,'PEPTO BISMOL PEPPERMINT TABS 24S','6','1','1111878',16.00,'750','1300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000582','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1531,'ANUSOL PLUS HC SUPPOSITORIES 12S','6','1','1111886',16.00,'60','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000583','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1532,'ANTHISAN BITE AND STING CREAM 20GM','6','1','1111944',16.00,'455','785',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000584','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1533,'KAMAGRA ORAL JELLY SATCHETS','10','1','1112097',16.00,'68.286','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000585','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1534,'NEURO FORTE TABS 20S','10','1','1112419',16.00,'11.9','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000586','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1535,'NEOPEPTINE CAPS 10S','6','1','1112570',16.00,'29.75','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000587','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1536,'VASELINE LIP THERAPY TIN (COCOA BUTTER) 20G','9','1','1112641',16.00,'185.6','334.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000588','pcs','Inventory','VATABLE','0',NULL,0),(1537,'NEXIUM 10MG SACHETS 28S','11','1','1112653',16.00,'125.742','221',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000589','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1538,'DABORAL 125MG/5ML SYRUP 60 ML','10','1','1112811',16.00,'205','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000590','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1539,'ANIMAL PARADE KIDS MULTIVITAMIN 90S','6','1','1112899',16.00,'1625','2795',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000591','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1540,'ANIMAL PARADE KIDS IMMUNE BOOSTER 90S','6','1','1112904',16.00,'1400','2410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000592','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1541,'WOODWARDS GRIPE WATER ALCOHOL AND SUGAR FREE 150ML','6','1','1112968',16.00,'715','1230',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000593','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1542,'SENSODYNE RAPID ACTION TOOTHPASTE 75ML','12','1','1113193',16.00,'460.47128','614.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000594','pcs','Inventory','VATABLE','0',NULL,0),(1543,'ASOMEX LT 2.5/50MG TABS 60S','11','1','1113207',16.00,'38.25','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000595','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1544,'SUNDOWN VITAMIN E 400IU SOFTGELS 100S','6','1','1113553',16.00,'1350.00','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000596','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1545,'ONDEM MD 8MG TABS 10S','10','1','1113896',16.00,'82.5','138',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000597','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1546,'STREPSILS HONEY & LEMON LOZ 24S UK','6','1','1113918',16.00,'630','1105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000598','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1547,'ZERODOL P 100MG TABS 30S','10','1','1114026',16.00,'26.23','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000599','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1548,'KAMAGRA 100MG TABS 4S','10','1','1114178',16.00,'56.75','95',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000600','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1549,'KAMAGRA 50MG TABS 4S','10','1','1114179',16.00,'46.50','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000601','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1550,'SAWA POWER CAPSULES 450MG','6','1','1114222',16.00,'712.53','1182',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000602','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1551,'PHYTORAL OINTMENT 15GMS','10','1','1114236',16.00,'243.1','410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000603','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1552,'BANEOCIN OINTMENT 20GM','10','1','1114242',16.00,'198','335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000604','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1553,'SUNDOWN BIOTIN 5000MCG 60S','6','1','1114246',16.00,'1125','1915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000605','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1554,'SUNDOWN CALMAGZINC 100S','6','1','1114247',16.00,'1138.5','1940',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000606','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1555,'ALWAYS ULTRA LONG 8S','12','1','1114636',16.00,'92.03','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000607','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(1556,'SULPHUR OINTMENT 25G','10','1','1114657',16.00,'18','33',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000608','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1557,'TINCTURE OF IODINE 100ML','6','1','1114664',16.00,'88','160',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000609','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1558,'POLYGYNAX PESSARIES 6S','10','1','1114673',16.00,'68.5','114',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000610','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1559,'DUREX PLAY (CHERRY)LUBRICATING GEL 50ML','6','1','1114710',16.00,'582.7028','1000.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000611','pcs','Inventory','VATABLE','0',NULL,0),(1560,'OPSITE POST-OP DRESSING 9.5CM*8.5CM','6','1','1114821',16.00,'175','303',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000612','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1561,'WELLWOMAN PLUS OMEGA 3-6-9','6','1','1114846',16.00,'1373','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000613','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1562,'KALUMA PAIN BALM 9ML','6','1','1114871',16.00,'70','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000614','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1563,'BECOACTIN SYRUP 200ML','6','1','1114874',16.00,'218','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000615','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1564,'L-MONTUS 5/10MG TABS 10S','10','1','1114875',16.00,'40.7','68',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000616','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1565,'COSVATE CREAM 15GMS','10','1','1115056',16.00,'147','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000617','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1566,'ALWAYS MAXI THICK EXTRA LONG 7S','12','1','1115227',16.00,'92.113','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000618','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(1567,'NEUROCARE TABS 30S','10','1','1115331',16.00,'41.499','69',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000619','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1568,'CURAM 625MG TABS 14S','10','1','1115380',16.00,'21.86','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,24.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000620','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1569,'AMLONG 5MG TABS 30S','11','1','1115512',16.00,'12.828','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000621','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1570,'ZYRTEC SYRUP 75ML','10','1','1115569',16.00,'434.00','674.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000622','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1571,'ALWAYS MAXI THICK LONG 7S','12','1','1115573',16.00,'92.114','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000623','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(1572,'AMLOZAAR 50MG TABS 30S','11','1','1115613',16.00,'44.352','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000624','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1573,'CENTRUM WOMAN 30S','6','1','1115699',16.00,'1050','1755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000625','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1574,'DIAMICRON MR 60MG 30S','11','1','1115770',16.00,'32.66','66',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000626','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1575,'ETORIX 90MG TABLETS 30S','10','1','1115783',16.00,'43.267','72',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000627','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1576,'WISDOM INTERDENTAL BRUSHES 0.45MM 5S','12','1','1115894',16.00,'328.86','530.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000628','pcs','Inventory','VATABLE','0',NULL,0),(1577,'DISPOSABLE NEEDLES G23* 25MM 100S','10','1','1116013',16.00,'1.2','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000629','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(1578,'XARELTO 20MG TABS 14S','11','1','1116104',16.00,'125.357','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000630','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1579,'MICROGYNON FE PILLS 28S','10','1','1116236',16.00,'72.225','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000631','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(1580,'SURGICAL BLADE SIZE 22','10','1','1116272',16.00,'3.8','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000632','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(1581,'DIPROSALIC OINTMENT 30GM','10','1','1116714',16.00,'794.5','1330',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000633','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1582,'AMLONG 10MG TABS 30S','11','1','1116845',16.00,'22.428','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,21.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000634','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1583,'NIZORAL SHAMPOO 120ML','10','1','1116854',16.00,'995','1655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000635','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1584,'FLUCONA DENK 150MG CAPS','10','1','1117002',16.00,'152.22','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000636','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1585,'ETORIX 60MG TABS 40S','10','1','1117053',16.00,'28.85','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,56.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000637','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1586,'MICROFINE G32 (4MM) PEN NEEDLES 100S','11','1','1117056',16.00,'21.6','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,29.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000638','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(1587,'ANDOLEX C SPRAY 30ML','6','1','1117142',16.00,'983.68','1695.00012',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000639','pcs','Inventory','VATABLE','0',NULL,0),(1588,'CARTIL OMEGA CAPS 30S','6','1','1117148',16.00,'46.668','81',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000640','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1589,'PANADOL ELIXIR SYRUP CHILD 5-12 YEARS 100ML','6','1','1117153',16.00,'307.84','500',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000641','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1590,'MAXIPLAST PLASTER FABRIC 100S','6','1','1117183',16.00,'1.25','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,125.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000642','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1591,'NOGLUC 5MG TABS 112S','11','1','1117186',16.00,'3.537','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,79.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000643','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1592,'COARTEM 80MG/480MG 6S','10','1','1117209',16.00,'324.7','545',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000644','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(1593,'ORELOX 200MG TABS 10S','10','1','1117252',16.00,'140.868','236',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000645','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1594,'NEBILONG AM 5/5mg TABS 30S','11','1','1117294',16.00,'46.36','82',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,52.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000646','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1595,'CENTRUM 50+ WOMAN 30S','6','1','1117539',16.00,'1200','2005',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000647','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1596,'FEXET 120MG TABS 20S','10','1','1117562',16.00,'28.7','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000648','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1597,'FEXET 180MG TABS 20S','10','1','1117563',16.00,'34.3','57',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000649','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1598,'OMICAP 20MG CAPS 100S','11','1','1117629',16.00,'1.15','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000650','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1599,'AMOKLAVIN 625MG TABS 14S','10','1','1117634',16.00,'36.09','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000651','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1600,'KOTEX ULTRA THIN PADS NORMAL 8S','12','1','1117814',16.00,'91.875','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000652','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(1601,'EPIMAX BABY & JUNIOR JAR 400G','12','1','1117819',16.00,'1566','2665.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000653','pcs','Inventory','VATABLE','0',NULL,0),(1602,'STREPSILS LOZ HONEY & LEMON 100S','6','1','1117962',16.00,'8.74','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,162.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000654','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1603,'LIPITOR 10MG TABS 30S','11','1','1118126',16.00,'61.393','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000655','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1604,'ESOME 40MG CAPS 14S','11','1','1118327',16.00,'29.65','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,24.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000656','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1605,'ZAART-H 50/12.5MG TABS 30S','11','1','1118346',16.00,'26.895','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000657','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1606,'DIRACIP M TABS','10','1','1118347',16.00,'5.567','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000658','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1607,'DIRACIP M DS TABS 15S','10','1','1118350',16.00,'11.13','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,41.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000659','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1608,'DIRACIP M SUSPENSION 100ML','10','1','1118351',16.00,'167','280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000660','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1609,'ESOMAC 20MG TABS 28S','11','1','1118361',16.00,'21.77','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000661','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1610,'ESOMAC 40MG TABS 14S','11','1','1118387',16.00,'43.54','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,37.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000662','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1611,'MS TELLME PREGNANCY TEST KIT CASSETTE','6','1','1118436',16.00,'99.992','174.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000663','pcs','Inventory','VATABLE','0',NULL,0),(1612,'MS TELLME PREGNANCY TEST KIT MIDSTREAM','6','1','1118437',16.00,'199.9956','349.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000664','pcs','Inventory','VATABLE','0',NULL,0),(1613,'CEFASYN 500MG TABS 10S','10','1','1118445',16.00,'22.618','116',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000665','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1614,'AMOXYCILLIN 500MG CAPS 100S','10','1','1118494',16.00,'5.20','11',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,155.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000666','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1615,'STREPSILS REGULAR 100S','6','1','1118553',16.00,'8.74','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000667','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1616,'YOU C 1000 ISOTONIC LEMON WATER 500ML','6','1','1118696',16.00,'157.296','255.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000668','pcs','Inventory','VATABLE','0',NULL,0),(1617,'YOU C 1000 ISOTONIC ORANGE WATER 500ML','6','1','1118697',16.00,'157.296','255.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000669','pcs','Inventory','VATABLE','0',NULL,0),(1618,'YOU C VITAMIN ORANGE DRINK 140ML','6','1','1118698',16.00,'92.3012','149.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000670','pcs','Inventory','VATABLE','0',NULL,0),(1619,'YOU C VITAMIN LEMON DRINK 140ML','6','1','1118699',16.00,'92.3012','149.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000671','pcs','Inventory','VATABLE','0',NULL,0),(1620,'EROVITA HCG PREGNANCY STRIPS 100S','6','1','1118701',16.00,'9.86','17.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,98.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000672','pcs','Inventory','VATABLE','0',NULL,0),(1621,'ARCOXIA 90MG TABS 7S','10','1','1119829',16.00,'116.499','195',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000673','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1622,'KOMBIGLYZE 5/1000MG TABS 30S','11','1','1120052',16.00,'144.31','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000674','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1623,'GLYCERINE IDEAL 200ML','9','1','1120108',16.00,'197.2','304.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000675','pcs','Inventory','VATABLE','0',NULL,0),(1624,'FUCOL 150MG','10','1','1120177',16.00,'184','310',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000676','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1625,'DICLOFENAC GEL 20GMS','10','1','1120719',16.00,'20.22','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000677','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1626,'ESOME 20MG CAPS 14S','11','1','1120740',16.00,'18.2','33',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000678','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1627,'GAVISCON LIQUID PEPPERMINT 200ML','6','1','1120746',16.00,'534.33','900',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000679','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1628,'VOLTAREN R 100MG TABS 30S','10','1','1120748',16.00,'77.152','128',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000680','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1629,'EFFERALGAN 1000MG TABLETS 8S','6','1','1120749',16.00,'238.00','415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000681','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1630,'DUREX CONDOMS PLEASUREMAX ME','6','1','1120778',16.00,'203','354.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000682','pcs','Inventory','VATABLE','0',NULL,0),(1631,'D3 60K 60 000IU 4S','10','1','1120824',16.00,'65','110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000683','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1632,'FULCOVER 100MG TABS 10S','10','1','1120854',16.00,'85.5','148',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,17.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000684','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1633,'CEZINE 10MG TABS 10S','10','1','1120866',16.00,'17.25','30',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000685','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1634,'PANTOCID D 40MG TABS 30S','11','1','1120871',16.00,'32.016','56.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000686','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1635,'CIPLADON 1000MG EFF TABLETS 8S','6','1','1120877',16.00,'34.57','58',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,33.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000687','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1636,'ACNEVIT ANTI ACNE SERUM 30ML','9','1','1120885',16.00,'1505.00024','2560.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000688','pcs','Inventory','VATABLE','0',NULL,0),(1637,'CIALIS 5MG TABS 28S','11','1','1120906',16.00,'214.643','383',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000689','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1638,'CIALIS 20MG TABS 4S','11','1','1120998',16.00,'855.5','1560',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000690','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1639,'AMLOZAAR H 50/5MG TABS 30S','11','1','1121421',16.00,'49.919','88',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,35.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000691','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1640,'ACCURATE MALARIA TEST KIT 1S ( WITH BUFFER)','6','1','1121601',16.00,'185.6','319.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000692','pcs','Inventory','VATABLE','0',NULL,0),(1641,'PREGNACARE TABS 30S','6','1','1122065',16.00,'487','815',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000693','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1642,'BISOPROLOL 2.5MG TABS 28S','11','1','1122091',16.00,'3.143','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000694','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1643,'WISDOM FRESH EFFECT FRESH BREATH SPRAY 12.5ML','12','1','1122475',16.00,'294.408','475.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000695','pcs','Inventory','VATABLE','0',NULL,0),(1644,'LRP PIGMENTCLAR SERUM 30ml','9','1','1122500',16.00,'3440.81056','5539.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000696','pcs','Inventory','VATABLE','0',NULL,0),(1645,'LRP EFFACLAR FOAMING CLEANSER 200ML','9','1','1122504',16.00,'1433.93284','2309.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000697','pcs','Inventory','VATABLE','0',NULL,0),(1646,'LRP ANTHELIOS SHAKA FLUID FACE SPF50+ 50ML','9','1','1122529',16.00,'2006.7072','3094.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000698','pcs','Inventory','VATABLE','0',NULL,0),(1647,'LRP ANTHELIOS SHAKA SPRAY SPF50+ 200ML','9','1','1122530',16.00,'2424.26312','3904.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000699','pcs','Inventory','VATABLE','0',NULL,0),(1648,'FISHERMANS FRIEND LOZS 25G H/LEMON','6','1','1122615',16.00,'145','249.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000700','pcs','Inventory','VATABLE','0','0039.11.20',0),(1649,'ETORIX 120MG TABLETS 20S','10','1','1123030',16.00,'57.7','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000701','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1650,'CLOFORT 250MG/5ML SUSP 75ML','10','1','1123312',16.00,'935.3','1610',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000702','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1651,'TALGENTIS 20MG TABS 4S','10','1','1123314',16.00,'110.75','190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000703','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1652,'OTOBIOTIC EAR DROPS','10','1','1123380',16.00,'249.2','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000704','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1653,'LYCLEAR DERMAL CREAM 30 GM','9','1','1123387',16.00,'1250','2200',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000705','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1654,'RISEK 40MG SATCHETS 10S','11','1','1123388',16.00,'34.3','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000706','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1655,'TALGENTIS 5MG TABS 30S','10','1','1123395',16.00,'70.13','117',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,88.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000707','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1656,'NEBILET 5/12.5MG TABS 28S','11','1','1123464',16.00,'63.714','112',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000708','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1657,'NIVEA ROLL-ON WOMEN INVIS B & W CLEAR 50ML','12','1','1123532',16.00,'375.00016','494.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000709','pcs','Inventory','VATABLE','0',NULL,0),(1658,'FEMELLE COTTON BUDS 100S','12','1','1123536',16.00,'104.4','179.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000710','pcs','Inventory','VATABLE','0',NULL,0),(1659,'SUNDOWN ESSENTIAL ZINC 50MG CAPLETS 100S','6','1','1123805',16.00,'1125','1915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000711','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1660,'BLACK OPAL EVEN TRUE OIL FREE MOISTURIZER SPF 15','9','1','1124298',16.00,'1505.00024','2575.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000712','pcs','Inventory','VATABLE','0',NULL,0),(1661,'QUEST VITAMIN C EFFERVESCENT 1000MG 20S','6','1','1124302',16.00,'510','855',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000713','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(1662,'MENTHOL PLUS BALM 30ML','6','1','1124421',16.00,'95','164',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000714','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1663,'PRINCIPLE IMMUNE BOOST + EFF 20S','6','1','1124427',16.00,'634.5','1100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000715','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(1664,'GOFEN 400MG TABS 60S','6','1','1124454',16.00,'17.82','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,73.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000716','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1665,'SKYN INTENSE FEL DOTTED NON LATEX CONDOM','6','1','1125014',16.00,'401.2092','690.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000717','pcs','Inventory','VATABLE','0',NULL,0),(1666,'GOOD MORNING LUNG TONIC 60ML','6','1','1125044',16.00,'75.00','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000718','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1667,'CARTIL FORTE CAPSULES 30S','6','1','1125064',16.00,'40.20','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000719','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1668,'BELL BRAND NAIL CLIPPER L/S','12','1','1125084',16.00,'232','409.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000720','pcs','Inventory','VATABLE','0',NULL,0),(1669,'EUTHYROX 50MCG TABS 30S','11','1','1125092',16.00,'4.90','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000721','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(1670,'EUTHYROX 100MCG TABS 30S','11','1','1125093',16.00,'7.767','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000722','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(1671,'EROVITA MIDSTREAM PREGNANCY KIT','6','1','1125372',16.00,'197.2','339.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000723','pcs','Inventory','VATABLE','0',NULL,0),(1672,'MEDISIGN BLOOD GLUCOSE STRIPS 50S','11','1','1125382',16.00,'1393.12','2345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000724','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(1673,'TRUST CONDOMS RIBBED 24S','6','1','1125451',16.00,'37.5086','64.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,22.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000725','pcs','Inventory','VATABLE','0',NULL,0),(1674,'ACNES SCAR CARE 12G','9','1','1125462',16.00,'343.36','569.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000726','pcs','Inventory','VATABLE','0',NULL,0),(1675,'ACNES VIT C C10 SERUM 15ML','9','1','1125465',16.00,'1654.45','2729.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000727','pcs','Inventory','VATABLE','0',NULL,0),(1676,'ACNES TREATMENT 3PC PACK','9','1','1125466',16.00,'1154.2812','1919.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000728','pcs','Inventory','VATABLE','0',NULL,0),(1677,'DUREX CONDOMS FETHERLITE ULTRA 3S','6','1','1125627',16.00,'241.9876','454.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000729','pcs','Inventory','VATABLE','0',NULL,0),(1678,'ONE TOUCH SELECT PLUS STRIPS','11','1','1125767',16.00,'1357.2','2285.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000730','pcs','Inventory','VATABLE','0',NULL,0),(1679,'DUREX CONDOMS FETHERLITE ULTRA 12S','6','1','1125816',16.00,'902.2596','1554.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000731','pcs','Inventory','VATABLE','0',NULL,0),(1680,'JANUMET 50/500MG 56S','11','1','1125819',16.00,'60.714','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000732','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1681,'AMLODENK 5MG TABS 50S','11','1','1125909',16.00,'11.4','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000733','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1682,'ZULU TABS 10S','10','1','1125951',16.00,'22.80','34.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000734','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1683,'N/AID PRO-30 MAX 30 billion CAPS 30S','6','1','1125986',16.00,'2160','3675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000735','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1684,'MAALOX SATCHETS LEMON 20S','6','1','1125989',16.00,'433.982','750',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000736','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1685,'N/AID CHEW VITAMIN C 500MG TABLETS sugar free 50S','6','1','1126407',16.00,'1080','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000737','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(1686,'CEZINE 10MG/5ML 60MLS','10','1','1126415',16.00,'173.25','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000738','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1687,'PAROL SYRUP 100MLS','6','1','1126418',16.00,'165','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000739','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1688,'LEVOBACT 500MG TABS 10S','10','1','1126427',16.00,'22.202','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000740','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1689,'SEVEN SEAS MULTIVITAMIN SYRUP 100ML','6','1','1126521',16.00,'491.3','810',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000741','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1690,'GLEMONT L 10/5MG TABS 7S','10','1','1127044',16.00,'76.54','128',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000742','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1691,'ZULU MR TABLETS 20S','10','1','1127074',16.00,'29.68','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000743','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1692,'N/AID D3 5000IU TABS 60S','6','1','1127085',16.00,'1282.50','2185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000744','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1693,'QUEST OAD ENERGY B+C TABS 30s','6','1','1127104',16.00,'415','695',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000745','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1694,'QUEST OAD IMMUNE C TABS 30s','6','1','1127106',16.00,'470','785',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000746','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1695,'QUEST OAD MULTI TABS 30s','6','1','1127110',16.00,'480','810',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000747','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1696,'MENTHOL PLUS BALM 9ML JAR','6','1','1127115',16.00,'41','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000748','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1697,'M $ MS PEANUT 45G','12','1','1127371',16.00,'129.195','200.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,22.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000749','pcs','Inventory','VATABLE','0',NULL,0),(1698,'FAY WET WIPES PURE 10S','12','1','1127382',16.00,'52.45636','89.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000750','pcs','Inventory','VATABLE','0',NULL,0),(1699,'FAY POCKET HANKIES 10S','12','1','1127384',16.00,'16.80724','29.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000751','pcs','Inventory','VATABLE','0',NULL,0),(1700,'WELLKID IMMUNE CHEWABLE TABS 30S','6','1','1127444',16.00,'1045.46','1925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000752','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1701,'ARCOXIA 90MG TABS 28S','10','1','1127589',16.00,'116.439','198',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000753','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1702,'BIC J5MINI ASSORTED LIGHTER','12','1','1127629',16.00,'59.58224','95.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,13.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000754','pcs','Inventory','VATABLE','0',NULL,0),(1703,'PREVA CEREBROPROTEIN HYDROSYLATE 90MG CAPS 30S','10','1','1127876',16.00,'74.52','129',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000755','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1704,'ACCU-CHEK ACTIVE STRIPS 50S','11','1','1128055',16.00,'1450','2439.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000756','pcs','Inventory','VATABLE','0',NULL,0),(1705,'ANUSOL SUPPOSITORIES 12S','6','1','1128129',16.00,'38.66','68',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000757','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1706,'ULTRA VIT C PLUS ZINC EFF 20S','6','1','1128183',16.00,'568.50','955',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000758','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(1707,'LRP EFFACLAR DUO(+) SPF30 40ml','9','1','1128242',16.00,'1993.6978','3209.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000759','pcs','Inventory','VATABLE','0',NULL,0),(1708,'ORAQUICK HIV SELF TEST..','10','1','1128305',16.00,'382.6666667','660.05392',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000760','pcs','Inventory','VATABLE','0',NULL,0),(1709,'DESLORADENK 5MG TABLETS 10S','10','1','1128321',16.00,'20.894','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000761','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1710,'KY JELLY 82GM','6','1','1128322',16.00,'700','1190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000762','pcs','Inventory','EXEMPTED','0','0039.11.41',0),(1711,'WELLBABY MULTIVITAMIN LIQUID 4M-4YRS 150ML','6','1','1128430',16.00,'998.00','1670',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000763','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1712,'ZITHROMAX 500MG TABS 3S','10','1','1128436',16.00,'1140','1930',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000764','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1713,'VAGI PLUS PESSARIES','10','1','1128438',16.00,'685.3','1170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000765','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1714,'DAY AND NIGHT NURSE CAPS 24S','6','1','1128442',16.00,'1250','2025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000766','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(1715,'SUNDOWN CALCIUM 600 PLUS TABS 120S','6','1','1128446',16.00,'1350','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000767','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1716,'SUNDOWN MELATONIN 3MG TABS 60S','6','1','1128453',16.00,'1080','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000768','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1717,'FLAGENTYL 500MG TABS 4S','10','1','1128476',16.00,'407.62','675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000769','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1718,'GALVUS MET 50/500MG TABS 30S','11','1','1128481',16.00,'86.10','149',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,49.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000770','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1719,'MAALOX PLUS TABS 40S','6','1','1128483',16.00,'16.794','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000771','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1720,'GALVUS MET 50/1000MG TABS 30S','11','1','1128486',16.00,'86.105','149',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000772','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1721,'BEECHAMS COLD & FLU HOT BLACKCURRANT 5S.','6','1','1128756',16.00,'348','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000773','pcs','Inventory','VATABLE','0',NULL,0),(1722,'HYDROCHLOROTHIAZIDE 25MG TABS 100S','11','1','1129047',16.00,'1.464','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,66.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000774','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1723,'ORBIT COMPLETE STRIPS PEPPERMINT 12s (14x12x32) - SUGAR FREE','12','1','1129057',16.00,'149.9996','230.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000775','pcs','Inventory','VATABLE','0',NULL,0),(1724,'ORBIT COMPLETE STRIPS STRAWBERRY 12s (14x12x32) - SUGAR FREE','12','1','1129058',16.00,'149.9996','230.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000776','pcs','Inventory','VATABLE','0',NULL,0),(1725,'ORBIT COMPLETE STRIPS RASBERRY 12s (14x12x32) - SUGAR FREE','12','1','1129059',16.00,'149.9996','230.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000777','pcs','Inventory','VATABLE','0',NULL,0),(1726,'ORBIT WILD STRAWBERRY 10s (20x30x10)','12','1','1129061',16.00,'52.50044','85.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000778','pcs','Inventory','VATABLE','0',NULL,0),(1727,'ORBIT BUBBLEMINT 10s (20x30x10)','12','1','1129063',16.00,'52.50044','85.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000779','pcs','Inventory','VATABLE','0',NULL,0),(1728,'ORBIT PEPPERMINT 10s (20x30x10)','12','1','1129064',16.00,'52.50044','85.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000780','pcs','Inventory','VATABLE','0',NULL,0),(1729,'SKITTLES BIGGER CANDY 38GM (1x14x38)- SUGAR COATED','12','1','1129067',16.00,'82.4992','130.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000781','pcs','Inventory','VATABLE','0',NULL,0),(1730,'KOTEX ULTRA THIN PADS SUPER 8s','12','1','1129079',16.00,'91.875','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000782','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(1731,'SKINS PERFORMANCE RING 1S','6','1','1129095',16.00,'490.0072','835.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000783','pcs','Inventory','VATABLE','0',NULL,0),(1732,'SKINS CONDOMS NATURAL 4S','6','1','1129106',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000784','pcs','Inventory','VATABLE','0',NULL,0),(1733,'SKINS CONDOMS ULTRA THIN 4S','6','1','1129107',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000785','pcs','Inventory','VATABLE','0',NULL,0),(1734,'GAVISCON DOUBLE ACTION TABLETS 24S','6','1','1129109',16.00,'750','1420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000786','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1735,'GAVISCON DOUBLE ACTION TABLETS 48S','6','1','1129110',16.00,'1200','2415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000787','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1736,'AVALIFE DAILY FLORA BALANCE CAPS 30S','6','1','1129111',16.00,'765','1325',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000788','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1737,'ACCU-CHEK INSTANT MACHINE','11','1','1129138',16.00,'0.0116','4160.0036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000789','pcs','Inventory','VATABLE','0',NULL,0),(1738,'FEMIPLAN PILLS 28S','10','1','1129160',16.00,'60.00','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000790','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(1739,'BIO HEALTH EXTRA ZINC 60S','6','1','1129317',16.00,'905','1540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000791','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1740,'APTAMIL BABY MILK 3 800GM','6','1','1129417',16.00,'2160.64964','2874.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000792','pcs','Inventory','VATABLE','0',NULL,0),(1741,'NIGHT NURSE LIQUID 160ML','6','1','1129439',16.00,'1130','1890',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000793','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(1742,'STEROPLAST FABRIC ASS 16S','6','1','1129496',16.00,'75','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000794','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1743,'STEROPLAST WASHPROOF ASS 16S','6','1','1129497',16.00,'75.00','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000795','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1744,'STEROPLAST CLEAR ASS 16S','6','1','1129498',16.00,'75','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000796','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1745,'ENO LEMON SACHETS 4S','6','1','1129499',16.00,'71.051','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000797','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1746,'CEOVIT TABS 250MG 200S','6','1','1129519',16.00,'4.785','11.50024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000798','pcs','Inventory','VATABLE','0',NULL,0),(1747,'MELCAM 7.5 TABLET 100S','10','1','1129522',16.00,'2.438','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,130.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000799','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1748,'MELCAM 15 TABLET 50S','10','1','1129523',16.00,'4.50','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,104.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000800','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1749,'LORATIN FAST 100S','10','1','1129524',16.00,'6','10.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,128.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000801','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1750,'NILACID SUSPENSION 200ML','6','1','1129530',16.00,'180','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000802','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1751,'OSMOLAX SOLUTION 200ML','6','1','1129532',16.00,'450','780',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000803','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1752,'AMBROX SYRUP 100ML','6','1','1129533',16.00,'131.25','230',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000804','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1753,'ADOVAS SYRUP 100ML','6','1','1129534',16.00,'170','300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000805','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1754,'ZIMAX 500 TABLET','10','1','1129538',16.00,'112.50','195',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000806','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1755,'SQUARE ZINC 20 TABLET 100S','6','1','1129561',16.00,'3.654','6.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,29.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000807','pcs','Inventory','VATABLE','0',NULL,0),(1756,'VISINE ALLERGY EYE DROPS 15ML','6','1','1129564',16.00,'1010','1690',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000808','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1757,'VALUPAK VITAMIN B COMPLEX TABS 60S','6','1','1129581',16.00,'200','350',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000809','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1758,'CANESPOR SOLUTION','10','1','1129603',16.00,'657.08','1125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000810','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1759,'ECOFREE PLUS 10S','10','1','1129605',16.00,'35.2','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000811','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1760,'LRP EFFACLAR DUO(+) 40ml','9','1','1129841',16.00,'1538.49524','2479.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000812','pcs','Inventory','VATABLE','0',NULL,0),(1761,'LRP EFFACLAR FOAM CLEANSER 400ml','9','1','1129843',16.00,'2118.30616','3264.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000813','pcs','Inventory','VATABLE','0',NULL,0),(1762,'LRP LIPIKAR SYNDET AP+ WASH 200ml','12','1','1129881',16.00,'1111.09092','1789.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000814','pcs','Inventory','VATABLE','0',NULL,0),(1763,'DISSENTEN 2MG 15S','6','1','1129899',16.00,'345','590',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000815','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1764,'BENYLIN EXPECTORANT 200ML','6','1','1129910',16.00,'450','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000816','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1765,'LENOR -72 TABS','10','1','1129921',16.00,'25','43',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000817','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(1766,'PAPERMINTS 24 STRIPS','12','1','1129979',16.00,'118.1112','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000818','pcs','Inventory','VATABLE','0',NULL,0),(1767,'AVALIFE FEMIFLORA CAPS 30S','6','1','1129983',16.00,'1360','2340',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000819','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1768,'NIVEA DEEP DEO ROLL ON FOR MEN 50ML','12','1','1130024',16.00,'375.00016','524.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000820','pcs','Inventory','VATABLE','0',NULL,0),(1769,'ONE TOUCH SELECT PLUS FLEX SYSTEM KIT-for exchange','11','1','1130041',16.00,'0.0116','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000821','pcs','Inventory','VATABLE','0',NULL,0),(1770,'METFORMIN HCL 500MG TABS 60S','11','1','1130049',16.00,'1.935','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000822','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1771,'VITAHEALTH COD LIVER OIL 100ML','6','1','1130057',16.00,'323','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000823','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1772,'VITAHEALTH COD LIVER OIL 500ML','6','1','1130059',16.00,'1466.25','2435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000824','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1773,'VITAHEALTH PURE FISH OIL CAPS 60S','6','1','1130060',16.00,'786.25','1315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000825','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1774,'VITAHEALTH JOINTCARE DAILY CAPS 30S','6','1','1130061',16.00,'1037','1725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000826','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1775,'FLEMING 457MG/5ML SUSP 70ML','10','1','1130080',16.00,'414.923','715',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000827','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1776,'FLEMING 1GM TABS 14S','10','1','1130081',16.00,'34.674','58',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000828','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1777,'N/AID ZINC PICOLINATE TABS 30S','6','1','1130091',16.00,'729','1240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000829','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1778,'DOVE SOAP GO -FRESH RESTORE 100G','12','1','1130159',16.00,'178.0716','279.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000830','pcs','Inventory','VATABLE','0',NULL,0),(1779,'ENO TABLETS 100S','6','1','1130178',16.00,'4.282','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000831','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1780,'GILLETTE BLUE 11 PLUS DISPOSABLES 3S','12','1','1130196',16.00,'135.05532','209.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000832','pcs','Inventory','VATABLE','0',NULL,0),(1781,'AQUAMIST WATER 300ML * 24s','6','1','1130232',16.00,'27.03','49.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,27.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000833','pcs','Inventory','VATABLE','0',NULL,0),(1782,'AQUAMIST WATER 500ML *24s','6','1','1130233',16.00,'35.19092','64.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,16.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000834','pcs','Inventory','VATABLE','0',NULL,0),(1783,'WELLTEEN HIM PLUS','6','1','1130236',16.00,'712','1190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000835','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1784,'AQUAMIST LEMON FLAVOURED WATER *12','6','1','1130271',16.00,'51.62812','89.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,13.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000836','pcs','Inventory','VATABLE','0',NULL,0),(1785,'AZITHRAX 500MG 3S','10','1','1130294',16.00,'293.22','495',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000837','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1786,'TRANDATE 200MG TABS 100S','11','1','1130481',16.00,'33.6','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000838','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1787,'TRANDATE 100MG TABS 100S','11','1','1130482',16.00,'28','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,16.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000839','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1788,'COLGATE T/BRUSH DOUBLE ACTION - STD','12','1','1130545',16.00,'51.098','74.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000840','pcs','Inventory','VATABLE','0',NULL,0),(1789,'COLGATE HERBAL T/PASTE 35G - ANTIBACTERIA','12','1','1130552',16.00,'58.41876','89.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000841','pcs','Inventory','VATABLE','0',NULL,0),(1790,'GRAMOCEF-O 400MG CAPS 10S','10','1','1130566',16.00,'79.6','133',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000842','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1791,'SWISS HERBAL LOZENGES EUCALYPTUS & MENTHOL 12S','6','1','1130592',16.00,'270','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000843','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1792,'SWISS HERBAL LOZENGES HONEY 12S','6','1','1130594',16.00,'270','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000844','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1793,'TREVIAMET 50/1000MG TABS 35S','11','1','1130635',16.00,'49.286','85',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000845','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1794,'LEMSIP CHESTY COUGH SYRUP 180ML','6','1','1130643',16.00,'1300','2175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000846','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1795,'TREVIAMET 50/500MG TABS 35S','11','1','1130666',16.00,'49.286','85',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,29.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000847','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1796,'MAALOX PLUS SUSPENSION 250ML','6','1','1130671',16.00,'527.99','910',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000848','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1797,'INVOLYN 408MG CAPS 10S','10','1','1130698',16.00,'209.15','360',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000849','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1798,'LRP EFFACLAR ACNE ROUTINE KIT -3 in 1','9','1','1130715',16.00,'2202.38296','3550.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000850','pcs','Inventory','VATABLE','0',NULL,0),(1799,'CLARIWIN TABS 500MG 10S','10','1','1130744',16.00,'24.211','42.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000851','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1800,'QUEST OAD MULTI CHEWABL KIDS 30S','6','1','1130907',16.00,'460','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000852','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1801,'BEUFLOX D EYE DROPS 5ML','10','1','1131008',16.00,'204','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000853','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1802,'DUREX PLAY WARMING 50ML','6','1','1131031',16.00,'586.4612','1000.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000854','pcs','Inventory','VATABLE','0',NULL,0),(1803,'GOODLIFE HAND SANITIZER 50ML','12','1','1131037',16.00,'58','119.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000855','pcs','Inventory','VATABLE','0',NULL,0),(1804,'CELABET TABS 30S','10','1','1131167',16.00,'11.17','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,25.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000856','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1805,'IBUPROFEN-DENK 400MGS 20S','6','1','1131190',16.00,'10','17',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000857','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1806,'FLUGONE EX 120ML','6','1','1131209',16.00,'194','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000858','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(1807,'MTM 100MG TABLETS 4S','10','1','1131240',16.00,'43','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000859','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1808,'MTM 50MG TABLETS 4S','10','1','1131241',16.00,'32.00','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000860','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1809,'EMPIGET 10MG 14S','11','1','1131254',16.00,'64.286','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000861','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1810,'STREPSILS HONEY AND LEMON 6S','6','1','1131259',16.00,'56.39','96.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000862','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1811,'STREPSILS REGULAR 6S','6','1','1131260',16.00,'56.39','96.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,13.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000863','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1812,'SMUGEL LUBRICATION GEL 50G','6','1','1131321',16.00,'200','350',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000864','pcs','Inventory','EXEMPTED','0','0039.11.41',0),(1813,'EPIMOL-B BABY & JUNIOR EMOLLIENT CREAM 400G','12','1','1131325',16.00,'1084.94452','1814.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000865','pcs','Inventory','VATABLE','0',NULL,0),(1814,'JAMIESON B6+B12 AND FOLIC ACID TABLETS 110S','6','1','1131342',16.00,'343.71','595',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000866','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1815,'JAMIESON ZINC LOZENGES HONEY LEMON 30S','6','1','1131354',16.00,'758.7','1305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000867','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1816,'JAMIESON COLD FIGHTER CHEWABLE TABLETS 30S','6','1','1131355',16.00,'633.1','1090',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000868','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(1817,'JAMIESON MULTI KIDS CHEWABLE TABLETS 60S','6','1','1131356',16.00,'1087.75','1875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000869','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1818,'CIPZICON 500MG TABS 10S','10','1','1131369',16.00,'7.5','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000870','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1819,'CLAVCON 625 MG TABS 14S','10','1','1131370',16.00,'17.857','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000871','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1820,'CONACE MR TABS 30S','10','1','1131371',16.00,'6.667','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000872','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1821,'CONZIT 500MG TABS 3S','10','1','1131376',16.00,'70','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000873','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1822,'ESOMCON 20MG TABS 28S','11','1','1131378',16.00,'7.143','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,31.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000874','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1823,'ESOMCON 4OMG TABS 14S','11','1','1131379',16.00,'14.286','27',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000875','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1824,'LRP LIPIKAR BAUME AP+M 400ml','12','1','1131399',16.00,'2376.30292','3684.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000876','pcs','Inventory','VATABLE','0',NULL,0),(1825,'NATURAL COTTONS MAXI PADS SUPER 10S','12','1','1131470',16.00,'463.5','705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000877','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(1826,'LIPITAS 10MG TABS 30S','11','1','1131480',16.00,'35.833','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000878','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1827,'NEALGYL 80MG ORODISPERSIBLE TABS 10S','10','1','1131489',16.00,'59.5','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000879','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1828,'CAL-C-VITA PLUS EFF TABLETS 10S','6','1','1131510',16.00,'326.7','565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000880','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(1829,'GOODLIFE HAND SANITIZER 500ML','12','1','1131535',16.00,'290','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000881','pcs','Inventory','VATABLE','0',NULL,0),(1830,'DIGEVA F SATCHETS 25s','6','1','1131571',16.00,'20.4','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000882','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1831,'LEPONEX 25MG 100S','10','1','1131578',16.00,'61.275','112.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000883','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1832,'NAT C VITAMIN C TABS 1000MG 30S','6','1','1131586',16.00,'820.75','1375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000884','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(1833,'IBUBROFEN DENK 400MG TABS 100S','6','1','1131589',16.00,'6.996','12.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,59.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000885','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1834,'IBUBROFEN DENK 600MG 20S','6','1','1131590',16.00,'16.482','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000886','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1835,'MEDIPHEN 400MG TABS 100S','6','1','1131748',16.00,'1.3','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,15.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000887','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1836,'PHARMAGENTACIN E/E DROPS 10ML','10','1','1131755',16.00,'21','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000888','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1837,'PHARMAPHENICOL EYE DROPS 10ML','10','1','1131764',16.00,'23','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000889','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1838,'PHARMADEXONE EYE DROPS 5ML','10','1','1131766',16.00,'81','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000890','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1839,'PHARMADEXNICOL EYE DROPS 5ML','10','1','1131769',16.00,'130','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000891','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1840,'PHARMADEXNEOCIN EYE/EAR DROPS 10ML','10','1','1131771',16.00,'88.2','150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000892','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1841,'PHARMASINE EYE DROPS 10ML','10','1','1131778',16.00,'207','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000893','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1842,'PHARMACROM EYE DROPS 10ML','10','1','1131779',16.00,'180','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000894','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1843,'BUSCOPAN PLUS TABS 40S','6','1','1131784',16.00,'31.032','50',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000895','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1844,'TAMEPYN TABS 20S','10','1','1131792',16.00,'10.8','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000896','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1845,'NAT C YUMMY GUMMIES 125MG 25S','6','1','1131797',16.00,'933','1450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000897','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1846,'QUEST OAD ZINC PLUS 15MG TABS 30S','6','1','1131802',16.00,'370','620',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000898','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1847,'COLFRESH GUM ICEMINT SUGARFREE 21G','12','1','1131859',16.00,'75.4','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000899','pcs','Inventory','VATABLE','0',NULL,0),(1848,'COLFRESH GUM SPEARMINT SUGARFREE 21G','12','1','1131860',16.00,'75.4','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000900','pcs','Inventory','VATABLE','0',NULL,0),(1849,'COLFRESH GUM WHITE SUGARFREE 21G','12','1','1131861',16.00,'75.4','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000901','pcs','Inventory','VATABLE','0',NULL,0),(1850,'COLFRESH GUM STRAWBERRY SUGARFREE 21G','12','1','1131862',16.00,'75.4','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000902','pcs','Inventory','VATABLE','0',NULL,0),(1851,'PYNSTOP TABS 20S','10','1','1131871',16.00,'13.384','24',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000903','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1852,'H&B VITAMIN C &ZINC ORANGE EFF 20S','6','1','1131907',16.00,'701.75','1210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000904','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(1853,'MAMALAIT GRANULES 100GM','6','1','1131921',16.00,'1183.2','2015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000905','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(1854,'NOVACLAV 625MG TABS 20S','10','1','1131927',16.00,'16.168','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000906','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1855,'DISPOSABLE KIDS 3PLY SURGICAL MASKS 50S','10','1','1131940',16.00,'6.4','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,51.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000907','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(1856,'JAMIESON ZINC 50MG 100 S','6','1','1131945',16.00,'1296.9','2235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000908','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1857,'QUEST OAD IMMUNE MULTI TABS 30S','6','1','1131954',16.00,'595','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000909','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1858,'APTAMIL BABY MILK 400GM 2','6','1','1132095',16.00,'1121.80004','1494.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000910','pcs','Inventory','VATABLE','0',NULL,0),(1859,'RHINAPHYTO 100ML','6','1','1132098',16.00,'348.154','585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000911','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1860,'MENTHODEX SUGAR FREE LOZENGES BLACKCURRANT 36S','6','1','1132101',16.00,'449.58','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000912','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1861,'AZIX 500MG TABS 3S','10','1','1132130',16.00,'383','655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000913','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1862,'BENYLIN 4 FLU 100ML','6','1','1132148',16.00,'342','585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000914','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1863,'DISPOSABLE 3PLY BLACK SURGICAL MASKS 50S','10','1','1132162',16.00,'7','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,68.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000915','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(1864,'BEROCCA PERFORMANCE EFF TABS ORANGE 20S','6','1','1132175',16.00,'724.5','1275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000916','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1865,'EMCON 0.75MG TABLETS','10','1','1132215',16.00,'29.00','55',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000917','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(1866,'PANADOL ACTIFAST SOLUBLE TABS 12S','6','1','1132216',16.00,'276','475',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000918','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1867,'KLEAR DECONGESTANT CAPSULES 10S','6','1','1132239',16.00,'20','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000919','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1868,'MAXIMMUNE CHEW TABS 30S','6','1','1132240',16.00,'720','1240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000920','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1869,'BENYLIN CHILD WET COUGH MUCUS RELIEF 100ML','6','1','1132317',16.00,'423','720',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000921','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1870,'GOODLIFE PURE PETROLEUM JELLY TUBE 50GM','9','1','1132323',16.00,'39.5908','74.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000922','pcs','Inventory','VATABLE','0',NULL,0),(1871,'GOODLIFE BABY PETROLEUM JELLY TUBE 100GM','12','1','1132324',16.00,'68.3588','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000923','pcs','Inventory','VATABLE','0',NULL,0),(1872,'GOODLIFE SANITIZER SPRAY WITH MOISTURIZER 120ML','12','1','1132328',16.00,'97.44','219.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000924','pcs','Inventory','VATABLE','0',NULL,0),(1873,'AZICIP 500MG TABS 3S','10','1','1132339',16.00,'190.01','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000925','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1874,'MEGYL 400MG TABS 100S','10','1','1132455',16.00,'1.5','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000926','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1875,'KN95 MEDICAL PROTECTIVE FACE MASK 25S','10','1','1132547',16.00,'84','180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000927','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(1876,'ELYMOX SUSP 125MG/5ML ML','10','1','1132556',16.00,'50','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000928','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1877,'AXYLIN SUSP 100ML','10','1','1132562',16.00,'65','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000929','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1878,'CLOTRINE CREAM 20GM','10','1','1132564',16.00,'31.5','55',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000930','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1879,'ACINET 457MG/5ML SUSP 100ML','10','1','1132568',16.00,'220','385',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000931','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1880,'DOMADOL 50MG TABS 10S','10','1','1132578',16.00,'10.519','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000932','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1881,'GIFOL TABS 100S','11','1','1132588',16.00,'2.12','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000933','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1882,'CURAMOL SUSPENSION 60ML','6','1','1132696',16.00,'23','42',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000934','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1883,'BACTROBAN 2% OINTMENT 15G','10','1','1132971',16.00,'405.5','755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000935','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1884,'DUREX CONDOMS FEEL','6','1','1133235',16.00,'185.6','319.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000936','pcs','Inventory','VATABLE','0',NULL,0),(1885,'PANADOL BABY & INFANT SUSP 60ML','6','1','1133291',16.00,'145.892','235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000937','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1886,'CONCEIVE PLUS FERTILITY SUPPORT CAPSULES FOR WOMEN 60S','6','1','1133351',16.00,'3160','5435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000938','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1887,'STEROPLAST BLISTER CUSHIONS 4s','6','1','1133387',16.00,'160.00','270',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000939','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1888,'STEROPLAST LARGE PLASTERS 4s','6','1','1133388',16.00,'110','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000940','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(1889,'MYLAN HIV SELF TEST KIT','10','1','1133464',16.00,'464.5','810.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000941','pcs','Inventory','VATABLE','0',NULL,0),(1890,'THOMPSON VIT E 265MG(400 IU) 30S','6','1','1133519',16.00,'839','1410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000942','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1891,'SUNDOWN MELATONIN 3MG TABS 120S','6','1','1133546',16.00,'1620','2760',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000943','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1892,'DIATESSE XPER GLUCOSE-KETONE METER','11','1','1133548',16.00,'1955.421','3540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000944','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(1893,'DIATESSE XPER GLUCOSE TEST STRIPS 50S','11','1','1133549',16.00,'1564.803','2835',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000945','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(1894,'DIATESSE B-KETONE TEST STRIPS 10S','11','1','1133550',16.00,'2011.896','3645',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000946','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(1895,'QUEST OAD MULTI CHEWABLE KIDS + CHEWABLE KIDS PROBIOTIC GIFT','6','1','1133580',16.00,'460','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000947','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1896,'GOFEN 200MG SOFTGEL CAPS 60S','6','1','1133883',16.00,'11.983','22',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,110.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000948','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1897,'NEUROCARE PLUS CAPS 30S.','6','1','1100001',16.00,'53.00','89',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,230.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000001','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1898,'ABZ SUSPENSION 10ML','6','1','1100064',16.00,'34','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000002','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1899,'ABZ TABLETS','6','1','1100065',16.00,'22.00','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000003','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1900,'ACLOTAS 100MG TABS 50S','10','1','1100088',16.00,'28.1','47',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000004','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1901,'ACTIFED WET COUGH&COLD SYRUP 100ML','6','1','1100112',16.00,'348','595',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000005','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(1902,'ACYCLOVIR 5% CREAM 2GMS','10','1','1100141',16.00,'210','360',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000006','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1903,'ACYCLOVIR 200MG DENK TABS 25S','10','1','1100143',16.00,'40.00','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,75.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000007','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1904,'ACYCLOVIR 400MG TABS 56S','10','1','1100144',16.00,'9.643','17',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000008','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1905,'ADALAT LA 30MG TABS 30S','11','1','1100149',16.00,'65.761','116',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,18.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000009','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1906,'ADALAT RETARD 20MG TABS 60S','11','1','1100150',16.00,'49.719','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,73.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000010','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1907,'ADOL 125MG SUPPOSITORIES 10S','10','1','1100164',16.00,'29.23','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,21.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000011','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1908,'AERIUS 5MG TABS 30S','10','1','1100184',16.00,'71.3','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,27.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000012','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1909,'AERIUS SYRUP 150ML','10','1','1100185',16.00,'1025.36','1695',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000013','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1910,'AIRTAL 100MG TABS 40S','10','1','1100200',16.00,'70.25','119',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,34.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000014','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1911,'ALCOHOL SWABS 100S','11','1','1100223',16.00,'1.1','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000015','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1912,'ALDACTONE 25MG TABS 100S','11','1','1100225',16.00,'18.068','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,56.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000016','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1913,'ALLOPURINOL 300MG TABS 28S','11','1','1100251',16.00,'7.143','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000017','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1914,'ALOE PURA ALOE VERA JUICE 500ML','6','1','1100280',16.00,'1107.8','1910.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000018','pcs','Inventory','VATABLE','0',NULL,0),(1915,'AMARYL 2MG TABS 30S','11','1','1100326',16.00,'38.805','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000019','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1916,'AMLOSUN 10MG TABS 30S','11','1','1100349',16.00,'40.17','71',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,120.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000020','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1917,'AMLOVAS 5MG TABS 30S','11','1','1100353',16.00,'17.878','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000021','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1918,'AMOXIL 500MG CAPS 100S','10','1','1100358',16.00,'16.09','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000022','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1919,'AMOXIL SYRUP 125MG/5ML 100ML','10','1','1100361',16.00,'244.5','410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000023','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1920,'AMOXYCILLIN 500MG CAPS 500S','10','1','1100364',16.00,'0.76','1.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000024','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1921,'AMPICLOX 500MG CAPS 100S','10','1','1100369',16.00,'15.85','26.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,120.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000025','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1922,'ANDOLEX C MOUTH WASH 200ML','6','1','1100383',16.00,'1148.4','1980.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000026','pcs','Inventory','VATABLE','0',NULL,0),(1923,'ANUSOL OINTMENT 25GM','6','1','1100410',16.00,'465','800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000027','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1924,'ANUSOL PLUS HC OINTMENT 15GM','6','1','1100411',16.00,'685','1180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000028','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1925,'APPEVITE SYRUP 100ML','6','1','1100420',16.00,'158.4','275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000029','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1926,'ARTEQUICK 62.5/375mg TABS 4S','10','1','1100512',16.00,'455','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000030','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(1927,'ASCARD 75MG TABLETS','11','1','1100522',16.00,'99.9','175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000031','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1928,'ASCORIL EXPECTORANT 100ML','6','1','1100530',16.00,'191.35','330',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000032','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1929,'ASCORIL EXPECTORANT 200ML','6','1','1100531',16.00,'332.86','580',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000033','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1930,'ASHTONS TEETHING POWDER IMPORTED 20S','6','1','1100534',16.00,'20','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,39.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000034','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1931,'ASOMEX 2.5MG 30S','11','1','1100535',16.00,'46.267','81',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000035','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1932,'ATACAND 8MG TABS 28S','11','1','1100560',16.00,'65.23','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,63.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000036','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1933,'ATENOLOL 100MG TABS 28S','11','1','1100568',16.00,'4.29','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,84.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000037','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1934,'ATENOLOL 25MG TABS 28S','11','1','1100569',16.00,'5','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,42.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000038','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1935,'ATRIZIN 5MG/5ML SYRUP 60ML','10','1','1100589',16.00,'97.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000039','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1936,'AUGMENTIN 1GM TABLETS 14S','10','1','1100598',16.00,'134.929','215',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,26.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000040','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1937,'AUGMENTIN 375MG TABS 20S','10','1','1100599',16.00,'59.1','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000041','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1938,'AUGMENTIN 625MG TABS 14S','10','1','1100600',16.00,'82','119',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000042','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1939,'AUGMENTIN 228MG/5ML SUSP - 70ML','10','1','1100602',16.00,'506','840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000043','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1940,'AUGMENTIN SYRUP 457MG/5ML - 70ML','10','1','1100603',16.00,'788.2','1335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000044','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(1941,'AVAMYS 27.5MCG NASAL SPRAY 120 DOSES','10','1','1100615',16.00,'738','1255',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000045','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1942,'AZTOR 10MG 50S','11','1','1100701',16.00,'28.5','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000046','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1943,'AZTOR 20MG 50S','11','1','1100702',16.00,'38.24','68',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000047','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1944,'BACTIFLOX 500MG 10S','10','1','1100825',16.00,'149.684','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000048','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1945,'BALLET MOSQUITO REPELLANT LOTION 130ML','9','1','1100926',16.00,'151.99944','194.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000049','pcs','Inventory','VATABLE','0',NULL,0),(1946,'BAYER ASPIRIN CARDIO 100MG 30S','11','1','1100970',16.00,'156.114','270',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000050','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1947,'NAIL CUTTER BABY BELLS','12','1','1101023',16.00,'174','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000051','pcs','Inventory','VATABLE','0',NULL,0),(1948,'NAIL CUTTER SIZE M BELL','12','1','1101025',16.00,'220.4','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000052','pcs','Inventory','VATABLE','0',NULL,0),(1949,'BENYLIN 4 FLU 200ML','6','1','1101045',16.00,'624','1065',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000053','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1950,'BENYLIN COLD & FLU MAX STRENGTH CAPS 16S','6','1','1101047',16.00,'550','950',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000054','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(1951,'BENYLIN DRY COUGH 100ML','6','1','1101053',16.00,'449.1','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000055','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1952,'BENYLIN EXPECTORANT 100ML','6','1','1101054',16.00,'449.1','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000056','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1953,'BENYLIN PAEDIATRIC 100ML','6','1','1101056',16.00,'449.1','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000057','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1954,'BENYLIN WITH CODEINE 100ML','10','1','1101057',16.00,'629.05','1065',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000058','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1955,'BETA GRIPE WATER 100ML','6','1','1101073',16.00,'80','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000059','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1956,'BETADINE ANTISEPTIC SOLN 125ML','6','1','1101081',16.00,'357.28','614.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000060','pcs','Inventory','VATABLE','0',NULL,0),(1957,'BETADINE MOUTHWASH 125ML','6','1','1101083',16.00,'458.2','780.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000061','pcs','Inventory','VATABLE','0',NULL,0),(1958,'BETADINE MOUTHWASH 250ML','6','1','1101084',16.00,'690','1174.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000062','pcs','Inventory','VATABLE','0',NULL,0),(1959,'BETADINE SPRAY POWDER 55G','6','1','1101086',16.00,'522','890',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000063','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1960,'BETASON CREAM 15GM','10','1','1101107',16.00,'32.60','55',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000064','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1961,'BETASON G OINT 15GM','10','1','1101108',16.00,'71.5','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000065','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1962,'BETASON S OINTMENT 15GM','10','1','1101111',16.00,'73','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000066','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(1963,'BIO OIL 200ML','9','1','1101210',16.00,'1208.15044','1995.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000067','pcs','Inventory','VATABLE','0',NULL,0),(1964,'BISODOL TABLETS','6','1','1101224',16.00,'581.4','1005',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000068','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1965,'BISOLVON LINCTUS 200ML','6','1','1101227',16.00,'470.704','815',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000069','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1966,'BLISTEX INTENSIVE MOISTURISER','9','1','1101290',16.00,'345.0072','614.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000070','pcs','Inventory','VATABLE','0',NULL,0),(1967,'BONIUM TABLETS','6','1','1101345',16.00,'12.9','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000071','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1968,'BONNISAN SYRUP 120ML','6','1','1101350',16.00,'259.44','450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000072','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1969,'BOUNTY CHOCOLATE 57G','12','1','1101465',16.00,'98.79','164.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,34.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000073','pcs','Inventory','VATABLE','0',NULL,0),(1970,'BRUFEN SUSP 100MG/5ML - 100ML','6','1','1101526',16.00,'447.175','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000074','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1971,'BRUSTAN TABS 10S','6','1','1101552',16.00,'8.64','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,38.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000075','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1972,'BULKOT B CREAM 15GM','10','1','1101594',16.00,'52','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000076','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1973,'BULKOT CREAM 15GM','10','1','1101595',16.00,'21.85','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000077','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1974,'BULKOT MIXI CREAM 20GM','10','1','1101597',16.00,'116.00','195',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000078','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1975,'BUMP PATROL 7 DAY TREATMENT SOLUTION 65ML','12','1','1101609',16.00,'433.84','744.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000079','pcs','Inventory','VATABLE','0',NULL,0),(1976,'BUSCOPAN 10MG TABS 50S','10','1','1101638',16.00,'15.5','27',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000080','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1977,'CACHNERVE CAPS 30S','10','1','1101712',16.00,'38.333','64',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000081','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(1978,'CADIPHEN SYRUP 100ML','6','1','1101726',16.00,'100','175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000082','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1979,'CADISTIN EXPECTORANT 100ML','6','1','1101727',16.00,'105','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000083','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1980,'CALAMINE LOTION 100ML','9','1','1101746',16.00,'32.48','57.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000084','pcs','Inventory','VATABLE','0',NULL,0),(1981,'CALPOL SUSPENSION 100ML','6','1','1101771',16.00,'271.31','435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000085','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1982,'CALPOL SUSPENSION 60ML','6','1','1101772',16.00,'183.559','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000086','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1983,'CANDID B CREAM 15GM','10','1','1101813',16.00,'163.76','280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000087','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1984,'CANDID B CREAM 30GM','10','1','1101814',16.00,'317.76','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000088','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1985,'CANDID B LOTION','10','1','1101815',16.00,'247.42','430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000089','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1986,'CANDID CREAM 20GM','10','1','1101816',16.00,'219.83','370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000090','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1987,'CANDID EAR DROPS','10','1','1101817',16.00,'140.62','235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000091','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1988,'CANDID LOTION 20ML','10','1','1101818',16.00,'166','285',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000092','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1989,'CANDID MOUTH PAINT','10','1','1101819',16.00,'159.31','270',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000093','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1990,'CANDID POWDER','6','1','1101820',16.00,'210.04','370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000094','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1991,'CANDID T V SUSPENSION','10','1','1101822',16.00,'332.00','560',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000095','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1992,'CANDID V 1 PESSARIES','10','1','1101823',16.00,'238.57','410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000096','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1993,'CANDID V 3 PESSARIES','10','1','1101824',16.00,'299.04','500',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000097','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1994,'CANDID VAGINAL GEL','10','1','1101827',16.00,'317.76','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000098','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1995,'CANDIFEM VAGINAL PESSARIES 6S','10','1','1101828',16.00,'264','460',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000099','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1996,'CANESTEN CREAM 20GM','10','1','1101849',16.00,'585','980',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000100','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(1997,'CARCA 25MG TABS 30S','11','1','1101870',16.00,'56.367','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000101','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1998,'CARCA 12.5MG TABS 30S','11','1','1101872',16.00,'41.667','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000102','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(1999,'CARDINOL 25MG TABS 28S','11','1','1101873',16.00,'3.628','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,56.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000103','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2000,'CARDINOL 100MG TABS 28S','11','1','1101874',16.00,'6.929','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000104','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2001,'CARDISPRIN 75MG TABS 28S','11','1','1101878',16.00,'57.14','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000105','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2002,'CARNATION CORN CAPS 5S','6','1','1101911',16.00,'240.00','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000106','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2003,'CASTOR OIL 100ML','6','1','1101923',16.00,'81.2','140.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000107','pcs','Inventory','VATABLE','0',NULL,0),(2004,'CATAFLAM 50MG TABS 100S','10','1','1101925',16.00,'31.48','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,118.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000108','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2005,'CATOXYMAG SUSPENSION 200ML','6','1','1101929',16.00,'180','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000109','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2006,'CAUSTIC PENCIL 95%','10','1','1101931',16.00,'268.424','449.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000110','pcs','Inventory','VATABLE','0','0039.11.28',0),(2007,'CENTRUM ADVANCE 60S','6','1','1101969',16.00,'1400','2340',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000111','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2008,'CEPROLEN D EYE/EAR DROPS 5ML','10','1','1101986',16.00,'241','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000112','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2009,'CEPROLEN E/E DROPS','10','1','1101987',16.00,'160.00','270',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000113','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2010,'CERUMOL EAR DROPS','6','1','1101993',16.00,'370.00','640',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000114','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2011,'CETAMOL 500MG TABS 100S','6','1','1101997',16.00,'1.155','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,99.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000115','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2012,'CETAMOL SYRUP 100ML','6','1','1101998',16.00,'54.6','95',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000116','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2013,'CETRIZET 10MG TABS 100S','10','1','1102002',16.00,'20.10','34.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,118.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000117','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2014,'CETRIZET D TABS 100S','10','1','1102003',16.00,'23','38.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,29.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000118','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2015,'CHARCOAL TABS ACTIVATED 100S (LOCAL)','6','1','1102025',16.00,'3.9','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,297.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000119','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2016,'CARMEX LIPBALM STRAWBERRY TUBE 10G','9','1','1102059',16.00,'348','620.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000120','pcs','Inventory','VATABLE','0',NULL,0),(2017,'CIALIS 20MG TABS 2S','11','1','1102117',16.00,'923.50','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000121','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2018,'CIPRO DENK 500MG TABS 10S','10','1','1102141',16.00,'51.589','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,31.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000122','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2019,'CIPROINTA 500MG TABS 10S','10','1','1102142',16.00,'15.73','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000123','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2020,'CLARINASE TABS 14S','10','1','1102170',16.00,'47.875','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000124','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2021,'CLARITYNE 10MG TABS 30S','10','1','1102187',16.00,'48.60','74',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,43.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000125','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2022,'CLARITYNE 5MG/5ML SYRUP 100ML','10','1','1102188',16.00,'476.685','800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000126','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2023,'CLAVULIN 457MG/5ML - 70ML','10','1','1102203',16.00,'613.285','1055',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000127','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2024,'CLAVULIN 625MG TABS 14S','10','1','1102204',16.00,'64.5','109',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000128','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2025,'CLOB B CREAM 15GM','10','1','1102278',16.00,'67.5','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000129','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2026,'CLOB CREAM 15GM','10','1','1102279',16.00,'41','75',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000130','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2027,'CLOBEDERM OINTMENT 15GM','10','1','1102280',16.00,'96','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000131','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2028,'CLOPILET 75MG TABS 30S','11','1','1102286',16.00,'50','92',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000132','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2029,'CLOPIXOL INJ ACUPHASE 100MG/2ML','10','1','1102289',16.00,'1774','3055',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000133','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2030,'CLOZOLE B CREAM15GM','10','1','1102298',16.00,'66.10','100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000134','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2031,'CLOZOLE CREAM','10','1','1102299',16.00,'16.80','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000135','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2032,'CO-DIOVAN 80/12.5MG TABS 28S','11','1','1102326',16.00,'78.443','138',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000136','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2033,'COLDCAP DAY AND NIGHT CAPS 24S','6','1','1102331',16.00,'139.65','245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000137','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2034,'COLDCAP DAY TIME 12S','6','1','1102332',16.00,'67.20','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000138','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2035,'COLDCAP NIGHT TIME 12S','6','1','1102333',16.00,'67.20','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000139','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2036,'COLDCAP ORIGINAL 12S','6','1','1102334',16.00,'78.75','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000140','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2037,'COLDCAP ORIGINAL 96S','6','1','1102335',16.00,'5.95','10.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000141','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2038,'COLDCAP SYRUP 100ML','6','1','1102336',16.00,'71.40','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000142','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2039,'COLGATE KIDS T/PASTE SMILES 50ML (2-5YRS)','12','1','1102348',16.00,'232','345.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000143','pcs','Inventory','VATABLE','0',NULL,0),(2040,'CO-MICARDIS 80MG TABS 28S','11','1','1102428',16.00,'93.857','163',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000144','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2041,'CONCOR 10MG TABS 30S','11','1','1102438',16.00,'44.00','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,46.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000145','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2042,'CONCOR 5MG TABS 30S','11','1','1102439',16.00,'20.83','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,102.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000146','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2043,'CONTEMPO CONDOMS ROUGH RIDER 3S','6','1','1102450',16.00,'212.5','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000147','pcs','Inventory','VATABLE','0',NULL,0),(2044,'COSATRIM DS TABS 100S','10','1','1102501',16.00,'4.21','7.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,113.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000148','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2045,'COSVATE GM CREAM 15GM','10','1','1102523',16.00,'171','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000149','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2046,'COTTON WOOL 100GM','12','1','1102539',16.00,'62','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000150','pcs','Inventory','EXEMPTED','0','0039.11.33',0),(2047,'COTTON WOOL 400GM','12','1','1102540',16.00,'220','425',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000151','pcs','Inventory','EXEMPTED','0','0039.11.33',0),(2048,'COTTON WOOL 50GM','12','1','1102541',16.00,'30','75',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000152','pcs','Inventory','EXEMPTED','0','0039.11.33',0),(2049,'COVERAM 10/5MG TABS 30S','11','1','1102553',16.00,'67.941','119',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,26.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000153','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2050,'COX B 200MG CAPS 50S','10','1','1102558',16.00,'24.75','41',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,45.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000154','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2051,'CREPE BANDAGE 3IN 7.5CM ELASTOLITE','6','1','1102574',16.00,'18','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000155','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2052,'CREPE BANDAGE 4IN 10CM ELASTOLITE','6','1','1102575',16.00,'22','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000156','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2053,'CREPE BANDAGE 6IN 15CM ELASTOLITE','6','1','1102576',16.00,'30','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000157','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2054,'CYCLOPAM SUSPENSION 30ML','6','1','1102642',16.00,'154','265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000158','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2055,'CYCLOPAM TABLETS 20S','10','1','1102643',16.00,'8.989','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,80.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000159','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2056,'CYPON 100ML','10','1','1102648',16.00,'148.00','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000160','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2057,'CYPON 200ML','10','1','1102649',16.00,'259.00','430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000161','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2058,'DAFLON 500MG TABS 30S','11','1','1102669',16.00,'17.41','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,65.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000162','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2059,'DAKTARIN CREAM 20GM','10','1','1102672',16.00,'341','575',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000163','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2060,'DALACIN C 300MG TABS 16S','10','1','1102676',16.00,'90.75','151',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000164','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2061,'DALACIN T SOLUTION','10','1','1102678',16.00,'806','1395',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000165','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2062,'DEEP FREEZE GEL 35G','6','1','1102718',16.00,'263.00','440',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000166','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2063,'DEEP FREEZE SPRAY 150ML','6','1','1102719',16.00,'572','965',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000167','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2064,'DEEP HEAT CREAM 15GM','6','1','1102721',16.00,'177.00','300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000168','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2065,'DEEP HEAT CREAM 35GM','6','1','1102722',16.00,'195','330',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000169','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2066,'DEEP HEAT CREAM 67GM','6','1','1102723',16.00,'339.00','570',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000170','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2067,'DEEP HEAT RUB 100GM','6','1','1102725',16.00,'420.00','705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000171','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2068,'DEEP HEAT SPRAY','6','1','1102726',16.00,'455','760',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000172','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2069,'DEEP RELIEF GEL 30GM','6','1','1102729',16.00,'501.3','840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000173','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2070,'DEEP RELIEF GEL 50GM','6','1','1102730',16.00,'662.00','1115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000174','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2071,'DELASED CHESTY COUGH 100ML','6','1','1102732',16.00,'94.50','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000175','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2072,'DELASED DRY COUGH 100ML','6','1','1102734',16.00,'94.50','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000176','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2073,'DELASED DRY NON DROWSY 100ML','6','1','1102735',16.00,'94.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000177','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2074,'DERMIDEX CREAM','10','1','1102786',16.00,'59.85','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000178','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2075,'DETTOL LIQUID 125ML','6','1','1102808',16.00,'272.2752','454.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000179','pcs','Inventory','VATABLE','0',NULL,0),(2076,'DETTOL LIQUID 250ML','6','1','1102809',16.00,'527.394','884.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000180','pcs','Inventory','VATABLE','0',NULL,0),(2077,'DETTOL LIQUID 500ML','6','1','1102810',16.00,'1066.04','1784.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000181','pcs','Inventory','VATABLE','0',NULL,0),(2078,'DETTOL LIQUID 50ML','6','1','1102811',16.00,'101.9872','174.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000182','pcs','Inventory','VATABLE','0',NULL,0),(2079,'DEXA-G EYE DROPS 5ML','10','1','1102815',16.00,'384.93','645',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000183','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2080,'DIALIN CAPS 2MG','6','1','1102841',16.00,'26.25','47',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000184','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2081,'DIAMOX 250MG TABS 100S','11','1','1102844',16.00,'29.25','51.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,121.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000185','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2082,'DICLODENK 100MG TABS 100S','10','1','1102862',16.00,'9.37','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,123.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000186','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2083,'DICLOGENTA EYE DROPS 5ML','10','1','1102865',16.00,'182.45','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000187','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2084,'DICLOMOL EC 50MG TABS 100S','10','1','1102866',16.00,'1','2',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,117.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000188','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2085,'DICLOMOL GEL 20GM','10','1','1102867',16.00,'154','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000189','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2086,'DICLOMOL PLUS TABS 100S','10','1','1102868',16.00,'10.665','18',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000190','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2087,'DICLOMOL SR 100MG TABS 100S','10','1','1102869',16.00,'3.53','6.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000191','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2088,'DIFLUCAN 150MG CAPS','10','1','1102880',16.00,'751.18','1280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000192','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2089,'DISFLATYL TABS 100S','6','1','1102947',16.00,'17','30',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000193','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2090,'DISPOSABLE 3PLY SURGICAL MASKS 50S','10','1','1102953',16.00,'3.2','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000194','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(2091,'DISPOSABLE SYRINGES 20ML','10','1','1102957',16.00,'8.7','17',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000195','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(2092,'DISPOSABLE SYRINGES 5ML','10','1','1102960',16.00,'4','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,139.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000196','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(2093,'DOLOACT MR TABS 100S','10','1','1102992',16.00,'16.501','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000197','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2094,'DOLOMED MR TABS 100S','10','1','1102996',16.00,'12.25','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,90.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000198','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2095,'DOXYCYCLINE 100MG 50S U.K','10','1','1103057',16.00,'16.50','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,70.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000199','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2096,'DOXYCYCLINE CAPSULES *100S LOCAL','10','1','1103059',16.00,'3','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,16.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000200','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2097,'DULCOLAX 5MG TABS 30S','10','1','1103150',16.00,'9.075','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000201','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2098,'DULCOLAX 10MG SUPPOSITORIES 12S','10','1','1103151',16.00,'52.5','89',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000202','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2099,'DUPHALAC LIQUID 200ML','6','1','1103172',16.00,'603.40','1030',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000203','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2100,'DUPHASTON 10MG TABS 20S','10','1','1103174',16.00,'57.05','98',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000204','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2101,'DUREX CONDOMS ELITE','6','1','1103191',16.00,'179.8','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000205','pcs','Inventory','VATABLE','0',NULL,0),(2102,'DUREX CONDOMS EXTRA SAFE','6','1','1103192',16.00,'199.636','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000206','pcs','Inventory','VATABLE','0',NULL,0),(2103,'DUREX CONDOMS FETHERLITE 3S','6','1','1103193',16.00,'199.636','349.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000207','pcs','Inventory','VATABLE','0',NULL,0),(2104,'DUREX CONDOMS PERFORMA','6','1','1103198',16.00,'241.9876','424.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000208','pcs','Inventory','VATABLE','0',NULL,0),(2105,'EBASTEL 10MG TABS 20S','10','1','1103402',16.00,'75.60','126',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000209','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2106,'ELASTOPLAST FABRIC 100S','6','1','1103431',16.00,'1.34','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000210','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2107,'ELOCOM CREAM 15GM','10','1','1103785',16.00,'705.1','1165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000211','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2108,'ELOCOM OINTMENT 15GM','10','1','1103787',16.00,'709.56','1190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,9.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000212','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2109,'ELTROXIN 100MCG TABS 100S','11','1','1103788',16.00,'10.06','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000213','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2110,'ELYCORT CREAM 15GM','10','1','1103790',16.00,'50.00','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000214','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2111,'ELYCORT OINTMENT 15GM','10','1','1103791',16.00,'53','92',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000215','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2112,'ELYVATE CREAM 15GM','10','1','1103793',16.00,'41.65','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000216','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2113,'EMITINO SUSPENSION 30ML','10','1','1103806',16.00,'400','680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000217','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2114,'EMITINO 4MG TABS 10S','10','1','1103807',16.00,'40','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000218','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2115,'ENAPRIL 20 H TABS 30S','11','1','1103817',16.00,'49.335','87',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000219','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2116,'ENAPRIL 5MG TABS 100S','11','1','1103818',16.00,'4.984','9.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000220','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2117,'ENAPRIL 10MG TABS 100S','11','1','1103819',16.00,'8.9','16.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,140.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000221','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2118,'ENAPRIL 20MG TABS 100S','11','1','1103820',16.00,'15.556','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000222','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2119,'ENAT 400IU VIT E CAPSULES','6','1','1103822',16.00,'1280.00','2230',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000223','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2120,'ENO LEMON 48S','6','1','1103854',16.00,'10.813','18',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000224','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2121,'ENSURE POWDER VANILLA 400G','6','1','1103863',16.00,'1257','2100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000225','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(2122,'ENTAMIZOLE SYRUP 100ML','10','1','1103865',16.00,'393.9','680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000226','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2123,'ENTEROGERMINA 5ML 10S','6','1','1103868',16.00,'51.24','87',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000227','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2124,'ENZOFLAM TABS 10S','10','1','1103869',16.00,'30','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000228','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2125,'EPANUTIN 100MG CAPS 84S','11','1','1103871',16.00,'12.032','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000229','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2126,'EROSTIN 10MG TABS 10S','10','1','1103905',16.00,'30.74','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000230','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2127,'EROVITA EASY PREGNANCY KIT','6','1','1103907',16.00,'114.84','200.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000231','pcs','Inventory','VATABLE','0',NULL,0),(2128,'ERYTHROMYCIN 500MG TABS 100S','10','1','1103933',16.00,'6.5','11.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,94.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000232','pcs','Inventory','EXEMPTED','0','0039.11.06',0),(2129,'ESOSE 40MG TABS 10S','11','1','1103955',16.00,'46.725','83',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,37.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000233','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2130,'EUCRYL SMOKERS T/PASTE','12','1','1103985',16.00,'290','499.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000234','pcs','Inventory','VATABLE','0',NULL,0),(2131,'EUCRYL SMOKERS T/POWDER','12','1','1103986',16.00,'278.4','479.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000235','pcs','Inventory','VATABLE','0',NULL,0),(2132,'EUMOVATE OINTMENT 25GM','10','1','1103989',16.00,'519','875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000236','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2133,'EURAX HC ANTI-ITCH CREAM 15GM','6','1','1103995',16.00,'490','1060',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000237','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2134,'EVRA PATCH 3S','10','1','1104017',16.00,'1417.75','2355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000238','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2135,'LATEX EXAMINATION GLOVES MEDIUM 100S','6','1','1104019',16.00,'4.4','11',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000239','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(2136,'EXEVATE MF OINTMENT','10','1','1104023',16.00,'315.95','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000240','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2137,'EXFORGE 160/5MG TABS 28S','11','1','1104026',16.00,'82.40','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,27.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000241','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2138,'FASTUM GEL 50GM','10','1','1104133',16.00,'660','1125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000242','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2139,'FCN 150MG CAPS','10','1','1104137',16.00,'64.35','110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000243','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2140,'FEBREX PLUS SYRUP 100ML','6','1','1104139',16.00,'135','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000244','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2141,'FEBREX PLUS TABS 20S','6','1','1104140',16.00,'5.8','11',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000245','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2142,'FERROGLOBIN CAPS 30S','6','1','1104184',16.00,'564.00','945',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000246','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2143,'FISHERMANS FRIEND LOZS 25G LEMON','6','1','1104245',16.00,'145','249.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000247','pcs','Inventory','VATABLE','0',NULL,0),(2144,'FISHERMANS FRIEND LOZS 25G MINT S/FREE','6','1','1104246',16.00,'145.00','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000248','pcs','Inventory','VATABLE','0',NULL,0),(2145,'FISHERMANS FRIEND LOZS 25G ORIGINAL EXTRA STRONG','6','1','1104247',16.00,'145','249.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000249','pcs','Inventory','VATABLE','0','0039.11.20',0),(2146,'FISHERMANS FRIEND LOZS 25G BLACKCURRANT','6','1','1104248',16.00,'145','249.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000250','pcs','Inventory','VATABLE','0',NULL,0),(2147,'FLAGYL 200MG/5ML SUSP 100ML','10','1','1104268',16.00,'502.00','855',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000251','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2148,'FLATAMEAL DS SUSPENSION 200ML','6','1','1104275',16.00,'195.00','335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000252','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2149,'FLATAMEAL DS TABLETS 200S','6','1','1104276',16.00,'3.00','5.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,398.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000253','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2150,'FLORANORM 250MG SACCHAROMYCES BOULARDII SACHETS 10S','6','1','1104301',16.00,'83.00','142',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,50.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000254','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2151,'FLUCLOXACILLIN 500MG CAPS 100S','10','1','1104375',16.00,'6.25','10.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000255','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2152,'FLUCOZAL 200MG CAPS 10S','10','1','1104382',16.00,'132.206','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000256','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2153,'FLUGONE C+F TABLETS 10S','6','1','1104384',16.00,'88','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000257','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2154,'FLUGONE CAPSULES 10S','6','1','1104385',16.00,'93.99','155',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000258','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2155,'FLUGONE DM COUGH SYRUP 120ML','6','1','1104386',16.00,'194','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000259','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2156,'FLUGONE DM SYRUP 60ML','6','1','1104387',16.00,'122.06','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000260','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2157,'FLUGONE P COUGH SYRUP 120ML','6','1','1104388',16.00,'186.99','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000261','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2158,'FLUGONE P SYRUP 60ML','6','1','1104389',16.00,'122.06','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000262','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2159,'FOLIC ACID 5MG TABS 28S','10','1','1104403',16.00,'4.29','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,56.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000263','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2160,'FRAMYDEX EYE/EAR DROP 8ML','10','1','1104421',16.00,'198.45','335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000264','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2161,'FUROSEMIDE 40MG TABS 100S','11','1','1104461',16.00,'1.29','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,41.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000265','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2162,'FUCICORT CREAM 15GM','10','1','1104462',16.00,'486.92','830',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000266','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2163,'FYBOGEL ORANGE 60S','6','1','1104511',16.00,'30.8','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000267','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2164,'GAUZE SWABS STERILE 3*3 (100S)','6','1','1104748',16.00,'3.16','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000268','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2165,'GAUZE SWABS STERILE 4*4 (100S)','6','1','1104749',16.00,'3.9','7.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,97.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000269','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2166,'GAVISCON DOUBLE ACTION LIQUID 150ML','6','1','1104757',16.00,'586.46','990',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000270','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2167,'GINSOMIN CAPSULES 30S','6','1','1104866',16.00,'27.358','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000271','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2168,'GLUCOMET 500MG TABS 28S','11','1','1104908',16.00,'3.39','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,42.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000272','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2169,'GLUCOMET 850MG TABS 28S','11','1','1104909',16.00,'7.107','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000273','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2170,'GLUCOPHAGE 1GM TABS 60S','11','1','1104910',16.00,'9.17','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,130.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000274','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2171,'GLUCOPHAGE 500MG TABS 90S','11','1','1104911',16.00,'4.67','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,266.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000275','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2172,'GLUCOPHAGE 850MG TABS 60S','11','1','1104912',16.00,'8.5','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,130.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000276','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2173,'GLUCOPHAGE XR 500MG 90S','11','1','1104913',16.00,'8.44','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,225.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000277','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2174,'GLUCOPLUS MACHINE','11','1','1104914',16.00,'1160','2030',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000278','pcs','Inventory','VATABLE','0',NULL,0),(2175,'GLUCOSE POWDER 100G','6','1','1104918',16.00,'34.8','59.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000279','pcs','Inventory','VATABLE','0',NULL,0),(2176,'GLYCERINE INFANT SUPPOSITORIES 1G','6','1','1104936',16.00,'33.167','57',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000280','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2177,'GLYCERINE LIQUID 50ML','9','1','1104937',16.00,'33.64','55.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000281','pcs','Inventory','VATABLE','0',NULL,0),(2178,'GRABACIN DUSTING POWDER','10','1','1104972',16.00,'99.28','170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000282','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2179,'GRABACIN-3 OINTMENT 20GM','10','1','1104973',16.00,'186.3','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000283','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2180,'GRISEOFULVIN 250MG TABS 100S','10','1','1104986',16.00,'3.583','6.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000284','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2181,'GRISEOFULVIN 500MG TABS 100S','10','1','1104987',16.00,'7.2','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,37.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000285','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2182,'HEDEX TABLETS 100S','6','1','1105372',16.00,'3.85','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,136.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000286','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2183,'HEMOSAN CAPSULES *30S','6','1','1105383',16.00,'6.705','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000287','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2184,'HEMSAMIC 500MG CAPS 20S','10','1','1105385',16.00,'36.237','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,25.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000288','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2185,'HUMALOG 3ML CARTRIDGE 5S','11','1','1105479',16.00,'1110.6','1855',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000289','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(2186,'HYDROCHLOROTHIAZIDE 50MG TABS 100S','11','1','1105499',16.00,'1.74','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,82.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000290','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2187,'HYDROCORTISONE CREAM 30GM','10','1','1105503',16.00,'310','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000291','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2188,'HYDROGEN PEROXIDE 20V 200ML','6','1','1105509',16.00,'30.06','49.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000292','pcs','Inventory','VATABLE','0',NULL,0),(2189,'HYDROXYCHLOROQUINE 200MG TABS 30S','10','1','1105511',16.00,'34.829','59',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000293','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2190,'IBUMEX GEL 25GM','6','1','1105537',16.00,'52.50','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000294','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2191,'IBUMEX SUSP 60ML','6','1','1105539',16.00,'49.35','85',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000295','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2192,'IBUPROFEN 400MG TABLETS B/P 84S','6','1','1105541',16.00,'3.81','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,21.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000296','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2193,'IMODIUM LOPERAMIDE 2MG CAPS 6S','6','1','1105561',16.00,'206.14','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000297','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2194,'INFA-V VAGINAL PESSARIES 8S','10','1','1105589',16.00,'407','680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000298','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2195,'INTAMINE CREAM 25GM','6','1','1105669',16.00,'63.00','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000299','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2196,'IROVEL H TABS 30S','11','1','1105691',16.00,'55.667','98',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,22.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000300','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2197,'IROVEL 150MG TABS 30S','11','1','1105692',16.00,'48.082','85',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000301','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2198,'JOINTACE (COLLAGEN/GLUCOSAMINE & CHONDROITIN) *30S','6','1','1105850',16.00,'1051.82','1935',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000302','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2199,'JOLEN FACIAL STRIP WAX 16STRIPS','12','1','1105859',16.00,'185.6','324.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000303','pcs','Inventory','VATABLE','0',NULL,0),(2200,'KARVOL DECONGESTANT CAPSULES','6','1','1105907',16.00,'30.5','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,50.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000304','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2201,'KEPPRA 250MG TABS 60S','11','1','1105941',16.00,'41.367','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000305','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2202,'KETOLAC EYE DROPS 5ML','10','1','1105948',16.00,'220','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000306','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2203,'KLY LUBRICATING JELLY 42G','6','1','1105998',16.00,'150','255',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000307','pcs','Inventory','EXEMPTED','0','0039.11.41',0),(2204,'KOFOL SYRUP 100ML','6','1','1106001',16.00,'168','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000308','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2205,'KOTEX PANTY LINERS REGULAR 20S','12','1','1106020',16.00,'117.02312','174.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000309','pcs','Inventory','VATABLE','0',NULL,0),(2206,'KOTEX TAMPONS REGULAR 16S','12','1','1106022',16.00,'237.576','355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000310','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(2207,'KOTEX TAMPONS SUPER 16S','12','1','1106023',16.00,'233.333','350',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000311','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(2208,'LACTULAC LIQUID 200ML','6','1','1106207',16.00,'412.25','715',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000312','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2209,'LAMISIL CREAM 15GM','10','1','1106243',16.00,'960','1585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000313','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2210,'LASIX 40MG TABS 20S','11','1','1106284',16.00,'35.098','63',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,36.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000314','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2211,'LEFLOX 500MG TABS 10S','10','1','1106304',16.00,'70.88','118',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,15.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000315','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2212,'LEMSIP COLD & FLU SATCHETS BLACKCURRANT 10S','6','1','1106313',16.00,'57','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000316','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2213,'LEMSIP MAX COLD & FLU SATCHETS LEMON 10S','6','1','1106329',16.00,'63.5','107',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000317','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2214,'LETROZ 2.5MG TABS 25S','11','1','1106348',16.00,'134','235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000318','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2215,'LEXOTANIL 1.5MG TABS 30S','10','1','1106356',16.00,'16.23','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000319','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2216,'LEXOTANIL 3.0MG TABS 30S','10','1','1106357',16.00,'22.71','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000320','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2217,'SKYN ORIGINAL NON LATEX CONDOM','6','1','1106367',16.00,'401.205','690.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000321','pcs','Inventory','VATABLE','0',NULL,0),(2218,'LIQUID PARAFFIN 100ML','6','1','1106454',16.00,'56.38','89.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000322','pcs','Inventory','VATABLE','0',NULL,0),(2219,'LISTERINE COOL MINT M/WASH 250ML','12','1','1106460',16.00,'532.44','789.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000323','pcs','Inventory','VATABLE','0',NULL,0),(2220,'LONART DS TABLETS 6S','10','1','1106500',16.00,'22.81','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,24.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000324','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(2221,'LANCETS 100S','11','1','1106522',16.00,'1.10','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,200.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000325','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(2222,'LOSARTAS HT 50/12.5MG TABS 30S','11','1','1106528',16.00,'29.50','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000326','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2223,'LOSARTAS 50MG 28S','11','1','1106529',16.00,'24.464','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,49.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000327','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2224,'LYRICA 25MG CAPS 28S','11','1','1106605',16.00,'33.882','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000328','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2225,'LYRICA 75MG CAPS 28S','11','1','1106606',16.00,'85.786','151',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,34.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000329','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2226,'MANIX TABLETS 20S','6','1','1106781',16.00,'31.6','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000330','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2227,'MARAMOJA TABLETS 100S','6','1','1106782',16.00,'3.58','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,119.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000331','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2228,'MARAMOJA TABLETS 20S','6','1','1106783',16.00,'130.16','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000332','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2229,'MARS BARS 51G','12','1','1106790',16.00,'98.79372','155.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000333','pcs','Inventory','VATABLE','0',NULL,0),(2230,'MAXIDEX EYE DROPS','10','1','1106800',16.00,'280.5','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000334','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2231,'MAXIDEX EYE OINTMENT','10','1','1106801',16.00,'433.5','730',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000335','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2232,'MAXITROL EYE DROPS','10','1','1106803',16.00,'175.10','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000336','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2233,'MEBO OINTMENT 15 GRAMS','10','1','1106818',16.00,'639.2','1090',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000337','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2234,'MEBO OINTMENT 30 GRAMS','10','1','1106819',16.00,'1288.92','2130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000338','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2235,'MEDI-KEEL THROAT LOZENGES 16S ORIGINAL','6','1','1106840',16.00,'25','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,32.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000339','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2236,'MEDIPLAST FABRIC 100S','6','1','1106842',16.00,'0.55','2',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000340','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2237,'MEDIVEN CREAM 15GM','10','1','1106855',16.00,'44.9','75',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000341','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2238,'MEDIVEN S OINTMENT 15GM','10','1','1106857',16.00,'132.75','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000342','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2239,'MEFTAL FORTE TABS 20S','10','1','1106868',16.00,'16.5','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000343','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2240,'MEFTAL 500MG TABS 20S','10','1','1106869',16.00,'14.05','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000344','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2241,'MENTHODEX COUGH SYRUP 200ML','6','1','1106892',16.00,'318.6','545',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000345','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2242,'MENTHODEX COUGH SYRUP 100ML','6','1','1106893',16.00,'212.4','365',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000346','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2243,'MERCILON 3*21S','10','1','1106899',16.00,'663.333','1105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000347','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2244,'METROMAG MILK OF MAGNESIA 100ML','6','1','1106933',16.00,'99.00','175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000348','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2245,'MICROFINE INSULIN SYRINGES *1ML','11','1','1106955',16.00,'12.85','22.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,126.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000349','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(2246,'MICROGYNON-30 PILLS 21S','10','1','1106959',16.00,'253.269','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000350','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2247,'MILTON STERILISING FLUID 500ML','12','1','1106980',16.00,'326.772','530.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000351','pcs','Inventory','VATABLE','0',NULL,0),(2248,'MILTON STERILISING TABLETS 28S','12','1','1106981',16.00,'533.6','850.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000352','pcs','Inventory','VATABLE','0',NULL,0),(2249,'MINOCYCLINE 100MG 28S','10','1','1106987',16.00,'72.5','121',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,56.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000353','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2250,'MOBIC 15MG TABS 10S','10','1','1107086',16.00,'69.673','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000354','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2251,'MOMATE CREAM 15GM','10','1','1107108',16.00,'448.56','760',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000355','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2252,'MONTALLERG 10/5MG TABS 20S','11','1','1107120',16.00,'47.25','82',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000356','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2253,'MONTIGET GRANULES 4MG 14S','11','1','1107123',16.00,'34.42','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,29.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000357','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2254,'MONTIGET 10MG TABS 14S','11','1','1107124',16.00,'50.717','89',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000358','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2255,'MONTIGET 5MG TABS 14S','11','1','1107125',16.00,'36.5','64',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000359','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2256,'MOTILIUM 10MG TABS 20S','10','1','1107151',16.00,'26.45','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,34.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000360','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2257,'MOTILIUM SYRUP 100 ML','10','1','1107153',16.00,'430.10','730',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000361','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2258,'MOVICOL SATCHETS 30S','6','1','1107156',16.00,'65','111',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000362','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2259,'MUCOSOLVAN LIQUID 100ML','6','1','1107168',16.00,'393.12','665',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000363','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2260,'MUVERA 15MG TABS 100S','10','1','1107188',16.00,'22.4','37.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000364','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2261,'MUVERA 7.5MG TABS 100S','10','1','1107189',16.00,'13.365','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000365','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2262,'MYCOTA CREAM','6','1','1107196',16.00,'230','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000366','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2263,'MYCOTA POWDER 70G','6','1','1107197',16.00,'650','1120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000367','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2264,'MYOSPAZ TABS 100S','10','1','1107203',16.00,'15.8','26.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,120.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000368','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2265,'NAPROSYN 500MG TABS 56S','10','1','1107351',16.00,'38.393','64',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,72.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000369','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2266,'NASIVION PAEDIATRIC NASAL DROPS','6','1','1107355',16.00,'112.50','166.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000370','pcs','Inventory','EXEMPTED','0',NULL,0),(2267,'NASOSAL DROPS 10ML','6','1','1107358',16.00,'424','715',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000371','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2268,'NATRILIX SR 1.5MG TABS 30S','11','1','1107408',16.00,'24.60','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,32.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000372','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2269,'NEBILET 5MG TABS 28S','11','1','1107423',16.00,'63.714','112',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,39.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000373','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2270,'NETAZOX 500MG TABS 6S','10','1','1107477',16.00,'47.578','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000374','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2271,'NEURORUBINE FORTE TABLETS 20S','10','1','1107486',16.00,'20.00','34',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,21.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000375','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2272,'NEXIUM 20MG TABS 14S','11','1','1107612',16.00,'86.949','147',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000376','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2273,'NEXIUM 40MG TABS 14S','11','1','1107613',16.00,'126.6','213',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000377','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2274,'NICORETTE FRUITFUSION GUM 2MG','6','1','1107627',16.00,'285.714','478',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000378','pcs','Inventory','EXEMPTED','0',NULL,0),(2275,'NICORETTE FRUITFUSION GUM 4MG','6','1','1107628',16.00,'335.71','561',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,19.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000379','pcs','Inventory','EXEMPTED','0',NULL,0),(2276,'NICORETTE FRESHMINT GUM 4MG','6','1','1107630',16.00,'335.71','561',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000380','pcs','Inventory','EXEMPTED','0',NULL,0),(2277,'NIFEDIDENK RETARD 20MG TABS 100S','11','1','1107637',16.00,'11.256','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,45.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000381','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2278,'NIFELAT RETARD 20MG TABS 100S','11','1','1107638',16.00,'5.15','9.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,200.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000382','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2279,'NILOL 50/20MG TABS 30S','11','1','1107642',16.00,'24.167','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000383','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2280,'NOGLUC 5MG TABS 28S','11','1','1107675',16.00,'3.742','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,98.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000384','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2281,'NORMAL SALINE 500ML','10','1','1107684',16.00,'95','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000385','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2282,'NORMAL SALINE NASAL DROPS 10ML','6','1','1107685',16.00,'25.00','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000386','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2283,'NORVASC 5MG TABS 30S','11','1','1107690',16.00,'47.30','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000387','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2284,'NORVASC 10MG TABS 30S','11','1','1107691',16.00,'86.886','146',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000388','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2285,'NOSIC TABS 20S','10','1','1107694',16.00,'16.48','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,57.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000389','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2286,'NOVORIN SALINE NASAL DROPS 15ML','6','1','1107754',16.00,'81','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000390','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2287,'NUROFEN COLD & FLU TABS 24S','6','1','1107803',16.00,'1005','1680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000391','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2288,'NUROFEN SUSP ORANGE 200ML','6','1','1107819',16.00,'1250','2090',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000392','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2289,'NYSTAN ORAL DROPS 30ML','10','1','1107843',16.00,'45','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000393','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2290,'NYSTATIN ORAL DROPS 30ML','10','1','1107844',16.00,'40','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000394','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2291,'OB REGULAR TAMPONS 8S','12','1','1107868',16.00,'160','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000395','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(2292,'OB SUPER TAMPONS 8S','12','1','1107870',16.00,'184','275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000396','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(2293,'OCID 20MG CAPS 100S','11','1','1107881',16.00,'1.84','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000397','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2294,'OILATUM CREAM TUBE 150GM','9','1','1107898',16.00,'997.6','1710.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000398','pcs','Inventory','VATABLE','0',NULL,0),(2295,'OILATUM SOAP 100GM','9','1','1107916',16.00,'446.55','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000399','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2296,'OJEN OZ TABS 10S','10','1','1107917',16.00,'23.68','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000400','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2297,'OLBAS OIL 10ML ADULTS','6','1','1107923',16.00,'430','740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000401','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2298,'OLBAS OIL CHILDREN','6','1','1107924',16.00,'430.00','740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000402','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2299,'OLFEN 100MG SR DEPOCAPS 10S','10','1','1107945',16.00,'71.00','121',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000403','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2300,'OLFEN 75MG SR DEPOTABS 30S','10','1','1107947',16.00,'36.167','62',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000404','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2301,'OLFEN GEL 20GM','10','1','1107950',16.00,'490','820',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000405','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2302,'OMASTIN 50mg/5ml SUSPENSION 35ML','10','1','1107962',16.00,'313.5','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000406','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2303,'OMEGA H3 CAPSULES 30S','6','1','1107963',16.00,'28.16','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000407','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2304,'OMEPRAZOLE 20MG TABS 28S','11','1','1107964',16.00,'5.00','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000408','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2305,'ON CALL PLUS TEST STRIPS 50S','11','1','1107974',16.00,'599.99956','1179.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000409','pcs','Inventory','VATABLE','0',NULL,0),(2306,'ONAZIN EYE DROPS 10ML','6','1','1107975',16.00,'267.3','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000410','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2307,'ORAL B DENTAL FLOSS WAXED MINT 50M','12','1','1108082',16.00,'208.8','319.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000411','pcs','Inventory','VATABLE','0',NULL,0),(2308,'ORAL REHYDRATION SALTS 14G 100S','6','1','1108120',16.00,'8.5','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000412','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2309,'ORELOX SUSPENSION 40MG/5ML 100ML','10','1','1108136',16.00,'1710.485','2860',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000413','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2310,'OSTEOCARE JOINT GLUCOSAMINE & CHONDROITIN TABS 60S','6','1','1108185',16.00,'1428','2385',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000414','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2311,'OSTEOCARE TABLETS 30S','6','1','1108189',16.00,'432.00','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000415','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2312,'OTOREX EAR DROPS 10ML','6','1','1108194',16.00,'206.00','350',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000416','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2313,'P-ALAXIN TABS 9S','10','1','1108229',16.00,'187','325',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000417','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(2314,'PANADOL ADVANCE 100S','6','1','1108283',16.00,'4.693','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000418','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2315,'PANADOL ADVANCE 20S','6','1','1108285',16.00,'130.578','215',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000419','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2316,'PANADOL BABY & INFANT SUSP 100ML','6','1','1108287',16.00,'238','385',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000420','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2317,'PANADOL EXTRA With Opti Zorb 100S','6','1','1108293',16.00,'4.801','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000421','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2318,'PANADOL EXTRA with Opti Zorb 20S','6','1','1108295',16.00,'130.939','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000422','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2319,'PANDERM OINTMENT 15GM','10','1','1108303',16.00,'470','810',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000423','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2320,'PANTOCID 40MG TABS 50S','11','1','1108325',16.00,'43','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,21.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000424','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2321,'PARIET 20MG TABS 28S','11','1','1108339',16.00,'172.061','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000425','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2322,'PEDITRAL ORANGE O.R.S','6','1','1108375',16.00,'58.01','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000426','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2323,'PERNEX AC 5% GEL 20GM','10','1','1108408',16.00,'286','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000427','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2324,'PHARMASAL OINTMENT','10','1','1108425',16.00,'43','72',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000428','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2325,'PIRITON EXPECTORANT 100ML','6','1','1108573',16.00,'343.10','555',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000429','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2326,'PIRITON SYRUP 100ML','6','1','1108574',16.00,'296.00','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000430','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2327,'PIRITON 4MG TABS 1000S','10','1','1108575',16.00,'2.361','4.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000431','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2328,'PIROXICAM 20MG CAPS 100S','10','1','1108576',16.00,'0.95','2.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,133.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000432','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2329,'PONSTAN FORTE 500MG TABS 50S','10','1','1108653',16.00,'19.824','34',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000433','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2330,'POSTINOR 0.75MG TABLETS','10','1','1108663',16.00,'126.90','215',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,31.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000434','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2331,'POWERGESIC PLUS GEL 30G','6','1','1108703',16.00,'180','310',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000435','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2332,'PREDNISOLONE 5MG TABS 100S','11','1','1108713',16.00,'1.64','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,78.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000436','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2333,'PREDNISONE 5MG TABS 100S','11','1','1108714',16.00,'1.799','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,109.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000437','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2334,'PREDSOL FORTE 60ML','10','1','1108716',16.00,'773.5','1300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000438','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2335,'PREGNACARE CAPS 30S','6','1','1108719',16.00,'566.00','950',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000439','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2336,'PREGNACARE PLUS','6','1','1108722',16.00,'1100.00','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000440','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2337,'PRIMAPORE AWD 6CM*8.3CM 50S','6','1','1108764',16.00,'40','69',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,46.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000441','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2338,'PRIMOLUT N 5MG TABS 30S','10','1','1108767',16.00,'26.925','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,43.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000442','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2339,'PROBETA N DROPS','10','1','1108787',16.00,'90.00','155',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000443','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2340,'PROMETHAZINE 25MG TABS 100S','10','1','1108807',16.00,'1.22','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,110.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000444','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2341,'PULMICORT 0.5MG/ML NEBULISING SOLN 20S','11','1','1108874',16.00,'242.445','418',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000445','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2342,'QUEST MARINE OMEGA EPA 1000MG CAPS 90S FOR 45S','6','1','1108943',16.00,'620','1045',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000446','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2343,'QUITIPIN 200MG TABS 30S','11','1','1108978',16.00,'66.00','119',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,76.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000447','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2344,'RANFERON 12 SYRUP 200ML','6','1','1109009',16.00,'275','475',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000448','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2345,'RANFERON CAPSULES 30S','6','1','1109010',16.00,'11.634','21',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000449','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2346,'RECARTIX CAPS 30S','6','1','1109026',16.00,'42.667','73.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000450','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2347,'REGENOVEX CAPSULES 30S','6','1','1109058',16.00,'3499.72','6019.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000451','pcs','Inventory','VATABLE','0',NULL,0),(2348,'RELCER GEL 180ML','6','1','1109067',16.00,'283.91','475',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000452','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2349,'REMIDIN MOUTHWASH 100ML','6','1','1109072',16.00,'188','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000453','pcs','Inventory','VATABLE','0',NULL,0),(2350,'RHINATHIOL INFANT SYRUP 125ML','6','1','1109252',16.00,'290.407','490',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000454','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2351,'RHINATHIOL WITH PROMETHAZINE 125ML','6','1','1109253',16.00,'292.02','495',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000455','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2352,'RHIZIN 5MG/5ML SYRUP 60ML','10','1','1109258',16.00,'180','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000456','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2353,'RILIF MR TABS 20S','10','1','1109274',16.00,'26.25','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,24.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000457','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2354,'RILIF PLUS TABS 30S','10','1','1109275',16.00,'15.733','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,25.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000458','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2355,'RILIF SR 200MG TABS 30S','10','1','1109276',16.00,'27.076','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000459','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2356,'RIVOTRIL 2MG TABS 30S','10','1','1109295',16.00,'26.652','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000460','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2357,'ROBITUSSIN DRY COUGH 100ML','6','1','1109305',16.00,'530','915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000461','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2358,'ROZAVEL 10MG TABS 30S','11','1','1109343',16.00,'48.698','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000462','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2359,'ROZAVEL 5MG TABS 30S','11','1','1109344',16.00,'38.266','68',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000463','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2360,'SALBUTAMOL 4MG TABS 100S','11','1','1109388',16.00,'0.79','2',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,58.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000464','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2361,'SATROGYL 300MG TABS 30S','10','1','1109430',16.00,'32','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000465','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2362,'SAVLON ANTISEPTIC LIQUID 75ML','6','1','1109442',16.00,'99.76','179.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000466','pcs','Inventory','VATABLE','0',NULL,0),(2363,'SCABION CREAM 20GM','10','1','1109446',16.00,'97.46','170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000467','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2364,'SCOTTS EMULSION ORANGE 100ML','6','1','1109525',16.00,'324.169','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000468','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2365,'SCOTTS EMULSION ORANGE 200ML.','6','1','1109526',16.00,'624.245','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000469','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2366,'SCOTTS EMULSION REGULAR 200ML','6','1','1109528',16.00,'624.245','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000470','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2367,'SECZOLE DS 1GM TABS','10','1','1109590',16.00,'70','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000471','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2368,'SELSUN SHAMPOO 100ML','12','1','1109607',16.00,'719.2','1230.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000472','pcs','Inventory','VATABLE','0',NULL,0),(2369,'SENNA NATURAL LAXATIVE TABS 50S','6','1','1109609',16.00,'2.7','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,84.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000473','pcs','Inventory','EXEMPTED','0','0039.11.82',0),(2370,'SEPTRIN FORTE DS 960MG 10S','10','1','1109646',16.00,'39.82','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000474','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2371,'SEVEN SEAS COD LIVER OIL 100ML','6','1','1109671',16.00,'370.6','598',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000475','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2372,'SEVEN SEAS ONE A DAY CAPS 60S','6','1','1109685',16.00,'1079.75','1775',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000476','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2373,'SILVEREX CREAM 10GM','10','1','1109734',16.00,'76','135',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000477','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2374,'SILVEREX CREAM 25GM','10','1','1109735',16.00,'142','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000478','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2375,'SIMPLE REPLENISHING RICH MOIST. 125ML','9','1','1109803',16.00,'747.8984','1130.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000479','pcs','Inventory','VATABLE','0',NULL,0),(2376,'SIMPLE SOOTHING FACIAL TONER 200ML','9','1','1109812',16.00,'671.9996','1025.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000480','pcs','Inventory','VATABLE','0',NULL,0),(2377,'SINUTAB ND TABLETS','6','1','1109845',16.00,'620','1070',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000481','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(2378,'SNICKERS BAR 50G','12','1','1109947',16.00,'91.21','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,21.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000482','pcs','Inventory','VATABLE','0',NULL,0),(2379,'SOLVIN PLUS EXPECTORANT 120ML','6','1','1109985',16.00,'259','450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000483','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2380,'SOLVIN PLUS TABS 100S','10','1','1109987',16.00,'9.25','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,36.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000484','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2381,'SONATEC MOUTHWASH 250ML','12','1','1109994',16.00,'172.956','285.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000485','pcs','Inventory','VATABLE','0',NULL,0),(2382,'STERILE GLOVES 7.5','10','1','1110103',16.00,'27.84','45.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,29.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000486','pcs','Inventory','VATABLE','0',NULL,0),(2383,'STERON 5MG TABS 100S','10','1','1110109',16.00,'16.732','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,39.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000487','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2384,'STREPSILS ORANGE/VITAMIN C 36S','6','1','1110152',16.00,'692.50','1210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000488','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(2385,'SUBSYDE-DR 100MG CAPS 10S','10','1','1110166',16.00,'24.38','41',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000489','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2386,'SUDOCREAM 60GM','12','1','1110180',16.00,'440.8','754.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000490','pcs','Inventory','VATABLE','0',NULL,0),(2387,'SURGICAL SPIRIT 100ML','6','1','1110256',16.00,'40','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000491','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2388,'SYLATE 500mg TABS 18S','11','1','1110291',16.00,'65.278','121',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000492','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2389,'SYMBICORT TURBUHALER 160/4.5UG -120DOSES','11','1','1110292',16.00,'678.125','1190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000493','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2390,'SYSTANE EYE DROPS 15ML','10','1','1110304',16.00,'1190','1990',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000494','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2391,'SYSTANE ULTRA EYE DROPS','10','1','1110305',16.00,'1408','2340',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000495','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2392,'TAGERA FORTE 1GM 2S','10','1','1110317',16.00,'47.00','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000496','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2393,'TAMOXIFEN 20MG TABS 30S','11','1','1110322',16.00,'10.74','21',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000497','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2394,'TEARS NATURALE II','6','1','1110365',16.00,'573.75','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000498','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2395,'TELMI H 80/12.5mg TABS 30S','11','1','1110382',16.00,'60.567','107',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000499','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2396,'TENORETIC 100/25MG TABS 28S','11','1','1110416',16.00,'60.566','106',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000500','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2397,'TENORMIN 50MG TABS 28S','11','1','1110420',16.00,'34.764','62',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000501','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2398,'TETRACYCLINE EYE OINTMENT','10','1','1110436',16.00,'33','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000502','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2399,'TINIDAZOLE 500MG TABS 4s','10','1','1110479',16.00,'3','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000503','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2400,'TIXYLIX TODDLER SYRUP 3MTHS -5 YRS','6','1','1110549',16.00,'600','1035',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000504','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2401,'TOBRADEX EYE DROPS','10','1','1110550',16.00,'663','1125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000505','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2402,'TODAY PREMIUM PESSARIES','10','1','1110554',16.00,'110','190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000506','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2403,'TOUCH & GO TOOTHACHE SOLUTION','6','1','1110589',16.00,'180.00','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000507','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2404,'TRAMAL 100MG TABS 30S','10','1','1110600',16.00,'135.12','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,35.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000508','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2405,'TRAMED 500/250MG TABS 30S','11','1','1110602',16.00,'38.85','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,45.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000509','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2406,'TRAVOCORT CREAM 15GM','10','1','1110617',16.00,'678','1120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000510','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2407,'TRES ORIX FORTE CAPS 20S','6','1','1110620',16.00,'28.75','50',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000511','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2408,'TRES ORIX FORTE SYRUP 100ML','6','1','1110621',16.00,'450.00','780',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000512','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2409,'TRES ORIX FORTE SYRUP 250ML','6','1','1110622',16.00,'645','1110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000513','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2410,'TRICOHIST EXPECTORANT 100ML','6','1','1110631',16.00,'130','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000514','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2411,'TRIMEX DIABETIC EXPECTORANT 100ML','6','1','1110639',16.00,'136.5','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000515','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2412,'TRIMEX EXPECTORANT ADULT 100ML','6','1','1110640',16.00,'105.00','180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000516','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2413,'TRIMEX MUCOLYTIC SYRUP 100ML','6','1','1110641',16.00,'52.5','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000517','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2414,'TRIMEX PAEDIATRIC 100ML','6','1','1110642',16.00,'105','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000518','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2415,'TRIOKIT TABS 4 (COMBIKIT)','10','1','1110648',16.00,'623','1045',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000519','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2416,'TRUST CONDOMS 24S','6','1','1110677',16.00,'23.49','41.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,25.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000520','pcs','Inventory','VATABLE','0',NULL,0),(2417,'TRUST CONDOMS STUDDED 24S','6','1','1110678',16.00,'37.50628','64.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000521','pcs','Inventory','VATABLE','0',NULL,0),(2418,'TUSPEL PLUS SYRUP 100ML','6','1','1110698',16.00,'137.06','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000522','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2419,'TUSPEL SYRUP 100ML','6','1','1110699',16.00,'121','210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000523','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2420,'TUSPRESS SYRUP 100ML','6','1','1110700',16.00,'136.17','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000524','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2421,'UNIBROL 250MG TABS 24S','10','1','1110842',16.00,'26.25','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000525','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2422,'UNIBROL 125MG/5ML SYRUP','10','1','1110843',16.00,'248.06','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000526','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2423,'UNISTEN HC CREAM 20G','10','1','1110853',16.00,'105','180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000527','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2424,'UNIVIR 400MG TABS 10s','10','1','1110858',16.00,'33.075','56',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000528','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2425,'UNIVIR CREAM 10GM','10','1','1110859',16.00,'123.30','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000529','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2426,'VALIUM 5MG TABS 25S','10','1','1110981',16.00,'20.04','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,75.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000530','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2427,'VASELINE LIP THERAPY TIN (ALOE) 20G','9','1','1111002',16.00,'185.6','334.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000531','pcs','Inventory','VATABLE','0',NULL,0),(2428,'VASELINE LIP THERAPY TIN ( ORIGINAL) 20G','9','1','1111004',16.00,'185.6','334.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000532','pcs','Inventory','VATABLE','0',NULL,0),(2429,'VASELINE LIP THERAPY TIN (ROSY LIPS)','9','1','1111006',16.00,'185.6','334.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000533','pcs','Inventory','VATABLE','0',NULL,0),(2430,'VDM-KIT','10','1','1111018',16.00,'507.30','865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000534','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2431,'VENTOLIN EVOHALER*200DOSES','11','1','1111069',16.00,'232','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000535','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2432,'VERMOX MEBENDAZOLE 100MG TABS 6S','6','1','1111079',16.00,'482.4','825',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000536','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2433,'VERMOX MEBENDAZOLE 500MG TABS 1S','6','1','1111080',16.00,'482.4','825',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000537','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2434,'VIAGRA 100MG TABS 4S','11','1','1111093',16.00,'700.57','1235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000538','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2435,'VICKS INHALER UK','6','1','1111105',16.00,'285.00','500',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000539','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2436,'VICKS SINEX MICROMIST NASAL SPRAY 15ML','6','1','1111108',16.00,'560','965',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000540','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2437,'VICKS VAPO RUB JAR 25GM','6','1','1111114',16.00,'395','660',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000541','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2438,'VISCID GEL 200ML','6','1','1111138',16.00,'166.00','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000542','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2439,'VISINE EYE DROPS 15ML','6','1','1111139',16.00,'720','1205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000543','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2440,'VOLINI GEL 30G','6','1','1111287',16.00,'200','340',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000544','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2441,'VOLTAREN GEL 50G','6','1','1111293',16.00,'463.41','790',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000545','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2442,'VOLTAREN R 100MG TABS 100S','10','1','1111295',16.00,'49.949','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,95.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000546','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2443,'VOLTAREN SR 75MG TABS 30S','10','1','1111296',16.00,'74.007','124',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,25.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000547','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2444,'VOLTFAST 50MG SATCHETS 9S','10','1','1111301',16.00,'67.5','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,23.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000548','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2445,'WARFARIN 5MG TABLETS 28S','11','1','1111311',16.00,'2.5','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000549','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2446,'WELLKID MULTIVITAMIN LIQ 4-12YRS 150ML','6','1','1111345',16.00,'998.00','1670',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000550','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2447,'WELLMAN 50+ TABLETS *30S','6','1','1111347',16.00,'1008.00','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000551','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2448,'WELLWOMAN 50+ TABLETS','6','1','1111352',16.00,'1008','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000552','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2449,'WISDOM DENTAL FLOSS 100M','12','1','1111378',16.00,'249.516','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000553','pcs','Inventory','VATABLE','0',NULL,0),(2450,'WOODWARDS GRIPE WATER 100ML','6','1','1111392',16.00,'98.00','170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000554','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2451,'WOW GAUZE BANDAGES 3 12S','6','1','1111399',16.00,'5.00','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,24.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000555','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2452,'XALATAN DROPS','11','1','1111417',16.00,'1960.94','3455',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000556','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2453,'XANAX 0.5MG TABS 30S','10','1','1111419',16.00,'24.678','43',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000557','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2454,'XATRAL 10MG TABS 30S','11','1','1111423',16.00,'84.83','146',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,63.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000558','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2455,'XTRADERM CREAM 20GM','10','1','1111429',16.00,'127.88','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000559','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2456,'XYLO-MEPHA ADULT XYLOMETAZOLINE NASAL SPRAY0.1% 10ML','6','1','1111435',16.00,'627.9','1080',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000560','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2457,'XYZAL 5MG TABS 30S','10','1','1111438',16.00,'64.833','109',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,17.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000561','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2458,'XYZAL SYRUP 75ML','10','1','1111439',16.00,'652','1110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000562','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2459,'ZECUF HERBAL COUGH SYRUP 100ML','6','1','1111474',16.00,'132.00','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000563','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2460,'ZECUF LOZENGES HERBAL RASBERRY','6','1','1111476',16.00,'176.32','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000564','pcs','Inventory','VATABLE','0',NULL,0),(2461,'ZEDEX SYRUP 100ML','6','1','1111483',16.00,'136','240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000565','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2462,'ZEFCOLIN COUGH SYRUP 100ML','6','1','1111486',16.00,'228.96','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000566','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2463,'ZENTEL 400MG TABLETS 1S','6','1','1111489',16.00,'149.5','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000567','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2464,'ZENTEL SUSPENSION 20ML','6','1','1111490',16.00,'149.50','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000568','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2465,'ZINNAT 500MG TABLETS 10S','10','1','1111531',16.00,'121.94','190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,50.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000569','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2466,'ZINNAT SUSP. 125MG/5ML 50ML','10','1','1111533',16.00,'619.2','1035',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000570','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2467,'ZINNAT SUSP. 250MG/5ML 50ML','10','1','1111534',16.00,'1083.6','1845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000571','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2468,'ZOVIRAX CREAM 2GM','10','1','1111567',16.00,'1004','1680',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000572','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2469,'ZUPRICIN OINTMENT 15GM','10','1','1111570',16.00,'444.11','656.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000573','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2470,'ZYLORIC 300MG TABS 28S','11','1','1111574',16.00,'64.43','95.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,16.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000574','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2471,'ZYNCET 10MG TABS 50S','10','1','1111576',16.00,'3.06','5.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000575','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2472,'ZYNCET SYRUP 60ML','10','1','1111577',16.00,'113','166.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000576','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2473,'ZYRTAL MR TABLETS 20S','10','1','1111585',16.00,'28.12','42.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,68.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000577','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2474,'ZYRTEC CETRIZINE 10MG TABLETS 30S','10','1','1111587',16.00,'55.97','83.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000578','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2475,'BECLOMIN OINTMENT 15GM','10','1','1111596',16.00,'120','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000579','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2476,'STREPSILS EXTRA STRENGTH B/CURRANT 24 S','6','1','1111820',16.00,'690','1175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000580','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2477,'ROBIDOM SR 20/30MG CAPS 30S','10','1','1111843',16.00,'58.667','97',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000581','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2478,'PEPTO BISMOL PEPPERMINT TABS 24S','6','1','1111878',16.00,'750','1300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000582','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2479,'ANUSOL PLUS HC SUPPOSITORIES 12S','6','1','1111886',16.00,'60.00','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000583','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2480,'ANTHISAN BITE AND STING CREAM 20GM','6','1','1111944',16.00,'455','785',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000584','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2481,'KAMAGRA ORAL JELLY SATCHETS','10','1','1112097',16.00,'68.29','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,19.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000585','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2482,'NEURO FORTE TABS 20S','10','1','1112419',16.00,'11.90','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,80.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000586','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2483,'NEOPEPTINE CAPS 10S','6','1','1112570',16.00,'29.75','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000587','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2484,'VASELINE LIP THERAPY TIN (COCOA BUTTER) 20G','9','1','1112641',16.00,'185.6','334.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000588','pcs','Inventory','VATABLE','0',NULL,0),(2485,'NEXIUM 10MG SACHETS 28S','11','1','1112653',16.00,'125.742','221',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,24.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000589','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2486,'DABORAL 125MG/5ML SYRUP 60 ML','10','1','1112811',16.00,'205','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000590','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2487,'ANIMAL PARADE KIDS MULTIVITAMIN 90S','6','1','1112899',16.00,'1625','2795',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000591','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2488,'ANIMAL PARADE KIDS IMMUNE BOOSTER 90S','6','1','1112904',16.00,'1400','2410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000592','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2489,'WOODWARDS GRIPE WATER ALCOHOL AND SUGAR FREE 150ML','6','1','1112968',16.00,'715','1230',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000593','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2490,'SENSODYNE RAPID ACTION TOOTHPASTE 75ML','12','1','1113193',16.00,'460.47128','614.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000594','pcs','Inventory','VATABLE','0',NULL,0),(2491,'ASOMEX LT 2.5/50MG TABS 60S','11','1','1113207',16.00,'38.25','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000595','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2492,'SUNDOWN VITAMIN E 400IU SOFTGELS 100S','6','1','1113553',16.00,'1350.00','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000596','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2493,'ONDEM MD 8MG TABS 10S','10','1','1113896',16.00,'82.5','138',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000597','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2494,'STREPSILS HONEY & LEMON LOZ 24S UK','6','1','1113918',16.00,'630.00','1105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,26.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000598','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2495,'ZERODOL P 100MG TABS 30S','10','1','1114026',16.00,'26.23','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000599','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2496,'KAMAGRA 100MG TABS 4S','10','1','1114178',16.00,'56.75','95',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000600','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2497,'KAMAGRA 50MG TABS 4S','10','1','1114179',16.00,'46.50','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000601','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2498,'SAWA POWER CAPSULES 450MG','6','1','1114222',16.00,'712.53','1182',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000602','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2499,'PHYTORAL OINTMENT 15GMS','10','1','1114236',16.00,'243.1','410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000603','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2500,'BANEOCIN OINTMENT 20GM','10','1','1114242',16.00,'198','335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000604','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2501,'SUNDOWN BIOTIN 5000MCG 60S','6','1','1114246',16.00,'1125','1915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000605','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2502,'SUNDOWN CALMAGZINC 100S','6','1','1114247',16.00,'1138.5','1940',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000606','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2503,'ALWAYS ULTRA LONG 8S','12','1','1114636',16.00,'92.03','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000607','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(2504,'SULPHUR OINTMENT 25G','10','1','1114657',16.00,'18','33',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000608','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2505,'TINCTURE OF IODINE 100ML','6','1','1114664',16.00,'88','160',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000609','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2506,'POLYGYNAX PESSARIES 6S','10','1','1114673',16.00,'68.5','114',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000610','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2507,'DUREX PLAY (CHERRY)LUBRICATING GEL 50ML','6','1','1114710',16.00,'582.7028','1000.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000611','pcs','Inventory','VATABLE','0',NULL,0),(2508,'OPSITE POST-OP DRESSING 9.5CM*8.5CM','6','1','1114821',16.00,'175','303',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,16.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000612','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2509,'WELLWOMAN PLUS OMEGA 3-6-9','6','1','1114846',16.00,'1248.18','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000613','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2510,'KALUMA PAIN BALM 9ML','6','1','1114871',16.00,'70','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000614','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2511,'BECOACTIN SYRUP 200ML','6','1','1114874',16.00,'218','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000615','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2512,'L-MONTUS 5/10MG TABS 10S','10','1','1114875',16.00,'40.7','68',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000616','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2513,'COSVATE CREAM 15GMS','10','1','1115056',16.00,'147','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000617','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2514,'ALWAYS MAXI THICK EXTRA LONG 7S','12','1','1115227',16.00,'92.113','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000618','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(2515,'NEUROCARE TABS 30S','10','1','1115331',16.00,'41.499','69',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000619','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2516,'CURAM 625MG TABS 14S','10','1','1115380',16.00,'21.86','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,42.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000620','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2517,'AMLONG 5MG TABS 30S','11','1','1115512',16.00,'12.828','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000621','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2518,'ZYRTEC SYRUP 75ML','10','1','1115569',16.00,'434.00','674.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000622','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2519,'ALWAYS MAXI THICK LONG 7S','12','1','1115573',16.00,'92.114','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000623','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(2520,'AMLOZAAR 50MG TABS 30S','11','1','1115613',16.00,'44.35','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,115.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000624','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2521,'CENTRUM WOMAN 30S','6','1','1115699',16.00,'1050','1755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000625','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2522,'DIAMICRON MR 60MG 30S','11','1','1115770',16.00,'32.66','66',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,39.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000626','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2523,'ETORIX 90MG TABLETS 30S','10','1','1115783',16.00,'43.27','72',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,115.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000627','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2524,'WISDOM INTERDENTAL BRUSHES 0.45MM 5S','12','1','1115894',16.00,'328.86','530.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000628','pcs','Inventory','VATABLE','0',NULL,0),(2525,'DISPOSABLE NEEDLES G23* 25MM 100S','10','1','1116013',16.00,'1.2','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,114.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000629','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(2526,'XARELTO 20MG TABS 14S','11','1','1116104',16.00,'125.357','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,105.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000630','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2527,'MICROGYNON FE PILLS 28S','10','1','1116236',16.00,'72.225','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000631','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2528,'SURGICAL BLADE SIZE 22','10','1','1116272',16.00,'3.8','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000632','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(2529,'DIPROSALIC OINTMENT 30GM','10','1','1116714',16.00,'794.5','1330',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000633','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2530,'AMLONG 10MG TABS 30S','11','1','1116845',16.00,'22.428','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,17.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000634','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2531,'NIZORAL SHAMPOO 120ML','10','1','1116854',16.00,'995','1655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000635','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2532,'FLUCONA DENK 150MG CAPS','10','1','1117002',16.00,'152.45','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000636','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2533,'ETORIX 60MG TABS 40S','10','1','1117053',16.00,'28.85','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,21.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000637','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2534,'MICROFINE G32 (4MM) PEN NEEDLES 100S','11','1','1117056',16.00,'21.6','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,91.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000638','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(2535,'ANDOLEX C SPRAY 30ML','6','1','1117142',16.00,'983.68','1695.00012',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000639','pcs','Inventory','VATABLE','0',NULL,0),(2536,'CARTIL OMEGA CAPS 30S','6','1','1117148',16.00,'46.668','81',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,57.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000640','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2537,'PANADOL ELIXIR SYRUP CHILD 5-12 YEARS 100ML','6','1','1117153',16.00,'307.677','500',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000641','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2538,'MAXIPLAST PLASTER FABRIC 100S','6','1','1117183',16.00,'1.25','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000642','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2539,'NOGLUC 5MG TABS 112S','11','1','1117186',16.00,'3.537','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,68.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000643','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2540,'COARTEM 80MG/480MG 6S','10','1','1117209',16.00,'324.7','545',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000644','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(2541,'ORELOX 200MG TABS 10S','10','1','1117252',16.00,'140.868','236',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000645','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2542,'NEBILONG AM 5/5mg TABS 30S','11','1','1117294',16.00,'46.367','82',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,25.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000646','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2543,'CENTRUM 50+ WOMAN 30S','6','1','1117539',16.00,'1200','2005',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000647','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2544,'FEXET 120MG TABS 20S','10','1','1117562',16.00,'28.7','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000648','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2545,'FEXET 180MG TABS 20S','10','1','1117563',16.00,'34.3','57',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,26.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000649','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2546,'OMICAP 20MG CAPS 100S','11','1','1117629',16.00,'1.15','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000650','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2547,'AMOKLAVIN 625MG TABS 14S','10','1','1117634',16.00,'36.09','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000651','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2548,'KOTEX ULTRA THIN PADS NORMAL 8S','12','1','1117814',16.00,'91.875','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000652','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(2549,'EPIMAX BABY & JUNIOR JAR 400G','12','1','1117819',16.00,'1566','2665.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000653','pcs','Inventory','VATABLE','0',NULL,0),(2550,'STREPSILS LOZ HONEY & LEMON 100S','6','1','1117962',16.00,'8.74','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,26.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000654','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2551,'LIPITOR 10MG TABS 30S','11','1','1118126',16.00,'61.393','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,80.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000655','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2552,'ESOME 40MG CAPS 14S','11','1','1118327',16.00,'29.668','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000656','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2553,'ZAART-H 50/12.5MG TABS 30S','11','1','1118346',16.00,'26.895','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000657','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2554,'DIRACIP M TABS','10','1','1118347',16.00,'5.567','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000658','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2555,'DIRACIP M DS TABS 15S','10','1','1118350',16.00,'11.13','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000659','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2556,'DIRACIP M SUSPENSION 100ML','10','1','1118351',16.00,'167.00','280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000660','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2557,'ESOMAC 20MG TABS 28S','11','1','1118361',16.00,'21.77','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000661','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2558,'ESOMAC 40MG TABS 14S','11','1','1118387',16.00,'43.54','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,43.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000662','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2559,'MS TELLME PREGNANCY TEST KIT CASSETTE','6','1','1118436',16.00,'99.992','174.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000663','pcs','Inventory','VATABLE','0',NULL,0),(2560,'MS TELLME PREGNANCY TEST KIT MIDSTREAM','6','1','1118437',16.00,'199.9956','349.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000664','pcs','Inventory','VATABLE','0',NULL,0),(2561,'CEFASYN 500MG TABS 10S','10','1','1118445',16.00,'22.61','116',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000665','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2562,'AMOXYCILLIN 500MG CAPS 100S','10','1','1118494',16.00,'5.2','11',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000666','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2563,'STREPSILS REGULAR 100S','6','1','1118553',16.00,'8.74','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,96.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000667','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2564,'YOU C 1000 ISOTONIC LEMON WATER 500ML','6','1','1118696',16.00,'157.296','255.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000668','pcs','Inventory','VATABLE','0',NULL,0),(2565,'YOU C 1000 ISOTONIC ORANGE WATER 500ML','6','1','1118697',16.00,'157.296','255.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000669','pcs','Inventory','VATABLE','0',NULL,0),(2566,'YOU C VITAMIN ORANGE DRINK 140ML','6','1','1118698',16.00,'92.3012','149.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000670','pcs','Inventory','VATABLE','0',NULL,0),(2567,'YOU C VITAMIN LEMON DRINK 140ML','6','1','1118699',16.00,'92.3012','149.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000671','pcs','Inventory','VATABLE','0',NULL,0),(2568,'EROVITA HCG PREGNANCY STRIPS 100S','6','1','1118701',16.00,'9.86','17.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,61.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000672','pcs','Inventory','VATABLE','0',NULL,0),(2569,'ARCOXIA 90MG TABS 7S','10','1','1119829',16.00,'116.499','195',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000673','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2570,'KOMBIGLYZE 5/1000MG TABS 30S','11','1','1120052',16.00,'145.283','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000674','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2571,'GLYCERINE IDEAL 200ML','9','1','1120108',16.00,'197.2','304.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000675','pcs','Inventory','VATABLE','0',NULL,0),(2572,'FUCOL 150MG','10','1','1120177',16.00,'184','310',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000676','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2573,'DICLOFENAC GEL 20GMS','10','1','1120719',16.00,'20.22','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000677','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2574,'ESOME 20MG CAPS 14S','11','1','1120740',16.00,'18.24','33',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000678','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2575,'GAVISCON LIQUID PEPPERMINT 200ML','6','1','1120746',16.00,'534.33','900',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000679','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2576,'VOLTAREN R 100MG TABS 30S','10','1','1120748',16.00,'77.152','128',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,9.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000680','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2577,'EFFERALGAN 1000MG TABLETS 8S','6','1','1120749',16.00,'238','415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000681','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2578,'DUREX CONDOMS PLEASUREMAX ME','6','1','1120778',16.00,'203','354.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000682','pcs','Inventory','VATABLE','0',NULL,0),(2579,'D3 60K 60 000IU 4S','10','1','1120824',16.00,'65','110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000683','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2580,'FULCOVER 100MG TABS 10S','10','1','1120854',16.00,'85.5','148',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,16.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000684','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2581,'CEZINE 10MG TABS 10S','10','1','1120866',16.00,'17.27','30',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000685','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2582,'PANTOCID D 40MG TABS 30S','11','1','1120871',16.00,'32.016','56.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000686','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2583,'CIPLADON 1000MG EFF TABLETS 8S','6','1','1120877',16.00,'34.56','58',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,93.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000687','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2584,'ACNEVIT ANTI ACNE SERUM 30ML','9','1','1120885',16.00,'1505.00024','2560.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000688','pcs','Inventory','VATABLE','0',NULL,0),(2585,'CIALIS 5MG TABS 28S','11','1','1120906',16.00,'214.643','383',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000689','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2586,'CIALIS 20MG TABS 4S','11','1','1120998',16.00,'855.50','1560',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000690','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2587,'AMLOZAAR H 50/5MG TABS 30S','11','1','1121421',16.00,'49.919','88',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000691','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2588,'ACCURATE MALARIA TEST KIT 1S ( WITH BUFFER)','6','1','1121601',16.00,'185.6','319.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000692','pcs','Inventory','VATABLE','0',NULL,0),(2589,'PREGNACARE TABS 30S','6','1','1122065',16.00,'487','815',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000693','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2590,'BISOPROLOL 2.5MG TABS 28S','11','1','1122091',16.00,'3.143','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000694','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2591,'WISDOM FRESH EFFECT FRESH BREATH SPRAY 12.5ML','12','1','1122475',16.00,'294.408','475.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000695','pcs','Inventory','VATABLE','0',NULL,0),(2592,'LRP PIGMENTCLAR SERUM 30ml','9','1','1122500',16.00,'3440.81056','5539.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000696','pcs','Inventory','VATABLE','0',NULL,0),(2593,'LRP EFFACLAR FOAMING CLEANSER 200ML','9','1','1122504',16.00,'1433.93','2309.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000697','pcs','Inventory','VATABLE','0',NULL,0),(2594,'LRP ANTHELIOS SHAKA FLUID FACE SPF50+ 50ML','9','1','1122529',16.00,'2006.7072','3094.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000698','pcs','Inventory','VATABLE','0',NULL,0),(2595,'LRP ANTHELIOS SHAKA SPRAY SPF50+ 200ML','9','1','1122530',16.00,'2424.27','3904.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000699','pcs','Inventory','VATABLE','0',NULL,0),(2596,'FISHERMANS FRIEND LOZS 25G H/LEMON','6','1','1122615',16.00,'145','249.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000700','pcs','Inventory','VATABLE','0','0039.11.20',0),(2597,'ETORIX 120MG TABLETS 20S','10','1','1123030',16.00,'57.70','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,24.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000701','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2598,'CLOFORT 250MG/5ML SUSP 75ML','10','1','1123312',16.00,'935.3','1610',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000702','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2599,'TALGENTIS 20MG TABS 4S','10','1','1123314',16.00,'110.75','190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000703','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2600,'OTOBIOTIC EAR DROPS','10','1','1123380',16.00,'249.2','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000704','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2601,'LYCLEAR DERMAL CREAM 30 GM','9','1','1123387',16.00,'1250','2200',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000705','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2602,'RISEK 40MG SATCHETS 10S','11','1','1123388',16.00,'34.3','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000706','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2603,'TALGENTIS 5MG TABS 30S','10','1','1123395',16.00,'70.125','117',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,23.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000707','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2604,'NEBILET 5/12.5MG TABS 28S','11','1','1123464',16.00,'63.714','112',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000708','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2605,'NIVEA ROLL-ON WOMEN INVIS B & W CLEAR 50ML','12','1','1123532',16.00,'375.00016','494.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000709','pcs','Inventory','VATABLE','0',NULL,0),(2606,'FEMELLE COTTON BUDS 100S','12','1','1123536',16.00,'104.4','179.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000710','pcs','Inventory','VATABLE','0',NULL,0),(2607,'SUNDOWN ESSENTIAL ZINC 50MG CAPLETS 100S','6','1','1123805',16.00,'1125.00','1915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000711','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2608,'BLACK OPAL EVEN TRUE OIL FREE MOISTURIZER SPF 15','9','1','1124298',16.00,'1505.00024','2575.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000712','pcs','Inventory','VATABLE','0',NULL,0),(2609,'QUEST VITAMIN C EFFERVESCENT 1000MG 20S','6','1','1124302',16.00,'510','855',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000713','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(2610,'MENTHOL PLUS BALM 30ML','6','1','1124421',16.00,'95','164',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000714','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2611,'PRINCIPLE IMMUNE BOOST + EFF 20S','6','1','1124427',16.00,'634.5','1100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000715','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(2612,'GOFEN 400MG TABS 60S','6','1','1124454',16.00,'17.82','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,122.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000716','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2613,'SKYN INTENSE FEL DOTTED NON LATEX CONDOM','6','1','1125014',16.00,'401.2092','690.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000717','pcs','Inventory','VATABLE','0',NULL,0),(2614,'GOOD MORNING LUNG TONIC 60ML','6','1','1125044',16.00,'75.00','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000718','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2615,'CARTIL FORTE CAPSULES 30S','6','1','1125064',16.00,'40.202','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000719','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2616,'BELL BRAND NAIL CLIPPER L/S','12','1','1125084',16.00,'232','409.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000720','pcs','Inventory','VATABLE','0',NULL,0),(2617,'EUTHYROX 50MCG TABS 30S','11','1','1125092',16.00,'4.90','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000721','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2618,'EUTHYROX 100MCG TABS 30S','11','1','1125093',16.00,'7.77','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,120.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000722','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2619,'EROVITA MIDSTREAM PREGNANCY KIT','6','1','1125372',16.00,'197.20','339.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000723','pcs','Inventory','VATABLE','0',NULL,0),(2620,'MEDISIGN BLOOD GLUCOSE STRIPS 50S','11','1','1125382',16.00,'1393.12','2345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000724','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(2621,'TRUST CONDOMS RIBBED 24S','6','1','1125451',16.00,'37.5086','64.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,47.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000725','pcs','Inventory','VATABLE','0',NULL,0),(2622,'ACNES SCAR CARE 12G','9','1','1125462',16.00,'343.36','569.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000726','pcs','Inventory','VATABLE','0',NULL,0),(2623,'ACNES VIT C C10 SERUM 15ML','9','1','1125465',16.00,'1654.45','2729.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000727','pcs','Inventory','VATABLE','0',NULL,0),(2624,'ACNES TREATMENT 3PC PACK','9','1','1125466',16.00,'1154.2812','1919.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000728','pcs','Inventory','VATABLE','0',NULL,0),(2625,'DUREX CONDOMS FETHERLITE ULTRA 3S','6','1','1125627',16.00,'241.9876','454.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000729','pcs','Inventory','VATABLE','0',NULL,0),(2626,'ONE TOUCH SELECT PLUS STRIPS','11','1','1125767',16.00,'1357.2','2285.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000730','pcs','Inventory','VATABLE','0',NULL,0),(2627,'DUREX CONDOMS FETHERLITE ULTRA 12S','6','1','1125816',16.00,'902.2596','1554.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000731','pcs','Inventory','VATABLE','0',NULL,0),(2628,'JANUMET 50/500MG 56S','11','1','1125819',16.00,'60.714','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000732','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2629,'AMLODENK 5MG TABS 50S','11','1','1125909',16.00,'11.4','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000733','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2630,'ZULU TABS 10S','10','1','1125951',16.00,'22.80','34.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,45.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000734','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2631,'N/AID PRO-30 MAX 30 billion CAPS 30S','6','1','1125986',16.00,'2160.00','3675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000735','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2632,'MAALOX SATCHETS LEMON 20S','6','1','1125989',16.00,'433.982','750',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000736','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2633,'N/AID CHEW VITAMIN C 500MG TABLETS sugar free 50S','6','1','1126407',16.00,'1080','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000737','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(2634,'CEZINE 10MG/5ML 60MLS','10','1','1126415',16.00,'172.88','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000738','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2635,'PAROL SYRUP 100MLS','6','1','1126418',16.00,'165','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000739','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2636,'LEVOBACT 500MG TABS 10S','10','1','1126427',16.00,'22.202','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000740','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2637,'SEVEN SEAS MULTIVITAMIN SYRUP 100ML','6','1','1126521',16.00,'491.3','810',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000741','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2638,'GLEMONT L 10/5MG TABS 7S','10','1','1127044',16.00,'76.54','128',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000742','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2639,'ZULU MR TABLETS 20S','10','1','1127074',16.00,'29.68','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,43.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000743','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2640,'N/AID D3 5000IU TABS 60S','6','1','1127085',16.00,'1282.50','2185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000744','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2641,'QUEST OAD ENERGY B+C TABS 30s','6','1','1127104',16.00,'415','695',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000745','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2642,'QUEST OAD IMMUNE C TABS 30s','6','1','1127106',16.00,'470','785',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000746','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2643,'QUEST OAD MULTI TABS 30s','6','1','1127110',16.00,'480','810',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000747','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2644,'MENTHOL PLUS BALM 9ML JAR','6','1','1127115',16.00,'41','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000748','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2645,'M $ MS PEANUT 45G','12','1','1127371',16.00,'129.195','200.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000749','pcs','Inventory','VATABLE','0',NULL,0),(2646,'FAY WET WIPES PURE 10S','12','1','1127382',16.00,'52.45636','89.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000750','pcs','Inventory','VATABLE','0',NULL,0),(2647,'FAY POCKET HANKIES 10S','12','1','1127384',16.00,'16.80724','29.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000751','pcs','Inventory','VATABLE','0',NULL,0),(2648,'WELLKID IMMUNE CHEWABLE TABS 30S','6','1','1127444',16.00,'1045.455','1925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000752','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2649,'ARCOXIA 90MG TABS 28S','10','1','1127589',16.00,'116.439','198',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000753','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2650,'BIC J5MINI ASSORTED LIGHTER','12','1','1127629',16.00,'59.58224','95.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000754','pcs','Inventory','VATABLE','0',NULL,0),(2651,'PREVA CEREBROPROTEIN HYDROSYLATE 90MG CAPS 30S','10','1','1127876',16.00,'74.52','129',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000755','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2652,'ACCU-CHEK ACTIVE STRIPS 50S','11','1','1128055',16.00,'1450','2439.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000756','pcs','Inventory','VATABLE','0',NULL,0),(2653,'ANUSOL SUPPOSITORIES 12S','6','1','1128129',16.00,'38.75','68',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000757','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2654,'ULTRA VIT C PLUS ZINC EFF 20S','6','1','1128183',16.00,'568.50','955',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000758','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(2655,'LRP EFFACLAR DUO(+) SPF30 40ml','9','1','1128242',16.00,'1993.69','3209.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000759','pcs','Inventory','VATABLE','0',NULL,0),(2656,'ORAQUICK HIV SELF TEST..','10','1','1128305',16.00,'444.048','660.05392',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000760','pcs','Inventory','VATABLE','0',NULL,0),(2657,'DESLORADENK 5MG TABLETS 10S','10','1','1128321',16.00,'20.90','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,25.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000761','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2658,'KY JELLY 82GM','6','1','1128322',16.00,'700','1190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000762','pcs','Inventory','EXEMPTED','0','0039.11.41',0),(2659,'WELLBABY MULTIVITAMIN LIQUID 4M-4YRS 150ML','6','1','1128430',16.00,'998','1670',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000763','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2660,'ZITHROMAX 500MG TABS 3S','10','1','1128436',16.00,'1140','1930',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000764','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2661,'VAGI PLUS PESSARIES','10','1','1128438',16.00,'685.3','1170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000765','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2662,'DAY AND NIGHT NURSE CAPS 24S','6','1','1128442',16.00,'1250','2025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000766','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(2663,'SUNDOWN CALCIUM 600 PLUS TABS 120S','6','1','1128446',16.00,'1350','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000767','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2664,'SUNDOWN MELATONIN 3MG TABS 60S','6','1','1128453',16.00,'1080','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000768','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2665,'FLAGENTYL 500MG TABS 4S','10','1','1128476',16.00,'407.62','675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000769','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2666,'GALVUS MET 50/500MG TABS 30S','11','1','1128481',16.00,'90','149',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,130.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000770','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2667,'MAALOX PLUS TABS 40S','6','1','1128483',16.00,'16.794','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,80.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000771','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2668,'GALVUS MET 50/1000MG TABS 30S','11','1','1128486',16.00,'86.10','149',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000772','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2669,'BEECHAMS COLD & FLU HOT BLACKCURRANT 5S.','6','1','1128756',16.00,'348','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000773','pcs','Inventory','VATABLE','0',NULL,0),(2670,'HYDROCHLOROTHIAZIDE 25MG TABS 100S','11','1','1129047',16.00,'1.464','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,80.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000774','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2671,'ORBIT COMPLETE STRIPS PEPPERMINT 12s (14x12x32) - SUGAR FREE','12','1','1129057',16.00,'149.9996','230.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000775','pcs','Inventory','VATABLE','0',NULL,0),(2672,'ORBIT COMPLETE STRIPS STRAWBERRY 12s (14x12x32) - SUGAR FREE','12','1','1129058',16.00,'149.9996','230.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000776','pcs','Inventory','VATABLE','0',NULL,0),(2673,'ORBIT COMPLETE STRIPS RASBERRY 12s (14x12x32) - SUGAR FREE','12','1','1129059',16.00,'149.9996','230.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000777','pcs','Inventory','VATABLE','0',NULL,0),(2674,'ORBIT WILD STRAWBERRY 10s (20x30x10)','12','1','1129061',16.00,'52.50044','85.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000778','pcs','Inventory','VATABLE','0',NULL,0),(2675,'ORBIT BUBBLEMINT 10s (20x30x10)','12','1','1129063',16.00,'52.50044','85.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000779','pcs','Inventory','VATABLE','0',NULL,0),(2676,'ORBIT PEPPERMINT 10s (20x30x10)','12','1','1129064',16.00,'52.50044','85.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000780','pcs','Inventory','VATABLE','0',NULL,0),(2677,'SKITTLES BIGGER CANDY 38GM (1x14x38)- SUGAR COATED','12','1','1129067',16.00,'82.4992','130.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000781','pcs','Inventory','VATABLE','0',NULL,0),(2678,'KOTEX ULTRA THIN PADS SUPER 8s','12','1','1129079',16.00,'91.875','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000782','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(2679,'SKINS PERFORMANCE RING 1S','6','1','1129095',16.00,'490.0072','835.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000783','pcs','Inventory','VATABLE','0',NULL,0),(2680,'SKINS CONDOMS NATURAL 4S','6','1','1129106',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000784','pcs','Inventory','VATABLE','0',NULL,0),(2681,'SKINS CONDOMS ULTRA THIN 4S','6','1','1129107',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000785','pcs','Inventory','VATABLE','0',NULL,0),(2682,'GAVISCON DOUBLE ACTION TABLETS 24S','6','1','1129109',16.00,'750','1420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000786','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2683,'GAVISCON DOUBLE ACTION TABLETS 48S','6','1','1129110',16.00,'1200','2415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000787','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2684,'AVALIFE DAILY FLORA BALANCE CAPS 30S','6','1','1129111',16.00,'765','1325',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000788','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2685,'ACCU-CHEK INSTANT MACHINE','11','1','1129138',16.00,'0.0116','4160.0036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000789','pcs','Inventory','VATABLE','0',NULL,0),(2686,'FEMIPLAN PILLS 28S','10','1','1129160',16.00,'60.00','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000790','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2687,'BIO HEALTH EXTRA ZINC 60S','6','1','1129317',16.00,'905','1540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000791','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2688,'APTAMIL BABY MILK 3 800GM','6','1','1129417',16.00,'2160.64964','2874.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000792','pcs','Inventory','VATABLE','0',NULL,0),(2689,'NIGHT NURSE LIQUID 160ML','6','1','1129439',16.00,'1130','1890',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000793','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(2690,'STEROPLAST FABRIC ASS 16S','6','1','1129496',16.00,'75.00','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000794','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2691,'STEROPLAST WASHPROOF ASS 16S','6','1','1129497',16.00,'75.00','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000795','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2692,'STEROPLAST CLEAR ASS 16S','6','1','1129498',16.00,'75','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000796','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2693,'ENO LEMON SACHETS 4S','6','1','1129499',16.00,'71.05','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000797','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2694,'CEOVIT TABS 250MG 200S','6','1','1129519',16.00,'4.785','11.50024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000798','pcs','Inventory','VATABLE','0',NULL,0),(2695,'MELCAM 7.5 TABLET 100S','10','1','1129522',16.00,'2.438','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000799','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2696,'MELCAM 15 TABLET 50S','10','1','1129523',16.00,'4.5','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000800','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2697,'LORATIN FAST 100S','10','1','1129524',16.00,'6.00','10.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,200.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000801','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2698,'NILACID SUSPENSION 200ML','6','1','1129530',16.00,'180','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000802','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2699,'OSMOLAX SOLUTION 200ML','6','1','1129532',16.00,'450','780',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000803','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2700,'AMBROX SYRUP 100ML','6','1','1129533',16.00,'131.25','230',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000804','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2701,'ADOVAS SYRUP 100ML','6','1','1129534',16.00,'170','300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000805','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2702,'ZIMAX 500 TABLET','10','1','1129538',16.00,'112.50','195',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000806','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2703,'SQUARE ZINC 20 TABLET 100S','6','1','1129561',16.00,'3.654','6.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000807','pcs','Inventory','VATABLE','0',NULL,0),(2704,'VISINE ALLERGY EYE DROPS 15ML','6','1','1129564',16.00,'1010','1690',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000808','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2705,'VALUPAK VITAMIN B COMPLEX TABS 60S','6','1','1129581',16.00,'200','350',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000809','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2706,'CANESPOR SOLUTION','10','1','1129603',16.00,'657.08','1125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000810','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2707,'ECOFREE PLUS 10S','10','1','1129605',16.00,'35.2','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000811','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2708,'LRP EFFACLAR DUO(+) 40ml','9','1','1129841',16.00,'1538.50','2479.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000812','pcs','Inventory','VATABLE','0',NULL,0),(2709,'LRP EFFACLAR FOAM CLEANSER 400ml','9','1','1129843',16.00,'2118.30','3264.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000813','pcs','Inventory','VATABLE','0',NULL,0),(2710,'LRP LIPIKAR SYNDET AP+ WASH 200ml','12','1','1129881',16.00,'1111.09092','1789.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000814','pcs','Inventory','VATABLE','0',NULL,0),(2711,'DISSENTEN 2MG 15S','6','1','1129899',16.00,'345','590',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000815','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2712,'BENYLIN EXPECTORANT 200ML','6','1','1129910',16.00,'450','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000816','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2713,'LENOR -72 TABS','10','1','1129921',16.00,'25','43',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000817','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2714,'PAPERMINTS 24 STRIPS','12','1','1129979',16.00,'118.1112','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000818','pcs','Inventory','VATABLE','0',NULL,0),(2715,'AVALIFE FEMIFLORA CAPS 30S','6','1','1129983',16.00,'1360','2340',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000819','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2716,'NIVEA DEEP DEO ROLL ON FOR MEN 50ML','12','1','1130024',16.00,'375.00016','524.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000820','pcs','Inventory','VATABLE','0',NULL,0),(2717,'ONE TOUCH SELECT PLUS FLEX SYSTEM KIT-for exchange','11','1','1130041',16.00,'0.0116','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000821','pcs','Inventory','VATABLE','0',NULL,0),(2718,'METFORMIN HCL 500MG TABS 60S','11','1','1130049',16.00,'1.935','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000822','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2719,'VITAHEALTH COD LIVER OIL 100ML','6','1','1130057',16.00,'323','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000823','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2720,'VITAHEALTH COD LIVER OIL 500ML','6','1','1130059',16.00,'1466.25','2435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000824','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2721,'VITAHEALTH PURE FISH OIL CAPS 60S','6','1','1130060',16.00,'786.25','1315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000825','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2722,'VITAHEALTH JOINTCARE DAILY CAPS 30S','6','1','1130061',16.00,'1037','1725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000826','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2723,'FLEMING 457MG/5ML SUSP 70ML','10','1','1130080',16.00,'414.923','715',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000827','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2724,'FLEMING 1GM TABS 14S','10','1','1130081',16.00,'34.674','58',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000828','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2725,'N/AID ZINC PICOLINATE TABS 30S','6','1','1130091',16.00,'729.00','1240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000829','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2726,'DOVE SOAP GO -FRESH RESTORE 100G','12','1','1130159',16.00,'178.0716','279.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000830','pcs','Inventory','VATABLE','0',NULL,0),(2727,'ENO TABLETS 100S','6','1','1130178',16.00,'4.282','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,25.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000831','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2728,'GILLETTE BLUE 11 PLUS DISPOSABLES 3S','12','1','1130196',16.00,'135.05532','209.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000832','pcs','Inventory','VATABLE','0',NULL,0),(2729,'AQUAMIST WATER 300ML * 24s','6','1','1130232',16.00,'27.01708333','49.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,32.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000833','pcs','Inventory','VATABLE','0',NULL,0),(2730,'AQUAMIST WATER 500ML *24s','6','1','1130233',16.00,'35.19092','64.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,15.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000834','pcs','Inventory','VATABLE','0',NULL,0),(2731,'WELLTEEN HIM PLUS','6','1','1130236',16.00,'712','1190',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000835','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2732,'AQUAMIST LEMON FLAVOURED WATER *12','6','1','1130271',16.00,'51.62773333','89.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,19.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000836','pcs','Inventory','VATABLE','0',NULL,0),(2733,'AZITHRAX 500MG 3S','10','1','1130294',16.00,'293.22','495',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000837','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2734,'TRANDATE 200MG TABS 100S','11','1','1130481',16.00,'33.6','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000838','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2735,'TRANDATE 100MG TABS 100S','11','1','1130482',16.00,'28','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000839','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2736,'COLGATE T/BRUSH DOUBLE ACTION - STD','12','1','1130545',16.00,'51.098','74.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000840','pcs','Inventory','VATABLE','0',NULL,0),(2737,'COLGATE HERBAL T/PASTE 35G - ANTIBACTERIA','12','1','1130552',16.00,'58.41876','89.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000841','pcs','Inventory','VATABLE','0',NULL,0),(2738,'GRAMOCEF-O 400MG CAPS 10S','10','1','1130566',16.00,'79.6','133',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,13.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000842','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2739,'SWISS HERBAL LOZENGES EUCALYPTUS & MENTHOL 12S','6','1','1130592',16.00,'270','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000843','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2740,'SWISS HERBAL LOZENGES HONEY 12S','6','1','1130594',16.00,'270','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000844','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2741,'TREVIAMET 50/1000MG TABS 35S','11','1','1130635',16.00,'49.29','85',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,390.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000845','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2742,'LEMSIP CHESTY COUGH SYRUP 180ML','6','1','1130643',16.00,'1300','2175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000846','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2743,'TREVIAMET 50/500MG TABS 35S','11','1','1130666',16.00,'49.286','85',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000847','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2744,'MAALOX PLUS SUSPENSION 250ML','6','1','1130671',16.00,'527.99','910',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000848','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2745,'INVOLYN 408MG CAPS 10S','10','1','1130698',16.00,'209.15','360',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000849','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2746,'LRP EFFACLAR ACNE ROUTINE KIT -3 in 1','9','1','1130715',16.00,'2202.38296','3550.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000850','pcs','Inventory','VATABLE','0',NULL,0),(2747,'CLARIWIN TABS 500MG 10S','10','1','1130744',16.00,'24.211','42.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000851','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2748,'QUEST OAD MULTI CHEWABL KIDS 30S','6','1','1130907',16.00,'460','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000852','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2749,'BEUFLOX D EYE DROPS 5ML','10','1','1131008',16.00,'203.75','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000853','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2750,'DUREX PLAY WARMING 50ML','6','1','1131031',16.00,'586.4612','1000.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000854','pcs','Inventory','VATABLE','0',NULL,0),(2751,'GOODLIFE HAND SANITIZER 50ML','12','1','1131037',16.00,'58','119.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000855','pcs','Inventory','VATABLE','0',NULL,0),(2752,'CELABET TABS 30S','10','1','1131167',16.00,'11.16','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000856','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2753,'IBUPROFEN-DENK 400MGS 20S','6','1','1131190',16.00,'10.00','17',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,55.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000857','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2754,'FLUGONE EX 120ML','6','1','1131209',16.00,'194','315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000858','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(2755,'MTM 100MG TABLETS 4S','10','1','1131240',16.00,'43','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000859','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2756,'MTM 50MG TABLETS 4S','10','1','1131241',16.00,'32','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000860','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2757,'EMPIGET 10MG 14S','11','1','1131254',16.00,'64.29','113',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,21.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000861','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2758,'STREPSILS HONEY AND LEMON 6S','6','1','1131259',16.00,'56.39','96.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000862','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2759,'STREPSILS REGULAR 6S','6','1','1131260',16.00,'56.39','96.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,16.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000863','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2760,'SMUGEL LUBRICATION GEL 50G','6','1','1131321',16.00,'199.75','350',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000864','pcs','Inventory','EXEMPTED','0','0039.11.41',0),(2761,'EPIMOL-B BABY & JUNIOR EMOLLIENT CREAM 400G','12','1','1131325',16.00,'1084.95','1814.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000865','pcs','Inventory','VATABLE','0',NULL,0),(2762,'JAMIESON B6+B12 AND FOLIC ACID TABLETS 110S','6','1','1131342',16.00,'343.71','595',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000866','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2763,'JAMIESON ZINC LOZENGES HONEY LEMON 30S','6','1','1131354',16.00,'758.7','1305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000867','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2764,'JAMIESON COLD FIGHTER CHEWABLE TABLETS 30S','6','1','1131355',16.00,'450','1090',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000868','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(2765,'JAMIESON MULTI KIDS CHEWABLE TABLETS 60S','6','1','1131356',16.00,'1087.75','1875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000869','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2766,'CIPZICON 500MG TABS 10S','10','1','1131369',16.00,'7.5','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000870','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2767,'CLAVCON 625 MG TABS 14S','10','1','1131370',16.00,'17.857','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000871','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2768,'CONACE MR TABS 30S','10','1','1131371',16.00,'6.667','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000872','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2769,'CONZIT 500MG TABS 3S','10','1','1131376',16.00,'70','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000873','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2770,'ESOMCON 20MG TABS 28S','11','1','1131378',16.00,'7.143','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000874','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2771,'ESOMCON 4OMG TABS 14S','11','1','1131379',16.00,'14.286','27',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000875','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2772,'LRP LIPIKAR BAUME AP+M 400ml','12','1','1131399',16.00,'2376.30292','3684.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000876','pcs','Inventory','VATABLE','0',NULL,0),(2773,'NATURAL COTTONS MAXI PADS SUPER 10S','12','1','1131470',16.00,'463.5','705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000877','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(2774,'LIPITAS 10MG TABS 30S','11','1','1131480',16.00,'35.833','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000878','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2775,'NEALGYL 80MG ORODISPERSIBLE TABS 10S','10','1','1131489',16.00,'59.5','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000879','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2776,'CAL-C-VITA PLUS EFF TABLETS 10S','6','1','1131510',16.00,'326.7','565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000880','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(2777,'GOODLIFE HAND SANITIZER 500ML','12','1','1131535',16.00,'290','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000881','pcs','Inventory','VATABLE','0',NULL,0),(2778,'DIGEVA F SATCHETS 25s','6','1','1131571',16.00,'20.4','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,24.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000882','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2779,'LEPONEX 25MG 100S','10','1','1131578',16.00,'61.275','112.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000883','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2780,'NAT C VITAMIN C TABS 1000MG 30S','6','1','1131586',16.00,'820.75','1375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000884','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(2781,'IBUBROFEN DENK 400MG TABS 100S','6','1','1131589',16.00,'6.996','12.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,32.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000885','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2782,'IBUBROFEN DENK 600MG 20S','6','1','1131590',16.00,'16.49','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,38.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000886','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2783,'MEDIPHEN 400MG TABS 100S','6','1','1131748',16.00,'1.3','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,44.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000887','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2784,'PHARMAGENTACIN E/E DROPS 10ML','10','1','1131755',16.00,'21','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000888','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2785,'PHARMAPHENICOL EYE DROPS 10ML','10','1','1131764',16.00,'23','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000889','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2786,'PHARMADEXONE EYE DROPS 5ML','10','1','1131766',16.00,'81','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000890','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2787,'PHARMADEXNICOL EYE DROPS 5ML','10','1','1131769',16.00,'130','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000891','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2788,'PHARMADEXNEOCIN EYE/EAR DROPS 10ML','10','1','1131771',16.00,'88.2','150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000892','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2789,'PHARMASINE EYE DROPS 10ML','10','1','1131778',16.00,'207','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000893','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2790,'PHARMACROM EYE DROPS 10ML','10','1','1131779',16.00,'180','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000894','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2791,'BUSCOPAN PLUS TABS 40S','6','1','1131784',16.00,'31.032','50',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000895','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2792,'TAMEPYN TABS 20S','10','1','1131792',16.00,'10.8','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000896','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2793,'NAT C YUMMY GUMMIES 125MG 25S','6','1','1131797',16.00,'933','1450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000897','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2794,'QUEST OAD ZINC PLUS 15MG TABS 30S','6','1','1131802',16.00,'370','620',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000898','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2795,'COLFRESH GUM ICEMINT SUGARFREE 21G','12','1','1131859',16.00,'75.4','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000899','pcs','Inventory','VATABLE','0',NULL,0),(2796,'COLFRESH GUM SPEARMINT SUGARFREE 21G','12','1','1131860',16.00,'75.4','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000900','pcs','Inventory','VATABLE','0',NULL,0),(2797,'COLFRESH GUM WHITE SUGARFREE 21G','12','1','1131861',16.00,'75.4','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000901','pcs','Inventory','VATABLE','0',NULL,0),(2798,'COLFRESH GUM STRAWBERRY SUGARFREE 21G','12','1','1131862',16.00,'75.4','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000902','pcs','Inventory','VATABLE','0',NULL,0),(2799,'PYNSTOP TABS 20S','10','1','1131871',16.00,'13.384','24',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,42.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000903','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2800,'H&B VITAMIN C &ZINC ORANGE EFF 20S','6','1','1131907',16.00,'701.75','1210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000904','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(2801,'MAMALAIT GRANULES 100GM','6','1','1131921',16.00,'1183.15','2015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000905','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(2802,'NOVACLAV 625MG TABS 20S','10','1','1131927',16.00,'16.168','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000906','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2803,'DISPOSABLE KIDS 3PLY SURGICAL MASKS 50S','10','1','1131940',16.00,'6.4','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000907','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(2804,'JAMIESON ZINC 50MG 100 S','6','1','1131945',16.00,'1296.9','2235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000908','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2805,'QUEST OAD IMMUNE MULTI TABS 30S','6','1','1131954',16.00,'595','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000909','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2806,'APTAMIL BABY MILK 400GM 2','6','1','1132095',16.00,'1121.80004','1494.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000910','pcs','Inventory','VATABLE','0',NULL,0),(2807,'RHINAPHYTO 100ML','6','1','1132098',16.00,'348.154','585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000911','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2808,'MENTHODEX SUGAR FREE LOZENGES BLACKCURRANT 36S','6','1','1132101',16.00,'449.58','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000912','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2809,'AZIX 500MG TABS 3S','10','1','1132130',16.00,'383.00','655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000913','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2810,'BENYLIN 4 FLU 100ML','6','1','1132148',16.00,'342','585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000914','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2811,'DISPOSABLE 3PLY BLACK SURGICAL MASKS 50S','10','1','1132162',16.00,'7','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000915','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(2812,'BEROCCA PERFORMANCE EFF TABS ORANGE 20S','6','1','1132175',16.00,'724.5','1275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000916','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2813,'EMCON 0.75MG TABLETS','10','1','1132215',16.00,'29','55',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000917','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2814,'PANADOL ACTIFAST SOLUBLE TABS 12S','6','1','1132216',16.00,'276','475',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000918','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2815,'KLEAR DECONGESTANT CAPSULES 10S','6','1','1132239',16.00,'20','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000919','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2816,'MAXIMMUNE CHEW TABS 30S','6','1','1132240',16.00,'720','1240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000920','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2817,'BENYLIN CHILD WET COUGH MUCUS RELIEF 100ML','6','1','1132317',16.00,'423','720',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000921','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2818,'GOODLIFE PURE PETROLEUM JELLY TUBE 50GM','9','1','1132323',16.00,'39.5908','74.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000922','pcs','Inventory','VATABLE','0',NULL,0),(2819,'GOODLIFE BABY PETROLEUM JELLY TUBE 100GM','12','1','1132324',16.00,'68.3588','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000923','pcs','Inventory','VATABLE','0',NULL,0),(2820,'GOODLIFE SANITIZER SPRAY WITH MOISTURIZER 120ML','12','1','1132328',16.00,'97.44','219.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000924','pcs','Inventory','VATABLE','0',NULL,0),(2821,'AZICIP 500MG TABS 3S','10','1','1132339',16.00,'190.01','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000925','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2822,'MEGYL 400MG TABS 100S','10','1','1132455',16.00,'1.50','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,159.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000926','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2823,'KN95 MEDICAL PROTECTIVE FACE MASK 25S','10','1','1132547',16.00,'84','180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000927','pcs','Inventory','EXEMPTED','0','0096.11.02',0),(2824,'ELYMOX SUSP 125MG/5ML ML','10','1','1132556',16.00,'50','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000928','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2825,'AXYLIN SUSP 100ML','10','1','1132562',16.00,'65','120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000929','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2826,'CLOTRINE CREAM 20GM','10','1','1132564',16.00,'31.5','55',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000930','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2827,'ACINET 457MG/5ML SUSP 100ML','10','1','1132568',16.00,'220','385',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000931','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2828,'DOMADOL 50MG TABS 10S','10','1','1132578',16.00,'10.519','20',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000932','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2829,'GIFOL TABS 100S','11','1','1132588',16.00,'2.12','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,79.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000933','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2830,'CURAMOL SUSPENSION 60ML','6','1','1132696',16.00,'23','42',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000934','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2831,'BACTROBAN 2% OINTMENT 15G','10','1','1132971',16.00,'405.5','755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000935','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2832,'DUREX CONDOMS FEEL','6','1','1133235',16.00,'185.60','319.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000936','pcs','Inventory','VATABLE','0',NULL,0),(2833,'PANADOL BABY & INFANT SUSP 60ML','6','1','1133291',16.00,'145.892','235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000937','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2834,'CONCEIVE PLUS FERTILITY SUPPORT CAPSULES FOR WOMEN 60S','6','1','1133351',16.00,'3160','5435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000938','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2835,'STEROPLAST BLISTER CUSHIONS 4s','6','1','1133387',16.00,'160','270',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000939','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2836,'STEROPLAST LARGE PLASTERS 4s','6','1','1133388',16.00,'110','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000940','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2837,'MYLAN HIV SELF TEST KIT','10','1','1133464',16.00,'538.7371429','810.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000941','pcs','Inventory','VATABLE','0',NULL,0),(2838,'THOMPSON VIT E 265MG(400 IU) 30S','6','1','1133519',16.00,'839','1410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000942','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2839,'SUNDOWN MELATONIN 3MG TABS 120S','6','1','1133546',16.00,'1620','2760',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000943','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2840,'DIATESSE XPER GLUCOSE-KETONE METER','11','1','1133548',16.00,'1955.421','3540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000944','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(2841,'DIATESSE XPER GLUCOSE TEST STRIPS 50S','11','1','1133549',16.00,'1564.803','2835',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000945','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(2842,'DIATESSE B-KETONE TEST STRIPS 10S','11','1','1133550',16.00,'2011.896','3645',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000946','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(2843,'QUEST OAD MULTI CHEWABLE KIDS + CHEWABLE KIDS PROBIOTIC GIFT','6','1','1133580',16.00,'460','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000947','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2844,'GOFEN 200MG SOFTGEL CAPS 60S','6','1','1133883',16.00,'11.98','22',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,240.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','','5000948','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2845,'ABIDEC MULTIVITAMIN SYRUP WITH OMEGA 3 150ML','6',NULL,'1100060',16.00,'1250','2125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000949','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2846,'ACCU-CHEK ACTIVE MACHINE','11',NULL,'1100075',16.00,'1.16','2364.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000950','pcs','Inventory','VATABLE','0',NULL,0),(2847,'ACCU-CHEK SOFTCLIX LANCETS 200S','11',NULL,'1100081',16.00,'7.5','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000951','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(2848,'ACLOTAS SR 200MG TABS 50S','10',NULL,'1100089',16.00,'29.9','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000952','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2849,'ACTION TABLETS 100S','6',NULL,'1100113',16.00,'3.13','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000953','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2850,'ACYCLOVIR 5% CREAM 10G','10',NULL,'1100140',16.00,'1200','1995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000954','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2851,'ACYCLOVIR DENK 5% CREAM 7GM','10',NULL,'1100142',16.00,'669.5','1140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000955','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2852,'ADDYZOA CAPSULES','10',NULL,'1100160',16.00,'803','1385',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000956','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(2853,'ADOL 250MG SUPPOSITORIES 10S','10',NULL,'1100165',16.00,'29.23','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000957','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2854,'ADVANTAN CREAM 15GM','10',NULL,'1100175',16.00,'752','1250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000958','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2855,'ADVANTAN OINTMENT 15GM','10',NULL,'1100176',16.00,'752','1250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000959','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2856,'AERO CHAMBER WITH INFANT MUSK','11',NULL,'1100187',16.00,'3927','6560',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000960','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(2857,'AERO CHAMBER WITH CHILD MASK','11',NULL,'1100188',16.00,'3927','6560',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000961','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(2858,'ALDOMET 500MG TABS 30S','11',NULL,'1100228',16.00,'29.1','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000962','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2859,'ALLOPURINOL 100MG TABS 28S','11',NULL,'1100252',16.00,'4.286','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000963','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2860,'ALWAYS ULTRA EXTRA LONG 7S','12',NULL,'1100318',16.00,'92.03','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000964','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(2861,'ALZOLAM 0.25MG TABS 100S','10',NULL,'1100319',16.00,'17.25','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000965','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2862,'AMARYL 1MG TABS 30S','11',NULL,'1100325',16.00,'18.333','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000966','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2863,'AMARYL 4MG TABS 30S','11',NULL,'1100327',16.00,'69.642','123',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000967','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2864,'AMARYL M 2/500MG TABS 30S','11',NULL,'1100328',16.00,'35.64','63',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000968','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2865,'AMITRIPTYLINE 25MG TABS 100S','10',NULL,'1100346',16.00,'1.77','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000969','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2866,'AMITRIPTYLINE 25MG TABS 28S','10',NULL,'1100347',16.00,'3.214','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000970','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2867,'AMLOCIP NB 5/5MG TABS 30S','11',NULL,'1100348',16.00,'36.9','65',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000971','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2868,'AMLOSUN 5MG TABS 30S','11',NULL,'1100350',16.00,'21.667','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000972','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2869,'AMOXIL FORTE SYRUP 250MG/5ML 100ML','10',NULL,'1100360',16.00,'307','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000973','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2870,'AMPICLOX NEONATAL DROPS 8ML','10',NULL,'1100370',16.00,'156.565','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000974','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2871,'ANTHISAN CREAM 25GM','6',NULL,'1100405',16.00,'510','885',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000975','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2872,'APROVEL 150MG TABS 28S','11',NULL,'1100425',16.00,'68.707','121',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000976','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2873,'APROVEL 300MG TABS 28S','11',NULL,'1100426',16.00,'88.856','157',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000977','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2874,'ARICEPT 5MG TABS 28S','11',NULL,'1100457',16.00,'95.343','167',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000978','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2875,'AQUEOUS CREAM 500GM','10',NULL,'1100458',16.00,'162.4','294.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000979','pcs','Inventory','VATABLE','0','0039.11.28',0),(2876,'ASTYMIN FORTE CAPSULES','6',NULL,'1100553',16.00,'562.1','970',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000980','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2877,'ASTYMIN LIQUID 200ML','6',NULL,'1100555',16.00,'263','455',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000981','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2878,'ATENOLOL 50MG TABS 28S','11',NULL,'1100570',16.00,'6.786','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000982','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2879,'ATRIPLA TABS 30S','11',NULL,'1100583',16.00,'8631.06','12434',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000983','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2880,'AUGMENTIN ES SUSP 642.9MG/5ML - 100ML','10',NULL,'1100601',16.00,'1525','2550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000984','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2881,'AXE BRAND UNIVERSAL OIL 3ML','6',NULL,'1100686',16.00,'95','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000985','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2882,'AZATHIOPRINE 50MG TABS 56S','11',NULL,'1100691',16.00,'7.857','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000986','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2883,'AZTOR 40MG 50S','11',NULL,'1100703',16.00,'50','88',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000987','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2884,'BACH RESCUE NIGHT 10ML','6',NULL,'1100811',16.00,'1200','2040',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000988','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2885,'BACH RESCUE REMEDY 10ML','6',NULL,'1100813',16.00,'1300','2210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000989','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2886,'BALLET MOSQUITO REPELLANT P/JELLY 100GM','9',NULL,'1100927',16.00,'126.00036','164.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000990','pcs','Inventory','VATABLE','0',NULL,0),(2887,'BAZUKA VERRUCA GEL 5GM','6',NULL,'1100976',16.00,'780','1345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000991','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2888,'BELL MOUSTACHE SCISSORS','12',NULL,'1101022',16.00,'133.4','285.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000992','pcs','Inventory','VATABLE','0',NULL,0),(2889,'BENADRYL ONE A DAY RELIEF TABLETS 7S','6',NULL,'1101039',16.00,'665','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000993','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2890,'BENDURIC 5MG TABS 100S','11',NULL,'1101044',16.00,'2.21','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000994','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2891,'BENYLIN 4 FLU TABS 24S','6',NULL,'1101046',16.00,'760','1300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000995','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(2892,'BENZHEXOL 5MG TABS','10',NULL,'1101059',16.00,'2.222','3.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000996','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2893,'BETADINE ANTISEPTIC SOLN 500ML','6',NULL,'1101082',16.00,'872.784','1484.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000997','pcs','Inventory','VATABLE','0',NULL,0),(2894,'BETALOC ZOK 100MG TABS 30S','11',NULL,'1101097',16.00,'35.44','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000998','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2895,'BETALOC ZOK 25MG TABS 14S','11',NULL,'1101098',16.00,'34.434','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5000999','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2896,'BETAPYN TABS 18S','10',NULL,'1101101',16.00,'18.385','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001000','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2897,'BETASERC 8MG TABS 100S','10',NULL,'1101104',16.00,'29.64','50',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001001','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2898,'A.VOGEL ECHINAFORCE 50ML','6',NULL,'1101168',16.00,'1001','1705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001002','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(2899,'BIO OIL 125ML','9',NULL,'1101209',16.00,'865.05028','1430.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001003','pcs','Inventory','VATABLE','0',NULL,0),(2900,'BIO OIL 60ML','9',NULL,'1101211',16.00,'521.95012','874.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001004','pcs','Inventory','VATABLE','0',NULL,0),(2901,'BI-PRETERAX 5/1.25MG TABS 30S','11',NULL,'1101220',16.00,'58.35','104',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001005','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2902,'BISPANOL SYRUP 100ML','6',NULL,'1101229',16.00,'144.9','255',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001006','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2903,'BISPANOL SYRUP 60ML','6',NULL,'1101230',16.00,'99.75','175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001007','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2904,'BONJELA ADULT 16YEARS + 15G','6',NULL,'1101346',16.00,'680','1160',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001008','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2905,'BONJELA TEETHING GEL 15GM','6',NULL,'1101349',16.00,'585','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001009','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2906,'BRALIX TABS 100S','10',NULL,'1101481',16.00,'6.48','11.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001010','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2907,'BRANULA G18','10',NULL,'1101482',16.00,'30','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001011','pcs','Inventory','EXEMPTED','0','0039.11.32',0),(2908,'BRANULA G24','10',NULL,'1101485',16.00,'13','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001012','pcs','Inventory','EXEMPTED','0','0039.11.32',0),(2909,'BRO ZEDEX SYRUP 100ML','6',NULL,'1101505',16.00,'165','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001013','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2910,'BROZELIN EXPECTORANT 100ML','6',NULL,'1101521',16.00,'228.96','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001014','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2911,'BRUSTAN SUSPENSION 100ML','6',NULL,'1101551',16.00,'215','370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001015','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2912,'BUDECORT 100MCG INHALER','11',NULL,'1101583',16.00,'841.08','1430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001016','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2913,'CABALIN 25MG CAPS 24S','11',NULL,'1101710',16.00,'21.085','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001017','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2914,'CALCIMAX SYRUP 150ML','6',NULL,'1101750',16.00,'680','1170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001018','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2915,'CALCINOL 1000 WITH D3 SACHETS 10S','6',NULL,'1101751',16.00,'56.5','98',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001019','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2916,'CALCIUM C 1000 SANDOZ 10S','6',NULL,'1101753',16.00,'530.1','915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001020','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(2917,'CALPOL SALINE NASAL SPRAY 15ML','6',NULL,'1101768',16.00,'630','1085',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001021','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2918,'CALPOL SIXPLUS SUSPENSION S/FREE 80ML','6',NULL,'1101770',16.00,'660','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001022','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2919,'CANDID V 6 PESSARIES','10',NULL,'1101825',16.00,'336.42','570',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001023','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2920,'CANDITRAL 100MG CAP 12S','10',NULL,'1101829',16.00,'134.39','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001024','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2921,'CARBIMAZOLE 5MG TABS 100S','11',NULL,'1101867',16.00,'2.185','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001025','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2922,'CARDINOL 50MG TABS 28S','11',NULL,'1101875',16.00,'4.429','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001026','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2923,'CARDIVAS 6.25MG TABS 30S','11',NULL,'1101882',16.00,'25.167','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001027','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2924,'CARTIL SUPER FORTE CAPSULES 30S','6',NULL,'1101918',16.00,'44.098','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001028','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2925,'CATAFLAM DROPS 0.5MG/ML 15ML','10',NULL,'1101926',16.00,'587.25','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001029','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2926,'CAUSTIC PENCIL 40%','10',NULL,'1101930',16.00,'208.8','354.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001030','pcs','Inventory','VATABLE','0','0039.11.28',0),(2927,'CELCOXX 200MG CAPS 50S','10',NULL,'1101951',16.00,'32.2','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001031','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2928,'CELESTAMINE TABS 30S','10',NULL,'1101953',16.00,'14.437','24',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001032','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2929,'CENTRUM ADVANCE 30S','6',NULL,'1101966',16.00,'900','1505',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001033','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2930,'CENTRUM ADVANCE 50+ 30S','6',NULL,'1101967',16.00,'850','1420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001034','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2931,'CENTRUM ADVANCE 50+ 60S','6',NULL,'1101968',16.00,'1550','2590',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001035','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2932,'CENTRUM KIDS 30S','6',NULL,'1101975',16.00,'1050','1755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001036','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2933,'CENTRUM PERFORMANCE 30S','6',NULL,'1101976',16.00,'1140','1905',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001037','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2934,'CERAZETTE 75MCG TABS 3S','10',NULL,'1101988',16.00,'693.333','1160',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001038','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(2935,'CETAMOL SYRUP 60ML','6',NULL,'1101999',16.00,'40','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001039','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2936,'CILOXAN EYE DROPS','10',NULL,'1102127',16.00,'379.6','635',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001040','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2937,'CIPROBAY 500MG TABS 10S','10',NULL,'1102135',16.00,'297.068','494',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001041','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2938,'CIPROBAY HC OTIC DROPS 10ML','10',NULL,'1102137',16.00,'1147.5','1975',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001042','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2939,'CITAL SYRUP','6',NULL,'1102148',16.00,'240.3','415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001043','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2940,'CITROSODA ORIGINAL 120GM','6',NULL,'1102157',16.00,'660.4','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001044','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2941,'CITROSODA ORIGINAL 60G','6',NULL,'1102158',16.00,'446.95','775',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001045','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2942,'CLARITEK SUSP 50ML','10',NULL,'1102183',16.00,'434.7','750',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001046','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2943,'CLARITEK 250MG TABS 10S','10',NULL,'1102184',16.00,'80.5','134',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001047','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2944,'CLAVULIN 1GM TABS 14S','10',NULL,'1102205',16.00,'109.143','183',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001048','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(2945,'CO-APROVEL 300/12.5MG TABLETS 28S','11',NULL,'1102301',16.00,'97.929','171',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001049','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2946,'COLGATE DENTAL FLOSS','12',NULL,'1102341',16.00,'417.6','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001050','pcs','Inventory','VATABLE','0',NULL,0),(2947,'COMBIGAN EYE DROPS 5ML','10',NULL,'1102422',16.00,'1535','2550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001051','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2948,'COMPEED COLD SORE PATCH 15S','6',NULL,'1102431',16.00,'850','1465',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001052','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2949,'CONTEMPO CONDOMS BAREBACK 3S','6',NULL,'1102443',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001053','pcs','Inventory','VATABLE','0',NULL,0),(2950,'CONTEMPO CONDOMS KING SIZE 3S','6',NULL,'1102446',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001054','pcs','Inventory','VATABLE','0',NULL,0),(2951,'CONTEMPO CONDOMS POWER PLAY 3S','6',NULL,'1102449',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001055','pcs','Inventory','VATABLE','0',NULL,0),(2952,'CONTEMPO CONDOMS WET N WILD 3S','6',NULL,'1102451',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001056','pcs','Inventory','VATABLE','0',NULL,0),(2953,'CONTIFLO XL CAPS 400MCG 30S','11',NULL,'1102453',16.00,'17.667','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001057','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2954,'CONTOUR PLUS GLUCOMETER','11',NULL,'1102454',16.00,'500','1000',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001058','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(2955,'CONTRACTUBEX OINTMENT 20GM','10',NULL,'1102458',16.00,'552.5','915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001059','pcs','Inventory','EXEMPTED','0','0039.11.73',0),(2956,'CORONATION HOT WATER BOTTLE L/S ( RIBBED )','6',NULL,'1102492',16.00,'1044','1774.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001060','pcs','Inventory','VATABLE','0',NULL,0),(2957,'COVERAM 5/10MG TABS 30S','11',NULL,'1102551',16.00,'58.594','103',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001061','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2958,'COVONIA THROAT SPRAY 30ML','6',NULL,'1102554',16.00,'1300','2305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001062','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2959,'COZAAR 50MG TABS 28S','11',NULL,'1102560',16.00,'107.143','188',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001063','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2960,'COZEPAM 5MG TABS 100S','10',NULL,'1102561',16.00,'1.94','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001064','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2961,'CRAFE AWAY MINI FILTERS','6',NULL,'1102563',16.00,'156.6','270.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001065','pcs','Inventory','VATABLE','0',NULL,0),(2962,'CREPE BANDAGE 2IN (5CM) ELASTOLITE','6',NULL,'1102573',16.00,'14','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001066','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(2963,'CRESTOR 5MG TABS 28S','11',NULL,'1102580',16.00,'53.71','89',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001067','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2964,'CRESTOR 10MG TABS 28S','11',NULL,'1102581',16.00,'57.496','95',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001068','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2965,'CRESTOR 20MG TABS 28S','11',NULL,'1102582',16.00,'82.874','137',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001069','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2966,'DAKTACORT CREAM 15GM','10',NULL,'1102671',16.00,'541.8','925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001070','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2967,'DAKTARIN ORAL GEL 40GM','10',NULL,'1102673',16.00,'813.6','1345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001071','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2968,'DAONIL 5MG 100S','11',NULL,'1102680',16.00,'15.92','28.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001072','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2969,'DAZIT 5MG TABS 30S','10',NULL,'1102710',16.00,'40','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001073','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2970,'DAZOLIC 500MG TABS 100S','10',NULL,'1102711',16.00,'20.1','34.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001074','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2971,'DEEP FREEZE GEL 100G','6',NULL,'1102717',16.00,'505','845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001075','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2972,'DELASED CHESTY NON DROWSY 100ML','6',NULL,'1102733',16.00,'94.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001076','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2973,'DELASED PAEDIATRIC 100ML','6',NULL,'1102736',16.00,'94.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001077','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2974,'DENTINOX TEETHING GEL 15GM','6',NULL,'1102761',16.00,'400','685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001078','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2975,'DENTOGEL GEL 10G','6',NULL,'1102763',16.00,'152','265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001079','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2976,'DERMOVATE CREAM 25GM','10',NULL,'1102790',16.00,'529.38','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001080','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2977,'DETTOL SOAP COOL 90G','12',NULL,'1102813',16.00,'87.0116','134.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001081','pcs','Inventory','VATABLE','0',NULL,0),(2978,'DEXTRACIN EYE DROPS','10',NULL,'1102827',16.00,'175','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001082','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(2979,'DEXTROSE 5% 500ML','10',NULL,'1102831',16.00,'60','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001083','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2980,'DIFLUCAN 200MG CAPS 7S','10',NULL,'1102881',16.00,'538.171','910',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001084','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2981,'DIGITAL THERMOMETER','6',NULL,'1102884',16.00,'105','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001085','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(2982,'DIGOXIN 125MCG TABLETS 28S','11',NULL,'1102888',16.00,'8.571','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001086','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2983,'DIOVAN 160MG CAPS 28S','11',NULL,'1102933',16.00,'72.928','129',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001087','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2984,'DIPROGENTA CREAM 15GM','10',NULL,'1102937',16.00,'616.23','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001088','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2985,'DIPROGENTA OINTMENT 15GM','10',NULL,'1102938',16.00,'616.23','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001089','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2986,'DIPROSALIC OINTMENT 10GM','10',NULL,'1102940',16.00,'433.73','735',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001090','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2987,'DIPROSONE CREAM 30GM','10',NULL,'1102943',16.00,'709.71','1210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001091','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2988,'DIPROSONE OINTMENT 30GM','10',NULL,'1102945',16.00,'709.71','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001092','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(2989,'DISPOSABLE SYRINGES 10ML','10',NULL,'1102956',16.00,'6.8','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001093','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(2990,'DISPOSABLE SYRINGES 2ML','10',NULL,'1102958',16.00,'3.9','7.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001094','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(2991,'DISZINC DISPERSIBLE TABLETS 30S','6',NULL,'1102967',16.00,'7.251','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001095','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2992,'DIURIDE 10MG TABS 20S','11',NULL,'1102969',16.00,'28.613','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001096','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2993,'DIURIDE 20MG TABS 20S','11',NULL,'1102970',16.00,'47.513','84',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001097','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2994,'DOBESIL 500MG TABS 50S','11',NULL,'1102983',16.00,'42.912','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001098','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(2995,'DUOFILM SOLUTION','10',NULL,'1103169',16.00,'620','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001099','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2996,'DURACELL BATTERIES AAA 2S.','12',NULL,'1103184',16.00,'258.4016','394.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001100','pcs','Inventory','VATABLE','0',NULL,0),(2997,'DUREX PLAY (TINGLE) LUBRICATING GEL 50ML','6',NULL,'1103212',16.00,'586.4612','1004.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001101','pcs','Inventory','VATABLE','0',NULL,0),(2998,'DUSPATALIN 135MG TABS 50S','10',NULL,'1103219',16.00,'27.79','47',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001102','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(2999,'EBASTEL 5MG/5ML SYRUP 120ML','10',NULL,'1103403',16.00,'1006','1725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001103','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3000,'EFFERALGAN 500MG TABLETS 16S','6',NULL,'1103423',16.00,'15.41','27',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001104','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3001,'ELASTOPLAST WATER RESISTANT PLASTERS 10S','6',NULL,'1103442',16.00,'324.8','560.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001105','pcs','Inventory','VATABLE','0',NULL,0),(3002,'EMANZEN FORTE 10MG TABS 30S','10',NULL,'1103798',16.00,'33.962','57',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001106','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3003,'EMLA CREAM 5%','10',NULL,'1103808',16.00,'550','935',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001107','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3004,'ENAT CREAM 50G','9',NULL,'1103823',16.00,'948.88','1595',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001108','pcs','Inventory','VATABLE','0',NULL,0),(3005,'ENCORATE CHRONO 500MG TABS 30S','11',NULL,'1103832',16.00,'40','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001109','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3006,'ENCORATE CHRONO 200MG TABS 100S','11',NULL,'1103833',16.00,'12','22',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001110','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3007,'EPANUTIN 50MG CAPS 28S','11',NULL,'1103872',16.00,'13.719','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001111','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3008,'EPIMAX ALL PURPOSE MOISTURISER 400GM','9',NULL,'1103883',16.00,'1566','2680.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001112','pcs','Inventory','VATABLE','0',NULL,0),(3009,'EPSOM SALT 100GM','6',NULL,'1103889',16.00,'70','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001113','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3010,'EROVITA OVULATION TEST KIT','6',NULL,'1103918',16.00,'1276','2194.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001114','pcs','Inventory','VATABLE','0',NULL,0),(3011,'ESTOVON TABLETS 30S','6',NULL,'1103963',16.00,'32.188','56',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001115','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3012,'EUMOVATE CREAM 25GM','10',NULL,'1103988',16.00,'519','875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001116','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3013,'EVANOVA CAPS 20S','10',NULL,'1104002',16.00,'514.3','875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001117','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(3014,'EXOCIN EYE & EAR DROPS 5ML','10',NULL,'1104031',16.00,'583','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001118','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3015,'FASTUM GEL 30GM','10',NULL,'1104132',16.00,'450','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001119','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3016,'FASTUM GEL DISPENSER 100GM','10',NULL,'1104134',16.00,'1000','1720',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001120','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3017,'FEMFRESH DAILY INTIMATE WASH 250ML','12',NULL,'1104151',16.00,'854.5604','1300.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001121','pcs','Inventory','VATABLE','0',NULL,0),(3018,'FERROGLOBIN SYRUP 200ML','6',NULL,'1104185',16.00,'432','805',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001122','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3019,'FINOSIN TABS 30S','11',NULL,'1104198',16.00,'50.667','91',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001123','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3020,'FISHERMANS FRIEND LOZS 25G ANISEED','6',NULL,'1104244',16.00,'145','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001124','pcs','Inventory','VATABLE','0',NULL,0),(3021,'FLAMOX 500MG CAPS 20s','10',NULL,'1104272',16.00,'19.15','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001125','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(3022,'FLAMOX SUSP 250MG/5ML 100ML','10',NULL,'1104273',16.00,'340','565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001126','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(3023,'FLAREX EYE DROPS 5ML','10',NULL,'1104274',16.00,'357','605',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001127','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3024,'FLEET ENEMA 133ML','10',NULL,'1104277',16.00,'505','845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001128','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3025,'FLIXONASE NASAL SPRAY','10',NULL,'1104293',16.00,'2574','4355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001129','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3026,'FLUCOZAL 150MG CAPS','10',NULL,'1104381',16.00,'132.54','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001130','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3027,'FLUCOZAL 50MG CAPS 14S','10',NULL,'1104383',16.00,'49.826','84',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001131','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3028,'FML NEO EYE DROPS 5ML','10',NULL,'1104401',16.00,'476','800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001132','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3029,'FRANOL TABLETS 100S','11',NULL,'1104429',16.00,'1.71','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001133','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3030,'FREEFLEX FORTE TABLETS 30S','6',NULL,'1104431',16.00,'46.802','81',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001134','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3031,'FUCIDIN CREAM 15GM','10',NULL,'1104463',16.00,'340','570',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001135','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3032,'FUTSIL SOLUTION','6',NULL,'1104509',16.00,'216.75','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001136','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3033,'FYBOGEL LEMON 10S','6',NULL,'1104510',16.00,'590','1015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001137','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3034,'FYBOGEL ORANGE 10S','6',NULL,'1104512',16.00,'710','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001138','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3035,'GABANERVE TABS 10S','11',NULL,'1104623',16.00,'85.905','147',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001139','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3036,'GABBRORAL 250MG TABS 12S','10',NULL,'1104626',16.00,'49.333','83',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001140','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3037,'GENTIAN VIOLET 100ML','6',NULL,'1104779',16.00,'33','65',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001141','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3038,'GERATHERM DIGITAL THERMOMETER(RAPID)','6',NULL,'1104793',16.00,'1240','2135',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001142','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(3039,'GILLETTE BLUE 2 DISPOSABLE RAZORS 1S','12',NULL,'1104809',16.00,'50.6688','80.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001143','pcs','Inventory','VATABLE','0',NULL,0),(3040,'GILLETTE MACH3 CARTRIDGE 2S','12',NULL,'1104829',16.00,'522','799.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001144','pcs','Inventory','VATABLE','0',NULL,0),(3041,'GILLETTE MACH3 TURBO RAZOR 2 UP','12',NULL,'1104837',16.00,'925.1058','1409.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001145','pcs','Inventory','VATABLE','0',NULL,0),(3042,'GLEVONIX 500MG TABS 10S','10',NULL,'1104886',16.00,'94.429','158',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001146','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3043,'GLUCORED FORTE 5/500MG TABS 50S','11',NULL,'1104916',16.00,'13.26','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001147','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3044,'GLYCERINE ADULT SUPPOSITORIES 4G 12S','6',NULL,'1104934',16.00,'29.583','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001148','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3045,'GLYCERINE CHILD SUPPOSITORIES 2G','6',NULL,'1104935',16.00,'33.3','57',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001149','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3046,'GRABACIN - 3 TULLE 10CM X 10CM','6',NULL,'1104971',16.00,'63.8','110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001150','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3047,'GRISEOFULVIN 125MG TABS 100S','10',NULL,'1104985',16.00,'2.55','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001151','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3048,'H/AID CHILDRENS MULTIVITAMINS 30S','6',NULL,'1105056',16.00,'805.35','1395',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001152','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3049,'H/AID CHILDRENS MULTIVITAMINS 90S','6',NULL,'1105057',16.00,'1495.65','2575',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001153','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3050,'H/AID EVENING PRIMROSE 1000MG 30S','6',NULL,'1105075',16.00,'982.35','1690',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001154','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3051,'H/AID OMEGA 3-6-9 60S','6',NULL,'1105128',16.00,'1778.85','3060',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001155','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3052,'H/AID OSTEOFLEX GLU+CHOND 90S','6',NULL,'1105131',16.00,'3070.95','5285',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001156','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3053,'H/AID VIT C 1500MG PR 30S','6',NULL,'1105175',16.00,'867.3','1505',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001157','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3054,'H/AID VIT E 400 IU 30S','6',NULL,'1105187',16.00,'1123.95','1945',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001158','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3055,'H/AID VIT E 400IU 60S','6',NULL,'1105188',16.00,'2000.1','3445',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001159','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3056,'HUMALOG MIX 50/50 CARTRIDGE 5S','11',NULL,'1105480',16.00,'1121','1873',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001160','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(3057,'HUMALOG MIX25 3ML 5S','11',NULL,'1105482',16.00,'963.4','1609',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001161','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(3058,'HUMULIN 70/30 3ML CATRIDGES 5S','11',NULL,'1105486',16.00,'655.4','1095',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001162','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(3059,'HYDRALAZINE 25MG TABS 100S','11',NULL,'1105497',16.00,'4.69','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001163','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3060,'HYDREA 500MG CAPS 100S','11',NULL,'1105498',16.00,'30','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001164','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3061,'HYLO-COMOD EYE DROPS 10ML','10',NULL,'1105513',16.00,'1119.54','1860',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001165','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3062,'I.V. GIVING SET','10',NULL,'1105533',16.00,'11','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001166','pcs','Inventory','EXEMPTED','0','0039.11.93',0),(3063,'IBUMEX SUSP 100ML','6',NULL,'1105538',16.00,'70.35','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001167','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3064,'IMIGRAN 100MG TABS 6S','10',NULL,'1105555',16.00,'965.667','1594',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001168','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3065,'IMMUNACE TABLET 30S','6',NULL,'1105560',16.00,'915','1530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001169','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3066,'IMODIUM PLUS TABLETS 6S','6',NULL,'1105562',16.00,'550','920',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001170','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3067,'IMURAN 50MG TABS 100S','11',NULL,'1105578',16.00,'52.1','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001171','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3068,'INFACOL LIQUID','6',NULL,'1105586',16.00,'627','1075',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001172','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3069,'IRIFONE GEL 50GM','10',NULL,'1105690',16.00,'408.5','705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001173','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3070,'ISOFLAV CR ISOFLAVONES CAPSULES','10',NULL,'1105705',16.00,'51','88',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001174','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3071,'IVERMECTIN 6MG TABS','10',NULL,'1105734',16.00,'376.2','640',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001175','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3072,'JOHNSONS BABY OIL 125ML','12',NULL,'1105799',16.00,'328.28','505.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001176','pcs','Inventory','VATABLE','0',NULL,0),(3073,'JOINTACE (GLUCOSAMINE & CHONDROITIN) * 30S','6',NULL,'1105851',16.00,'1157','1935',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001177','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3074,'JOINTACE (GLUCOSAMINE & OMEGA 3) *30S','6',NULL,'1105852',16.00,'867.8','1450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001178','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3075,'KENALOG IN ORABASE','10',NULL,'1105928',16.00,'1110','1980',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001179','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3076,'KETOPLUS SHAMPOO','10',NULL,'1105949',16.00,'996.266','1644.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001180','pcs','Inventory','VATABLE','0',NULL,0),(3077,'KLACID 500MG TABLETS 14S','10',NULL,'1105980',16.00,'157.14','271',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001181','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3078,'KLENZIT C GEL 15GMS','10',NULL,'1105994',16.00,'820.58','1375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001182','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3079,'KLENZIT GEL 15GMS','10',NULL,'1105995',16.00,'556.25','925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001183','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3080,'KOLZINE 500MCG TABS 100S','11',NULL,'1106004',16.00,'5.48','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001184','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3081,'KONTAB 50MG TABS 50S','10',NULL,'1106007',16.00,'21.9','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001185','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3082,'KOTEX TAMPONS MINI 16S','12',NULL,'1106021',16.00,'237.317','355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001186','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(3083,'LAMICTAL 100MG TABS 30S','11',NULL,'1106240',16.00,'171.967','296',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001187','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3084,'LANOLIN CREAM 50GMS','12',NULL,'1106265',16.00,'139.2','219.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001188','pcs','Inventory','VATABLE','0',NULL,0),(3085,'LANTUS SOLOSTAR PREFILLED PENS 3ML 5S','11',NULL,'1106271',16.00,'1263.518','2098',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001189','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(3086,'LEMSIP MAX ALL IN ONE CAPS 16S','6',NULL,'1106320',16.00,'640','1520',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001190','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(3087,'LEMSIP MAX COLD &FLU SATCHETS B/CURRANT 10S','6',NULL,'1106328',16.00,'57','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001191','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(3088,'LEMSIP MAX DAY & NIGHT CAPSULES 16S','6',NULL,'1106331',16.00,'680','1215',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001192','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(3089,'LIOTON GEL 30GM','10',NULL,'1106406',16.00,'600','1015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001193','pcs','Inventory','EXEMPTED','0','0039.11.73',0),(3090,'LIPIGET 10MG TABS 10S','11',NULL,'1106435',16.00,'25.2','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001194','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3091,'LIPITOR 40MG TABS 30S','11',NULL,'1106443',16.00,'78.558','136',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001195','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3092,'LIPITOR 80MG TABS 30S','11',NULL,'1106444',16.00,'78.558','136',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001196','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3093,'LIPSORE 5% CREAM 2GM','10',NULL,'1106449',16.00,'280','475',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001197','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3094,'LONART 180/480MG ORAL SUSP 60ML','10',NULL,'1106498',16.00,'216','365',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001198','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(3095,'LOOBID 200/500MG TABS 10S','10',NULL,'1106499',16.00,'22','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001199','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3096,'LOTEM SYRUP 100ML','6',NULL,'1106535',16.00,'314.81','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001200','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3097,'LOTRIDERM CREAM 30GM','10',NULL,'1106537',16.00,'1750','2925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001201','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3098,'LUMIGAN EYE DROPS 0.03% 3ML','11',NULL,'1106569',16.00,'1841','3245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001202','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3099,'LYSOFLAM TABS 30S','10',NULL,'1106610',16.00,'13.333','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001203','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3100,'M2-TONE TABLETS 20S','10',NULL,'1106642',16.00,'25.715','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001204','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(3101,'MALANIL ADULT 250/100MG TABLETS','10',NULL,'1106725',16.00,'200.25','317',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001205','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(3102,'MEDIGEL GEL','6',NULL,'1106837',16.00,'405','705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001206','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3103,'MEDITROL 0.25MCG CAPS 30S','10',NULL,'1106854',16.00,'42.088','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001207','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3104,'MEDIVEN OINTMENT 15gm','10',NULL,'1106856',16.00,'44.1','74',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001208','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3105,'MEDROL 4MG TABS 30S','10',NULL,'1106864',16.00,'18.4','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001209','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3106,'METCOS 10MG TABS 100S','10',NULL,'1106917',16.00,'1.53','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001210','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3107,'METFORMIN DENK 500MG TABS 100S','11',NULL,'1106922',16.00,'5.023','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001211','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3108,'MGR-10mg TABS 30S','10',NULL,'1106939',16.00,'35.897','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001212','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3109,'MICARDIS 40MG TABS 28S','11',NULL,'1106941',16.00,'79.576','136',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001213','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3110,'MICARDIS 80MG TABS 28S','11',NULL,'1106943',16.00,'90.924','158',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001214','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3111,'MICRONEMA 20ML','10',NULL,'1106951',16.00,'126','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001215','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3112,'MICROFINE G30 (8MM) PEN NEEDLES 100S','11',NULL,'1106952',16.00,'21.6','38.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001216','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(3113,'MICROFINE G31 (5MM) PEN NEEDLES 100S','11',NULL,'1106953',16.00,'21.6','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001217','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(3114,'MICROFINE INSULIN SYRINGES *0.5ML','11',NULL,'1106954',16.00,'12.85','22.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001218','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(3115,'MICROPORE TAPE 1 INCH','6',NULL,'1106966',16.00,'153','264',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001219','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3116,'MIRTAZ 15MG TABS 30S','11',NULL,'1107017',16.00,'61.667','112',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001220','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3117,'MIRTAZ 30MG TABS 30S','11',NULL,'1107018',16.00,'82.667','150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001221','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3118,'MIXTARD 30/70 INSULIN 10ML','11',NULL,'1107034',16.00,'508','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001222','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(3119,'MOBIC 7.5MG TABS 30S','10',NULL,'1107088',16.00,'46.319','78',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001223','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3120,'NIVEA LIP BALM ORIGINAL CARE 4.8GM','9',NULL,'1107221',16.00,'212.19996','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001224','pcs','Inventory','VATABLE','0',NULL,0),(3121,'NIVEA LIP BALM FOR MEN 4.8G','9',NULL,'1107222',16.00,'258.33316','375.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001225','pcs','Inventory','VATABLE','0',NULL,0),(3122,'NIVEA BODY LOTION (NOURISHING) DRY SKIN 200ML','9',NULL,'1107233',16.00,'262.49988','364.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001226','pcs','Inventory','VATABLE','0',NULL,0),(3123,'NIVEA SUNTAN LOTION SPF30 200ML','9',NULL,'1107263',16.00,'1516.66636','2170.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001227','pcs','Inventory','VATABLE','0',NULL,0),(3124,'NIVEA SUNTAN KIDS LOTION SPF50 200ML','12',NULL,'1107267',16.00,'1820.83344','2605.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001228','pcs','Inventory','VATABLE','0',NULL,0),(3125,'NACET PLATINUM WHITE 20 X 5S','12',NULL,'1107287',16.00,'43.71228','70.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001229','pcs','Inventory','VATABLE','0',NULL,0),(3126,'NAN 1','6',NULL,'1107343',16.00,'1027.76','1460.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001230','pcs','Inventory','VATABLE','0',NULL,0),(3127,'NAN 2','6',NULL,'1107345',16.00,'1027.76','1460.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001231','pcs','Inventory','VATABLE','0',NULL,0),(3128,'NAN 3','6',NULL,'1107347',16.00,'1027.76','1460.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001232','pcs','Inventory','VATABLE','0',NULL,0),(3129,'NEBICARD 2.5MG TABS 30S','11',NULL,'1107430',16.00,'17.001','30',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001233','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3130,'NEOPEPTINE DROPS 15ML','6',NULL,'1107466',16.00,'240','415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001234','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3131,'NETAZOX DT 200MG 6S','10',NULL,'1107476',16.00,'203.9','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001235','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3132,'NEUROCARE CAPS 30S','10',NULL,'1107483',16.00,'41.499','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001236','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3133,'NEURONTIN 100MG CAPS 100S','11',NULL,'1107484',16.00,'24.387','43',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001237','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3134,'NEURONTIN 300MG CAPS 100S','11',NULL,'1107485',16.00,'55.87','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001238','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3135,'NEURORUBINE INJECTION 5S','10',NULL,'1107487',16.00,'237','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001239','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3136,'NICORETTE ICY WHITE GUM 4MG','6',NULL,'1107621',16.00,'335.71','565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001240','pcs','Inventory','EXEMPTED','0',NULL,0),(3137,'NICORETTE FRESHMINT GUM 2MG','6',NULL,'1107629',16.00,'285.714','478',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001241','pcs','Inventory','EXEMPTED','0',NULL,0),(3138,'NITREST 10MG TABS 30S','10',NULL,'1107659',16.00,'26.667','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001242','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3139,'NITROFURANTON 100MG TABLETS','10',NULL,'1107660',16.00,'1.89','3.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001243','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3140,'NO SPA 40MG TABS 100S','10',NULL,'1107671',16.00,'8.976','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001244','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3141,'NORMAX 400MG TABS 10S','10',NULL,'1107686',16.00,'11.11','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001245','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3142,'NOW BIOTIN 1000MG CAPS 100S','6',NULL,'1107760',16.00,'900','1505',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001246','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3143,'NOW VITAMIN A SOFTGEL 100S','6',NULL,'1107785',16.00,'820','1370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001247','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3144,'NOW VITAMIN D3 1000 IU 180S','6',NULL,'1107789',16.00,'985','1645',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001248','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3145,'NOW VITAMIN D3 5000IU 120S','6',NULL,'1107790',16.00,'1360','2275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001249','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3146,'NUROFEN CAPLETS 200MG 12S','6',NULL,'1107799',16.00,'410','685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001250','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3147,'NUROFEN EXPRESS LIQ CAPS 400MG 10S','6',NULL,'1107808',16.00,'765','1280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001251','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3148,'NUROFEN EXPRESS LIQUID CAPS 200MG 10S','6',NULL,'1107809',16.00,'495','830',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001252','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3149,'NUROFEN MAX MIGRAINE 12S','6',NULL,'1107814',16.00,'740','1240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001253','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3150,'NUROFEN SUSPENSION ORANGE 100ML','6',NULL,'1107821',16.00,'570','955',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001254','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3151,'NUROFEN TABLETS 200MG 12S','6',NULL,'1107823',16.00,'370','620',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001255','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3152,'NYTOL HERBAL TABLETS 30S','6',NULL,'1107846',16.00,'915','1540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001256','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3153,'NYTOL ONE-A-NIGHT 50MG 20S','6',NULL,'1107847',16.00,'940','1570',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001257','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3154,'OLBAS INHALER','6',NULL,'1107922',16.00,'360','620',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001258','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3155,'OLD SPICE DEODORANT STICK ORIGINAL 85G','12',NULL,'1107935',16.00,'1160','1880.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001259','pcs','Inventory','VATABLE','0',NULL,0),(3156,'OLFEN 50MG TABS 20S','10',NULL,'1107949',16.00,'38.85','66',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001260','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3157,'OPSITE DRESSING 15.5CMX8.5CM 20S','6',NULL,'1108034',16.00,'205','353',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001261','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3158,'OPSITE SPRAY 100ML','6',NULL,'1108037',16.00,'900','1550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001262','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3159,'OPTIVE EYE DROPS 10ML','6',NULL,'1108052',16.00,'844','1455',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001263','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3160,'OPTREX EYE WASH 100ML','6',NULL,'1108053',16.00,'740','1245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001264','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3161,'OPTREX BLOODSHOT EYE DROPS','6',NULL,'1108055',16.00,'735','1235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001265','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3162,'OPTREX BRIGHTENING DROPS 10ML','6',NULL,'1108056',16.00,'725','1220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001266','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3163,'OPTREX DRY EYES LUBRICATING DROPS','6',NULL,'1108060',16.00,'685','1155',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001267','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3164,'OPTREX ITCHY EYE DROPS 10ML','6',NULL,'1108064',16.00,'680','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001268','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3165,'OPTREX SORE EYE DROPS 10ML','6',NULL,'1108068',16.00,'750','1415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001269','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3166,'ORAL B DENTAL FLOSS UNWAXED ORIGINAL 50M','12',NULL,'1108086',16.00,'208.8','319.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001270','pcs','Inventory','VATABLE','0',NULL,0),(3167,'OSTEOCARE LIQUID','6',NULL,'1108186',16.00,'623','1045',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001271','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3168,'OSTEOCERIN TABS 10S','10',NULL,'1108190',16.00,'62','117',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001272','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3169,'OTRIVIN ADULT DROPS 10ML','6',NULL,'1108196',16.00,'431','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001273','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3170,'OTRIVIN PAED DROPS 10ML','6',NULL,'1108197',16.00,'431','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001274','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3171,'OVACARE TABS 30S','6',NULL,'1108199',16.00,'1226','2110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001275','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3172,'PARA DENK SUPP 250MG 10S','10',NULL,'1108327',16.00,'21.245','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001276','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3173,'PARLODEL 2.5MG TABS 30S','10',NULL,'1108343',16.00,'46.667','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001277','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3174,'PEGLEC POWDER 137.15GMS','10',NULL,'1108378',16.00,'1148.1','1895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001278','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3175,'PENAMOX 500MG CAPS 500S','10',NULL,'1108381',16.00,'10.974','18.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001279','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(3176,'PERFECTIL CAPS 30S','6',NULL,'1108404',16.00,'1190','1990',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001280','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3177,'PHENOBARBITONE 30MG TABS 100S','10',NULL,'1108434',16.00,'1.534','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001281','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3178,'PIOGLUC 30MG TABS 28S','11',NULL,'1108567',16.00,'12.75','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001282','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3179,'PLENDIL 5MG TABS 30S','11',NULL,'1108617',16.00,'52.83','93',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001283','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3180,'POLYGYNAX PESSARIES 12S','10',NULL,'1108648',16.00,'57.083','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001284','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3181,'POWERGESIC MR TABLETS 100S','10',NULL,'1108704',16.00,'17','28.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001285','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3182,'PRAZITEL 600MG TABS 100S','10',NULL,'1108706',16.00,'21.165','35.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001286','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3183,'PRED FORTE EYE DROPS','10',NULL,'1108710',16.00,'737','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001287','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3184,'PREGNACARE FOR CONCEPTION','6',NULL,'1108721',16.00,'906','1515',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001288','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3185,'PRIMAPORE AWD 15CM*8CM 20S','6',NULL,'1108761',16.00,'50','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001289','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3186,'PRIMAPORE AWD 20CM*10CM 20S','6',NULL,'1108762',16.00,'85','147',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001290','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3187,'PROCTOSEDYL SUPPOSITORIES 12S','10',NULL,'1108795',16.00,'106.25','177',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001291','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3188,'PRODEP 20MG TABS 60S','11',NULL,'1108797',16.00,'27.475','49',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001292','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3189,'PROLOC D 10/10mg TABS 30S','11',NULL,'1108801',16.00,'41.767','74',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001293','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3190,'HISTARGAN SYRUP 100ML','10',NULL,'1108806',16.00,'36','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001294','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3191,'PURECAL CHEWABLE TABS 30S','6',NULL,'1108889',16.00,'725','1250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001295','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3192,'PYRALVEX SOLUTION 10ML','6',NULL,'1108897',16.00,'445','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001296','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3193,'QUITIPIN 100MG TABS 30S','11',NULL,'1108979',16.00,'44.803','82',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001297','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3194,'RECARTIX FORTE 30S','6',NULL,'1109027',16.00,'35.115','62',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001298','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3195,'REFRESH TEARS 15MLS','6',NULL,'1109044',16.00,'664','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001299','pcs','Inventory','EXEMPTED','0',NULL,0),(3196,'RENNIE PEPPERMINT 48S','6',NULL,'1109084',16.00,'225','390',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001300','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3197,'REPACE-H 50/12.5MG TABS 30S','11',NULL,'1109097',16.00,'26.917','47',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001301','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3198,'RHINATHIOL ADULT SYRUP 125ML','6',NULL,'1109251',16.00,'326.688','550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001302','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3199,'RISDONE 1MG TABS 50S','10',NULL,'1109291',16.00,'43.7','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001303','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3200,'SAFERON SYRUP 150ML','6',NULL,'1109381',16.00,'336.42','580',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001304','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3201,'SAFERON PLUS TABLETS 30S','6',NULL,'1109382',16.00,'23.85','42',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001305','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3202,'SAFETY PINS ASSORTED','12',NULL,'1109383',16.00,'14.5','27.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001306','pcs','Inventory','VATABLE','0',NULL,0),(3203,'SAVLON ANTISEPTIC CREAM 15G','6',NULL,'1109436',16.00,'217','380',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001307','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3204,'SAVLON ANTISEPTIC LIQUID 250ML','6',NULL,'1109440',16.00,'344.52','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001308','pcs','Inventory','VATABLE','0',NULL,0),(3205,'SCOTTS EMULSION REGULAR 100ML','6',NULL,'1109527',16.00,'324.169','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001309','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3206,'SEBAMED BABY CHILDRENS SHAMPOO','12',NULL,'1109543',16.00,'730.1852','1245.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001310','pcs','Inventory','VATABLE','0',NULL,0),(3207,'SEBAMED BABY CLEANSING BAR','9',NULL,'1109544',16.00,'603.2','1034.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001311','pcs','Inventory','VATABLE','0',NULL,0),(3208,'SEBAMED BABY LOTION 100ML','12',NULL,'1109549',16.00,'754','1285.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001312','pcs','Inventory','VATABLE','0',NULL,0),(3209,'SEBAMED FEMININE INTIMATE WASH 200ML','12',NULL,'1109573',16.00,'1218','2074.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001313','pcs','Inventory','VATABLE','0',NULL,0),(3210,'SENOKOT TABLETS 20S','6',NULL,'1109615',16.00,'460','800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001314','pcs','Inventory','EXEMPTED','0','0039.11.82',0),(3211,'SEPGARD GEL 1% 15GM','10',NULL,'1109641',16.00,'193.375','325',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001315','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3212,'SEPTRIN SUSPENSION 100ML','10',NULL,'1109648',16.00,'324.931','550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001316','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3213,'SEPTRIN SUSPENSION 50ML','10',NULL,'1109649',16.00,'209.738','355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001317','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3214,'SERETIDE A/HALER 50MCG/500MCG','11',NULL,'1109652',16.00,'1971','3395',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001318','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3215,'SERETIDE A/HALER 50MCG/250MCG','11',NULL,'1109654',16.00,'1520','2615',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001319','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3216,'SICCAPOS GEL 10GM','10',NULL,'1109717',16.00,'547','945',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001320','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3217,'SIMPLE REGENARATION A/R NIGHT CREAM 50ML','9',NULL,'1109792',16.00,'1344.44','2034.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001321','pcs','Inventory','VATABLE','0',NULL,0),(3218,'SIMVASTATIN 20MG TABS 28S','11',NULL,'1109830',16.00,'3.393','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001322','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3219,'SIMVASTATIN 40MG TABS 28S','11',NULL,'1109831',16.00,'5.107','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001323','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3220,'SINAREST VAPOCAPS 10S','6',NULL,'1109832',16.00,'29.501','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001324','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3221,'SKILAX DROPS 15ML','6',NULL,'1109853',16.00,'450','775',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001325','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3222,'SOLIFEN 5MG TABS 10S','11',NULL,'1109975',16.00,'105','189',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001326','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3223,'SPASMOMEN 40MG TABS 30S','10',NULL,'1110013',16.00,'29.067','49',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001327','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3224,'SPIRIVA 18MCG CAPS REFILLS','11',NULL,'1110021',16.00,'5254.5','8780',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001328','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3225,'SPIRONOLACTONE 25MG 28S','11',NULL,'1110023',16.00,'11.071','21',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001329','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3226,'STUDEX EAR GEL','9',NULL,'1110088',16.00,'149.9996','260.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001330','pcs','Inventory','VATABLE','0',NULL,0),(3227,'STILNOX 10MG TABS 14S','10',NULL,'1110126',16.00,'34.205','58',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001331','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3228,'STREPSILS STRAWBERRY S/FREE 36S','6',NULL,'1110141',16.00,'750','1275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001332','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3229,'STREPSILS ORIGINAL 16S','6',NULL,'1110154',16.00,'435','740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001333','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3230,'STREPSILS SORE THROAT & BLOCKED NOSE 36S','6',NULL,'1110158',16.00,'815','1430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001334','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3231,'STUD SPRAY','6',NULL,'1110161',16.00,'760','1310',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001335','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3232,'STUGERON 25MG TABS 50S','10',NULL,'1110162',16.00,'10.656','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001336','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3233,'SUCRAFIL O GEL SUCRALFATE AND OXETACAINE SUSPENSION 100','6',NULL,'1110167',16.00,'233.18','410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001337','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3234,'SUDAFED DECONGESANT TABLETS 12S','6',NULL,'1110169',16.00,'500','860',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001338','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3235,'SURESIGN PREGNANCY MIDSTREAM TWIN','6',NULL,'1110249',16.00,'580','1000.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001339','pcs','Inventory','VATABLE','0',NULL,0),(3236,'SURESIGN PREGNANCY STRIPS 2S','6',NULL,'1110250',16.00,'208.8','360.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001340','pcs','Inventory','VATABLE','0',NULL,0),(3237,'SURGICAL SPIRIT 5 LITRE','6',NULL,'1110257',16.00,'750','1290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001341','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3238,'SUSTEN 400MG CAPS 30S','10',NULL,'1110262',16.00,'95','158',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001342','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(3239,'TACROVATE FORTE OINT 0.1%','10',NULL,'1110313',16.00,'1170.9','2015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001343','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3240,'TACROVATE OINTMENT 0.03% 10GRAMS','10',NULL,'1110314',16.00,'774.3','1295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001344','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3241,'TAVANIC 500MG TABS 5S','10',NULL,'1110346',16.00,'375.478','630',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001345','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3242,'TEGRETOL 200MG TABS 50S','11',NULL,'1110377',16.00,'6.664','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001346','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3243,'TELTAS 40MG TABS 30S','11',NULL,'1110383',16.00,'46.667','83',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001347','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3244,'TIGER BALM RED 19.4G','6',NULL,'1110468',16.00,'270','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001348','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3245,'TOPAMAX 50MG TABS 60S','10',NULL,'1110579',16.00,'64.995','110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001349','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3246,'TRANSAMIN 500MG TABS 20S','11',NULL,'1110604',16.00,'34','62',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001350','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3247,'TRANSPORE TAPE 1 INCH','10',NULL,'1110605',16.00,'183.667','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001351','pcs','Inventory','EXEMPTED','0','0039.11.32',0),(3248,'TRAVOGEN CREAM 20GM','10',NULL,'1110618',16.00,'509.015','845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001352','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3249,'TRIMETABOL SYRUP 150ML','6',NULL,'1110638',16.00,'621','1070',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001353','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3250,'TRUVADA 200/300MG TABS 30S','11',NULL,'1110682',16.00,'4508','7530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001354','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3251,'TX-MF TABLETS 30S','11',NULL,'1110711',16.00,'49.009','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001355','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3252,'ULGICID SUSPENSION MINT 200ML','6',NULL,'1110823',16.00,'278.67','485',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001356','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3253,'URINE BAG WITH OUTLET 2L','10',NULL,'1110869',16.00,'27','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001357','pcs','Inventory','EXEMPTED','0','0132.11.00',0),(3254,'VENIZ XR 75MG CAPS 30S','10',NULL,'1111067',16.00,'58','100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001358','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3255,'VENTAB XL 75MG TABS 30S','10',NULL,'1111068',16.00,'68','109',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001359','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3256,'VERMOX SYRUP 30ML','6',NULL,'1111081',16.00,'505.8','865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001360','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3257,'VIAGRA 50MG TABS 4S','11',NULL,'1111092',16.00,'659.118','1200',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001361','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3258,'VICKS VAPOUR RUB 50GM U.K','6',NULL,'1111113',16.00,'480','830',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001362','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3259,'VICKS VAPOUR RUB 50GM LOCAL','6',NULL,'1111115',16.00,'685','1140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001363','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3260,'VISIONACE TABLETS 30S','6',NULL,'1111140',16.00,'889','1485',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001364','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3261,'VITACAP CAPSULES 50S','6',NULL,'1111147',16.00,'20.738','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001365','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3262,'VOLTAREN EMULGEL 20GM','6',NULL,'1111291',16.00,'439.527','755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001366','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3263,'WARFARIN 1MG TABLETS 28S','11',NULL,'1111309',16.00,'2.321','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001367','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3264,'WAXSOL EAR DROPS 10ML','6',NULL,'1111339',16.00,'500','865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001368','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3265,'WELLMAN CONCEPTION','6',NULL,'1111349',16.00,'979','1635',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001369','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3266,'WELLWOMAN CAPSULES 30S','6',NULL,'1111353',16.00,'1008','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001370','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3267,'WOW GAUZE BANDAGES 2 12S','6',NULL,'1111398',16.00,'3.083','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001371','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3268,'WOW GAUZE BANDAGES 4 12S','6',NULL,'1111400',16.00,'11.667','22',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001372','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3269,'XARELTO 10MG TABS 10S','11',NULL,'1111420',16.00,'125.37','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001373','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3270,'YASMIN TABS 21S','10',NULL,'1111447',16.00,'739','1150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001374','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(3271,'ZAMUR 500MG TABLETS 10S','10',NULL,'1111462',16.00,'149.776','249',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001375','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3272,'ZECUF LOZENGES HERBAL LEMON','6',NULL,'1111475',16.00,'176.32','304.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001376','pcs','Inventory','VATABLE','0',NULL,0),(3273,'ZEDCAL SUSP 200ML','6',NULL,'1111481',16.00,'354','615',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001377','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3274,'ZEDCAL TABLETS 30S','6',NULL,'1111482',16.00,'325','565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001378','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3275,'ZERODOL 100MG TABS 30S','10',NULL,'1111492',16.00,'15.219','27',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001379','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3276,'ZESTRIL 5MG TABS 28S','11',NULL,'1111496',16.00,'15.934','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001380','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3277,'ZINC & CASTOR OIL CREAM 225G - Bells','12',NULL,'1111506',16.00,'649.6','1145.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001381','pcs','Inventory','VATABLE','0',NULL,0),(3278,'ZINC OXIDE PLASTER 2 (5CM*4M)','6',NULL,'1111510',16.00,'55','100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001382','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3279,'ZINC OXIDE PLASTER 3 (7.5CM*4M)','6',NULL,'1111511',16.00,'70','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001383','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3280,'ZINNAT SUSP. 125MG/5ML 100ML','10',NULL,'1111532',16.00,'1083.6','1855',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001384','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3281,'ZITHROMAX 200MG/5ML SUSP - 15ML','10',NULL,'1111541',16.00,'612.8','1030',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001385','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3282,'ZOSERT 50MG TABS 30S','11',NULL,'1111563',16.00,'53.333','97',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001386','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3283,'ZYLORIC 100MG TABS 100S','11',NULL,'1111573',16.00,'25','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001387','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3284,'OCULAST EYE DROPS 15ML','10',NULL,'1111665',16.00,'276','465',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001388','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3285,'SURESIGN BLOOD PRESSURE MONITOR','11',NULL,'1111686',16.00,'3478.84','5810.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001389','pcs','Inventory','VATABLE','0',NULL,0),(3286,'TELMI H 40/12.5MG TABS 30S','11',NULL,'1111687',16.00,'42.633','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001390','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3287,'ZECUF LOZENGES HERBAL ORIGINAL','6',NULL,'1111695',16.00,'176.32','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001391','pcs','Inventory','VATABLE','0',NULL,0),(3288,'COMBIZOL TABS 10S','10',NULL,'1111713',16.00,'39.16','66',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001392','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3289,'TELMI 40MG TABLET 30S','11',NULL,'1111821',16.00,'36.9','65',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001393','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3290,'NEBILONG-H 5MG/12.5MG TABS 30S','11',NULL,'1111851',16.00,'44.392','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001394','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3291,'QUADRAJEL GEL 15GM','10',NULL,'1111898',16.00,'231.4','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001395','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3292,'HITORAL CREAM 20GM','10',NULL,'1111951',16.00,'60','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001396','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3293,'TIMOLOL EYE DROPS 0.25% 5ML','10',NULL,'1112008',16.00,'800','1380',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001397','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3294,'ASCORIL DRY COUGH SYP 100ML','6',NULL,'1112128',16.00,'293.7','515',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001398','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3295,'OZITAS 5MG TABS 30S','10',NULL,'1112262',16.00,'38.833','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001399','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3296,'SERETIDE 25/250 EVOHALER','11',NULL,'1112272',16.00,'1803','3105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001400','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3297,'COVERAM 5/5MG TABS 30S','11',NULL,'1112372',16.00,'53.495','95',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001401','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3298,'COVERAM 10/10MG TABS 30S','11',NULL,'1112373',16.00,'72.96','129',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001402','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3299,'NEXPRO 40MG TABS 50S','11',NULL,'1112426',16.00,'23','42',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001403','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3300,'VISIONACE PLUS CAPS 56S','6',NULL,'1112444',16.00,'1245','2080',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001404','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3301,'WELLMAN PLUS OMEGA CAPS 56S','6',NULL,'1112447',16.00,'1588','2655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001405','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3302,'ZECUF LOZENGES HERBAL ORANGE','6',NULL,'1112449',16.00,'176.32','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001406','pcs','Inventory','VATABLE','0',NULL,0),(3303,'TELTAS H 80/25MG TABS 30S','11',NULL,'1112506',16.00,'56','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001407','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3304,'GAVISCON DOUBLE ACTION LIQUID 300ML','6',NULL,'1112523',16.00,'1350','2255',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001408','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3305,'TAMSOLIN 0.4MG CAPS 10S','11',NULL,'1112639',16.00,'59.25','108',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001409','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3306,'NEBILONG 5mg TABS 30S','11',NULL,'1112729',16.00,'41.207','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001410','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3307,'CASTOR OIL 50 ML','6',NULL,'1112758',16.00,'40.6','70.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001411','pcs','Inventory','VATABLE','0',NULL,0),(3308,'CHARCOAL TABS 100S (MEDICINAL) U.K','6',NULL,'1112759',16.00,'420','730',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001412','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3309,'CONTEMPO CONDOM EROTICA 3S','6',NULL,'1112850',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001413','pcs','Inventory','VATABLE','0',NULL,0),(3310,'ANIMAL PARADE VITAMIN C 90S','6',NULL,'1112907',16.00,'1210','2085',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001414','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3311,'MURINE DRY AND TIRED EYES','6',NULL,'1113490',16.00,'510','880',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001415','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3312,'SUNDOWN CALCIUM 1200MCG +VIT D 1000IU TABLETS 60','6',NULL,'1113539',16.00,'1350','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001416','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3313,'SUNDOWN OSTEO BI-FLEX TABLETS 40S','6',NULL,'1113548',16.00,'1683','2865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001417','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3314,'SUNDOWN VIT D3 5000MCG SOFTGELS 150S','6',NULL,'1113552',16.00,'1431','2435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001418','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3315,'CO-MICARDIS 40MG TABS 28S','11',NULL,'1113566',16.00,'79.576','136',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001419','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3316,'TELMI 80MG TABS 30S','11',NULL,'1113797',16.00,'51.35','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001420','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3317,'ISLIM 400MG CAPS 30S','6',NULL,'1113883',16.00,'33.334','58',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001421','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(3318,'ISOPTIN SR 240MG TABS 30S','11',NULL,'1113996',16.00,'87.704','154',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001422','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3319,'LEVOBACT 750MG TABS 10S','10',NULL,'1113999',16.00,'74.6','124',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001423','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3320,'NOW OMEGA 3-6-9 CAPS 100S','6',NULL,'1114009',16.00,'1565','2615',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001424','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3321,'CLOMID 50MG TABS 30S','10',NULL,'1114031',16.00,'93.333','156',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001425','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3322,'LEFLOX 750MG TABS 10S','10',NULL,'1114074',16.00,'95.14','158',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001426','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3323,'NOW HORNY GOAT WEED EXTRACT 90S','6',NULL,'1114114',16.00,'2285','3820',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001427','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3324,'CADRONATE 150MG TABS 3S','10',NULL,'1114541',16.00,'972','1605',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001428','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3325,'DOMADOL 50MG TABS 100S','10',NULL,'1114574',16.00,'7.137','12.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001429','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3326,'NUROFEN MIGRAINE 12S','6',NULL,'1114674',16.00,'450','755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001430','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3327,'GLUCOMET N 5/500mg TABS 28S','11',NULL,'1114905',16.00,'9.214','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001431','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3328,'PROCTOSEDYL OINTMENT 30GM','6',NULL,'1115158',16.00,'2230','3840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001432','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3329,'METOZ 2.5MG TABS 30S','11',NULL,'1115203',16.00,'22.992','41',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001433','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3330,'INSPRA EPLERENOON 25MG 30S','11',NULL,'1115211',16.00,'96.014','169',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001434','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3331,'PRADAXA 110MG CAPSULES 60S','11',NULL,'1115223',16.00,'122.525','216',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001435','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3332,'AVOMINE TRAVE SICKNESS TABLETS 10S','6',NULL,'1115362',16.00,'310','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001436','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3333,'ELASTOPLAST FABRIC PLASTERS 10S','6',NULL,'1115406',16.00,'280','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001437','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3334,'IMODIUM MELT INSTANTS 2MG 6S','6',NULL,'1115415',16.00,'550','1070',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001438','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3335,'MOVICOL PAEDIATRIC SATCHETS 30S','6',NULL,'1115423',16.00,'41.17','71',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001439','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3336,'TOT HEMA ORAL SOL 10ML AMPOULES 20S','10',NULL,'1115484',16.00,'28.95','49',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001440','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3337,'THEOPHED (FRANOL GENERIC) TABLETS 100S','11',NULL,'1115505',16.00,'1.55','3.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001441','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3338,'AERIUS SYRUP 60ML','10',NULL,'1115506',16.00,'410.82','700',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001442','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3339,'FOLLEY CATHETER 2 WAY G18','10',NULL,'1115637',16.00,'45','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001443','pcs','Inventory','EXEMPTED','0','0036.11.00',0),(3340,'CENTRUM MEN 30','6',NULL,'1115698',16.00,'1050','1755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001444','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3341,'ZINCAT-OD SYRUP 60ML','10',NULL,'1115788',16.00,'100.94','170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001445','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3342,'WISDOM INTERDENTAL BRUSHES 0.60MM 5S','12',NULL,'1115893',16.00,'328.86','530.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001446','pcs','Inventory','VATABLE','0',NULL,0),(3343,'GABIX 300MG CAPS 10S','11',NULL,'1116176',16.00,'30.8','55',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001447','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3344,'TELMI AM 40/5MG TABS 30S','11',NULL,'1116181',16.00,'44.767','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001448','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3345,'SINGULAIR 10MG TABS 28S','11',NULL,'1116225',16.00,'64.976','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001449','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3346,'PARIET 10MG TABS 28S','11',NULL,'1116314',16.00,'101.604','180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001450','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3347,'OPTIVE PLUS EYE DROPS 10ML','6',NULL,'1116407',16.00,'1044','1800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001451','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3348,'TWYNSTA 40/5MG TABS 28S','11',NULL,'1116594',16.00,'102.3','177',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001452','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3349,'NEUROBEST TABS 30S','6',NULL,'1116721',16.00,'14.374','26',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001453','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3350,'METRONIDAZOLE SYRUP 100ML','10',NULL,'1116725',16.00,'36','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001454','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3351,'MINOXIN 5% SOLUTION 60ML','10',NULL,'1116757',16.00,'2267.8','3834.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001455','pcs','Inventory','VATABLE','0','0039.11.28',0),(3352,'NIVEA AFTER SHAVE BALM SENSITIVE 100ML','12',NULL,'1116884',16.00,'774.99948','1110.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001456','pcs','Inventory','VATABLE','0',NULL,0),(3353,'TWYNSTA 40/10MG TABS 28S','11',NULL,'1117011',16.00,'102.3','176',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001457','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3354,'YESCORT 6MG TABLETS 30S','11',NULL,'1117137',16.00,'21.462','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001458','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3355,'PROGYNOVA 2MG TABS 20S','10',NULL,'1117236',16.00,'17.68','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001459','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(3356,'QUEST CRANBIOTIX - PROBIOTIC WITH CRANBERRY 30S','6',NULL,'1117245',16.00,'1235','2065',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001460','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3357,'FEBO-G 40MG TABS 20S','11',NULL,'1117251',16.00,'75','132',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001461','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3358,'AVELON 400MG TABS 10S','10',NULL,'1117277',16.00,'221.346','368',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001462','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3359,'IMPRAMINE 25MG TABS 28S','10',NULL,'1117279',16.00,'16.071','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001463','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3360,'SENSODYNE REPAIR & PROTECT 75ML','12',NULL,'1117530',16.00,'460.47128','620.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001464','pcs','Inventory','VATABLE','0',NULL,0),(3361,'CENTRUM 50+ MEN 30S','6',NULL,'1117540',16.00,'1200','2005',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001465','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3362,'DUODART 0.5MG CAPS 30S','11',NULL,'1117636',16.00,'70.2','117',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001466','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3363,'VITAMIN C EFF ORANGE 1000MG 20S (PHC)','6',NULL,'1117726',16.00,'585','1008.621',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001467','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3364,'LIPITOR 20MG TABS 30S','11',NULL,'1117775',16.00,'76.103','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001468','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3365,'SUNDOWN COMPLETE OMEGA 3-5-6-7-9 SOFTGELS 90S','6',NULL,'1117831',16.00,'2326.5','3960',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001469','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3366,'KLEEN ENEMAX 100MCG 135ML','10',NULL,'1117990',16.00,'173','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001470','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3367,'SUNDOWN VIT D3 1000MCG SOFTGEL 200S','6',NULL,'1117996',16.00,'1431','2435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001471','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3368,'LIPIGET 40MG TABS 10S','11',NULL,'1118009',16.00,'56','97',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001472','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3369,'NIVEA SHOWER GEL MEN COOL KICK 250ML','12',NULL,'1118109',16.00,'391.66704','545.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001473','pcs','Inventory','VATABLE','0',NULL,0),(3370,'SLOW SODIUM TABLETS 600MG 100S','10',NULL,'1118112',16.00,'22','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001474','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3371,'PREGNACARE FOR BREASTFEEDING','6',NULL,'1118198',16.00,'1697.273','3120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001475','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3372,'ESCLAM KIT 7S','11',NULL,'1118360',16.00,'360.463','631',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001476','pcs','Inventory','EXEMPTED','0','0039.11.14',0),(3373,'LEVIPIL 500MG TABS 30S','10',NULL,'1118388',16.00,'64','111',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001477','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3374,'ASOMEX D 2.5/12.5MG TABS 30S','11',NULL,'1118481',16.00,'52.213','92',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001478','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3375,'FORALIN 400 INHALER','11',NULL,'1118517',16.00,'2134.52','3740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001479','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3376,'ANIMAL PARADE KIDZINC LOZENGES 90S','6',NULL,'1118544',16.00,'1825','3140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001480','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3377,'FORALIN INHALER 100','11',NULL,'1118554',16.00,'1099.94','1925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001481','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3378,'FEMELLE COTTON BALLS 100S','12',NULL,'1118619',16.00,'232','405.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001482','pcs','Inventory','VATABLE','0',NULL,0),(3379,'FEMELLE COTTON BUDS 200S','9',NULL,'1118824',16.00,'168.2','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001483','pcs','Inventory','VATABLE','0',NULL,0),(3380,'OLD SPICE DEODORANT STICK PURE SPORT 85G','12',NULL,'1118982',16.00,'1160','1880.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001484','pcs','Inventory','VATABLE','0',NULL,0),(3381,'FORALIN 200 INHALER','11',NULL,'1119823',16.00,'1487.8','2605',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001485','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3382,'QUEST VIT C 1000MG TIMED RELEASE TABS BONUS 45s','6',NULL,'1120062',16.00,'785','1315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001486','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3383,'BALLET MOSQUITO REPELLENT MOUSE SPRAY 100ML','9',NULL,'1120074',16.00,'233.9952','394.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001487','pcs','Inventory','VATABLE','0',NULL,0),(3384,'NIVEA MEN SHAVING FOAM SENSITIVE 200ML','12',NULL,'1120156',16.00,'562.50024','780.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001488','pcs','Inventory','VATABLE','0',NULL,0),(3385,'SENSODYNE TOOTH BRUSH (GUM CARE) SOFT','12',NULL,'1120382',16.00,'134.56','185.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001489','pcs','Inventory','VATABLE','0',NULL,0),(3386,'ALTACEF 500MG TABS 10S','10',NULL,'1120669',16.00,'86.953','146',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001490','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3387,'ECOFREE 120MG TABS 10S','10',NULL,'1120754',16.00,'49.498','83',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001491','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3388,'COW & GATE NUTRISTART 2 400G','6',NULL,'1120798',16.00,'1066.50052','1710.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001492','pcs','Inventory','VATABLE','0',NULL,0),(3389,'COW & GATE NUTRISTART 1 400G','6',NULL,'1120799',16.00,'1066.50052','1710.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001493','pcs','Inventory','VATABLE','0',NULL,0),(3390,'COW & GATE NUTRISTART JUNIOR 3 400G','6',NULL,'1120801',16.00,'1066.50052','1710.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001494','pcs','Inventory','VATABLE','0',NULL,0),(3391,'DUREX CONDOMS PLEASURE ME','6',NULL,'1120808',16.00,'241.9876','454.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001495','pcs','Inventory','VATABLE','0',NULL,0),(3392,'NEXIKEN KIT 7S','11',NULL,'1120814',16.00,'213.964','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001496','pcs','Inventory','EXEMPTED','0','0039.11.14',0),(3393,'METHYLATED SPIRIT 100ML','6',NULL,'1120818',16.00,'31.32','54.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001497','pcs','Inventory','VATABLE','0',NULL,0),(3394,'LETROL 2.5MG TABS 5S','11',NULL,'1120822',16.00,'150','263',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001498','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3395,'BIOFLOR 250MG SACHETS 10S','6',NULL,'1120864',16.00,'76.5','133',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001499','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3396,'CIPLADON 500MG EFF TABLETS 16S','6',NULL,'1120876',16.00,'17.284','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001500','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3397,'NATURAL COTTON MAXI SUPER PADS 12S','12',NULL,'1120949',16.00,'382.5','585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001501','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(3398,'VICKS VAPOUR RUB 100GM U.K','6',NULL,'1121446',16.00,'800','1655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001502','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3399,'CLOMID 50MG TABS 10S','10',NULL,'1121496',16.00,'56','93',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001503','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(3400,'DEEP FREEZE COLD PATCH','6',NULL,'1121526',16.00,'360','605',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001504','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3401,'OXYBUTYNIN 5MG TABS 100S','11',NULL,'1121536',16.00,'5','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001505','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3402,'TERBIFIN 250MG TABS 14S','10',NULL,'1121594',16.00,'110.879','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001506','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3403,'MESTINON PYRIDOSTIGMINE 60MG TABS 20S','10',NULL,'1121600',16.00,'35','59',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001507','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3404,'PANTOLOC 20MG TABS 28S','11',NULL,'1121612',16.00,'49.214','87',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001508','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3405,'APROVASC 150/5MG TABS 28S','11',NULL,'1121741',16.00,'74.967','132',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001509','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3406,'CATAFLAM 15MG/ML SUSP 120ML','10',NULL,'1122053',16.00,'699.55','1180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001510','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3407,'APDROPS DX 5/1MG 3ML DROPS','10',NULL,'1122060',16.00,'425.6','720',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001511','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3408,'PERFECTIL PLUS SKIN CAPS 60S','6',NULL,'1122067',16.00,'1512','2530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001512','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3409,'VICKS INHALER INDIA','6',NULL,'1122202',16.00,'385','655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001513','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3410,'ALWAYS EVERYDAY PANTYLINERS NORMAL 20S','12',NULL,'1122404',16.00,'100.5488','155.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001514','pcs','Inventory','VATABLE','0',NULL,0),(3411,'WISDOM CLEAN BETWEEN FLOSSER','12',NULL,'1122478',16.00,'393.588','629.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001515','pcs','Inventory','VATABLE','0',NULL,0),(3412,'LRP CICAPLAST BAUME B5 40ml','12',NULL,'1122494',16.00,'1155.534','1865.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001516','pcs','Inventory','VATABLE','0',NULL,0),(3413,'LRP LIPIKAR CLEANSING BAR 150g','12',NULL,'1122512',16.00,'606.86676','980.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001517','pcs','Inventory','VATABLE','0',NULL,0),(3414,'VEET HAIR REMOVAL CREAM SENSITIVE 50G','12',NULL,'1122644',16.00,'487.9424','750.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001518','pcs','Inventory','VATABLE','0',NULL,0),(3415,'DUREX PLAY FEEL 50ML','6',NULL,'1122703',16.00,'586.4612','1004.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001519','pcs','Inventory','VATABLE','0',NULL,0),(3416,'NYTOL ORIGINALS 25MG 20S','6',NULL,'1122740',16.00,'660','1110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001520','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3417,'NIVEA FOR MEN BODY MILK (COOL KICK) 200ML','9',NULL,'1122817',16.00,'270.83332','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001521','pcs','Inventory','VATABLE','0',NULL,0),(3418,'DERMOL EMOLLIENT CREAM 500GM','9',NULL,'1122874',16.00,'1238.88','2119.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001522','pcs','Inventory','VATABLE','0',NULL,0),(3419,'APROVASC 300/5MG TABS 28S','11',NULL,'1122894',16.00,'88.733','157',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001523','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3420,'DUREX CONDOM SELECT FLAVOURS','6',NULL,'1123252',16.00,'199.636','345.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001524','pcs','Inventory','VATABLE','0',NULL,0),(3421,'CYTOTEC MISOPROSTOL TABLETS 28S','10',NULL,'1123647',16.00,'59.514','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001525','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3422,'LOXIAM MR 8/8MG TABS 10S','10',NULL,'1123800',16.00,'63.7','108',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001526','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3423,'QUITIPIN 300MG TABS 30S','10',NULL,'1124330',16.00,'76.667','129',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001527','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3424,'GIT SR 150MG CAPS 10S','10',NULL,'1124332',16.00,'67.898','114',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001528','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3425,'LATEX EXAMINATION GLOVES LARGE 100S','6',NULL,'1124334',16.00,'4.4','9.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001529','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3426,'MS TELLME OVULATION MIDSTREAM 5PCS','6',NULL,'1124513',16.00,'1216.0048','2094.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001530','pcs','Inventory','VATABLE','0',NULL,0),(3427,'LEVOLUKAST ADULTS TABS 30S','10',NULL,'1124835',16.00,'47.467','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001531','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3428,'CLEAR T GEL 20GM','10',NULL,'1124882',16.00,'408','685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001532','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3429,'SUDAFED CONGESTION & HEADACHE RELIEF MAX CAPS 16S','6',NULL,'1124919',16.00,'565','975',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001533','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3430,'CONTEMPO CONDOM FLAVOURS 3S','6',NULL,'1124937',16.00,'212.5004','375.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001534','pcs','Inventory','VATABLE','0',NULL,0),(3431,'VITAHEALTH JOINTCARE FORTIFIED 30S','6',NULL,'1125012',16.00,'1831.75','3045',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001535','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3432,'STERIMAR BABY NASAL HYGIENE (ISOTONIC 50ML','6',NULL,'1125035',16.00,'427.5','740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001536','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3433,'FLEMING 625MG TABS 14S','10',NULL,'1125063',16.00,'24.016','42',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001537','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(3434,'SUCRALFATE 1GM TABS 60S','11',NULL,'1125089',16.00,'15.833','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001538','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3435,'EUTHYROX 25MCG TABS 30S','11',NULL,'1125091',16.00,'4','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001539','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(3436,'ARCOXIA 120MG TABS 7S','10',NULL,'1125117',16.00,'116.499','195',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001540','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3437,'CLINDAR T PLUS GEL 20GM','10',NULL,'1125231',16.00,'439','745',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001541','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3438,'PRINTING PAPERS','13',NULL,'1125260',16.00,'696','400.01208',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001542','pcs','Inventory','VATABLE','0',NULL,0),(3439,'MEDTEXTILE SOFT CURVICAL COLAR 1005-2','6',NULL,'1125279',16.00,'1160','1975',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001543','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(3440,'MED/T KNEE JOINT SUPPORT ADJUSTABLE - 6035-S/L','6',NULL,'1125301',16.00,'1595','2745',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001544','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(3441,'MEDTEXTILE ANKLE SUPPORT LIGHT FIXATION-7034-L','6',NULL,'1125305',16.00,'660','1125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001545','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(3442,'MEDTEXTILE WRIST WRAP W/STRAP-8512-S/L','6',NULL,'1125309',16.00,'690','1175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001546','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(3443,'MEDTEXTILE WHITE ARM SLING FACILITATED - 9912-L','6',NULL,'1125315',16.00,'800','1360',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001547','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(3444,'MEDTEXTILE WHITE ARM SLING FACILITATED - 9912-XL','6',NULL,'1125316',16.00,'800','1360',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001548','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(3445,'MEDTEXTILE ANKLE SUPPORT W/STRAP - 7025-M','6',NULL,'1125320',16.00,'1050','1785',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001549','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(3446,'MED/T ANKLE SUPPORT E/MEDIUM FIXATION - 7101-S','6',NULL,'1125323',16.00,'750','1300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001550','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(3447,'MEDTEXTILE WRIST WRAP ELASTIC - 8506-L','6',NULL,'1125330',16.00,'750','1275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001551','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(3448,'PRINTED BAG WHITE 1KG - GOODLIFE','13',NULL,'1125358',16.00,'3.248','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001552','pcs','Inventory','VATABLE','0',NULL,0),(3449,'PRINTED BAG WHITE 2KG - GOODLIFE','13',NULL,'1125359',16.00,'4.408','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001553','pcs','Inventory','VATABLE','0',NULL,0),(3450,'BETTER YOU MAGNESIUM OIL SPRAY MUSCLE 100ML','6',NULL,'1125369',16.00,'2076.4','3529.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001554','pcs','Inventory','VATABLE','0',NULL,0),(3451,'FORXIGA 10MG TABS 28S','11',NULL,'1125379',16.00,'143.065','244',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001555','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3452,'MEDISIGN BLOOD GLUCOSE METER','11',NULL,'1125381',16.00,'1565.52','2695',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001556','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(3453,'HUMALOG KWIKPEN 3ML','11',NULL,'1125414',16.00,'1295','2165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001557','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(3454,'NATRIXAM 1.5/5MG 30S','11',NULL,'1125446',16.00,'29.157','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001558','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3455,'HUMALOG MIX 25 QUICK PEN','11',NULL,'1125448',16.00,'1101','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001559','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(3456,'ACNES SEALING GEL 9G','9',NULL,'1125461',16.00,'320.16','535.00012',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001560','pcs','Inventory','VATABLE','0',NULL,0),(3457,'DALACIN C 150MG TABS 100S','10',NULL,'1125514',16.00,'37.77','63.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001561','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3458,'ACTILOSA CAPS 10S','6',NULL,'1125580',16.00,'45','77',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001562','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3459,'EPSOM SALT 25G','6',NULL,'1125663',16.00,'40.6','74.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001563','pcs','Inventory','VATABLE','0',NULL,0),(3460,'CILVAS 10MG TABS 30S','11',NULL,'1125875',16.00,'44.55','78',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001564','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3461,'N/AID ACTIVE MAN arginine','6',NULL,'1125975',16.00,'1485','2525',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001565','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3462,'N/AID MENS HEALTHY & VITALITY MULTIVITAMINS & MINERALS CAPS 30S','6',NULL,'1125980',16.00,'1269','2160',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001566','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3463,'N/AID FOLIC ACID 400ug TABS 90S','6',NULL,'1125983',16.00,'823.5','1400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001567','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3464,'N/AID TR VITAMIN C 1000MG TABLETS 30S','6',NULL,'1126408',16.00,'864','1470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001568','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3465,'WELLWOMAN 70+ TABLETS 30S','6',NULL,'1126499',16.00,'1008','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001569','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3466,'EROSTIN SUSPENSION 60MLS','10',NULL,'1126517',16.00,'426.92','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001570','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3467,'CLEAR BLUE DIGITAL PREGNANCY TEST WEEK INDICATOR','6',NULL,'1126526',16.00,'1566','3699.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001571','pcs','Inventory','VATABLE','0',NULL,0),(3468,'SUNDOWN MELATONIN 5 MG DISSOLVABLE 90S','6',NULL,'1126529',16.00,'1296','2205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001572','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3469,'SUNDOWN VITAMIN C 500MG TR CAPS 90S','6',NULL,'1126530',16.00,'1620','2755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001573','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3470,'SUNDOWN VITAMIN C 1000MG CAPS 133S','6',NULL,'1126531',16.00,'2160','3675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001574','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3471,'SUNDOWN VITAMIN C 500MG CHEW TABS 100S','6',NULL,'1126533',16.00,'1935','3290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001575','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3472,'N/AID EVENING PRIMROSE OIL 1000MG 90S','6',NULL,'1126535',16.00,'1683','2865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001576','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3473,'BRONCHOPED SYRUP 100ML','6',NULL,'1126537',16.00,'313.51','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001577','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3474,'N/AID VITAMIN B COMPLEX 50+ C TABS 30S','6',NULL,'1126613',16.00,'1161','1975',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001578','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3475,'N/AID D3 1000iu TABS 90S','6',NULL,'1126614',16.00,'1080','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001579','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3476,'N/AID HAIR SKIN & NAILS TABS 90S','6',NULL,'1126621',16.00,'1350','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001580','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3477,'DUSPATALIN 200MG TABS 30S','10',NULL,'1126758',16.00,'45.15','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001581','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3478,'DYNAPAR QPS 30ML SPARY','10',NULL,'1126774',16.00,'638.5','1055',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001582','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3479,'EPIMAX BABY & JUNIOR LOTION BTL PUMP 450ML','12',NULL,'1127055',16.00,'1148.4','1955.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001583','pcs','Inventory','VATABLE','0',NULL,0),(3480,'TREVIA 50MG TABS 35S','11',NULL,'1127062',16.00,'49.286','87',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001584','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3481,'GLENCET 5MG TABS 30S','10',NULL,'1127070',16.00,'40.495','66',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001585','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3482,'N/AID MULTIVITAMIN DROPS INFANTS & CHILDREN 50ML','6',NULL,'1127095',16.00,'918','1565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001586','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3483,'QUEST OAD PREGNA MULTI TABS 30S','6',NULL,'1127109',16.00,'540','910',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001587','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3484,'BRILINTA 90MG TABS 56S','11',NULL,'1127112',16.00,'154.858','284',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001588','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3485,'ROVISTA 5MG TABS 30S','11',NULL,'1127144',16.00,'25.667','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001589','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3486,'ROVISTA 10MG TABS 30S','11',NULL,'1127160',16.00,'40.6','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001590','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3487,'MOMATE AZ NASAL SPRAY','10',NULL,'1127166',16.00,'1386.62','2305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001591','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3488,'CELEBREX CELECOXIB 200MG CAPSULES 100S','10',NULL,'1127170',16.00,'60.815','104',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001592','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3489,'GAVISCON ADVANCE PEPPERMINT TABLETS 24S.','6',NULL,'1127178',16.00,'1090','1835',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001593','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3490,'SENSODYNE EXTRA FRESH T/PASTE 75ML','12',NULL,'1127360',16.00,'376.75176','505.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001594','pcs','Inventory','VATABLE','0',NULL,0),(3491,'GABICA 50MG TABS 35S','11',NULL,'1127377',16.00,'39','69',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001595','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3492,'FAY WET WIPES ANTIBACTERIAL 10S','12',NULL,'1127383',16.00,'71.3574','119.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001596','pcs','Inventory','VATABLE','0',NULL,0),(3493,'WS STUDEX UNIVERSAL EAR PIERCING INSTRUMENT KIT','14',NULL,'1127431',16.00,'2900','1000.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001597','pcs','Inventory','VATABLE','0',NULL,0),(3494,'RELVAR ELLIPTA 100/25MCG A/HALER','11',NULL,'1127434',16.00,'2591','4330',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001598','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3495,'GABICA PREGABALIN 75MG TABS 35S','11',NULL,'1127443',16.00,'43.6','77',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001599','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3496,'PHOTOBLOCK GEL 75G SPF 50+','9',NULL,'1127446',16.00,'660.0052','1164.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001600','pcs','Inventory','VATABLE','0',NULL,0),(3497,'ARCOXIA 120MG TABS 28S','10',NULL,'1127588',16.00,'116.543','196',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001601','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3498,'DOVE SOAP GENTLE EXFOLIATING 100G','9',NULL,'1127618',16.00,'145.58','234.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001602','pcs','Inventory','VATABLE','0',NULL,0),(3499,'BIC 1 POUCH 1 SINGLE','12',NULL,'1127624',16.00,'14.9408','25.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001603','pcs','Inventory','VATABLE','0',NULL,0),(3500,'BIOGAIA BABY DROPS 5ML','6',NULL,'1127989',16.00,'1306','2225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001604','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3501,'BIOGAIA PROTECTS TABS CHEW 10S','6',NULL,'1127990',16.00,'568','985',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001605','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3502,'DYNACORT (DEFLAZACORT) 6MG 30S','10',NULL,'1128029',16.00,'16','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001606','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3503,'EROVITA FIRST AID KIT BLUE','6',NULL,'1128030',16.00,'1205','2075',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001607','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3504,'SUNDOWN OMEGA 3-6-9 200S','6',NULL,'1128128',16.00,'3105','5280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001608','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3505,'ACCU-CHEK INSTANT STRIPS 50S','11',NULL,'1128185',16.00,'1550.00012','2635.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001609','pcs','Inventory','VATABLE','0',NULL,0),(3506,'AVENT NATURAL MANUAL BREAST PUMP -SCF330/60','12',NULL,'1128271',16.00,'6733.8','9230.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001610','pcs','Inventory','VATABLE','0',NULL,0),(3507,'LISTERINE ZERO 250ML','12',NULL,'1128275',16.00,'532.44','789.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001611','pcs','Inventory','VATABLE','0',NULL,0),(3508,'SINGULAIR 5MG TABS 28S','11',NULL,'1128320',16.00,'64.976','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001612','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3509,'TENA TISSUE PAPERS (for branche use)','15',NULL,'1128328',16.00,'34.8','55.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001613','pcs','Inventory','VATABLE','0',NULL,0),(3510,'CANESPOR CREAM 1% 15GM','10',NULL,'1128429',16.00,'657.081','1120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001614','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3511,'DAY NURSE CAPSULE','6',NULL,'1128434',16.00,'1080','1750',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001615','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(3512,'CANDEREL TABS GREEN 100S','6',NULL,'1128450',16.00,'280','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001616','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3513,'SAFECAL TABLETS','6',NULL,'1128465',16.00,'595.41','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001617','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3514,'REKFA GOLD 30S','6',NULL,'1128467',16.00,'838.35','1445',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001618','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3515,'IDEOS CHEWABLE TABS','6',NULL,'1128470',16.00,'840','1445',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001619','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3516,'NEXIUM 20MG TABS 28S','11',NULL,'1128479',16.00,'91.64','154',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001620','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3517,'SPORANOX 100MG 15S','10',NULL,'1128511',16.00,'275.94','459',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001621','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3518,'PANTO-DENK 40MG TABS 28S','11',NULL,'1128515',16.00,'28.118','50',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001622','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3519,'GARNIER COLOR NATURALS FR/GB/AR 5 3 CH CL D (LIGHT GOLDEN BROWN) KIT','12',NULL,'1128566',16.00,'295.99952','445.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001623','pcs','Inventory','VATABLE','0',NULL,0),(3520,'L’ORÉAL ELVIVE EXTRAORDINARY OIL SHAMPOO 200ML','12',NULL,'1128586',16.00,'443.99696','690.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001624','pcs','Inventory','VATABLE','0',NULL,0),(3521,'L’ORÉAL ELVIVE EXTRA ORDINARY OIL CONDITIONER 200ML','12',NULL,'1128590',16.00,'443.99696','690.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001625','pcs','Inventory','VATABLE','0',NULL,0),(3522,'BIO OIL 25ML','9',NULL,'1128722',16.00,'259.1498','439.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001626','pcs','Inventory','VATABLE','0',NULL,0),(3523,'DEXTRO ENERGY GLUCOSE TAB NATURAL 47G','6',NULL,'1128775',16.00,'155','265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001627','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3524,'DEXTRO ENERGY GLUCOSE TAB TROPICAL 47G','6',NULL,'1128777',16.00,'155','265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001628','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3525,'KOTEX ULTRA THIN NORMAL 16S','12',NULL,'1128968',16.00,'167.78','245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001629','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(3526,'KOTEX ULTRA THIN NORMAL WITH WINGS 14S','12',NULL,'1128969',16.00,'194.6248','339.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001630','pcs','Inventory','VATABLE','0',NULL,0),(3527,'TRAMACET TABS 20S','10',NULL,'1129044',16.00,'36.765','63',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001631','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3528,'KOTEX PANTY LINERS 20s INDIVIDUALLY WRAPPED','12',NULL,'1129083',16.00,'126.15','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001632','pcs','Inventory','VATABLE','0',NULL,0),(3529,'FOSMOL SATCHET 3000MG 1S','10',NULL,'1129092',16.00,'1073','1785',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001633','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3530,'MOMATE NASAL SPRAY 50MCG 60D','10',NULL,'1129093',16.00,'725.35','1235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001634','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3531,'SKINS CONDOMS ASSORTED 4S','6',NULL,'1129102',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001635','pcs','Inventory','VATABLE','0',NULL,0),(3532,'SKINS CONDOMS BUBBLEGUM 4S','6',NULL,'1129103',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001636','pcs','Inventory','VATABLE','0',NULL,0),(3533,'SKINS CONDOMS DOTS & RIBS 4S','6',NULL,'1129104',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001637','pcs','Inventory','VATABLE','0',NULL,0),(3534,'SKINS CONDOMS FLAVOURS 4S','6',NULL,'1129105',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001638','pcs','Inventory','VATABLE','0',NULL,0),(3535,'SKINS CONDOMS EXTRA LARGE 4S','6',NULL,'1129108',16.00,'260.0024','445.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001639','pcs','Inventory','VATABLE','0',NULL,0),(3536,'AVALIFE ADVANCE RESCUE CAPS 30S','6',NULL,'1129112',16.00,'1020','1735',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001640','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3537,'NEUROZAN PLUS OMEGA-3','6',NULL,'1129142',16.00,'2200','3675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001641','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3538,'TRIPLIXAM 10/2.5/10MG','11',NULL,'1129154',16.00,'2483.076','4150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001642','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3539,'GALVUS 50MG TABS 28S','11',NULL,'1129156',16.00,'85.911','149',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001643','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3540,'TRAJENTA 5MG 30S','11',NULL,'1129193',16.00,'145.093','254',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001644','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3541,'PREGNACARE LOTION 200ML','12',NULL,'1129259',16.00,'974.4','1665.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001645','pcs','Inventory','VATABLE','0',NULL,0),(3542,'DETTOL SOAP HERBAL 90GM','12',NULL,'1129282',16.00,'87.0116','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001646','pcs','Inventory','VATABLE','0',NULL,0),(3543,'DETTOL HANDWASH FRESH PUMP 200ML','12',NULL,'1129286',16.00,'326.6792','484.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001647','pcs','Inventory','VATABLE','0',NULL,0),(3544,'FERTILION F CAPS 30S','6',NULL,'1129295',16.00,'1480','2550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001648','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3545,'FAST AID ASSORTED CLEAR PLASTERS 24S','6',NULL,'1129296',16.00,'290','499.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001649','pcs','Inventory','VATABLE','0',NULL,0),(3546,'FAST AID FABRIC PLASTERS 24S','6',NULL,'1129395',16.00,'371.2','639.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001650','pcs','Inventory','VATABLE','0',NULL,0),(3547,'FAST AID KIDS PLASTERS 15S','6',NULL,'1129397',16.00,'278.4','479.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001651','pcs','Inventory','VATABLE','0',NULL,0),(3548,'VICKS BABY RUB 50G','6',NULL,'1129398',16.00,'550','955',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001652','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3549,'ELASTOPLAST STRIP 6.0CM X 10CM FABRIC','6',NULL,'1129431',16.00,'411.84','700',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001653','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3550,'OLBAS NASAL SPRAY 20ML','6',NULL,'1129441',16.00,'700','1205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001654','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3551,'BETTER YOU MAGNESIUM OIL SPRAY SLEEP 100ML','6',NULL,'1129452',16.00,'2076.4','3529.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001655','pcs','Inventory','VATABLE','0',NULL,0),(3552,'FABIA UPPER ARM BLOOD PRESSURE MACHINE','11',NULL,'1129457',16.00,'3357.76','5610',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001656','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(3553,'VICTOZA 6MG /M1 PRE-FILLED PEN','11',NULL,'1129465',16.00,'8950','13875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001657','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3554,'BETMIGA 50MG 30S','10',NULL,'1129471',16.00,'96.068','161',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001658','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3555,'H&B CALCIUM WITH VITAMIN D & K 60S','6',NULL,'1129481',16.00,'510','880',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001659','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3556,'H&B ULTRA MAN MULTIVITAMIN 100S','6',NULL,'1129491',16.00,'1600','2755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001660','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3557,'ACNES MENTHOLATUM VITAMIN CLEANSER 50G','9',NULL,'1129502',16.00,'368.3','620.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001661','pcs','Inventory','VATABLE','0',NULL,0),(3558,'EPIMOL-E CLEANSER BARSOAP 100G','9',NULL,'1129503',16.00,'439.9648','735.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001662','pcs','Inventory','VATABLE','0',NULL,0),(3559,'BENNETTS HAIR & BODY WASHá 400ML','12',NULL,'1129505',16.00,'961.92652','1569.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001663','pcs','Inventory','VATABLE','0',NULL,0),(3560,'PRINTED WHITE MILLINERY BAGS ‘ GOODLIFE’ 4 X 6','13',NULL,'1129508',16.00,'1.16','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001664','pcs','Inventory','VATABLE','0',NULL,0),(3561,'PRINTED WHITE MILLINERY BAGS ‘ GOODLIFE’ 6 X 7.5','13',NULL,'1129509',16.00,'1.914','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001665','pcs','Inventory','VATABLE','0',NULL,0),(3562,'BIOFOLIC DHA 100S','6',NULL,'1129510',16.00,'23.098','41',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001666','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3563,'OSMOLAX SOLUTION 100ML','6',NULL,'1129531',16.00,'262.5','455',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001667','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3564,'TEGRETOL SYRUP 100MG/5ML 150ML','11',NULL,'1129560',16.00,'817.7','1440',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001668','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3565,'VALUPAK VITAMIN C EFFER 1000MG 20S','6',NULL,'1129585',16.00,'530','920',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001669','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3566,'PROFERTIL MEN TABS 60S','6',NULL,'1129602',16.00,'5781.2','9945',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001670','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3567,'CONTOUR PLUS STRIPS 25S','11',NULL,'1129890',16.00,'920','1585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001671','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(3568,'N/AID MAGNESIUM CITRATE 119MG 60S','6',NULL,'1129908',16.00,'1350','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001672','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3569,'RELCER TABLETS 30S','6',NULL,'1129909',16.00,'216','365',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001673','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3570,'TITANIA CUTICLE NIPPER STAINLESS','12',NULL,'1129943',16.00,'1164.9996','1855.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001674','pcs','Inventory','VATABLE','0',NULL,0),(3571,'TITANIA TITANIA BABY SCISSORS STAINLESS','12',NULL,'1129946',16.00,'469.99952','754.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001675','pcs','Inventory','VATABLE','0',NULL,0),(3572,'TITANIA 4 HAIR SECTION CLIPS + 8 HAIR RIBBONS','12',NULL,'1129952',16.00,'375.00016','605.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001676','pcs','Inventory','VATABLE','0',NULL,0),(3573,'PAPERMINTS 18 CAPSULES','12',NULL,'1129980',16.00,'118.1112','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001677','pcs','Inventory','VATABLE','0',NULL,0),(3574,'PAPERMINTS 40 COOL CAPS','12',NULL,'1129981',16.00,'226.2','449.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001678','pcs','Inventory','VATABLE','0',NULL,0),(3575,'CONTOUR PLUS STRIPS 50S','11',NULL,'1129986',16.00,'1600','2755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001679','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(3576,'DENMAN ELASTIC BANDS BLACK LARGE 4MM - 18PC -71014D','12',NULL,'1130008',16.00,'339.3','584.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001680','pcs','Inventory','VATABLE','0',NULL,0),(3577,'REPLENISH CAPS 30S','6',NULL,'1130027',16.00,'1666.8','2870',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001681','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3578,'CREVIL GERMANY FEMININE INTIMATE 100ML','12',NULL,'1130031',16.00,'567.936','919.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001682','pcs','Inventory','VATABLE','0',NULL,0),(3579,'CREVIL GERMANY FEMININE INTIMATE 300ML','12',NULL,'1130032',16.00,'1114.18','1799.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001683','pcs','Inventory','VATABLE','0',NULL,0),(3580,'BENYLIN WET COUGH MENTHOL 100ML','6',NULL,'1130042',16.00,'449.1','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001684','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3581,'OPTIVE EYE GEL DROPS 10ML','6',NULL,'1130056',16.00,'1075','1850',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001685','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3582,'VITAHEALTH COD LIVER OIL 200ML','6',NULL,'1130058',16.00,'637.5','1060',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001686','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3583,'FLEMING 228MG/5ML SUSP 70ML','10',NULL,'1130079',16.00,'223.041','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001687','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(3584,'DURACELL LITHIUM 3V 2032 2S','12',NULL,'1130083',16.00,'235.596','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001688','pcs','Inventory','VATABLE','0',NULL,0),(3585,'JOHNSON\'S BABY S&SHINY 2-IN-1 SHAMP&COND 200ML','12',NULL,'1130122',16.00,'431.52','660.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001689','pcs','Inventory','VATABLE','0',NULL,0),(3586,'DOVE SOAP GO FRESH – FRESH TOUCH 100G','12',NULL,'1130158',16.00,'145.58','230.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001690','pcs','Inventory','VATABLE','0',NULL,0),(3587,'GLUCOPHAGE XR 1G 60S','11',NULL,'1130179',16.00,'12.667','22',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001691','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3588,'ALMAX FORTE SATCHETS 30S','6',NULL,'1130180',16.00,'26.2','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001692','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3589,'WELLTEEN HER PLUS','6',NULL,'1130235',16.00,'1088','1820',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001693','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3590,'UPERIO 100MG TABS 28S','11',NULL,'1130275',16.00,'98.925','187',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001694','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3591,'AVALIFE AVACARE COLON CARE 30S','6',NULL,'1130284',16.00,'1360','2315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001695','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3592,'COTIPRED EFF TABLET 20MG 20S','10',NULL,'1130286',16.00,'27.2','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001696','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3593,'AZITHRAX 200MG/5ML SUSPENSION 30ML','10',NULL,'1130293',16.00,'401.38','675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001697','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3594,'AZITHRAX 200MG/5ML SUSPENSION 15ML','10',NULL,'1130295',16.00,'202.8','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001698','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3595,'SARU ORGANICS 3-IN-1 SHAMPOO 240 ML','12',NULL,'1130297',16.00,'464','744.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001699','pcs','Inventory','VATABLE','0',NULL,0),(3596,'SARU ORGANICS LEAVE-IN CONDITIONER 240 ML','12',NULL,'1130298',16.00,'638','1025.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001700','pcs','Inventory','VATABLE','0',NULL,0),(3597,'SARU ORGANICS DETANGLER CONDITIONER 240 ML','12',NULL,'1130301',16.00,'522','829.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001701','pcs','Inventory','VATABLE','0',NULL,0),(3598,'EPNONE 50MG TABS 30S','11',NULL,'1130456',16.00,'106.805','187',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001702','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3599,'STUDEX KIDS EARINGS TINY TIPS ASSORTED','9',NULL,'1130472',16.00,'449.9988','769.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001703','pcs','Inventory','VATABLE','0',NULL,0),(3600,'ARBITEL H 40/12.5MG TABS 30S','11',NULL,'1130478',16.00,'36.935','65',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001704','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3601,'NEBZMART S 10S','11',NULL,'1130502',16.00,'780','1365',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001705','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3602,'HARTEZE 10MG TABS 28s','11',NULL,'1130541',16.00,'45.12','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001706','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3603,'COLGATE BABY T/PASTE STRAWBERRY 50ML','12',NULL,'1130558',16.00,'169.215','264.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001707','pcs','Inventory','VATABLE','0',NULL,0),(3604,'COLGATE KIDS T/PASTE BUBBLE FRUIT 50ML','12',NULL,'1130559',16.00,'166.7094','260.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001708','pcs','Inventory','VATABLE','0',NULL,0),(3605,'GRAMOCEF-O 100MG/5ML 100ML','10',NULL,'1130565',16.00,'729.6','1220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001709','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3606,'SWISS HERBAL LOZENGES SAGE 12S','6',NULL,'1130593',16.00,'270','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001710','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3607,'LRP ANTHELIOS SUN LOTION SPF50+ 100ML','9',NULL,'1130600',16.00,'1902.27936','3064.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001711','pcs','Inventory','VATABLE','0',NULL,0),(3608,'FUN TIME CHERRY LUBE 75ML','6',NULL,'1130636',16.00,'348','629.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001712','pcs','Inventory','VATABLE','0',NULL,0),(3609,'FUN TIME ORIGINAL LUBE 75ML','6',NULL,'1130637',16.00,'348','629.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001713','pcs','Inventory','VATABLE','0',NULL,0),(3610,'FUN TIME STRAWBERRY LUBE 75ML','6',NULL,'1130638',16.00,'348','629.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001714','pcs','Inventory','VATABLE','0',NULL,0),(3611,'JARDIANCE 10MG TABS 30S','11',NULL,'1130655',16.00,'140.559','238',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001715','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3612,'NERVOPLEX TABS 10S','6',NULL,'1130712',16.00,'808.5432','1400.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001716','pcs','Inventory','VATABLE','0','0039.11.27',0),(3613,'XYKAA EXTEND 1000MG TABS 30S','6',NULL,'1130716',16.00,'20.4','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001717','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3614,'PRESARTAN 30S','11',NULL,'1130725',16.00,'8.443','16.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001718','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3615,'PRESARTAN H 28S','11',NULL,'1130733',16.00,'14.412','27.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001719','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3616,'PAPERMINTS BIG MERCHANDISING PLEXI - 4 SKUS','14',NULL,'1130912',16.00,'376.8608','675.01212',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001720','pcs','Inventory','VATABLE','0',NULL,0),(3617,'PULMOCEF 500MG 10S','10',NULL,'1130963',16.00,'22','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001721','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3618,'DIASTOP TABS 100S','6',NULL,'1131026',16.00,'3.58','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001722','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3619,'DUREX CONDOMS FETHERLITE FEEL THIN 12S','6',NULL,'1131030',16.00,'902.2596','1554.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001723','pcs','Inventory','VATABLE','0',NULL,0),(3620,'QUEST OAD INFANT MULTI LIQUID 150ML','6',NULL,'1131043',16.00,'525','880',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001724','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3621,'BROMOCRIPTIN 2.5MG 30S(CRIPTON)','10',NULL,'1131174',16.00,'29.216','49',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001725','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3622,'FASTUM GEL 20 GM','10',NULL,'1131232',16.00,'278.5','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001726','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3623,'MOMATE F CREAM 10GM','10',NULL,'1131239',16.00,'538.45','925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001727','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3624,'TERBIN CREAM 15GM','10',NULL,'1131247',16.00,'255','435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001728','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3625,'BENNETTS NIPPLE CREAM LANOLIN FREE 30ML','12',NULL,'1131333',16.00,'547.8622','914.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001729','pcs','Inventory','VATABLE','0',NULL,0),(3626,'BENNETTS NIPPLE CREAM WITH LANOLIN 50ML','12',NULL,'1131334',16.00,'865.42844','1439.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001730','pcs','Inventory','VATABLE','0',NULL,0),(3627,'BENNETTS BABY BARSOAP 100G','9',NULL,'1131335',16.00,'499.64796','829.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001731','pcs','Inventory','VATABLE','0',NULL,0),(3628,'BENNETTS SALINE NOSE SPRAY KIT (ASPIRATOR)','12',NULL,'1131336',16.00,'743.4','1430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001732','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3629,'BENNETTS SALINE NOSE SPRAY 30ML','12',NULL,'1131337',16.00,'601.198','1150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001733','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3630,'JAMIESON OMEGA 3-6-9 1200MG SOFTGELS 200S','6',NULL,'1131345',16.00,'1719','2960',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001734','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3631,'JAMIESON MELATONIN 3MG CAPSULES 30S','6',NULL,'1131346',16.00,'846','1460',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001735','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3632,'JAMIESON MEGA CAL SOFT CHEWS (SWISS CHOCOLATE) 60S','6',NULL,'1131351',16.00,'1341.9','2310',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001736','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3633,'JAMIESON MULTI 100% COMPLETE MEN CAPLETS 90S','6',NULL,'1131357',16.00,'1775.95','3055',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001737','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3634,'CONACE-P TABS 30S','10',NULL,'1131372',16.00,'6.667','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001738','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3635,'CONOLEVO 500MG CAPS 10S','10',NULL,'1131374',16.00,'10','17',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001739','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3636,'DICLOCON MR TABS 30S','10',NULL,'1131377',16.00,'5','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001740','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3637,'CRECHE GUARD IMMUNE MULTIVITAMIN SYRUP 100ML','6',NULL,'1131484',16.00,'516','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001741','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3638,'SENSODYNE REPAIR & PROTECT WHITENING T/PASTE 75ML','12',NULL,'1131498',16.00,'444.7672','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001742','pcs','Inventory','VATABLE','0',NULL,0),(3639,'THARAKA PROPOLIS TINCTURE 15ML','6',NULL,'1131511',16.00,'696','1130.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001743','pcs','Inventory','VATABLE','0',NULL,0),(3640,'THARAKA JUST GARGLE OFF (50G)','6',NULL,'1131515',16.00,'232','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001744','pcs','Inventory','VATABLE','0',NULL,0),(3641,'LRP PURE VITAMIN C10 SERUM 30ml','9',NULL,'1131534',16.00,'4387.02372','7064.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001745','pcs','Inventory','VATABLE','0',NULL,0),(3642,'BIO-OIL DRY SKIN GEL 100ML','9',NULL,'1131537',16.00,'543.84976','944.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001746','pcs','Inventory','VATABLE','0',NULL,0),(3643,'BIO-OIL DRY SKIN GEL 200ML','9',NULL,'1131538',16.00,'908.84956','1554.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001747','pcs','Inventory','VATABLE','0',NULL,0),(3644,'N/AID VITAMIN C 1000MG LOW-ACID TABS 90S','6',NULL,'1131585',16.00,'1620','2755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001748','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3645,'NAT C ESTER SATCHETS 1000MG 30S(LOW ACID)','6',NULL,'1131587',16.00,'1057.88','1770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001749','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3646,'ZINCOS ZINC SULPHATE 20MG 100s','10',NULL,'1131593',16.00,'2.11','4.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001750','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3647,'ZYTEL CT 40/12.5 TABS 30S','11',NULL,'1131598',16.00,'44','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001751','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3648,'BIOGAIA GASTRUS TABLETS 30S','6',NULL,'1131608',16.00,'1332','2265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001752','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3649,'GLENCEE VITAMIN C EFFERVESCENT TABS 20S','6',NULL,'1131625',16.00,'495.01','845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001753','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3650,'OLIGOCARE FORTE 20S','6',NULL,'1131759',16.00,'590','1015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001754','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3651,'DIABETONE TABS 30S','6',NULL,'1131763',16.00,'916','1530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001755','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3652,'PHARMATIMOL 0.5% EYE DROPS 5ML','10',NULL,'1131773',16.00,'198','335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001756','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3653,'WINNAPORE 8X15CM 20S','6',NULL,'1131833',16.00,'30','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001757','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3654,'EUGICA HERBAL COLD & FLU SATCHEST 10S','6',NULL,'1131923',16.00,'521','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001758','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(3655,'EUGICA HERBAL THROAT SPRAY 10ML','6',NULL,'1131924',16.00,'715.14','1224.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001759','pcs','Inventory','VATABLE','0',NULL,0),(3656,'JAMIESON ZINC 25MG 100 S','6',NULL,'1131944',16.00,'719.1','1240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001760','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3657,'IMMUNACE EXTRA 30S','6',NULL,'1131955',16.00,'1397','2335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001761','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3658,'BIOFREEZE KENYA 59ML TUBE','6',NULL,'1131957',16.00,'315','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001762','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3659,'SIMILAC GOLD 2 HMO 400G','6',NULL,'1132091',16.00,'1144.0036','1720.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001763','pcs','Inventory','VATABLE','0',NULL,0),(3660,'APTAMIL BABY MILK 400GM 3','6',NULL,'1132096',16.00,'1121.80004','1494.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001764','pcs','Inventory','VATABLE','0',NULL,0),(3661,'MENTHODEX VAPOUR RUB 50GMS','6',NULL,'1132102',16.00,'465','795',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001765','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3662,'ANDOLEX-C WILD BERRY PASTILLES 20S','6',NULL,'1132104',16.00,'793.44','1364.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001766','pcs','Inventory','VATABLE','0',NULL,0),(3663,'TELMI AM 80/10MG TABS 30S','11',NULL,'1132137',16.00,'72.274','127',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001767','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3664,'WELLBABY MULTIVITAMIN DROPS 30ML','6',NULL,'1132179',16.00,'898.2','1670',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001768','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3665,'LRP LIPIKAR BAUME AP+M 200ml','12',NULL,'1132181',16.00,'1901.04396','2889.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001769','pcs','Inventory','VATABLE','0',NULL,0),(3666,'GLENCEE KIDS VITAMIN C EFFERVESCENT TABS 20S','6',NULL,'1132189',16.00,'364.99','630',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001770','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3667,'GOODLIFE CLEAR LIQUID SOAP FRAGRANCE FREE 500ML','12',NULL,'1132325',16.00,'161.24','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001771','pcs','Inventory','VATABLE','0',NULL,0),(3668,'GOODLIFE COCONUT LIQUID SOAP 500ML','12',NULL,'1132326',16.00,'161.24','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001772','pcs','Inventory','VATABLE','0',NULL,0),(3669,'GOODLIFE LEMONGRASS SURFACE ALCOHOL DISINFECTANT 500ML','12',NULL,'1132327',16.00,'307.4','639.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001773','pcs','Inventory','VATABLE','0',NULL,0),(3670,'GOODLIFE L/GRASS N& EUCALYPTUS INSECT REPELLENT TUBE 50ML','9',NULL,'1132329',16.00,'48.314','198.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001774','pcs','Inventory','VATABLE','0',NULL,0),(3671,'ACNES MOISTURISING CREAM 75G WITH SPF 27+','9',NULL,'1132338',16.00,'466.32','769.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001775','pcs','Inventory','VATABLE','0',NULL,0),(3672,'N/AID COLLAGEN BEAUTY FORMULA CAPS 90S','6',NULL,'1132345',16.00,'2835','4820',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001776','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3673,'NEBICARD 5MG TABLETS 50S','11',NULL,'1132397',16.00,'29.878','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001777','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3674,'LAZOPE CAPS 30MG 10S','11',NULL,'1132422',16.00,'10.5','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001778','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3675,'SCOTTS HEIGHT CHART','6',NULL,'1132452',16.00,'0.01','0.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001779','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3676,'INDERAL 10MG TABS 50S','11',NULL,'1132454',16.00,'11.136','21',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001780','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3677,'MAGIC DROPS HYALURONIC ACID SERUM 30ML','9',NULL,'1132459',16.00,'1856','3085.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001781','pcs','Inventory','VATABLE','0',NULL,0),(3678,'SWISS ENERGY OMEGA 3.6.9 OPTIMUM 30S','6',NULL,'1132485',16.00,'1305','2245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001782','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3679,'SWISS NO HANGOVER EFF TABS 20S','6',NULL,'1132488',16.00,'675','1165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001783','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3680,'FLINSTSHINE GUMMIES-VITAMIN C+ZINC 30S','6',NULL,'1132490',16.00,'710','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001784','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3681,'FLINSTSHINE GUMMIES- MULTI VITAMINS 30S','6',NULL,'1132491',16.00,'710','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001785','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3682,'QUEST ZINC CITRATE 30MG + COPPER TABS 30S','6',NULL,'1132493',16.00,'520','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001786','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3683,'PREDILONE 5MG TABS 100S','11',NULL,'1132499',16.00,'0.735','2',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001787','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3684,'LRP LIPIKAR CLEANSING BAR 150g- Twin Pack','12',NULL,'1132504',16.00,'532.5096','859.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001788','pcs','Inventory','VATABLE','0',NULL,0),(3685,'DICONAZOL 200MG 100S','10',NULL,'1132584',16.00,'8.74','15.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001789','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3686,'DYNAMO DELAY MALE DESENSITIZER SPRAY 22.2ML','6',NULL,'1132621',16.00,'1415.5','2510',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001790','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3687,'SURGICAL SPIRIT 500ML','6',NULL,'1132704',16.00,'90','155',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001791','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3688,'AZIX 200MG/5ML SUSP 37.5ML','10',NULL,'1132790',16.00,'425','735',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001792','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3689,'COEMPAKEN 12.5/1000MG TABS 28S','11',NULL,'1133117',16.00,'58.018','106',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001793','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3690,'COEMPAKEN 5/500MG TABS 28S','11',NULL,'1133146',16.00,'42.857','78',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001794','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3691,'COEMPAKEN 5/1000MG TABS 28S','11',NULL,'1133147',16.00,'48.214','88',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001795','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3692,'EMPAKEN 25MG TABS 14S','11',NULL,'1133149',16.00,'80.357','147',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001796','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3693,'TRICOHIST EXPECTORANT 60ML','6',NULL,'1133281',16.00,'80','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001797','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3694,'NIVEA SHOWER WATER LILY FEMALE 250ML','12',NULL,'1133315',16.00,'391.66704','545.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001798','pcs','Inventory','VATABLE','0',NULL,0),(3695,'CERAVE HYDRATING CLEANSER 236ML','9',NULL,'1133354',16.00,'896.0536','1499.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001799','pcs','Inventory','VATABLE','0',NULL,0),(3696,'CERAVE HYDRATING CLEANSER 473ML','9',NULL,'1133355',16.00,'1326.14448','2215.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001800','pcs','Inventory','VATABLE','0',NULL,0),(3697,'CERAVE FOAM CLEANSER 236ML','9',NULL,'1133356',16.00,'1111.09092','1859.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001801','pcs','Inventory','VATABLE','0',NULL,0),(3698,'CERAVE FOAM CLEANSER 473ML','9',NULL,'1133357',16.00,'1634.38432','2684.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001802','pcs','Inventory','VATABLE','0',NULL,0),(3699,'CERAVE DAILY MOISTURIZING LOTION 236ML','9',NULL,'1133358',16.00,'1254.45996','2059.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001803','pcs','Inventory','VATABLE','0',NULL,0),(3700,'CERAVE DAILY MOISTURIZING LOTION 473ML','9',NULL,'1133359',16.00,'1856.59856','3030.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001804','pcs','Inventory','VATABLE','0',NULL,0),(3701,'CERAVE MOISTURIZING CREAM 340G','9',NULL,'1133360',16.00,'1641.5624','2680.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001805','pcs','Inventory','VATABLE','0',NULL,0),(3702,'CERAVE MOISTURIZING CREAM 454G','9',NULL,'1133361',16.00,'1999.9676','3219.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001806','pcs','Inventory','VATABLE','0',NULL,0),(3703,'STEROPLAST DRESSING PADS STERILE 5s ( 5cm X 5cm )','6',NULL,'1133389',16.00,'120','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001807','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3704,'STEROPLAST CLEAR & FABRIC PLASTERS 64s','6',NULL,'1133390',16.00,'220','370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001808','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3705,'STEROPLAST HOT/COLD PACK','6',NULL,'1133391',16.00,'870','1464.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001809','pcs','Inventory','VATABLE','0',NULL,0),(3706,'EMEFILM 4MG STRIPS 5S','10',NULL,'1133403',16.00,'73.08','128',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001810','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3707,'FOSFOMAX GRANULES 3GM 1S','10',NULL,'1133409',16.00,'1250.375','2180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001811','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3708,'HELIOCARE 360º GEL OIL-FREE SPF50 50ML','9',NULL,'1133411',16.00,'3897.6','6475.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001812','pcs','Inventory','VATABLE','0',NULL,0),(3709,'HELIOCARE 360º INVISIBLE SPRAY SPF50+ 200ML','9',NULL,'1133412',16.00,'3654','6070.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001813','pcs','Inventory','VATABLE','0',NULL,0),(3710,'HELIOCARE 360º MD AK FLUID SPF100+ 50ML','9',NULL,'1133413',16.00,'4222.4','7009.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001814','pcs','Inventory','VATABLE','0',NULL,0),(3711,'HELIOCARE 360º MINERAL TOLERANCE FLUID SPF50 50ML','9',NULL,'1133414',16.00,'3897.6','6475.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001815','pcs','Inventory','VATABLE','0',NULL,0),(3712,'HELIOCARE 360º PEDIATRICS SPF50 PISTOLA 250ML','12',NULL,'1133415',16.00,'4141.2','6874.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001816','pcs','Inventory','VATABLE','0',NULL,0),(3713,'HELIOCARE 360º PEDIATRICS MINERAL SPF50+ 50ML','12',NULL,'1133416',16.00,'3897.6','6475.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001817','pcs','Inventory','VATABLE','0',NULL,0),(3714,'HELIOCARE 360º GEL SPF50+ 50ML','9',NULL,'1133417',16.00,'3897.6','6475.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001818','pcs','Inventory','VATABLE','0',NULL,0),(3715,'ENDOCARE TENSAGE FIRMING NOURISHING CREAM 50ML','9',NULL,'1133418',16.00,'4547.2','7550.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001819','pcs','Inventory','VATABLE','0',NULL,0),(3716,'ENDOCARE RADIANCE EYE COUNTOUR DARK CIRCLES 15ML','9',NULL,'1133419',16.00,'3735.2','6205.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001820','pcs','Inventory','VATABLE','0',NULL,0),(3717,'BIRETIX PURIFYING OILY SKIN CLEANSER 200ML','9',NULL,'1133420',16.00,'2273.6','3774.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001821','pcs','Inventory','VATABLE','0',NULL,0),(3718,'BIRETIX DUO GEL ANT-BLEMISH GEL 30ML','9',NULL,'1133421',16.00,'2436','4045.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001822','pcs','Inventory','VATABLE','0',NULL,0),(3719,'ACNES SOAP 80G','9',NULL,'1133450',16.00,'183.86','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001823','pcs','Inventory','VATABLE','0',NULL,0),(3720,'DUZELA 30MG CAPS 30S','10',NULL,'1133536',16.00,'58.33','102',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001824','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3721,'HT ONE PLUSFINE PEN G32*4MM NEEDLES 100S','11',NULL,'1133547',16.00,'16.408','30',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001825','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(3722,'RECARE HCG PREGNANCY CASSETTE TEST 1S','6',NULL,'1133562',16.00,'100','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001826','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(3723,'RECARE HCG PREGNANCY MID STREAM TEST 1S','6',NULL,'1133563',16.00,'220','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001827','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(3724,'RECARE LH OVULATION CASSETTE TEST 1S','6',NULL,'1133564',16.00,'225','490',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001828','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(3725,'ACCUFAST HCG PREGNANCY TEST MID STREAM 1S','6',NULL,'1133565',16.00,'220','450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001829','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(3726,'ACCUFAST HCG PREGNANCY TEST WEEKLY 1S','6',NULL,'1133566',16.00,'400','690',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001830','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(3727,'ACCUFAST LH OVULATION TEST MID STREAM 1S','6',NULL,'1133567',16.00,'220','500',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001831','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(3728,'LRP EFFACLAR DUO(+) 40ML & 15ml Moisturiser Gift','9',NULL,'1133575',16.00,'1314.9528','2119.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001832','pcs','Inventory','VATABLE','0',NULL,0),(3729,'LRP EFFACLAR DUO(+) SPF30 40ML & 15ml Moisturiser Gift','9',NULL,'1133576',16.00,'1704.0168','2744.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001833','pcs','Inventory','VATABLE','0',NULL,0),(3730,'MICROLIFE BP MONITOR EASY B2','11',NULL,'1133577',16.00,'4132.5','7275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001834','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(3731,'MOZZISHIELD NO DEET INSECT REPELLENT 100ML','9',NULL,'1133647',16.00,'359.6','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001835','pcs','Inventory','VATABLE','0',NULL,0),(3732,'ACTION TABLETS 110S','6',NULL,'1133880',16.00,'3.191','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001836','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3733,'ENTERONORM VIALS 10S','6',NULL,'1133907',16.00,'41.31','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001837','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3734,'WEBBER NATURALS MELATONIN 3MG QUICK DISSOLVING TABS 90S','6',NULL,'1133967',16.00,'1350','2300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001838','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3735,'WEBBER NATURALS MELATONIN 5MG TIME RELEASE TABS 60S','6',NULL,'1133968',16.00,'1215','2100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001839','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3736,'SWISS HERBAL LOZENGES EUCALYPTUS & MENTHOL 20S','6',NULL,'1133986',16.00,'297','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001840','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3737,'SWISS HERBAL LOZENGES SAGE 20S','6',NULL,'1133987',16.00,'297','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001841','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3738,'SWISS HERBAL LOZENGES HONEY 20S','6',NULL,'1133988',16.00,'297','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001842','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3739,'ACNES CREAMY WASH TRIO ACTIV 50G','9',NULL,'1133994',16.00,'323.35','539.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001843','pcs','Inventory','VATABLE','0',NULL,0),(3740,'ACNES C10 PURE VIT C SERUM 15ML','9',NULL,'1133997',16.00,'1654.45','2729.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001844','pcs','Inventory','VATABLE','0',NULL,0),(3741,'ACNES 3 IN 1 SET -WASH TONE S/GEL','9',NULL,'1133998',16.00,'1154.2812','1919.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001845','pcs','Inventory','VATABLE','0',NULL,0),(3742,'ACNES VITAMIN BOOST CLEANSER 50G','9',NULL,'1133999',16.00,'368.3','614.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001846','pcs','Inventory','VATABLE','0',NULL,0),(3743,'ACNES SCAR CARE DARK SPOTS 12G','9',NULL,'1134000',16.00,'343.36','569.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001847','pcs','Inventory','VATABLE','0',NULL,0),(3744,'BACTIGRAS 10CM*10CM 1s','6',NULL,'1134059',16.00,'100','200',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001848','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3745,'KIDDZ MAXXOMEGA3 ORANGE LEMON FLAVOUR 100ML','6',NULL,'1134060',16.00,'369.75','640',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001849','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3746,'KIDDZ MAXXOMEGA3 ORANGE LEMON FLAVOUR 200ML','6',NULL,'1134061',16.00,'688.5','1185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001850','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3747,'IMODIUM DUAL ACTION RELIEF TABLETS 6s','6',NULL,'1134063',16.00,'550','920',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001851','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3748,'IMODIUM DUAL ACTION RELIEF TABLETS 12s','6',NULL,'1134064',16.00,'900','1500',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001852','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3749,'HYDROCORTISONE OINTMENT 15G','10',NULL,'1134579',16.00,'250','430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001853','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3750,'LRP NIACINAMIDE SERUM FOR DULL AND UNEVEN SKIN 30ML','9',NULL,'1134900',16.00,'4386.58176','7064.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001854','pcs','Inventory','VATABLE','0',NULL,0),(3751,'DAKTARIN 2% CREAM 30GM','10',NULL,'1134924',16.00,'326.4','550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001855','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3752,'ANDOLEX-C ANTIBACTERIAL MOUTHWASH 100ML','6',NULL,'1134929',16.00,'626.4','1079.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001856','pcs','Inventory','VATABLE','0',NULL,0),(3753,'ANDOLEX-C ANTIBACTERIAL MOUTHWASH 200ML','6',NULL,'1134930',16.00,'1074.16','1855.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001857','pcs','Inventory','VATABLE','0',NULL,0),(3754,'EUGICA COFF HERBAL LOZENGES 8S','6',NULL,'1134931',16.00,'106.49','180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','','5001858','pcs','Inventory','VATABLE','0',NULL,0),(3755,'ABIDEC MULTIVITAMIN SYRUP WITH OMEGA 3 150ML','6',NULL,'1100060',16.00,'1250','2125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000949','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3756,'ACCU-CHEK ACTIVE MACHINE','11',NULL,'1100075',16.00,'1.16','2364.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000950','pcs','Inventory','VATABLE','0',NULL,0),(3757,'ACCU-CHEK SOFTCLIX LANCETS 200S','11',NULL,'1100081',16.00,'7.5','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000951','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(3758,'ACLOTAS SR 200MG TABS 50S','10',NULL,'1100089',16.00,'29.9','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000952','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3759,'ACTION TABLETS 100S','6',NULL,'1100113',16.00,'3.13','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000953','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3760,'ACYCLOVIR 5% CREAM 10G','10',NULL,'1100140',16.00,'1200','1995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000954','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3761,'ACYCLOVIR DENK 5% CREAM 7GM','10',NULL,'1100142',16.00,'669.5','1140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000955','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3762,'ADDYZOA CAPSULES','10',NULL,'1100160',16.00,'803','1385',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000956','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(3763,'ADOL 250MG SUPPOSITORIES 10S','10',NULL,'1100165',16.00,'29.23','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000957','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3764,'ADVANTAN CREAM 15GM','10',NULL,'1100175',16.00,'752','1250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000958','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3765,'ADVANTAN OINTMENT 15GM','10',NULL,'1100176',16.00,'752','1250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000959','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3766,'AERO CHAMBER WITH INFANT MUSK','11',NULL,'1100187',16.00,'3927','6560',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000960','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(3767,'AERO CHAMBER WITH CHILD MASK','11',NULL,'1100188',16.00,'3927','6560',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000961','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(3768,'ALDOMET 500MG TABS 30S','11',NULL,'1100228',16.00,'29.1','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000962','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3769,'ALLOPURINOL 100MG TABS 28S','11',NULL,'1100252',16.00,'4.286','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000963','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3770,'ALWAYS ULTRA EXTRA LONG 7S','12',NULL,'1100318',16.00,'92.03','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000964','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(3771,'ALZOLAM 0.25MG TABS 100S','10',NULL,'1100319',16.00,'17.25','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000965','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3772,'AMARYL 1MG TABS 30S','11',NULL,'1100325',16.00,'18.333','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000966','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3773,'AMARYL 4MG TABS 30S','11',NULL,'1100327',16.00,'69.642','123',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000967','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3774,'AMARYL M 2/500MG TABS 30S','11',NULL,'1100328',16.00,'35.64','63',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000968','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3775,'AMITRIPTYLINE 25MG TABS 100S','10',NULL,'1100346',16.00,'1.77','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000969','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3776,'AMITRIPTYLINE 25MG TABS 28S','10',NULL,'1100347',16.00,'3.214','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000970','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3777,'AMLOCIP NB 5/5MG TABS 30S','11',NULL,'1100348',16.00,'36.9','65',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000971','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3778,'AMLOSUN 5MG TABS 30S','11',NULL,'1100350',16.00,'21.667','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000972','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3779,'AMOXIL FORTE SYRUP 250MG/5ML 100ML','10',NULL,'1100360',16.00,'307','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000973','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(3780,'AMPICLOX NEONATAL DROPS 8ML','10',NULL,'1100370',16.00,'156.565','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000974','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(3781,'ANTHISAN CREAM 25GM','6',NULL,'1100405',16.00,'510','885',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000975','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3782,'APROVEL 150MG TABS 28S','11',NULL,'1100425',16.00,'68.707','121',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000976','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3783,'APROVEL 300MG TABS 28S','11',NULL,'1100426',16.00,'88.856','157',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000977','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3784,'ARICEPT 5MG TABS 28S','11',NULL,'1100457',16.00,'95.343','167',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000978','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3785,'AQUEOUS CREAM 500GM','10',NULL,'1100458',16.00,'162.4','294.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000979','pcs','Inventory','VATABLE','0','0039.11.28',0),(3786,'ASTYMIN FORTE CAPSULES','6',NULL,'1100553',16.00,'562.1','970',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000980','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3787,'ASTYMIN LIQUID 200ML','6',NULL,'1100555',16.00,'263','455',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000981','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3788,'ATENOLOL 50MG TABS 28S','11',NULL,'1100570',16.00,'6.786','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000982','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3789,'ATRIPLA TABS 30S','11',NULL,'1100583',16.00,'8631.06','12434',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000983','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3790,'AUGMENTIN ES SUSP 642.9MG/5ML - 100ML','10',NULL,'1100601',16.00,'1525','2550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000984','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(3791,'AXE BRAND UNIVERSAL OIL 3ML','6',NULL,'1100686',16.00,'95','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000985','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3792,'AZATHIOPRINE 50MG TABS 56S','11',NULL,'1100691',16.00,'7.857','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000986','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3793,'AZTOR 40MG 50S','11',NULL,'1100703',16.00,'50','88',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000987','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3794,'BACH RESCUE NIGHT 10ML','6',NULL,'1100811',16.00,'1200','2040',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000988','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3795,'BACH RESCUE REMEDY 10ML','6',NULL,'1100813',16.00,'1300','2210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000989','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3796,'BALLET MOSQUITO REPELLANT P/JELLY 100GM','9',NULL,'1100927',16.00,'126.00036','164.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000990','pcs','Inventory','VATABLE','0',NULL,0),(3797,'BAZUKA VERRUCA GEL 5GM','6',NULL,'1100976',16.00,'780','1345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000991','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3798,'BELL MOUSTACHE SCISSORS','12',NULL,'1101022',16.00,'133.4','285.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000992','pcs','Inventory','VATABLE','0',NULL,0),(3799,'BENADRYL ONE A DAY RELIEF TABLETS 7S','6',NULL,'1101039',16.00,'665','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000993','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(3800,'BENDURIC 5MG TABS 100S','11',NULL,'1101044',16.00,'2.21','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000994','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3801,'BENYLIN 4 FLU TABS 24S','6',NULL,'1101046',16.00,'760','1300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000995','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(3802,'BENZHEXOL 5MG TABS','10',NULL,'1101059',16.00,'2.222','3.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000996','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3803,'BETADINE ANTISEPTIC SOLN 500ML','6',NULL,'1101082',16.00,'872.784','1484.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000997','pcs','Inventory','VATABLE','0',NULL,0),(3804,'BETALOC ZOK 100MG TABS 30S','11',NULL,'1101097',16.00,'35.44','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000998','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3805,'BETALOC ZOK 25MG TABS 14S','11',NULL,'1101098',16.00,'34.434','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5000999','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3806,'BETAPYN TABS 18S','10',NULL,'1101101',16.00,'18.39','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001000','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3807,'BETASERC 8MG TABS 100S','10',NULL,'1101104',16.00,'29.64','50',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001001','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3808,'A.VOGEL ECHINAFORCE 50ML','6',NULL,'1101168',16.00,'1001','1705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001002','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(3809,'BIO OIL 125ML','9',NULL,'1101209',16.00,'865.05028','1430.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001003','pcs','Inventory','VATABLE','0',NULL,0),(3810,'BIO OIL 60ML','9',NULL,'1101211',16.00,'521.95012','874.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001004','pcs','Inventory','VATABLE','0',NULL,0),(3811,'BI-PRETERAX 5/1.25MG TABS 30S','11',NULL,'1101220',16.00,'58.35','104',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001005','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3812,'BISPANOL SYRUP 100ML','6',NULL,'1101229',16.00,'144.90','255',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001006','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3813,'BISPANOL SYRUP 60ML','6',NULL,'1101230',16.00,'99.75','175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001007','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3814,'BONJELA ADULT 16YEARS + 15G','6',NULL,'1101346',16.00,'680','1160',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001008','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3815,'BONJELA TEETHING GEL 15GM','6',NULL,'1101349',16.00,'585','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001009','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3816,'BRALIX TABS 100S','10',NULL,'1101481',16.00,'6.48','11.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001010','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3817,'BRANULA G18','10',NULL,'1101482',16.00,'30','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001011','pcs','Inventory','EXEMPTED','0','0039.11.32',0),(3818,'BRANULA G24','10',NULL,'1101485',16.00,'13','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001012','pcs','Inventory','EXEMPTED','0','0039.11.32',0),(3819,'BRO ZEDEX SYRUP 100ML','6',NULL,'1101505',16.00,'165','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001013','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3820,'BROZELIN EXPECTORANT 100ML','6',NULL,'1101521',16.00,'228.96','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001014','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3821,'BRUSTAN SUSPENSION 100ML','6',NULL,'1101551',16.00,'215','370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001015','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3822,'BUDECORT 100MCG INHALER','11',NULL,'1101583',16.00,'841.08','1430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001016','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3823,'CABALIN 25MG CAPS 24S','11',NULL,'1101710',16.00,'21.085','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001017','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3824,'CALCIMAX SYRUP 150ML','6',NULL,'1101750',16.00,'680','1170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001018','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3825,'CALCINOL 1000 WITH D3 SACHETS 10S','6',NULL,'1101751',16.00,'56.5','98',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001019','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3826,'CALCIUM C 1000 SANDOZ 10S','6',NULL,'1101753',16.00,'530.1','915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001020','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3827,'CALPOL SALINE NASAL SPRAY 15ML','6',NULL,'1101768',16.00,'630','1085',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001021','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3828,'CALPOL SIXPLUS SUSPENSION S/FREE 80ML','6',NULL,'1101770',16.00,'660','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001022','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3829,'CANDID V 6 PESSARIES','10',NULL,'1101825',16.00,'336.42','570',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001023','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3830,'CANDITRAL 100MG CAP 12S','10',NULL,'1101829',16.00,'134.39','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001024','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3831,'CARBIMAZOLE 5MG TABS 100S','11',NULL,'1101867',16.00,'2.185','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001025','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(3832,'CARDINOL 50MG TABS 28S','11',NULL,'1101875',16.00,'4.429','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001026','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3833,'CARDIVAS 6.25MG TABS 30S','11',NULL,'1101882',16.00,'25.167','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001027','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3834,'CARTIL SUPER FORTE CAPSULES 30S','6',NULL,'1101918',16.00,'44.098','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001028','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3835,'CATAFLAM DROPS 0.5MG/ML 15ML','10',NULL,'1101926',16.00,'587.25','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001029','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3836,'CAUSTIC PENCIL 40%','10',NULL,'1101930',16.00,'208.8','354.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001030','pcs','Inventory','VATABLE','0','0039.11.28',0),(3837,'CELCOXX 200MG CAPS 50S','10',NULL,'1101951',16.00,'32.2','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001031','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3838,'CELESTAMINE TABS 30S','10',NULL,'1101953',16.00,'14.437','24',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001032','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3839,'CENTRUM ADVANCE 30S','6',NULL,'1101966',16.00,'900','1505',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001033','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3840,'CENTRUM ADVANCE 50+ 30S','6',NULL,'1101967',16.00,'850','1420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001034','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3841,'CENTRUM ADVANCE 50+ 60S','6',NULL,'1101968',16.00,'1550','2590',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001035','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3842,'CENTRUM KIDS 30S','6',NULL,'1101975',16.00,'1050','1755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001036','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3843,'CENTRUM PERFORMANCE 30S','6',NULL,'1101976',16.00,'1140','1905',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001037','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3844,'CERAZETTE 75MCG TABS 3S','10',NULL,'1101988',16.00,'693.333','1160',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001038','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(3845,'CETAMOL SYRUP 60ML','6',NULL,'1101999',16.00,'40','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001039','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3846,'CILOXAN EYE DROPS','10',NULL,'1102127',16.00,'379.6','635',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001040','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3847,'CIPROBAY 500MG TABS 10S','10',NULL,'1102135',16.00,'297.068','494',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001041','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3848,'CIPROBAY HC OTIC DROPS 10ML','10',NULL,'1102137',16.00,'1147.5','1975',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001042','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3849,'CITAL SYRUP','6',NULL,'1102148',16.00,'240.30','415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001043','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3850,'CITROSODA ORIGINAL 120GM','6',NULL,'1102157',16.00,'660.4','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001044','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3851,'CITROSODA ORIGINAL 60G','6',NULL,'1102158',16.00,'446.95','775',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001045','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3852,'CLARITEK SUSP 50ML','10',NULL,'1102183',16.00,'434.7','750',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001046','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3853,'CLARITEK 250MG TABS 10S','10',NULL,'1102184',16.00,'80.5','134',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001047','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3854,'CLAVULIN 1GM TABS 14S','10',NULL,'1102205',16.00,'109.143','183',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001048','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(3855,'CO-APROVEL 300/12.5MG TABLETS 28S','11',NULL,'1102301',16.00,'97.929','171',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001049','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3856,'COLGATE DENTAL FLOSS','12',NULL,'1102341',16.00,'417.6','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001050','pcs','Inventory','VATABLE','0',NULL,0),(3857,'COMBIGAN EYE DROPS 5ML','10',NULL,'1102422',16.00,'1535','2550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001051','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3858,'COMPEED COLD SORE PATCH 15S','6',NULL,'1102431',16.00,'850','1465',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001052','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3859,'CONTEMPO CONDOMS BAREBACK 3S','6',NULL,'1102443',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001053','pcs','Inventory','VATABLE','0',NULL,0),(3860,'CONTEMPO CONDOMS KING SIZE 3S','6',NULL,'1102446',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001054','pcs','Inventory','VATABLE','0',NULL,0),(3861,'CONTEMPO CONDOMS POWER PLAY 3S','6',NULL,'1102449',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001055','pcs','Inventory','VATABLE','0',NULL,0),(3862,'CONTEMPO CONDOMS WET N WILD 3S','6',NULL,'1102451',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001056','pcs','Inventory','VATABLE','0',NULL,0),(3863,'CONTIFLO XL CAPS 400MCG 30S','11',NULL,'1102453',16.00,'17.667','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001057','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3864,'CONTOUR PLUS GLUCOMETER','11',NULL,'1102454',16.00,'500','1000',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001058','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(3865,'CONTRACTUBEX OINTMENT 20GM','10',NULL,'1102458',16.00,'552.5','915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001059','pcs','Inventory','EXEMPTED','0','0039.11.73',0),(3866,'CORONATION HOT WATER BOTTLE L/S ( RIBBED )','6',NULL,'1102492',16.00,'1044','1774.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001060','pcs','Inventory','VATABLE','0',NULL,0),(3867,'COVERAM 5/10MG TABS 30S','11',NULL,'1102551',16.00,'58.594','103',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001061','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3868,'COVONIA THROAT SPRAY 30ML','6',NULL,'1102554',16.00,'1300','2305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001062','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3869,'COZAAR 50MG TABS 28S','11',NULL,'1102560',16.00,'107.143','188',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001063','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3870,'COZEPAM 5MG TABS 100S','10',NULL,'1102561',16.00,'1.94','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001064','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3871,'CRAFE AWAY MINI FILTERS','6',NULL,'1102563',16.00,'156.6','270.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001065','pcs','Inventory','VATABLE','0',NULL,0),(3872,'CREPE BANDAGE 2IN (5CM) ELASTOLITE','6',NULL,'1102573',16.00,'14','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001066','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3873,'CRESTOR 5MG TABS 28S','11',NULL,'1102580',16.00,'53.71','89',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001067','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3874,'CRESTOR 10MG TABS 28S','11',NULL,'1102581',16.00,'57.496','95',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001068','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3875,'CRESTOR 20MG TABS 28S','11',NULL,'1102582',16.00,'82.874','137',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,41.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001069','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3876,'DAKTACORT CREAM 15GM','10',NULL,'1102671',16.00,'541.8','925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001070','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3877,'DAKTARIN ORAL GEL 40GM','10',NULL,'1102673',16.00,'813.6','1345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001071','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3878,'DAONIL 5MG 100S','11',NULL,'1102680',16.00,'15.92','28.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,38.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001072','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3879,'DAZIT 5MG TABS 30S','10',NULL,'1102710',16.00,'40','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,15.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001073','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3880,'DAZOLIC 500MG TABS 100S','10',NULL,'1102711',16.00,'20.1','34.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001074','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3881,'DEEP FREEZE GEL 100G','6',NULL,'1102717',16.00,'505','845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001075','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3882,'DELASED CHESTY NON DROWSY 100ML','6',NULL,'1102733',16.00,'94.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001076','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3883,'DELASED PAEDIATRIC 100ML','6',NULL,'1102736',16.00,'94.50','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001077','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3884,'DENTINOX TEETHING GEL 15GM','6',NULL,'1102761',16.00,'400','685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001078','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3885,'DENTOGEL GEL 10G','6',NULL,'1102763',16.00,'152','265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001079','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3886,'DERMOVATE CREAM 25GM','10',NULL,'1102790',16.00,'529.38','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001080','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3887,'DETTOL SOAP COOL 90G','12',NULL,'1102813',16.00,'87.0116','134.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001081','pcs','Inventory','VATABLE','0',NULL,0),(3888,'DEXTRACIN EYE DROPS','10',NULL,'1102827',16.00,'175','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001082','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3889,'DEXTROSE 5% 500ML','10',NULL,'1102831',16.00,'60','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001083','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3890,'DIFLUCAN 200MG CAPS 7S','10',NULL,'1102881',16.00,'538.171','910',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001084','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3891,'DIGITAL THERMOMETER','6',NULL,'1102884',16.00,'105','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001085','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(3892,'DIGOXIN 125MCG TABLETS 28S','11',NULL,'1102888',16.00,'8.571','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001086','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3893,'DIOVAN 160MG CAPS 28S','11',NULL,'1102933',16.00,'72.928','129',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001087','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3894,'DIPROGENTA CREAM 15GM','10',NULL,'1102937',16.00,'616.23','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001088','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3895,'DIPROGENTA OINTMENT 15GM','10',NULL,'1102938',16.00,'616.23','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001089','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3896,'DIPROSALIC OINTMENT 10GM','10',NULL,'1102940',16.00,'433.73','735',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001090','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3897,'DIPROSONE CREAM 30GM','10',NULL,'1102943',16.00,'709.71','1210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001091','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3898,'DIPROSONE OINTMENT 30GM','10',NULL,'1102945',16.00,'709.71','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001092','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3899,'DISPOSABLE SYRINGES 10ML','10',NULL,'1102956',16.00,'6.8','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001093','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(3900,'DISPOSABLE SYRINGES 2ML','10',NULL,'1102958',16.00,'3.9','7.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,170.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001094','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(3901,'DISZINC DISPERSIBLE TABLETS 30S','6',NULL,'1102967',16.00,'7.251','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001095','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3902,'DIURIDE 10MG TABS 20S','11',NULL,'1102969',16.00,'28.613','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001096','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3903,'DIURIDE 20MG TABS 20S','11',NULL,'1102970',16.00,'47.513','84',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001097','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3904,'DOBESIL 500MG TABS 50S','11',NULL,'1102983',16.00,'42.912','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001098','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3905,'DUOFILM SOLUTION','10',NULL,'1103169',16.00,'620','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001099','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3906,'DURACELL BATTERIES AAA 2S.','12',NULL,'1103184',16.00,'258.4016','394.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001100','pcs','Inventory','VATABLE','0',NULL,0),(3907,'DUREX PLAY (TINGLE) LUBRICATING GEL 50ML','6',NULL,'1103212',16.00,'586.4612','1004.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001101','pcs','Inventory','VATABLE','0',NULL,0),(3908,'DUSPATALIN 135MG TABS 50S','10',NULL,'1103219',16.00,'27.79','47',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001102','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3909,'EBASTEL 5MG/5ML SYRUP 120ML','10',NULL,'1103403',16.00,'1006','1725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001103','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3910,'EFFERALGAN 500MG TABLETS 16S','6',NULL,'1103423',16.00,'15.41','27',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,38.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001104','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3911,'ELASTOPLAST WATER RESISTANT PLASTERS 10S','6',NULL,'1103442',16.00,'324.8','560.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001105','pcs','Inventory','VATABLE','0',NULL,0),(3912,'EMANZEN FORTE 10MG TABS 30S','10',NULL,'1103798',16.00,'33.962','57',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001106','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3913,'EMLA CREAM 5%','10',NULL,'1103808',16.00,'550','935',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001107','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3914,'ENAT CREAM 50G','9',NULL,'1103823',16.00,'948.88','1595',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001108','pcs','Inventory','VATABLE','0',NULL,0),(3915,'ENCORATE CHRONO 500MG TABS 30S','11',NULL,'1103832',16.00,'40','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001109','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3916,'ENCORATE CHRONO 200MG TABS 100S','11',NULL,'1103833',16.00,'12','22',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001110','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3917,'EPANUTIN 50MG CAPS 28S','11',NULL,'1103872',16.00,'13.719','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,56.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001111','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3918,'EPIMAX ALL PURPOSE MOISTURISER 400GM','9',NULL,'1103883',16.00,'1566','2680.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001112','pcs','Inventory','VATABLE','0',NULL,0),(3919,'EPSOM SALT 100GM','6',NULL,'1103889',16.00,'70','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001113','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3920,'EROVITA OVULATION TEST KIT','6',NULL,'1103918',16.00,'1276','2194.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001114','pcs','Inventory','VATABLE','0',NULL,0),(3921,'ESTOVON TABLETS 30S','6',NULL,'1103963',16.00,'32.188','56',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001115','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3922,'EUMOVATE CREAM 25GM','10',NULL,'1103988',16.00,'519','875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001116','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3923,'EVANOVA CAPS 20S','10',NULL,'1104002',16.00,'514.3','875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001117','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(3924,'EXOCIN EYE & EAR DROPS 5ML','10',NULL,'1104031',16.00,'583','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001118','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3925,'FASTUM GEL 30GM','10',NULL,'1104132',16.00,'450','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001119','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3926,'FASTUM GEL DISPENSER 100GM','10',NULL,'1104134',16.00,'1000','1720',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001120','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3927,'FEMFRESH DAILY INTIMATE WASH 250ML','12',NULL,'1104151',16.00,'854.5604','1300.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001121','pcs','Inventory','VATABLE','0',NULL,0),(3928,'FERROGLOBIN SYRUP 200ML','6',NULL,'1104185',16.00,'432','805',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001122','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3929,'FINOSIN TABS 30S','11',NULL,'1104198',16.00,'50.667','91',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001123','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3930,'FISHERMANS FRIEND LOZS 25G ANISEED','6',NULL,'1104244',16.00,'145','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001124','pcs','Inventory','VATABLE','0',NULL,0),(3931,'FLAMOX 500MG CAPS 20s','10',NULL,'1104272',16.00,'19.15','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001125','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(3932,'FLAMOX SUSP 250MG/5ML 100ML','10',NULL,'1104273',16.00,'340','565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001126','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(3933,'FLAREX EYE DROPS 5ML','10',NULL,'1104274',16.00,'357','605',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001127','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3934,'FLEET ENEMA 133ML','10',NULL,'1104277',16.00,'505','845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001128','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3935,'FLIXONASE NASAL SPRAY','10',NULL,'1104293',16.00,'2574','4355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001129','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3936,'FLUCOZAL 150MG CAPS','10',NULL,'1104381',16.00,'132.54','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001130','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3937,'FLUCOZAL 50MG CAPS 14S','10',NULL,'1104383',16.00,'49.826','84',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001131','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3938,'FML NEO EYE DROPS 5ML','10',NULL,'1104401',16.00,'476','800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001132','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(3939,'FRANOL TABLETS 100S','11',NULL,'1104429',16.00,'1.71','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,70.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001133','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3940,'FREEFLEX FORTE TABLETS 30S','6',NULL,'1104431',16.00,'46.802','81',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001134','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3941,'FUCIDIN CREAM 15GM','10',NULL,'1104463',16.00,'340','570',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001135','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3942,'FUTSIL SOLUTION','6',NULL,'1104509',16.00,'216.75','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001136','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3943,'FYBOGEL LEMON 10S','6',NULL,'1104510',16.00,'590','1015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001137','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3944,'FYBOGEL ORANGE 10S','6',NULL,'1104512',16.00,'710','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001138','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3945,'GABANERVE TABS 10S','11',NULL,'1104623',16.00,'85.905','147',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001139','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3946,'GABBRORAL 250MG TABS 12S','10',NULL,'1104626',16.00,'49.33','83',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001140','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3947,'GENTIAN VIOLET 100ML','6',NULL,'1104779',16.00,'33','65',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001141','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3948,'GERATHERM DIGITAL THERMOMETER(RAPID)','6',NULL,'1104793',16.00,'1240','2135',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001142','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(3949,'GILLETTE BLUE 2 DISPOSABLE RAZORS 1S','12',NULL,'1104809',16.00,'50.6688','80.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001143','pcs','Inventory','VATABLE','0',NULL,0),(3950,'GILLETTE MACH3 CARTRIDGE 2S','12',NULL,'1104829',16.00,'522','799.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001144','pcs','Inventory','VATABLE','0',NULL,0),(3951,'GILLETTE MACH3 TURBO RAZOR 2 UP','12',NULL,'1104837',16.00,'925.1058','1409.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001145','pcs','Inventory','VATABLE','0',NULL,0),(3952,'GLEVONIX 500MG TABS 10S','10',NULL,'1104886',16.00,'94.429','158',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001146','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3953,'GLUCORED FORTE 5/500MG TABS 50S','11',NULL,'1104916',16.00,'13.26','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001147','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3954,'GLYCERINE ADULT SUPPOSITORIES 4G 12S','6',NULL,'1104934',16.00,'29.583','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,9.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001148','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3955,'GLYCERINE CHILD SUPPOSITORIES 2G','6',NULL,'1104935',16.00,'33.3','57',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,23.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001149','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3956,'GRABACIN - 3 TULLE 10CM X 10CM','6',NULL,'1104971',16.00,'63.8','110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001150','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(3957,'GRISEOFULVIN 125MG TABS 100S','10',NULL,'1104985',16.00,'2.55','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001151','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3958,'H/AID CHILDRENS MULTIVITAMINS 30S','6',NULL,'1105056',16.00,'805.35','1395',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001152','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3959,'H/AID CHILDRENS MULTIVITAMINS 90S','6',NULL,'1105057',16.00,'1495.65','2575',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001153','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3960,'H/AID EVENING PRIMROSE 1000MG 30S','6',NULL,'1105075',16.00,'982.35','1690',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001154','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3961,'H/AID OMEGA 3-6-9 60S','6',NULL,'1105128',16.00,'1778.85','3060',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001155','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3962,'H/AID OSTEOFLEX GLU+CHOND 90S','6',NULL,'1105131',16.00,'3070.95','5285',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001156','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3963,'H/AID VIT C 1500MG PR 30S','6',NULL,'1105175',16.00,'867.3','1505',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001157','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(3964,'H/AID VIT E 400 IU 30S','6',NULL,'1105187',16.00,'1123.95','1945',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001158','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3965,'H/AID VIT E 400IU 60S','6',NULL,'1105188',16.00,'2000.1','3445',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001159','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3966,'HUMALOG MIX 50/50 CARTRIDGE 5S','11',NULL,'1105480',16.00,'1121','1873',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001160','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(3967,'HUMALOG MIX25 3ML 5S','11',NULL,'1105482',16.00,'963.4','1609',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001161','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(3968,'HUMULIN 70/30 3ML CATRIDGES 5S','11',NULL,'1105486',16.00,'655.4','1095',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001162','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(3969,'HYDRALAZINE 25MG TABS 100S','11',NULL,'1105497',16.00,'4.69','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001163','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3970,'HYDREA 500MG CAPS 100S','11',NULL,'1105498',16.00,'30','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001164','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3971,'HYLO-COMOD EYE DROPS 10ML','10',NULL,'1105513',16.00,'1119.54','1860',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001165','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3972,'I.V. GIVING SET','10',NULL,'1105533',16.00,'11','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001166','pcs','Inventory','EXEMPTED','0','0039.11.93',0),(3973,'IBUMEX SUSP 100ML','6',NULL,'1105538',16.00,'70.35','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001167','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3974,'IMIGRAN 100MG TABS 6S','10',NULL,'1105555',16.00,'965.667','1594',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001168','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3975,'IMMUNACE TABLET 30S','6',NULL,'1105560',16.00,'915','1530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001169','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3976,'IMODIUM PLUS TABLETS 6S','6',NULL,'1105562',16.00,'550','920',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001170','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3977,'IMURAN 50MG TABS 100S','11',NULL,'1105578',16.00,'52.1','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001171','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3978,'INFACOL LIQUID','6',NULL,'1105586',16.00,'627','1075',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001172','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3979,'IRIFONE GEL 50GM','10',NULL,'1105690',16.00,'408.5','705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001173','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3980,'ISOFLAV CR ISOFLAVONES CAPSULES','10',NULL,'1105705',16.00,'51','88',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001174','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3981,'IVERMECTIN 6MG TABS','10',NULL,'1105734',16.00,'376.2','640',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001175','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3982,'JOHNSONS BABY OIL 125ML','12',NULL,'1105799',16.00,'328.28','505.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001176','pcs','Inventory','VATABLE','0',NULL,0),(3983,'JOINTACE (GLUCOSAMINE & CHONDROITIN) * 30S','6',NULL,'1105851',16.00,'1157','1935',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001177','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3984,'JOINTACE (GLUCOSAMINE & OMEGA 3) *30S','6',NULL,'1105852',16.00,'867.8','1450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001178','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(3985,'KENALOG IN ORABASE','10',NULL,'1105928',16.00,'1110','1980',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001179','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3986,'KETOPLUS SHAMPOO','10',NULL,'1105949',16.00,'996.266','1644.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001180','pcs','Inventory','VATABLE','0',NULL,0),(3987,'KLACID 500MG TABLETS 14S','10',NULL,'1105980',16.00,'157.14','271',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001181','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(3988,'KLENZIT C GEL 15GMS','10',NULL,'1105994',16.00,'820.58','1375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001182','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3989,'KLENZIT GEL 15GMS','10',NULL,'1105995',16.00,'556.25','925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001183','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3990,'KOLZINE 500MCG TABS 100S','11',NULL,'1106004',16.00,'5.48','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001184','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3991,'KONTAB 50MG TABS 50S','10',NULL,'1106007',16.00,'21.9','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001185','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3992,'KOTEX TAMPONS MINI 16S','12',NULL,'1106021',16.00,'237.317','355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001186','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(3993,'LAMICTAL 100MG TABS 30S','11',NULL,'1106240',16.00,'171.967','296',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001187','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(3994,'LANOLIN CREAM 50GMS','12',NULL,'1106265',16.00,'139.2','219.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001188','pcs','Inventory','VATABLE','0',NULL,0),(3995,'LANTUS SOLOSTAR PREFILLED PENS 3ML 5S','11',NULL,'1106271',16.00,'1263.518','2098',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001189','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(3996,'LEMSIP MAX ALL IN ONE CAPS 16S','6',NULL,'1106320',16.00,'640','1520',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001190','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(3997,'LEMSIP MAX COLD &FLU SATCHETS B/CURRANT 10S','6',NULL,'1106328',16.00,'57','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001191','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(3998,'LEMSIP MAX DAY & NIGHT CAPSULES 16S','6',NULL,'1106331',16.00,'680','1215',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001192','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(3999,'LIOTON GEL 30GM','10',NULL,'1106406',16.00,'600','1015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001193','pcs','Inventory','EXEMPTED','0','0039.11.73',0),(4000,'LIPIGET 10MG TABS 10S','11',NULL,'1106435',16.00,'25.2','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001194','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4001,'LIPITOR 40MG TABS 30S','11',NULL,'1106443',16.00,'78.558','136',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001195','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4002,'LIPITOR 80MG TABS 30S','11',NULL,'1106444',16.00,'78.558','136',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001196','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4003,'LIPSORE 5% CREAM 2GM','10',NULL,'1106449',16.00,'280','475',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001197','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4004,'LONART 180/480MG ORAL SUSP 60ML','10',NULL,'1106498',16.00,'216','365',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001198','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(4005,'LOOBID 200/500MG TABS 10S','10',NULL,'1106499',16.00,'22.00','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,15.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001199','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4006,'LOTEM SYRUP 100ML','6',NULL,'1106535',16.00,'314.81','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001200','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4007,'LOTRIDERM CREAM 30GM','10',NULL,'1106537',16.00,'1750','2925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001201','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(4008,'LUMIGAN EYE DROPS 0.03% 3ML','11',NULL,'1106569',16.00,'1841','3245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001202','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4009,'LYSOFLAM TABS 30S','10',NULL,'1106610',16.00,'13.333','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001203','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4010,'M2-TONE TABLETS 20S','10',NULL,'1106642',16.00,'25.715','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001204','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(4011,'MALANIL ADULT 250/100MG TABLETS','10',NULL,'1106725',16.00,'200.25','317',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001205','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(4012,'MEDIGEL GEL','6',NULL,'1106837',16.00,'405','705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001206','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4013,'MEDITROL 0.25MCG CAPS 30S','10',NULL,'1106854',16.00,'42.088','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001207','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4014,'MEDIVEN OINTMENT 15gm','10',NULL,'1106856',16.00,'44.1','74',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001208','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(4015,'MEDROL 4MG TABS 30S','10',NULL,'1106864',16.00,'18.4','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001209','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(4016,'METCOS 10MG TABS 100S','10',NULL,'1106917',16.00,'1.53','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001210','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4017,'METFORMIN DENK 500MG TABS 100S','11',NULL,'1106922',16.00,'5.023','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001211','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4018,'MGR-10mg TABS 30S','10',NULL,'1106939',16.00,'35.897','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001212','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4019,'MICARDIS 40MG TABS 28S','11',NULL,'1106941',16.00,'79.576','136',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001213','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4020,'MICARDIS 80MG TABS 28S','11',NULL,'1106943',16.00,'90.924','158',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001214','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4021,'MICRONEMA 20ML','10',NULL,'1106951',16.00,'126','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001215','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4022,'MICROFINE G30 (8MM) PEN NEEDLES 100S','11',NULL,'1106952',16.00,'21.6','38.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001216','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(4023,'MICROFINE G31 (5MM) PEN NEEDLES 100S','11',NULL,'1106953',16.00,'21.6','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,87.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001217','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(4024,'MICROFINE INSULIN SYRINGES *0.5ML','11',NULL,'1106954',16.00,'12.85','22.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,44.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001218','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(4025,'MICROPORE TAPE 1 INCH','6',NULL,'1106966',16.00,'153','264',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001219','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4026,'MIRTAZ 15MG TABS 30S','11',NULL,'1107017',16.00,'61.667','112',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001220','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4027,'MIRTAZ 30MG TABS 30S','11',NULL,'1107018',16.00,'82.667','150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001221','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4028,'MIXTARD 30/70 INSULIN 10ML','11',NULL,'1107034',16.00,'508','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001222','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(4029,'MOBIC 7.5MG TABS 30S','10',NULL,'1107088',16.00,'46.319','78',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001223','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4030,'NIVEA LIP BALM ORIGINAL CARE 4.8GM','9',NULL,'1107221',16.00,'212.19996','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001224','pcs','Inventory','VATABLE','0',NULL,0),(4031,'NIVEA LIP BALM FOR MEN 4.8G','9',NULL,'1107222',16.00,'258.33316','375.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001225','pcs','Inventory','VATABLE','0',NULL,0),(4032,'NIVEA BODY LOTION (NOURISHING) DRY SKIN 200ML','9',NULL,'1107233',16.00,'262.49988','364.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001226','pcs','Inventory','VATABLE','0',NULL,0),(4033,'NIVEA SUNTAN LOTION SPF30 200ML','9',NULL,'1107263',16.00,'1516.66636','2170.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001227','pcs','Inventory','VATABLE','0',NULL,0),(4034,'NIVEA SUNTAN KIDS LOTION SPF50 200ML','12',NULL,'1107267',16.00,'1820.83344','2605.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001228','pcs','Inventory','VATABLE','0',NULL,0),(4035,'NACET PLATINUM WHITE 20 X 5S','12',NULL,'1107287',16.00,'43.71228','70.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001229','pcs','Inventory','VATABLE','0',NULL,0),(4036,'NAN 1','6',NULL,'1107343',16.00,'1027.76','1460.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001230','pcs','Inventory','VATABLE','0',NULL,0),(4037,'NAN 2','6',NULL,'1107345',16.00,'1027.76','1460.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001231','pcs','Inventory','VATABLE','0',NULL,0),(4038,'NAN 3','6',NULL,'1107347',16.00,'1027.76','1460.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001232','pcs','Inventory','VATABLE','0',NULL,0),(4039,'NEBICARD 2.5MG TABS 30S','11',NULL,'1107430',16.00,'17.001','30',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001233','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4040,'NEOPEPTINE DROPS 15ML','6',NULL,'1107466',16.00,'240','415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001234','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4041,'NETAZOX DT 200MG 6S','10',NULL,'1107476',16.00,'203.9','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001235','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4042,'NEUROCARE CAPS 30S','10',NULL,'1107483',16.00,'41.499','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001236','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4043,'NEURONTIN 100MG CAPS 100S','11',NULL,'1107484',16.00,'24.387','43',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001237','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4044,'NEURONTIN 300MG CAPS 100S','11',NULL,'1107485',16.00,'55.87','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001238','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4045,'NEURORUBINE INJECTION 5S','10',NULL,'1107487',16.00,'237','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001239','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4046,'NICORETTE ICY WHITE GUM 4MG','6',NULL,'1107621',16.00,'335.71','565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001240','pcs','Inventory','EXEMPTED','0',NULL,0),(4047,'NICORETTE FRESHMINT GUM 2MG','6',NULL,'1107629',16.00,'285.714','478',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001241','pcs','Inventory','EXEMPTED','0',NULL,0),(4048,'NITREST 10MG TABS 30S','10',NULL,'1107659',16.00,'26.667','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001242','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4049,'NITROFURANTON 100MG TABLETS','10',NULL,'1107660',16.00,'1.89','3.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,86.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001243','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4050,'NO SPA 40MG TABS 100S','10',NULL,'1107671',16.00,'8.976','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,86.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001244','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4051,'NORMAX 400MG TABS 10S','10',NULL,'1107686',16.00,'11.11','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001245','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4052,'NOW BIOTIN 1000MG CAPS 100S','6',NULL,'1107760',16.00,'900','1505',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001246','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4053,'NOW VITAMIN A SOFTGEL 100S','6',NULL,'1107785',16.00,'820','1370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001247','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4054,'NOW VITAMIN D3 1000 IU 180S','6',NULL,'1107789',16.00,'985','1645',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001248','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4055,'NOW VITAMIN D3 5000IU 120S','6',NULL,'1107790',16.00,'1360','2275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001249','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4056,'NUROFEN CAPLETS 200MG 12S','6',NULL,'1107799',16.00,'410','685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001250','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4057,'NUROFEN EXPRESS LIQ CAPS 400MG 10S','6',NULL,'1107808',16.00,'765','1280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001251','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4058,'NUROFEN EXPRESS LIQUID CAPS 200MG 10S','6',NULL,'1107809',16.00,'495','830',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001252','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4059,'NUROFEN MAX MIGRAINE 12S','6',NULL,'1107814',16.00,'740','1240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001253','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4060,'NUROFEN SUSPENSION ORANGE 100ML','6',NULL,'1107821',16.00,'570','955',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001254','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4061,'NUROFEN TABLETS 200MG 12S','6',NULL,'1107823',16.00,'370','620',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001255','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4062,'NYTOL HERBAL TABLETS 30S','6',NULL,'1107846',16.00,'915','1540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001256','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4063,'NYTOL ONE-A-NIGHT 50MG 20S','6',NULL,'1107847',16.00,'940','1570',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001257','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4064,'OLBAS INHALER','6',NULL,'1107922',16.00,'360','620',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001258','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4065,'OLD SPICE DEODORANT STICK ORIGINAL 85G','12',NULL,'1107935',16.00,'1160','1880.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001259','pcs','Inventory','VATABLE','0',NULL,0),(4066,'OLFEN 50MG TABS 20S','10',NULL,'1107949',16.00,'38.85','66',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001260','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4067,'OPSITE DRESSING 15.5CMX8.5CM 20S','6',NULL,'1108034',16.00,'205','353',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001261','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4068,'OPSITE SPRAY 100ML','6',NULL,'1108037',16.00,'900','1550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001262','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4069,'OPTIVE EYE DROPS 10ML','6',NULL,'1108052',16.00,'844','1455',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001263','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4070,'OPTREX EYE WASH 100ML','6',NULL,'1108053',16.00,'740','1245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001264','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4071,'OPTREX BLOODSHOT EYE DROPS','6',NULL,'1108055',16.00,'735','1235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001265','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4072,'OPTREX BRIGHTENING DROPS 10ML','6',NULL,'1108056',16.00,'725','1220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001266','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4073,'OPTREX DRY EYES LUBRICATING DROPS','6',NULL,'1108060',16.00,'685','1155',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001267','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4074,'OPTREX ITCHY EYE DROPS 10ML','6',NULL,'1108064',16.00,'680','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001268','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4075,'OPTREX SORE EYE DROPS 10ML','6',NULL,'1108068',16.00,'750','1415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001269','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4076,'ORAL B DENTAL FLOSS UNWAXED ORIGINAL 50M','12',NULL,'1108086',16.00,'208.8','319.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001270','pcs','Inventory','VATABLE','0',NULL,0),(4077,'OSTEOCARE LIQUID','6',NULL,'1108186',16.00,'623','1045',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001271','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4078,'OSTEOCERIN TABS 10S','10',NULL,'1108190',16.00,'62','117',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001272','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4079,'OTRIVIN ADULT DROPS 10ML','6',NULL,'1108196',16.00,'431','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001273','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4080,'OTRIVIN PAED DROPS 10ML','6',NULL,'1108197',16.00,'431','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001274','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4081,'OVACARE TABS 30S','6',NULL,'1108199',16.00,'1226','2110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001275','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4082,'PARA DENK SUPP 250MG 10S','10',NULL,'1108327',16.00,'21.245','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001276','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4083,'PARLODEL 2.5MG TABS 30S','10',NULL,'1108343',16.00,'46.667','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001277','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4084,'PEGLEC POWDER 137.15GMS','10',NULL,'1108378',16.00,'1148.1','1895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001278','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4085,'PENAMOX 500MG CAPS 500S','10',NULL,'1108381',16.00,'10.974','18.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,58.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001279','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(4086,'PERFECTIL CAPS 30S','6',NULL,'1108404',16.00,'1190','1990',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001280','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4087,'PHENOBARBITONE 30MG TABS 100S','10',NULL,'1108434',16.00,'1.534','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,49.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001281','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4088,'PIOGLUC 30MG TABS 28S','11',NULL,'1108567',16.00,'12.75','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,17.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001282','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4089,'PLENDIL 5MG TABS 30S','11',NULL,'1108617',16.00,'52.83','93',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001283','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4090,'POLYGYNAX PESSARIES 12S','10',NULL,'1108648',16.00,'57.083','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001284','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4091,'POWERGESIC MR TABLETS 100S','10',NULL,'1108704',16.00,'17','28.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001285','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4092,'PRAZITEL 600MG TABS 100S','10',NULL,'1108706',16.00,'21.165','35.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001286','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4093,'PRED FORTE EYE DROPS','10',NULL,'1108710',16.00,'737','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001287','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(4094,'PREGNACARE FOR CONCEPTION','6',NULL,'1108721',16.00,'906','1515',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001288','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4095,'PRIMAPORE AWD 15CM*8CM 20S','6',NULL,'1108761',16.00,'50','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,24.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001289','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4096,'PRIMAPORE AWD 20CM*10CM 20S','6',NULL,'1108762',16.00,'85','147',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001290','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4097,'PROCTOSEDYL SUPPOSITORIES 12S','10',NULL,'1108795',16.00,'106.25','177',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001291','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(4098,'PRODEP 20MG TABS 60S','11',NULL,'1108797',16.00,'27.475','49',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001292','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4099,'PROLOC D 10/10mg TABS 30S','11',NULL,'1108801',16.00,'41.767','74',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001293','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4100,'HISTARGAN SYRUP 100ML','10',NULL,'1108806',16.00,'36','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001294','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4101,'PURECAL CHEWABLE TABS 30S','6',NULL,'1108889',16.00,'725','1250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001295','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4102,'PYRALVEX SOLUTION 10ML','6',NULL,'1108897',16.00,'445','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001296','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4103,'QUITIPIN 100MG TABS 30S','11',NULL,'1108979',16.00,'44.803','82',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001297','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4104,'RECARTIX FORTE 30S','6',NULL,'1109027',16.00,'35.115','62',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001298','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4105,'REFRESH TEARS 15MLS','6',NULL,'1109044',16.00,'664','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001299','pcs','Inventory','EXEMPTED','0',NULL,0),(4106,'RENNIE PEPPERMINT 48S','6',NULL,'1109084',16.00,'225','390',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001300','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4107,'REPACE-H 50/12.5MG TABS 30S','11',NULL,'1109097',16.00,'26.917','47',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001301','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4108,'RHINATHIOL ADULT SYRUP 125ML','6',NULL,'1109251',16.00,'326.688','550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001302','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4109,'RISDONE 1MG TABS 50S','10',NULL,'1109291',16.00,'43.7','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001303','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4110,'SAFERON SYRUP 150ML','6',NULL,'1109381',16.00,'336.42','580',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001304','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4111,'SAFERON PLUS TABLETS 30S','6',NULL,'1109382',16.00,'23.85','42',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001305','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4112,'SAFETY PINS ASSORTED','12',NULL,'1109383',16.00,'14.5','27.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001306','pcs','Inventory','VATABLE','0',NULL,0),(4113,'SAVLON ANTISEPTIC CREAM 15G','6',NULL,'1109436',16.00,'217','380',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001307','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4114,'SAVLON ANTISEPTIC LIQUID 250ML','6',NULL,'1109440',16.00,'344.52','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001308','pcs','Inventory','VATABLE','0',NULL,0),(4115,'SCOTTS EMULSION REGULAR 100ML','6',NULL,'1109527',16.00,'324.169','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001309','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4116,'SEBAMED BABY CHILDRENS SHAMPOO','12',NULL,'1109543',16.00,'730.1852','1245.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001310','pcs','Inventory','VATABLE','0',NULL,0),(4117,'SEBAMED BABY CLEANSING BAR','9',NULL,'1109544',16.00,'603.2','1034.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001311','pcs','Inventory','VATABLE','0',NULL,0),(4118,'SEBAMED BABY LOTION 100ML','12',NULL,'1109549',16.00,'754','1285.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001312','pcs','Inventory','VATABLE','0',NULL,0),(4119,'SEBAMED FEMININE INTIMATE WASH 200ML','12',NULL,'1109573',16.00,'1218','2074.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001313','pcs','Inventory','VATABLE','0',NULL,0),(4120,'SENOKOT TABLETS 20S','6',NULL,'1109615',16.00,'460','800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001314','pcs','Inventory','EXEMPTED','0','0039.11.82',0),(4121,'SEPGARD GEL 1% 15GM','10',NULL,'1109641',16.00,'193.375','325',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001315','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4122,'SEPTRIN SUSPENSION 100ML','10',NULL,'1109648',16.00,'324.931','550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001316','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4123,'SEPTRIN SUSPENSION 50ML','10',NULL,'1109649',16.00,'209.738','355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001317','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4124,'SERETIDE A/HALER 50MCG/500MCG','11',NULL,'1109652',16.00,'1971','3395',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001318','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4125,'SERETIDE A/HALER 50MCG/250MCG','11',NULL,'1109654',16.00,'1520','2615',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001319','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4126,'SICCAPOS GEL 10GM','10',NULL,'1109717',16.00,'547','945',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001320','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4127,'SIMPLE REGENARATION A/R NIGHT CREAM 50ML','9',NULL,'1109792',16.00,'1344.44','2034.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001321','pcs','Inventory','VATABLE','0',NULL,0),(4128,'SIMVASTATIN 20MG TABS 28S','11',NULL,'1109830',16.00,'3.393','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001322','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4129,'SIMVASTATIN 40MG TABS 28S','11',NULL,'1109831',16.00,'5.107','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001323','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4130,'SINAREST VAPOCAPS 10S','6',NULL,'1109832',16.00,'29.501','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001324','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4131,'SKILAX DROPS 15ML','6',NULL,'1109853',16.00,'450','775',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001325','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4132,'SOLIFEN 5MG TABS 10S','11',NULL,'1109975',16.00,'105','189',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001326','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4133,'SPASMOMEN 40MG TABS 30S','10',NULL,'1110013',16.00,'29.067','49',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001327','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4134,'SPIRIVA 18MCG CAPS REFILLS','11',NULL,'1110021',16.00,'5254.5','8780',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001328','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4135,'SPIRONOLACTONE 25MG 28S','11',NULL,'1110023',16.00,'11.071','21',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001329','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4136,'STUDEX EAR GEL','9',NULL,'1110088',16.00,'149.9996','260.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001330','pcs','Inventory','VATABLE','0',NULL,0),(4137,'STILNOX 10MG TABS 14S','10',NULL,'1110126',16.00,'34.205','58',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001331','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4138,'STREPSILS STRAWBERRY S/FREE 36S','6',NULL,'1110141',16.00,'750','1275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001332','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4139,'STREPSILS ORIGINAL 16S','6',NULL,'1110154',16.00,'435','740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001333','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4140,'STREPSILS SORE THROAT & BLOCKED NOSE 36S','6',NULL,'1110158',16.00,'815','1430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001334','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4141,'STUD SPRAY','6',NULL,'1110161',16.00,'760','1310',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001335','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4142,'STUGERON 25MG TABS 50S','10',NULL,'1110162',16.00,'10.656','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001336','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4143,'SUCRAFIL O GEL SUCRALFATE AND OXETACAINE SUSPENSION 100','6',NULL,'1110167',16.00,'233.18','410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001337','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4144,'SUDAFED DECONGESANT TABLETS 12S','6',NULL,'1110169',16.00,'500','860',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001338','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4145,'SURESIGN PREGNANCY MIDSTREAM TWIN','6',NULL,'1110249',16.00,'580','1000.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001339','pcs','Inventory','VATABLE','0',NULL,0),(4146,'SURESIGN PREGNANCY STRIPS 2S','6',NULL,'1110250',16.00,'208.8','360.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001340','pcs','Inventory','VATABLE','0',NULL,0),(4147,'SURGICAL SPIRIT 5 LITRE','6',NULL,'1110257',16.00,'750','1290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001341','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4148,'SUSTEN 400MG CAPS 30S','10',NULL,'1110262',16.00,'95','158',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001342','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(4149,'TACROVATE FORTE OINT 0.1%','10',NULL,'1110313',16.00,'1170.9','2015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001343','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4150,'TACROVATE OINTMENT 0.03% 10GRAMS','10',NULL,'1110314',16.00,'774.3','1295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001344','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4151,'TAVANIC 500MG TABS 5S','10',NULL,'1110346',16.00,'375.478','630',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001345','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4152,'TEGRETOL 200MG TABS 50S','11',NULL,'1110377',16.00,'6.664','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001346','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4153,'TELTAS 40MG TABS 30S','11',NULL,'1110383',16.00,'46.67','83',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,45.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001347','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4154,'TIGER BALM RED 19.4G','6',NULL,'1110468',16.00,'270','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001348','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4155,'TOPAMAX 50MG TABS 60S','10',NULL,'1110579',16.00,'64.995','110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001349','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4156,'TRANSAMIN 500MG TABS 20S','11',NULL,'1110604',16.00,'34','62',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001350','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4157,'TRANSPORE TAPE 1 INCH','10',NULL,'1110605',16.00,'183.667','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001351','pcs','Inventory','EXEMPTED','0','0039.11.32',0),(4158,'TRAVOGEN CREAM 20GM','10',NULL,'1110618',16.00,'509.015','845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001352','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4159,'TRIMETABOL SYRUP 150ML','6',NULL,'1110638',16.00,'621','1070',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001353','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4160,'TRUVADA 200/300MG TABS 30S','11',NULL,'1110682',16.00,'4508','7530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001354','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4161,'TX-MF TABLETS 30S','11',NULL,'1110711',16.00,'49.009','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001355','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4162,'ULGICID SUSPENSION MINT 200ML','6',NULL,'1110823',16.00,'278.67','485',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001356','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4163,'URINE BAG WITH OUTLET 2L','10',NULL,'1110869',16.00,'27','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001357','pcs','Inventory','EXEMPTED','0','0132.11.00',0),(4164,'VENIZ XR 75MG CAPS 30S','10',NULL,'1111067',16.00,'58','100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001358','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4165,'VENTAB XL 75MG TABS 30S','10',NULL,'1111068',16.00,'68','109',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001359','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4166,'VERMOX SYRUP 30ML','6',NULL,'1111081',16.00,'505.8','865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001360','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4167,'VIAGRA 50MG TABS 4S','11',NULL,'1111092',16.00,'659.118','1200',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001361','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4168,'VICKS VAPOUR RUB 50GM U.K','6',NULL,'1111113',16.00,'480','830',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001362','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4169,'VICKS VAPOUR RUB 50GM LOCAL','6',NULL,'1111115',16.00,'685','1140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001363','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4170,'VISIONACE TABLETS 30S','6',NULL,'1111140',16.00,'889','1485',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001364','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4171,'VITACAP CAPSULES 50S','6',NULL,'1111147',16.00,'20.738','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001365','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4172,'VOLTAREN EMULGEL 20GM','6',NULL,'1111291',16.00,'439.527','755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001366','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4173,'WARFARIN 1MG TABLETS 28S','11',NULL,'1111309',16.00,'2.321','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001367','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4174,'WAXSOL EAR DROPS 10ML','6',NULL,'1111339',16.00,'500','865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001368','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4175,'WELLMAN CONCEPTION','6',NULL,'1111349',16.00,'979','1635',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001369','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4176,'WELLWOMAN CAPSULES 30S','6',NULL,'1111353',16.00,'1008','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001370','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4177,'WOW GAUZE BANDAGES 2 12S','6',NULL,'1111398',16.00,'3.083','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001371','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4178,'WOW GAUZE BANDAGES 4 12S','6',NULL,'1111400',16.00,'11.667','22',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001372','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4179,'XARELTO 10MG TABS 10S','11',NULL,'1111420',16.00,'125.37','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001373','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4180,'YASMIN TABS 21S','10',NULL,'1111447',16.00,'739','1150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001374','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(4181,'ZAMUR 500MG TABLETS 10S','10',NULL,'1111462',16.00,'149.776','249',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001375','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4182,'ZECUF LOZENGES HERBAL LEMON','6',NULL,'1111475',16.00,'176.32','304.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001376','pcs','Inventory','VATABLE','0',NULL,0),(4183,'ZEDCAL SUSP 200ML','6',NULL,'1111481',16.00,'354','615',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001377','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4184,'ZEDCAL TABLETS 30S','6',NULL,'1111482',16.00,'325','565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001378','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4185,'ZERODOL 100MG TABS 30S','10',NULL,'1111492',16.00,'15.219','27',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001379','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4186,'ZESTRIL 5MG TABS 28S','11',NULL,'1111496',16.00,'15.934','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001380','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4187,'ZINC & CASTOR OIL CREAM 225G - Bells','12',NULL,'1111506',16.00,'649.6','1145.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001381','pcs','Inventory','VATABLE','0',NULL,0),(4188,'ZINC OXIDE PLASTER 2 (5CM*4M)','6',NULL,'1111510',16.00,'55','100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001382','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4189,'ZINC OXIDE PLASTER 3 (7.5CM*4M)','6',NULL,'1111511',16.00,'70','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001383','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4190,'ZINNAT SUSP. 125MG/5ML 100ML','10',NULL,'1111532',16.00,'1083.6','1855',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001384','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4191,'ZITHROMAX 200MG/5ML SUSP - 15ML','10',NULL,'1111541',16.00,'612.90','1030',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001385','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4192,'ZOSERT 50MG TABS 30S','11',NULL,'1111563',16.00,'53.333','97',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001386','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4193,'ZYLORIC 100MG TABS 100S','11',NULL,'1111573',16.00,'25.00','46.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,23.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001387','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4194,'OCULAST EYE DROPS 15ML','10',NULL,'1111665',16.00,'276','465',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001388','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4195,'SURESIGN BLOOD PRESSURE MONITOR','11',NULL,'1111686',16.00,'3478.84','5810.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001389','pcs','Inventory','VATABLE','0',NULL,0),(4196,'TELMI H 40/12.5MG TABS 30S','11',NULL,'1111687',16.00,'42.633','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001390','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4197,'ZECUF LOZENGES HERBAL ORIGINAL','6',NULL,'1111695',16.00,'176.32','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001391','pcs','Inventory','VATABLE','0',NULL,0),(4198,'COMBIZOL TABS 10S','10',NULL,'1111713',16.00,'39.16','66',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001392','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4199,'TELMI 40MG TABLET 30S','11',NULL,'1111821',16.00,'36.9','65',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001393','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4200,'NEBILONG-H 5MG/12.5MG TABS 30S','11',NULL,'1111851',16.00,'44.392','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001394','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4201,'QUADRAJEL GEL 15GM','10',NULL,'1111898',16.00,'231.4','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001395','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4202,'HITORAL CREAM 20GM','10',NULL,'1111951',16.00,'60','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001396','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4203,'TIMOLOL EYE DROPS 0.25% 5ML','10',NULL,'1112008',16.00,'800','1380',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001397','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4204,'ASCORIL DRY COUGH SYP 100ML','6',NULL,'1112128',16.00,'293.7','515',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001398','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4205,'OZITAS 5MG TABS 30S','10',NULL,'1112262',16.00,'38.833','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001399','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4206,'SERETIDE 25/250 EVOHALER','11',NULL,'1112272',16.00,'1803','3105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001400','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4207,'COVERAM 5/5MG TABS 30S','11',NULL,'1112372',16.00,'53.495','95',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001401','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4208,'COVERAM 10/10MG TABS 30S','11',NULL,'1112373',16.00,'72.96','129',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001402','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4209,'NEXPRO 40MG TABS 50S','11',NULL,'1112426',16.00,'23','42',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001403','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4210,'VISIONACE PLUS CAPS 56S','6',NULL,'1112444',16.00,'1245','2080',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001404','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4211,'WELLMAN PLUS OMEGA CAPS 56S','6',NULL,'1112447',16.00,'1588','2655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001405','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4212,'ZECUF LOZENGES HERBAL ORANGE','6',NULL,'1112449',16.00,'176.32','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001406','pcs','Inventory','VATABLE','0',NULL,0),(4213,'TELTAS H 80/25MG TABS 30S','11',NULL,'1112506',16.00,'56','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001407','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4214,'GAVISCON DOUBLE ACTION LIQUID 300ML','6',NULL,'1112523',16.00,'1350','2255',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001408','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4215,'TAMSOLIN 0.4MG CAPS 10S','11',NULL,'1112639',16.00,'59.25','108',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001409','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4216,'NEBILONG 5mg TABS 30S','11',NULL,'1112729',16.00,'41.207','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001410','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4217,'CASTOR OIL 50 ML','6',NULL,'1112758',16.00,'40.6','70.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001411','pcs','Inventory','VATABLE','0',NULL,0),(4218,'CHARCOAL TABS 100S (MEDICINAL) U.K','6',NULL,'1112759',16.00,'420','730',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001412','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4219,'CONTEMPO CONDOM EROTICA 3S','6',NULL,'1112850',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001413','pcs','Inventory','VATABLE','0',NULL,0),(4220,'ANIMAL PARADE VITAMIN C 90S','6',NULL,'1112907',16.00,'1210','2085',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001414','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(4221,'MURINE DRY AND TIRED EYES','6',NULL,'1113490',16.00,'510','880',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001415','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4222,'SUNDOWN CALCIUM 1200MCG +VIT D 1000IU TABLETS 60','6',NULL,'1113539',16.00,'1350','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001416','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4223,'SUNDOWN OSTEO BI-FLEX TABLETS 40S','6',NULL,'1113548',16.00,'1683','2865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001417','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4224,'SUNDOWN VIT D3 5000MCG SOFTGELS 150S','6',NULL,'1113552',16.00,'1431','2435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001418','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4225,'CO-MICARDIS 40MG TABS 28S','11',NULL,'1113566',16.00,'79.576','136',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001419','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4226,'TELMI 80MG TABS 30S','11',NULL,'1113797',16.00,'51.35','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,19.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001420','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4227,'ISLIM 400MG CAPS 30S','6',NULL,'1113883',16.00,'33.334','58',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001421','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(4228,'ISOPTIN SR 240MG TABS 30S','11',NULL,'1113996',16.00,'87.704','154',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001422','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4229,'LEVOBACT 750MG TABS 10S','10',NULL,'1113999',16.00,'74.6','124',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001423','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4230,'NOW OMEGA 3-6-9 CAPS 100S','6',NULL,'1114009',16.00,'1565','2615',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001424','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4231,'CLOMID 50MG TABS 30S','10',NULL,'1114031',16.00,'93.333','156',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001425','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4232,'LEFLOX 750MG TABS 10S','10',NULL,'1114074',16.00,'95.14','158',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001426','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4233,'NOW HORNY GOAT WEED EXTRACT 90S','6',NULL,'1114114',16.00,'2285','3820',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001427','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4234,'CADRONATE 150MG TABS 3S','10',NULL,'1114541',16.00,'972','1605',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001428','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4235,'DOMADOL 50MG TABS 100S','10',NULL,'1114574',16.00,'7.137','12.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001429','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4236,'NUROFEN MIGRAINE 12S','6',NULL,'1114674',16.00,'450','755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001430','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4237,'GLUCOMET N 5/500mg TABS 28S','11',NULL,'1114905',16.00,'9.214','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001431','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4238,'PROCTOSEDYL OINTMENT 30GM','6',NULL,'1115158',16.00,'2230','3840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001432','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4239,'METOZ 2.5MG TABS 30S','11',NULL,'1115203',16.00,'22.992','41',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001433','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4240,'INSPRA EPLERENOON 25MG 30S','11',NULL,'1115211',16.00,'96.014','169',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001434','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4241,'PRADAXA 110MG CAPSULES 60S','11',NULL,'1115223',16.00,'122.525','216',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001435','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4242,'AVOMINE TRAVE SICKNESS TABLETS 10S','6',NULL,'1115362',16.00,'310','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001436','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4243,'ELASTOPLAST FABRIC PLASTERS 10S','6',NULL,'1115406',16.00,'280','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001437','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4244,'IMODIUM MELT INSTANTS 2MG 6S','6',NULL,'1115415',16.00,'550','1070',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001438','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4245,'MOVICOL PAEDIATRIC SATCHETS 30S','6',NULL,'1115423',16.00,'41.17','71',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001439','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4246,'TOT HEMA ORAL SOL 10ML AMPOULES 20S','10',NULL,'1115484',16.00,'28.95','49',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001440','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4247,'THEOPHED (FRANOL GENERIC) TABLETS 100S','11',NULL,'1115505',16.00,'1.55','3.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,69.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001441','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4248,'AERIUS SYRUP 60ML','10',NULL,'1115506',16.00,'410.82','700',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001442','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4249,'FOLLEY CATHETER 2 WAY G18','10',NULL,'1115637',16.00,'45','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001443','pcs','Inventory','EXEMPTED','0','0036.11.00',0),(4250,'CENTRUM MEN 30','6',NULL,'1115698',16.00,'1050','1755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001444','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4251,'ZINCAT-OD SYRUP 60ML','10',NULL,'1115788',16.00,'100.94','170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001445','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4252,'WISDOM INTERDENTAL BRUSHES 0.60MM 5S','12',NULL,'1115893',16.00,'328.86','530.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001446','pcs','Inventory','VATABLE','0',NULL,0),(4253,'GABIX 300MG CAPS 10S','11',NULL,'1116176',16.00,'30.8','55',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001447','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4254,'TELMI AM 40/5MG TABS 30S','11',NULL,'1116181',16.00,'44.767','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001448','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4255,'SINGULAIR 10MG TABS 28S','11',NULL,'1116225',16.00,'64.976','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001449','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4256,'PARIET 10MG TABS 28S','11',NULL,'1116314',16.00,'101.604','180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001450','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4257,'OPTIVE PLUS EYE DROPS 10ML','6',NULL,'1116407',16.00,'1044','1800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001451','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4258,'TWYNSTA 40/5MG TABS 28S','11',NULL,'1116594',16.00,'102.3','177',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001452','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4259,'NEUROBEST TABS 30S','6',NULL,'1116721',16.00,'14.374','26',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,17.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001453','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4260,'METRONIDAZOLE SYRUP 100ML','10',NULL,'1116725',16.00,'36','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001454','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4261,'MINOXIN 5% SOLUTION 60ML','10',NULL,'1116757',16.00,'2267.8','3834.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001455','pcs','Inventory','VATABLE','0','0039.11.28',0),(4262,'NIVEA AFTER SHAVE BALM SENSITIVE 100ML','12',NULL,'1116884',16.00,'774.99948','1110.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001456','pcs','Inventory','VATABLE','0',NULL,0),(4263,'TWYNSTA 40/10MG TABS 28S','11',NULL,'1117011',16.00,'102.3','176',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001457','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4264,'YESCORT 6MG TABLETS 30S','11',NULL,'1117137',16.00,'21.462','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001458','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(4265,'PROGYNOVA 2MG TABS 20S','10',NULL,'1117236',16.00,'17.68','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001459','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(4266,'QUEST CRANBIOTIX - PROBIOTIC WITH CRANBERRY 30S','6',NULL,'1117245',16.00,'1235','2065',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001460','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4267,'FEBO-G 40MG TABS 20S','11',NULL,'1117251',16.00,'75','132',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001461','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4268,'AVELON 400MG TABS 10S','10',NULL,'1117277',16.00,'221.346','368',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001462','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4269,'IMPRAMINE 25MG TABS 28S','10',NULL,'1117279',16.00,'16.071','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001463','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4270,'SENSODYNE REPAIR & PROTECT 75ML','12',NULL,'1117530',16.00,'460.47128','620.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001464','pcs','Inventory','VATABLE','0',NULL,0),(4271,'CENTRUM 50+ MEN 30S','6',NULL,'1117540',16.00,'1200','2005',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001465','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4272,'DUODART 0.5MG CAPS 30S','11',NULL,'1117636',16.00,'70.2','117',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001466','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4273,'VITAMIN C EFF ORANGE 1000MG 20S (PHC)','6',NULL,'1117726',16.00,'585','1008.621',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001467','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(4274,'LIPITOR 20MG TABS 30S','11',NULL,'1117775',16.00,'76.103','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001468','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4275,'SUNDOWN COMPLETE OMEGA 3-5-6-7-9 SOFTGELS 90S','6',NULL,'1117831',16.00,'2326.5','3960',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001469','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4276,'KLEEN ENEMAX 100MCG 135ML','10',NULL,'1117990',16.00,'173','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001470','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4277,'SUNDOWN VIT D3 1000MCG SOFTGEL 200S','6',NULL,'1117996',16.00,'1431','2435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001471','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4278,'LIPIGET 40MG TABS 10S','11',NULL,'1118009',16.00,'56','97',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001472','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4279,'NIVEA SHOWER GEL MEN COOL KICK 250ML','12',NULL,'1118109',16.00,'391.66704','545.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001473','pcs','Inventory','VATABLE','0',NULL,0),(4280,'SLOW SODIUM TABLETS 600MG 100S','10',NULL,'1118112',16.00,'22','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001474','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4281,'PREGNACARE FOR BREASTFEEDING','6',NULL,'1118198',16.00,'1697.273','3120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001475','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4282,'ESCLAM KIT 7S','11',NULL,'1118360',16.00,'360.463','631',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001476','pcs','Inventory','EXEMPTED','0','0039.11.14',0),(4283,'LEVIPIL 500MG TABS 30S','10',NULL,'1118388',16.00,'64','111',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001477','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4284,'ASOMEX D 2.5/12.5MG TABS 30S','11',NULL,'1118481',16.00,'52.213','92',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001478','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4285,'FORALIN 400 INHALER','11',NULL,'1118517',16.00,'2134.52','3740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001479','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4286,'ANIMAL PARADE KIDZINC LOZENGES 90S','6',NULL,'1118544',16.00,'1825','3140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001480','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4287,'FORALIN INHALER 100','11',NULL,'1118554',16.00,'1099.94','1925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001481','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4288,'FEMELLE COTTON BALLS 100S','12',NULL,'1118619',16.00,'232','405.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001482','pcs','Inventory','VATABLE','0',NULL,0),(4289,'FEMELLE COTTON BUDS 200S','9',NULL,'1118824',16.00,'168.2','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001483','pcs','Inventory','VATABLE','0',NULL,0),(4290,'OLD SPICE DEODORANT STICK PURE SPORT 85G','12',NULL,'1118982',16.00,'1160','1880.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001484','pcs','Inventory','VATABLE','0',NULL,0),(4291,'FORALIN 200 INHALER','11',NULL,'1119823',16.00,'1487.8','2605',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001485','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4292,'QUEST VIT C 1000MG TIMED RELEASE TABS BONUS 45s','6',NULL,'1120062',16.00,'785','1315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001486','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4293,'BALLET MOSQUITO REPELLENT MOUSE SPRAY 100ML','9',NULL,'1120074',16.00,'233.9952','394.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001487','pcs','Inventory','VATABLE','0',NULL,0),(4294,'NIVEA MEN SHAVING FOAM SENSITIVE 200ML','12',NULL,'1120156',16.00,'562.50024','780.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001488','pcs','Inventory','VATABLE','0',NULL,0),(4295,'SENSODYNE TOOTH BRUSH (GUM CARE) SOFT','12',NULL,'1120382',16.00,'134.56','185.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001489','pcs','Inventory','VATABLE','0',NULL,0),(4296,'ALTACEF 500MG TABS 10S','10',NULL,'1120669',16.00,'86.953','146',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001490','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4297,'ECOFREE 120MG TABS 10S','10',NULL,'1120754',16.00,'49.498','83',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001491','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4298,'COW & GATE NUTRISTART 2 400G','6',NULL,'1120798',16.00,'1066.50052','1710.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001492','pcs','Inventory','VATABLE','0',NULL,0),(4299,'COW & GATE NUTRISTART 1 400G','6',NULL,'1120799',16.00,'1066.50052','1710.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001493','pcs','Inventory','VATABLE','0',NULL,0),(4300,'COW & GATE NUTRISTART JUNIOR 3 400G','6',NULL,'1120801',16.00,'1066.50052','1710.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001494','pcs','Inventory','VATABLE','0',NULL,0),(4301,'DUREX CONDOMS PLEASURE ME','6',NULL,'1120808',16.00,'241.9876','454.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001495','pcs','Inventory','VATABLE','0',NULL,0),(4302,'NEXIKEN KIT 7S','11',NULL,'1120814',16.00,'213.964','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001496','pcs','Inventory','EXEMPTED','0','0039.11.14',0),(4303,'METHYLATED SPIRIT 100ML','6',NULL,'1120818',16.00,'31.32','54.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001497','pcs','Inventory','VATABLE','0',NULL,0),(4304,'LETROL 2.5MG TABS 5S','11',NULL,'1120822',16.00,'150','263',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001498','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4305,'BIOFLOR 250MG SACHETS 10S','6',NULL,'1120864',16.00,'76.5','133',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001499','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4306,'CIPLADON 500MG EFF TABLETS 16S','6',NULL,'1120876',16.00,'17.284','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001500','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4307,'NATURAL COTTON MAXI SUPER PADS 12S','12',NULL,'1120949',16.00,'382.5','585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001501','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(4308,'VICKS VAPOUR RUB 100GM U.K','6',NULL,'1121446',16.00,'800','1655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001502','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4309,'CLOMID 50MG TABS 10S','10',NULL,'1121496',16.00,'56','93',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001503','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(4310,'DEEP FREEZE COLD PATCH','6',NULL,'1121526',16.00,'360','605',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001504','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4311,'OXYBUTYNIN 5MG TABS 100S','11',NULL,'1121536',16.00,'5','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001505','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4312,'TERBIFIN 250MG TABS 14S','10',NULL,'1121594',16.00,'110.879','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001506','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4313,'MESTINON PYRIDOSTIGMINE 60MG TABS 20S','10',NULL,'1121600',16.00,'35','59',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001507','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4314,'PANTOLOC 20MG TABS 28S','11',NULL,'1121612',16.00,'49.214','87',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001508','pcs','Inventory','EXEMPTED','0','0039.11.20',0); INSERT INTO `productlist` VALUES (4315,'APROVASC 150/5MG TABS 28S','11',NULL,'1121741',16.00,'74.967','132',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001509','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4316,'CATAFLAM 15MG/ML SUSP 120ML','10',NULL,'1122053',16.00,'699.55','1180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001510','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4317,'APDROPS DX 5/1MG 3ML DROPS','10',NULL,'1122060',16.00,'425.6','720',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001511','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4318,'PERFECTIL PLUS SKIN CAPS 60S','6',NULL,'1122067',16.00,'1512','2530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001512','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4319,'VICKS INHALER INDIA','6',NULL,'1122202',16.00,'385','655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001513','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4320,'ALWAYS EVERYDAY PANTYLINERS NORMAL 20S','12',NULL,'1122404',16.00,'100.5488','155.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001514','pcs','Inventory','VATABLE','0',NULL,0),(4321,'WISDOM CLEAN BETWEEN FLOSSER','12',NULL,'1122478',16.00,'393.588','629.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001515','pcs','Inventory','VATABLE','0',NULL,0),(4322,'LRP CICAPLAST BAUME B5 40ml','12',NULL,'1122494',16.00,'1155.534','1865.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001516','pcs','Inventory','VATABLE','0',NULL,0),(4323,'LRP LIPIKAR CLEANSING BAR 150g','12',NULL,'1122512',16.00,'606.86676','980.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001517','pcs','Inventory','VATABLE','0',NULL,0),(4324,'VEET HAIR REMOVAL CREAM SENSITIVE 50G','12',NULL,'1122644',16.00,'487.9424','750.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001518','pcs','Inventory','VATABLE','0',NULL,0),(4325,'DUREX PLAY FEEL 50ML','6',NULL,'1122703',16.00,'586.4612','1004.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001519','pcs','Inventory','VATABLE','0',NULL,0),(4326,'NYTOL ORIGINALS 25MG 20S','6',NULL,'1122740',16.00,'660','1110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001520','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4327,'NIVEA FOR MEN BODY MILK (COOL KICK) 200ML','9',NULL,'1122817',16.00,'270.83332','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001521','pcs','Inventory','VATABLE','0',NULL,0),(4328,'DERMOL EMOLLIENT CREAM 500GM','9',NULL,'1122874',16.00,'1238.88','2119.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001522','pcs','Inventory','VATABLE','0',NULL,0),(4329,'APROVASC 300/5MG TABS 28S','11',NULL,'1122894',16.00,'88.733','157',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001523','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4330,'DUREX CONDOM SELECT FLAVOURS','6',NULL,'1123252',16.00,'199.636','345.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001524','pcs','Inventory','VATABLE','0',NULL,0),(4331,'CYTOTEC MISOPROSTOL TABLETS 28S','10',NULL,'1123647',16.00,'59.514','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001525','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4332,'LOXIAM MR 8/8MG TABS 10S','10',NULL,'1123800',16.00,'63.7','108',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001526','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4333,'QUITIPIN 300MG TABS 30S','10',NULL,'1124330',16.00,'76.667','129',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001527','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4334,'GIT SR 150MG CAPS 10S','10',NULL,'1124332',16.00,'67.898','114',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001528','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4335,'LATEX EXAMINATION GLOVES LARGE 100S','6',NULL,'1124334',16.00,'4.4','9.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001529','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4336,'MS TELLME OVULATION MIDSTREAM 5PCS','6',NULL,'1124513',16.00,'1216.0048','2094.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001530','pcs','Inventory','VATABLE','0',NULL,0),(4337,'LEVOLUKAST ADULTS TABS 30S','10',NULL,'1124835',16.00,'47.467','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001531','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4338,'CLEAR T GEL 20GM','10',NULL,'1124882',16.00,'408','685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001532','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4339,'SUDAFED CONGESTION & HEADACHE RELIEF MAX CAPS 16S','6',NULL,'1124919',16.00,'565','975',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001533','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4340,'CONTEMPO CONDOM FLAVOURS 3S','6',NULL,'1124937',16.00,'212.5004','375.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001534','pcs','Inventory','VATABLE','0',NULL,0),(4341,'VITAHEALTH JOINTCARE FORTIFIED 30S','6',NULL,'1125012',16.00,'1831.75','3045',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001535','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4342,'STERIMAR BABY NASAL HYGIENE (ISOTONIC 50ML','6',NULL,'1125035',16.00,'427.5','740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001536','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4343,'FLEMING 625MG TABS 14S','10',NULL,'1125063',16.00,'24.016','42',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001537','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(4344,'SUCRALFATE 1GM TABS 60S','11',NULL,'1125089',16.00,'15.833','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001538','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4345,'EUTHYROX 25MCG TABS 30S','11',NULL,'1125091',16.00,'4','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001539','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(4346,'ARCOXIA 120MG TABS 7S','10',NULL,'1125117',16.00,'116.499','195',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001540','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4347,'CLINDAR T PLUS GEL 20GM','10',NULL,'1125231',16.00,'439','745',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001541','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4348,'PRINTING PAPERS','13',NULL,'1125260',16.00,'696','400.01208',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001542','pcs','Inventory','VATABLE','0',NULL,0),(4349,'MEDTEXTILE SOFT CURVICAL COLAR 1005-2','6',NULL,'1125279',16.00,'1160','1975',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001543','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(4350,'MED/T KNEE JOINT SUPPORT ADJUSTABLE - 6035-S/L','6',NULL,'1125301',16.00,'1595','2745',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001544','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(4351,'MEDTEXTILE ANKLE SUPPORT LIGHT FIXATION-7034-L','6',NULL,'1125305',16.00,'660','1125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001545','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(4352,'MEDTEXTILE WRIST WRAP W/STRAP-8512-S/L','6',NULL,'1125309',16.00,'690','1175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001546','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(4353,'MEDTEXTILE WHITE ARM SLING FACILITATED - 9912-L','6',NULL,'1125315',16.00,'800','1360',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001547','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(4354,'MEDTEXTILE WHITE ARM SLING FACILITATED - 9912-XL','6',NULL,'1125316',16.00,'800','1360',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001548','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(4355,'MEDTEXTILE ANKLE SUPPORT W/STRAP - 7025-M','6',NULL,'1125320',16.00,'1050','1785',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001549','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(4356,'MED/T ANKLE SUPPORT E/MEDIUM FIXATION - 7101-S','6',NULL,'1125323',16.00,'750','1300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001550','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(4357,'MEDTEXTILE WRIST WRAP ELASTIC - 8506-L','6',NULL,'1125330',16.00,'750','1275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001551','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(4358,'PRINTED BAG WHITE 1KG - GOODLIFE','13',NULL,'1125358',16.00,'3.248','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001552','pcs','Inventory','VATABLE','0',NULL,0),(4359,'PRINTED BAG WHITE 2KG - GOODLIFE','13',NULL,'1125359',16.00,'4.408','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001553','pcs','Inventory','VATABLE','0',NULL,0),(4360,'BETTER YOU MAGNESIUM OIL SPRAY MUSCLE 100ML','6',NULL,'1125369',16.00,'2076.4','3529.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001554','pcs','Inventory','VATABLE','0',NULL,0),(4361,'FORXIGA 10MG TABS 28S','11',NULL,'1125379',16.00,'143.065','244',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001555','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4362,'MEDISIGN BLOOD GLUCOSE METER','11',NULL,'1125381',16.00,'1565.52','2695',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001556','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(4363,'HUMALOG KWIKPEN 3ML','11',NULL,'1125414',16.00,'1295','2165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001557','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(4364,'NATRIXAM 1.5/5MG 30S','11',NULL,'1125446',16.00,'29.157','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001558','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4365,'HUMALOG MIX 25 QUICK PEN','11',NULL,'1125448',16.00,'1101','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001559','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(4366,'ACNES SEALING GEL 9G','9',NULL,'1125461',16.00,'320.16','535.00012',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001560','pcs','Inventory','VATABLE','0',NULL,0),(4367,'DALACIN C 150MG TABS 100S','10',NULL,'1125514',16.00,'37.77','63.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001561','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4368,'ACTILOSA CAPS 10S','6',NULL,'1125580',16.00,'45.00','77',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001562','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4369,'EPSOM SALT 25G','6',NULL,'1125663',16.00,'40.6','74.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001563','pcs','Inventory','VATABLE','0',NULL,0),(4370,'CILVAS 10MG TABS 30S','11',NULL,'1125875',16.00,'44.55','78',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001564','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4371,'N/AID ACTIVE MAN arginine','6',NULL,'1125975',16.00,'1485','2525',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001565','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4372,'N/AID MENS HEALTHY & VITALITY MULTIVITAMINS & MINERALS CAPS 30S','6',NULL,'1125980',16.00,'1269','2160',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001566','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4373,'N/AID FOLIC ACID 400ug TABS 90S','6',NULL,'1125983',16.00,'823.5','1400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001567','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4374,'N/AID TR VITAMIN C 1000MG TABLETS 30S','6',NULL,'1126408',16.00,'864','1470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001568','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(4375,'WELLWOMAN 70+ TABLETS 30S','6',NULL,'1126499',16.00,'1008','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001569','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4376,'EROSTIN SUSPENSION 60MLS','10',NULL,'1126517',16.00,'426.92','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001570','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4377,'CLEAR BLUE DIGITAL PREGNANCY TEST WEEK INDICATOR','6',NULL,'1126526',16.00,'1566','3699.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001571','pcs','Inventory','VATABLE','0',NULL,0),(4378,'SUNDOWN MELATONIN 5 MG DISSOLVABLE 90S','6',NULL,'1126529',16.00,'1296','2205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001572','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4379,'SUNDOWN VITAMIN C 500MG TR CAPS 90S','6',NULL,'1126530',16.00,'1620','2755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001573','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(4380,'SUNDOWN VITAMIN C 1000MG CAPS 133S','6',NULL,'1126531',16.00,'2160','3675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001574','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(4381,'SUNDOWN VITAMIN C 500MG CHEW TABS 100S','6',NULL,'1126533',16.00,'1935','3290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001575','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(4382,'N/AID EVENING PRIMROSE OIL 1000MG 90S','6',NULL,'1126535',16.00,'1683','2865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001576','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4383,'BRONCHOPED SYRUP 100ML','6',NULL,'1126537',16.00,'313.51','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001577','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4384,'N/AID VITAMIN B COMPLEX 50+ C TABS 30S','6',NULL,'1126613',16.00,'1161','1975',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001578','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4385,'N/AID D3 1000iu TABS 90S','6',NULL,'1126614',16.00,'1080','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001579','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4386,'N/AID HAIR SKIN & NAILS TABS 90S','6',NULL,'1126621',16.00,'1350','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001580','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4387,'DUSPATALIN 200MG TABS 30S','10',NULL,'1126758',16.00,'45.15','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001581','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4388,'DYNAPAR QPS 30ML SPARY','10',NULL,'1126774',16.00,'638.5','1055',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001582','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4389,'EPIMAX BABY & JUNIOR LOTION BTL PUMP 450ML','12',NULL,'1127055',16.00,'1148.4','1955.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001583','pcs','Inventory','VATABLE','0',NULL,0),(4390,'TREVIA 50MG TABS 35S','11',NULL,'1127062',16.00,'49.286','87',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001584','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4391,'GLENCET 5MG TABS 30S','10',NULL,'1127070',16.00,'40.495','66',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001585','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4392,'N/AID MULTIVITAMIN DROPS INFANTS & CHILDREN 50ML','6',NULL,'1127095',16.00,'918','1565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001586','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4393,'QUEST OAD PREGNA MULTI TABS 30S','6',NULL,'1127109',16.00,'540','910',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001587','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4394,'BRILINTA 90MG TABS 56S','11',NULL,'1127112',16.00,'154.858','284',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001588','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4395,'ROVISTA 5MG TABS 30S','11',NULL,'1127144',16.00,'25.667','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001589','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4396,'ROVISTA 10MG TABS 30S','11',NULL,'1127160',16.00,'40.6','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001590','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4397,'MOMATE AZ NASAL SPRAY','10',NULL,'1127166',16.00,'1386.62','2305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001591','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(4398,'CELEBREX CELECOXIB 200MG CAPSULES 100S','10',NULL,'1127170',16.00,'60.815','104',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001592','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4399,'GAVISCON ADVANCE PEPPERMINT TABLETS 24S.','6',NULL,'1127178',16.00,'1090','1835',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001593','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4400,'SENSODYNE EXTRA FRESH T/PASTE 75ML','12',NULL,'1127360',16.00,'376.75176','505.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001594','pcs','Inventory','VATABLE','0',NULL,0),(4401,'GABICA 50MG TABS 35S','11',NULL,'1127377',16.00,'39','69',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001595','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4402,'FAY WET WIPES ANTIBACTERIAL 10S','12',NULL,'1127383',16.00,'71.3574','119.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001596','pcs','Inventory','VATABLE','0',NULL,0),(4403,'WS STUDEX UNIVERSAL EAR PIERCING INSTRUMENT KIT','14',NULL,'1127431',16.00,'2900','1000.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001597','pcs','Inventory','VATABLE','0',NULL,0),(4404,'RELVAR ELLIPTA 100/25MCG A/HALER','11',NULL,'1127434',16.00,'2591','4330',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001598','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4405,'GABICA PREGABALIN 75MG TABS 35S','11',NULL,'1127443',16.00,'43.6','77',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001599','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4406,'PHOTOBLOCK GEL 75G SPF 50+','9',NULL,'1127446',16.00,'660.0052','1164.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001600','pcs','Inventory','VATABLE','0',NULL,0),(4407,'ARCOXIA 120MG TABS 28S','10',NULL,'1127588',16.00,'116.543','196',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001601','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4408,'DOVE SOAP GENTLE EXFOLIATING 100G','9',NULL,'1127618',16.00,'145.58','234.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001602','pcs','Inventory','VATABLE','0',NULL,0),(4409,'BIC 1 POUCH 1 SINGLE','12',NULL,'1127624',16.00,'14.9408','25.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001603','pcs','Inventory','VATABLE','0',NULL,0),(4410,'BIOGAIA BABY DROPS 5ML','6',NULL,'1127989',16.00,'1306','2225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001604','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4411,'BIOGAIA PROTECTS TABS CHEW 10S','6',NULL,'1127990',16.00,'568','985',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001605','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4412,'DYNACORT (DEFLAZACORT) 6MG 30S','10',NULL,'1128029',16.00,'16','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001606','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(4413,'EROVITA FIRST AID KIT BLUE','6',NULL,'1128030',16.00,'1205','2075',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001607','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4414,'SUNDOWN OMEGA 3-6-9 200S','6',NULL,'1128128',16.00,'3105','5280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001608','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4415,'ACCU-CHEK INSTANT STRIPS 50S','11',NULL,'1128185',16.00,'1550.00012','2635.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001609','pcs','Inventory','VATABLE','0',NULL,0),(4416,'AVENT NATURAL MANUAL BREAST PUMP -SCF330/60','12',NULL,'1128271',16.00,'6733.8','9230.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001610','pcs','Inventory','VATABLE','0',NULL,0),(4417,'LISTERINE ZERO 250ML','12',NULL,'1128275',16.00,'532.44','789.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001611','pcs','Inventory','VATABLE','0',NULL,0),(4418,'SINGULAIR 5MG TABS 28S','11',NULL,'1128320',16.00,'64.976','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001612','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4419,'TENA TISSUE PAPERS (for branche use)','15',NULL,'1128328',16.00,'34.8','55.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001613','pcs','Inventory','VATABLE','0',NULL,0),(4420,'CANESPOR CREAM 1% 15GM','10',NULL,'1128429',16.00,'657.081','1120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001614','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4421,'DAY NURSE CAPSULE','6',NULL,'1128434',16.00,'1080','1750',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001615','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(4422,'CANDEREL TABS GREEN 100S','6',NULL,'1128450',16.00,'280','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001616','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4423,'SAFECAL TABLETS','6',NULL,'1128465',16.00,'595.41','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001617','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4424,'REKFA GOLD 30S','6',NULL,'1128467',16.00,'838.35','1445',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001618','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4425,'IDEOS CHEWABLE TABS','6',NULL,'1128470',16.00,'840','1445',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001619','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4426,'NEXIUM 20MG TABS 28S','11',NULL,'1128479',16.00,'91.64','154',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001620','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4427,'SPORANOX 100MG 15S','10',NULL,'1128511',16.00,'275.94','459',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001621','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4428,'PANTO-DENK 40MG TABS 28S','11',NULL,'1128515',16.00,'28.118','50',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001622','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4429,'GARNIER COLOR NATURALS FR/GB/AR 5 3 CH CL D (LIGHT GOLDEN BROWN) KIT','12',NULL,'1128566',16.00,'295.99952','445.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001623','pcs','Inventory','VATABLE','0',NULL,0),(4430,'L’ORÉAL ELVIVE EXTRAORDINARY OIL SHAMPOO 200ML','12',NULL,'1128586',16.00,'443.99696','690.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001624','pcs','Inventory','VATABLE','0',NULL,0),(4431,'L’ORÉAL ELVIVE EXTRA ORDINARY OIL CONDITIONER 200ML','12',NULL,'1128590',16.00,'443.99696','690.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001625','pcs','Inventory','VATABLE','0',NULL,0),(4432,'BIO OIL 25ML','9',NULL,'1128722',16.00,'259.1498','439.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001626','pcs','Inventory','VATABLE','0',NULL,0),(4433,'DEXTRO ENERGY GLUCOSE TAB NATURAL 47G','6',NULL,'1128775',16.00,'155','265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001627','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4434,'DEXTRO ENERGY GLUCOSE TAB TROPICAL 47G','6',NULL,'1128777',16.00,'155','265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001628','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4435,'KOTEX ULTRA THIN NORMAL 16S','12',NULL,'1128968',16.00,'167.78','245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001629','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(4436,'KOTEX ULTRA THIN NORMAL WITH WINGS 14S','12',NULL,'1128969',16.00,'194.6248','339.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001630','pcs','Inventory','VATABLE','0',NULL,0),(4437,'TRAMACET TABS 20S','10',NULL,'1129044',16.00,'36.765','63',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001631','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4438,'KOTEX PANTY LINERS 20s INDIVIDUALLY WRAPPED','12',NULL,'1129083',16.00,'126.15','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001632','pcs','Inventory','VATABLE','0',NULL,0),(4439,'FOSMOL SATCHET 3000MG 1S','10',NULL,'1129092',16.00,'1073','1785',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001633','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4440,'MOMATE NASAL SPRAY 50MCG 60D','10',NULL,'1129093',16.00,'725.35','1235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001634','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(4441,'SKINS CONDOMS ASSORTED 4S','6',NULL,'1129102',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001635','pcs','Inventory','VATABLE','0',NULL,0),(4442,'SKINS CONDOMS BUBBLEGUM 4S','6',NULL,'1129103',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001636','pcs','Inventory','VATABLE','0',NULL,0),(4443,'SKINS CONDOMS DOTS & RIBS 4S','6',NULL,'1129104',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001637','pcs','Inventory','VATABLE','0',NULL,0),(4444,'SKINS CONDOMS FLAVOURS 4S','6',NULL,'1129105',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001638','pcs','Inventory','VATABLE','0',NULL,0),(4445,'SKINS CONDOMS EXTRA LARGE 4S','6',NULL,'1129108',16.00,'260.0024','445.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001639','pcs','Inventory','VATABLE','0',NULL,0),(4446,'AVALIFE ADVANCE RESCUE CAPS 30S','6',NULL,'1129112',16.00,'1020','1735',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001640','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4447,'NEUROZAN PLUS OMEGA-3','6',NULL,'1129142',16.00,'2200','3675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001641','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4448,'TRIPLIXAM 10/2.5/10MG','11',NULL,'1129154',16.00,'2483.076','4150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001642','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4449,'GALVUS 50MG TABS 28S','11',NULL,'1129156',16.00,'85.911','149',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001643','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4450,'TRAJENTA 5MG 30S','11',NULL,'1129193',16.00,'145.093','254',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001644','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4451,'PREGNACARE LOTION 200ML','12',NULL,'1129259',16.00,'974.4','1665.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001645','pcs','Inventory','VATABLE','0',NULL,0),(4452,'DETTOL SOAP HERBAL 90GM','12',NULL,'1129282',16.00,'87.0116','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001646','pcs','Inventory','VATABLE','0',NULL,0),(4453,'DETTOL HANDWASH FRESH PUMP 200ML','12',NULL,'1129286',16.00,'326.6792','484.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001647','pcs','Inventory','VATABLE','0',NULL,0),(4454,'FERTILION F CAPS 30S','6',NULL,'1129295',16.00,'1480','2550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001648','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4455,'FAST AID ASSORTED CLEAR PLASTERS 24S','6',NULL,'1129296',16.00,'290','499.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001649','pcs','Inventory','VATABLE','0',NULL,0),(4456,'FAST AID FABRIC PLASTERS 24S','6',NULL,'1129395',16.00,'371.2','639.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001650','pcs','Inventory','VATABLE','0',NULL,0),(4457,'FAST AID KIDS PLASTERS 15S','6',NULL,'1129397',16.00,'278.4','479.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001651','pcs','Inventory','VATABLE','0',NULL,0),(4458,'VICKS BABY RUB 50G','6',NULL,'1129398',16.00,'550','955',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001652','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4459,'ELASTOPLAST STRIP 6.0CM X 10CM FABRIC','6',NULL,'1129431',16.00,'411.84','700',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001653','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4460,'OLBAS NASAL SPRAY 20ML','6',NULL,'1129441',16.00,'700','1205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001654','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4461,'BETTER YOU MAGNESIUM OIL SPRAY SLEEP 100ML','6',NULL,'1129452',16.00,'2076.4','3529.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001655','pcs','Inventory','VATABLE','0',NULL,0),(4462,'FABIA UPPER ARM BLOOD PRESSURE MACHINE','11',NULL,'1129457',16.00,'3357.76','5610',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001656','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(4463,'VICTOZA 6MG /M1 PRE-FILLED PEN','11',NULL,'1129465',16.00,'8950','13875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001657','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4464,'BETMIGA 50MG 30S','10',NULL,'1129471',16.00,'96.068','161',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001658','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4465,'H&B CALCIUM WITH VITAMIN D & K 60S','6',NULL,'1129481',16.00,'510','880',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001659','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4466,'H&B ULTRA MAN MULTIVITAMIN 100S','6',NULL,'1129491',16.00,'1600','2755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001660','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4467,'ACNES MENTHOLATUM VITAMIN CLEANSER 50G','9',NULL,'1129502',16.00,'368.3','620.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001661','pcs','Inventory','VATABLE','0',NULL,0),(4468,'EPIMOL-E CLEANSER BARSOAP 100G','9',NULL,'1129503',16.00,'439.9648','735.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001662','pcs','Inventory','VATABLE','0',NULL,0),(4469,'BENNETTS HAIR & BODY WASHá 400ML','12',NULL,'1129505',16.00,'961.92652','1569.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001663','pcs','Inventory','VATABLE','0',NULL,0),(4470,'PRINTED WHITE MILLINERY BAGS ‘ GOODLIFE’ 4 X 6','13',NULL,'1129508',16.00,'1.16','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001664','pcs','Inventory','VATABLE','0',NULL,0),(4471,'PRINTED WHITE MILLINERY BAGS ‘ GOODLIFE’ 6 X 7.5','13',NULL,'1129509',16.00,'1.914','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001665','pcs','Inventory','VATABLE','0',NULL,0),(4472,'BIOFOLIC DHA 100S','6',NULL,'1129510',16.00,'23.098','41',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001666','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4473,'OSMOLAX SOLUTION 100ML','6',NULL,'1129531',16.00,'262.5','455',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001667','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4474,'TEGRETOL SYRUP 100MG/5ML 150ML','11',NULL,'1129560',16.00,'817.7','1440',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001668','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4475,'VALUPAK VITAMIN C EFFER 1000MG 20S','6',NULL,'1129585',16.00,'530','920',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001669','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(4476,'PROFERTIL MEN TABS 60S','6',NULL,'1129602',16.00,'5781.2','9945',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001670','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4477,'CONTOUR PLUS STRIPS 25S','11',NULL,'1129890',16.00,'920','1585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001671','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(4478,'N/AID MAGNESIUM CITRATE 119MG 60S','6',NULL,'1129908',16.00,'1350','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001672','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4479,'RELCER TABLETS 30S','6',NULL,'1129909',16.00,'216','365',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001673','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4480,'TITANIA CUTICLE NIPPER STAINLESS','12',NULL,'1129943',16.00,'1164.9996','1855.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001674','pcs','Inventory','VATABLE','0',NULL,0),(4481,'TITANIA TITANIA BABY SCISSORS STAINLESS','12',NULL,'1129946',16.00,'469.99952','754.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001675','pcs','Inventory','VATABLE','0',NULL,0),(4482,'TITANIA 4 HAIR SECTION CLIPS + 8 HAIR RIBBONS','12',NULL,'1129952',16.00,'375.00016','605.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001676','pcs','Inventory','VATABLE','0',NULL,0),(4483,'PAPERMINTS 18 CAPSULES','12',NULL,'1129980',16.00,'118.1112','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,21.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001677','pcs','Inventory','VATABLE','0',NULL,0),(4484,'PAPERMINTS 40 COOL CAPS','12',NULL,'1129981',16.00,'226.2','449.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001678','pcs','Inventory','VATABLE','0',NULL,0),(4485,'CONTOUR PLUS STRIPS 50S','11',NULL,'1129986',16.00,'1600','2755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001679','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(4486,'DENMAN ELASTIC BANDS BLACK LARGE 4MM - 18PC -71014D','12',NULL,'1130008',16.00,'339.3','584.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001680','pcs','Inventory','VATABLE','0',NULL,0),(4487,'REPLENISH CAPS 30S','6',NULL,'1130027',16.00,'1666.8','2870',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001681','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4488,'CREVIL GERMANY FEMININE INTIMATE 100ML','12',NULL,'1130031',16.00,'567.936','919.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001682','pcs','Inventory','VATABLE','0',NULL,0),(4489,'CREVIL GERMANY FEMININE INTIMATE 300ML','12',NULL,'1130032',16.00,'1114.18','1799.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001683','pcs','Inventory','VATABLE','0',NULL,0),(4490,'BENYLIN WET COUGH MENTHOL 100ML','6',NULL,'1130042',16.00,'449.1','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001684','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4491,'OPTIVE EYE GEL DROPS 10ML','6',NULL,'1130056',16.00,'1075','1850',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001685','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4492,'VITAHEALTH COD LIVER OIL 200ML','6',NULL,'1130058',16.00,'637.5','1060',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001686','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4493,'FLEMING 228MG/5ML SUSP 70ML','10',NULL,'1130079',16.00,'223.041','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001687','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(4494,'DURACELL LITHIUM 3V 2032 2S','12',NULL,'1130083',16.00,'235.596','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001688','pcs','Inventory','VATABLE','0',NULL,0),(4495,'JOHNSON\'S BABY S&SHINY 2-IN-1 SHAMP&COND 200ML','12',NULL,'1130122',16.00,'431.52','660.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001689','pcs','Inventory','VATABLE','0',NULL,0),(4496,'DOVE SOAP GO FRESH – FRESH TOUCH 100G','12',NULL,'1130158',16.00,'145.58','230.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001690','pcs','Inventory','VATABLE','0',NULL,0),(4497,'GLUCOPHAGE XR 1G 60S','11',NULL,'1130179',16.00,'12.667','22',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001691','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4498,'ALMAX FORTE SATCHETS 30S','6',NULL,'1130180',16.00,'26.2','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001692','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4499,'WELLTEEN HER PLUS','6',NULL,'1130235',16.00,'1088','1820',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001693','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4500,'UPERIO 100MG TABS 28S','11',NULL,'1130275',16.00,'98.925','187',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001694','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4501,'AVALIFE AVACARE COLON CARE 30S','6',NULL,'1130284',16.00,'1360','2315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001695','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4502,'COTIPRED EFF TABLET 20MG 20S','10',NULL,'1130286',16.00,'27.2','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001696','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(4503,'AZITHRAX 200MG/5ML SUSPENSION 30ML','10',NULL,'1130293',16.00,'401.38','675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001697','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4504,'AZITHRAX 200MG/5ML SUSPENSION 15ML','10',NULL,'1130295',16.00,'202.8','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001698','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4505,'SARU ORGANICS 3-IN-1 SHAMPOO 240 ML','12',NULL,'1130297',16.00,'464','744.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001699','pcs','Inventory','VATABLE','0',NULL,0),(4506,'SARU ORGANICS LEAVE-IN CONDITIONER 240 ML','12',NULL,'1130298',16.00,'638','1025.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001700','pcs','Inventory','VATABLE','0',NULL,0),(4507,'SARU ORGANICS DETANGLER CONDITIONER 240 ML','12',NULL,'1130301',16.00,'522','829.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001701','pcs','Inventory','VATABLE','0',NULL,0),(4508,'EPNONE 50MG TABS 30S','11',NULL,'1130456',16.00,'106.805','187',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001702','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4509,'STUDEX KIDS EARINGS TINY TIPS ASSORTED','9',NULL,'1130472',16.00,'449.9988','769.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001703','pcs','Inventory','VATABLE','0',NULL,0),(4510,'ARBITEL H 40/12.5MG TABS 30S','11',NULL,'1130478',16.00,'36.935','65',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001704','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4511,'NEBZMART S 10S','11',NULL,'1130502',16.00,'780','1365',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001705','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4512,'HARTEZE 10MG TABS 28s','11',NULL,'1130541',16.00,'45.12','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001706','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4513,'COLGATE BABY T/PASTE STRAWBERRY 50ML','12',NULL,'1130558',16.00,'169.215','264.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001707','pcs','Inventory','VATABLE','0',NULL,0),(4514,'COLGATE KIDS T/PASTE BUBBLE FRUIT 50ML','12',NULL,'1130559',16.00,'166.7094','260.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001708','pcs','Inventory','VATABLE','0',NULL,0),(4515,'GRAMOCEF-O 100MG/5ML 100ML','10',NULL,'1130565',16.00,'729.6','1220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001709','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4516,'SWISS HERBAL LOZENGES SAGE 12S','6',NULL,'1130593',16.00,'270','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001710','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4517,'LRP ANTHELIOS SUN LOTION SPF50+ 100ML','9',NULL,'1130600',16.00,'1902.27936','3064.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001711','pcs','Inventory','VATABLE','0',NULL,0),(4518,'FUN TIME CHERRY LUBE 75ML','6',NULL,'1130636',16.00,'348','629.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001712','pcs','Inventory','VATABLE','0',NULL,0),(4519,'FUN TIME ORIGINAL LUBE 75ML','6',NULL,'1130637',16.00,'348','629.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001713','pcs','Inventory','VATABLE','0',NULL,0),(4520,'FUN TIME STRAWBERRY LUBE 75ML','6',NULL,'1130638',16.00,'348','629.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001714','pcs','Inventory','VATABLE','0',NULL,0),(4521,'JARDIANCE 10MG TABS 30S','11',NULL,'1130655',16.00,'140.559','238',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001715','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4522,'NERVOPLEX TABS 10S','6',NULL,'1130712',16.00,'808.5432','1400.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001716','pcs','Inventory','VATABLE','0','0039.11.27',0),(4523,'XYKAA EXTEND 1000MG TABS 30S','6',NULL,'1130716',16.00,'20.4','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001717','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4524,'PRESARTAN 30S','11',NULL,'1130725',16.00,'8.443','16.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,34.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001718','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4525,'PRESARTAN H 28S','11',NULL,'1130733',16.00,'14.412','27.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001719','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4526,'PAPERMINTS BIG MERCHANDISING PLEXI - 4 SKUS','14',NULL,'1130912',16.00,'376.8608','675.01212',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001720','pcs','Inventory','VATABLE','0',NULL,0),(4527,'PULMOCEF 500MG 10S','10',NULL,'1130963',16.00,'22','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001721','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4528,'DIASTOP TABS 100S','6',NULL,'1131026',16.00,'3.58','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001722','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4529,'DUREX CONDOMS FETHERLITE FEEL THIN 12S','6',NULL,'1131030',16.00,'902.2596','1554.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001723','pcs','Inventory','VATABLE','0',NULL,0),(4530,'QUEST OAD INFANT MULTI LIQUID 150ML','6',NULL,'1131043',16.00,'525','880',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001724','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4531,'BROMOCRIPTIN 2.5MG 30S(CRIPTON)','10',NULL,'1131174',16.00,'29.216','49',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001725','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4532,'FASTUM GEL 20 GM','10',NULL,'1131232',16.00,'278.5','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001726','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4533,'MOMATE F CREAM 10GM','10',NULL,'1131239',16.00,'538.45','925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001727','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(4534,'TERBIN CREAM 15GM','10',NULL,'1131247',16.00,'255','435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001728','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4535,'BENNETTS NIPPLE CREAM LANOLIN FREE 30ML','12',NULL,'1131333',16.00,'547.8622','914.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001729','pcs','Inventory','VATABLE','0',NULL,0),(4536,'BENNETTS NIPPLE CREAM WITH LANOLIN 50ML','12',NULL,'1131334',16.00,'865.42844','1439.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001730','pcs','Inventory','VATABLE','0',NULL,0),(4537,'BENNETTS BABY BARSOAP 100G','9',NULL,'1131335',16.00,'499.64796','829.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001731','pcs','Inventory','VATABLE','0',NULL,0),(4538,'BENNETTS SALINE NOSE SPRAY KIT (ASPIRATOR)','12',NULL,'1131336',16.00,'743.4','1430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001732','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4539,'BENNETTS SALINE NOSE SPRAY 30ML','12',NULL,'1131337',16.00,'601.198','1150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001733','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4540,'JAMIESON OMEGA 3-6-9 1200MG SOFTGELS 200S','6',NULL,'1131345',16.00,'1719.00','2960',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001734','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4541,'JAMIESON MELATONIN 3MG CAPSULES 30S','6',NULL,'1131346',16.00,'846','1460',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001735','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4542,'JAMIESON MEGA CAL SOFT CHEWS (SWISS CHOCOLATE) 60S','6',NULL,'1131351',16.00,'1341.9','2310',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001736','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4543,'JAMIESON MULTI 100% COMPLETE MEN CAPLETS 90S','6',NULL,'1131357',16.00,'1775.95','3055',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001737','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4544,'CONACE-P TABS 30S','10',NULL,'1131372',16.00,'6.667','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,26.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001738','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4545,'CONOLEVO 500MG CAPS 10S','10',NULL,'1131374',16.00,'10','17',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001739','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4546,'DICLOCON MR TABS 30S','10',NULL,'1131377',16.00,'5','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,33.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001740','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4547,'CRECHE GUARD IMMUNE MULTIVITAMIN SYRUP 100ML','6',NULL,'1131484',16.00,'516','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001741','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4548,'SENSODYNE REPAIR & PROTECT WHITENING T/PASTE 75ML','12',NULL,'1131498',16.00,'444.7672','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001742','pcs','Inventory','VATABLE','0',NULL,0),(4549,'THARAKA PROPOLIS TINCTURE 15ML','6',NULL,'1131511',16.00,'696','1130.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001743','pcs','Inventory','VATABLE','0',NULL,0),(4550,'THARAKA JUST GARGLE OFF (50G)','6',NULL,'1131515',16.00,'232','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001744','pcs','Inventory','VATABLE','0',NULL,0),(4551,'LRP PURE VITAMIN C10 SERUM 30ml','9',NULL,'1131534',16.00,'4387.02372','7064.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001745','pcs','Inventory','VATABLE','0',NULL,0),(4552,'BIO-OIL DRY SKIN GEL 100ML','9',NULL,'1131537',16.00,'543.84976','944.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001746','pcs','Inventory','VATABLE','0',NULL,0),(4553,'BIO-OIL DRY SKIN GEL 200ML','9',NULL,'1131538',16.00,'908.84956','1554.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001747','pcs','Inventory','VATABLE','0',NULL,0),(4554,'N/AID VITAMIN C 1000MG LOW-ACID TABS 90S','6',NULL,'1131585',16.00,'1620','2755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001748','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(4555,'NAT C ESTER SATCHETS 1000MG 30S(LOW ACID)','6',NULL,'1131587',16.00,'1057.88','1770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001749','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(4556,'ZINCOS ZINC SULPHATE 20MG 100s','10',NULL,'1131593',16.00,'2.11','4.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001750','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4557,'ZYTEL CT 40/12.5 TABS 30S','11',NULL,'1131598',16.00,'44.00','80.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001751','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4558,'BIOGAIA GASTRUS TABLETS 30S','6',NULL,'1131608',16.00,'1332','2265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001752','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4559,'GLENCEE VITAMIN C EFFERVESCENT TABS 20S','6',NULL,'1131625',16.00,'495.01','845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001753','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(4560,'OLIGOCARE FORTE 20S','6',NULL,'1131759',16.00,'590','1015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001754','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4561,'DIABETONE TABS 30S','6',NULL,'1131763',16.00,'916','1530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001755','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4562,'PHARMATIMOL 0.5% EYE DROPS 5ML','10',NULL,'1131773',16.00,'198','335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001756','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4563,'WINNAPORE 8X15CM 20S','6',NULL,'1131833',16.00,'30','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001757','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4564,'EUGICA HERBAL COLD & FLU SATCHEST 10S','6',NULL,'1131923',16.00,'521','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001758','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(4565,'EUGICA HERBAL THROAT SPRAY 10ML','6',NULL,'1131924',16.00,'715.14','1224.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001759','pcs','Inventory','VATABLE','0',NULL,0),(4566,'JAMIESON ZINC 25MG 100 S','6',NULL,'1131944',16.00,'719.1','1240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001760','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4567,'IMMUNACE EXTRA 30S','6',NULL,'1131955',16.00,'1397','2335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001761','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4568,'BIOFREEZE KENYA 59ML TUBE','6',NULL,'1131957',16.00,'315','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001762','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4569,'SIMILAC GOLD 2 HMO 400G','6',NULL,'1132091',16.00,'1144.0036','1720.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001763','pcs','Inventory','VATABLE','0',NULL,0),(4570,'APTAMIL BABY MILK 400GM 3','6',NULL,'1132096',16.00,'1121.80004','1494.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001764','pcs','Inventory','VATABLE','0',NULL,0),(4571,'MENTHODEX VAPOUR RUB 50GMS','6',NULL,'1132102',16.00,'465','795',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001765','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4572,'ANDOLEX-C WILD BERRY PASTILLES 20S','6',NULL,'1132104',16.00,'793.44','1364.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001766','pcs','Inventory','VATABLE','0',NULL,0),(4573,'TELMI AM 80/10MG TABS 30S','11',NULL,'1132137',16.00,'72.274','127',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001767','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4574,'WELLBABY MULTIVITAMIN DROPS 30ML','6',NULL,'1132179',16.00,'898.2','1670',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001768','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4575,'LRP LIPIKAR BAUME AP+M 200ml','12',NULL,'1132181',16.00,'1901.04396','2889.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001769','pcs','Inventory','VATABLE','0',NULL,0),(4576,'GLENCEE KIDS VITAMIN C EFFERVESCENT TABS 20S','6',NULL,'1132189',16.00,'364.99','630',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001770','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(4577,'GOODLIFE CLEAR LIQUID SOAP FRAGRANCE FREE 500ML','12',NULL,'1132325',16.00,'161.24','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001771','pcs','Inventory','VATABLE','0',NULL,0),(4578,'GOODLIFE COCONUT LIQUID SOAP 500ML','12',NULL,'1132326',16.00,'161.24','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001772','pcs','Inventory','VATABLE','0',NULL,0),(4579,'GOODLIFE LEMONGRASS SURFACE ALCOHOL DISINFECTANT 500ML','12',NULL,'1132327',16.00,'307.4','639.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001773','pcs','Inventory','VATABLE','0',NULL,0),(4580,'GOODLIFE L/GRASS N& EUCALYPTUS INSECT REPELLENT TUBE 50ML','9',NULL,'1132329',16.00,'48.314','198.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001774','pcs','Inventory','VATABLE','0',NULL,0),(4581,'ACNES MOISTURISING CREAM 75G WITH SPF 27+','9',NULL,'1132338',16.00,'466.32','769.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001775','pcs','Inventory','VATABLE','0',NULL,0),(4582,'N/AID COLLAGEN BEAUTY FORMULA CAPS 90S','6',NULL,'1132345',16.00,'2835','4820',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001776','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4583,'NEBICARD 5MG TABLETS 50S','11',NULL,'1132397',16.00,'29.878','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,50.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001777','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4584,'LAZOPE CAPS 30MG 10S','11',NULL,'1132422',16.00,'10.5','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001778','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4585,'SCOTTS HEIGHT CHART','6',NULL,'1132452',16.00,'0.01','0.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001779','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4586,'INDERAL 10MG TABS 50S','11',NULL,'1132454',16.00,'11.136','21',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001780','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4587,'MAGIC DROPS HYALURONIC ACID SERUM 30ML','9',NULL,'1132459',16.00,'1856','3085.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001781','pcs','Inventory','VATABLE','0',NULL,0),(4588,'SWISS ENERGY OMEGA 3.6.9 OPTIMUM 30S','6',NULL,'1132485',16.00,'1305','2245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001782','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4589,'SWISS NO HANGOVER EFF TABS 20S','6',NULL,'1132488',16.00,'675','1165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001783','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4590,'FLINSTSHINE GUMMIES-VITAMIN C+ZINC 30S','6',NULL,'1132490',16.00,'710','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001784','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(4591,'FLINSTSHINE GUMMIES- MULTI VITAMINS 30S','6',NULL,'1132491',16.00,'710','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001785','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4592,'QUEST ZINC CITRATE 30MG + COPPER TABS 30S','6',NULL,'1132493',16.00,'520','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001786','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4593,'PREDILONE 5MG TABS 100S','11',NULL,'1132499',16.00,'0.735','2',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,90.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001787','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(4594,'LRP LIPIKAR CLEANSING BAR 150g- Twin Pack','12',NULL,'1132504',16.00,'532.5096','859.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001788','pcs','Inventory','VATABLE','0',NULL,0),(4595,'DICONAZOL 200MG 100S','10',NULL,'1132584',16.00,'8.74','15.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001789','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4596,'DYNAMO DELAY MALE DESENSITIZER SPRAY 22.2ML','6',NULL,'1132621',16.00,'1415.5','2510',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001790','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4597,'SURGICAL SPIRIT 500ML','6',NULL,'1132704',16.00,'90','155',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001791','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4598,'AZIX 200MG/5ML SUSP 37.5ML','10',NULL,'1132790',16.00,'425','735',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001792','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4599,'COEMPAKEN 12.5/1000MG TABS 28S','11',NULL,'1133117',16.00,'58.018','106',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001793','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4600,'COEMPAKEN 5/500MG TABS 28S','11',NULL,'1133146',16.00,'42.857','78',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001794','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4601,'COEMPAKEN 5/1000MG TABS 28S','11',NULL,'1133147',16.00,'48.214','88',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001795','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4602,'EMPAKEN 25MG TABS 14S','11',NULL,'1133149',16.00,'80.357','147',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001796','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4603,'TRICOHIST EXPECTORANT 60ML','6',NULL,'1133281',16.00,'80.00','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001797','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4604,'NIVEA SHOWER WATER LILY FEMALE 250ML','12',NULL,'1133315',16.00,'391.66704','545.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001798','pcs','Inventory','VATABLE','0',NULL,0),(4605,'CERAVE HYDRATING CLEANSER 236ML','9',NULL,'1133354',16.00,'896.0536','1499.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001799','pcs','Inventory','VATABLE','0',NULL,0),(4606,'CERAVE HYDRATING CLEANSER 473ML','9',NULL,'1133355',16.00,'1326.14448','2215.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001800','pcs','Inventory','VATABLE','0',NULL,0),(4607,'CERAVE FOAM CLEANSER 236ML','9',NULL,'1133356',16.00,'1111.09092','1859.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001801','pcs','Inventory','VATABLE','0',NULL,0),(4608,'CERAVE FOAM CLEANSER 473ML','9',NULL,'1133357',16.00,'1634.38432','2684.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001802','pcs','Inventory','VATABLE','0',NULL,0),(4609,'CERAVE DAILY MOISTURIZING LOTION 236ML','9',NULL,'1133358',16.00,'1254.45996','2059.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001803','pcs','Inventory','VATABLE','0',NULL,0),(4610,'CERAVE DAILY MOISTURIZING LOTION 473ML','9',NULL,'1133359',16.00,'1856.59856','3030.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001804','pcs','Inventory','VATABLE','0',NULL,0),(4611,'CERAVE MOISTURIZING CREAM 340G','9',NULL,'1133360',16.00,'1641.5624','2680.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001805','pcs','Inventory','VATABLE','0',NULL,0),(4612,'CERAVE MOISTURIZING CREAM 454G','9',NULL,'1133361',16.00,'1999.9676','3219.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001806','pcs','Inventory','VATABLE','0',NULL,0),(4613,'STEROPLAST DRESSING PADS STERILE 5s ( 5cm X 5cm )','6',NULL,'1133389',16.00,'120','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001807','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4614,'STEROPLAST CLEAR & FABRIC PLASTERS 64s','6',NULL,'1133390',16.00,'220','370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001808','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(4615,'STEROPLAST HOT/COLD PACK','6',NULL,'1133391',16.00,'870','1464.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001809','pcs','Inventory','VATABLE','0',NULL,0),(4616,'EMEFILM 4MG STRIPS 5S','10',NULL,'1133403',16.00,'73.08','128',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001810','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4617,'FOSFOMAX GRANULES 3GM 1S','10',NULL,'1133409',16.00,'1250.375','2180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001811','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(4618,'HELIOCARE 360º GEL OIL-FREE SPF50 50ML','9',NULL,'1133411',16.00,'3897.6','6475.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001812','pcs','Inventory','VATABLE','0',NULL,0),(4619,'HELIOCARE 360º INVISIBLE SPRAY SPF50+ 200ML','9',NULL,'1133412',16.00,'3654','6070.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001813','pcs','Inventory','VATABLE','0',NULL,0),(4620,'HELIOCARE 360º MD AK FLUID SPF100+ 50ML','9',NULL,'1133413',16.00,'4222.4','7009.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001814','pcs','Inventory','VATABLE','0',NULL,0),(4621,'HELIOCARE 360º MINERAL TOLERANCE FLUID SPF50 50ML','9',NULL,'1133414',16.00,'3897.6','6475.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001815','pcs','Inventory','VATABLE','0',NULL,0),(4622,'HELIOCARE 360º PEDIATRICS SPF50 PISTOLA 250ML','12',NULL,'1133415',16.00,'4141.2','6874.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001816','pcs','Inventory','VATABLE','0',NULL,0),(4623,'HELIOCARE 360º PEDIATRICS MINERAL SPF50+ 50ML','12',NULL,'1133416',16.00,'3897.6','6475.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001817','pcs','Inventory','VATABLE','0',NULL,0),(4624,'HELIOCARE 360º GEL SPF50+ 50ML','9',NULL,'1133417',16.00,'3897.6','6475.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001818','pcs','Inventory','VATABLE','0',NULL,0),(4625,'ENDOCARE TENSAGE FIRMING NOURISHING CREAM 50ML','9',NULL,'1133418',16.00,'4547.2','7550.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001819','pcs','Inventory','VATABLE','0',NULL,0),(4626,'ENDOCARE RADIANCE EYE COUNTOUR DARK CIRCLES 15ML','9',NULL,'1133419',16.00,'3735.2','6205.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001820','pcs','Inventory','VATABLE','0',NULL,0),(4627,'BIRETIX PURIFYING OILY SKIN CLEANSER 200ML','9',NULL,'1133420',16.00,'2273.6','3774.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001821','pcs','Inventory','VATABLE','0',NULL,0),(4628,'BIRETIX DUO GEL ANT-BLEMISH GEL 30ML','9',NULL,'1133421',16.00,'2436','4045.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001822','pcs','Inventory','VATABLE','0',NULL,0),(4629,'ACNES SOAP 80G','9',NULL,'1133450',16.00,'183.86','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001823','pcs','Inventory','VATABLE','0',NULL,0),(4630,'DUZELA 30MG CAPS 30S','10',NULL,'1133536',16.00,'58.33','102',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001824','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4631,'HT ONE PLUSFINE PEN G32*4MM NEEDLES 100S','11',NULL,'1133547',16.00,'16.408','30',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001825','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(4632,'RECARE HCG PREGNANCY CASSETTE TEST 1S','6',NULL,'1133562',16.00,'100','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001826','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(4633,'RECARE HCG PREGNANCY MID STREAM TEST 1S','6',NULL,'1133563',16.00,'220','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001827','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(4634,'RECARE LH OVULATION CASSETTE TEST 1S','6',NULL,'1133564',16.00,'225','490',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001828','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(4635,'ACCUFAST HCG PREGNANCY TEST MID STREAM 1S','6',NULL,'1133565',16.00,'220','450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001829','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(4636,'ACCUFAST HCG PREGNANCY TEST WEEKLY 1S','6',NULL,'1133566',16.00,'400','690',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001830','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(4637,'ACCUFAST LH OVULATION TEST MID STREAM 1S','6',NULL,'1133567',16.00,'220','500',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001831','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(4638,'LRP EFFACLAR DUO(+) 40ML & 15ml Moisturiser Gift','9',NULL,'1133575',16.00,'1314.9528','2119.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001832','pcs','Inventory','VATABLE','0',NULL,0),(4639,'LRP EFFACLAR DUO(+) SPF30 40ML & 15ml Moisturiser Gift','9',NULL,'1133576',16.00,'1704.0168','2744.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001833','pcs','Inventory','VATABLE','0',NULL,0),(4640,'MICROLIFE BP MONITOR EASY B2','11',NULL,'1133577',16.00,'4132.5','7275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001834','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(4641,'MOZZISHIELD NO DEET INSECT REPELLENT 100ML','9',NULL,'1133647',16.00,'359.6','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001835','pcs','Inventory','VATABLE','0',NULL,0),(4642,'ACTION TABLETS 110S','6',NULL,'1133880',16.00,'3.191','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001836','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4643,'ENTERONORM VIALS 10S','6',NULL,'1133907',16.00,'41.31','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001837','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4644,'WEBBER NATURALS MELATONIN 3MG QUICK DISSOLVING TABS 90S','6',NULL,'1133967',16.00,'1350','2300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001838','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4645,'WEBBER NATURALS MELATONIN 5MG TIME RELEASE TABS 60S','6',NULL,'1133968',16.00,'1215','2100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001839','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(4646,'SWISS HERBAL LOZENGES EUCALYPTUS & MENTHOL 20S','6',NULL,'1133986',16.00,'297.00','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001840','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4647,'SWISS HERBAL LOZENGES SAGE 20S','6',NULL,'1133987',16.00,'297','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001841','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4648,'SWISS HERBAL LOZENGES HONEY 20S','6',NULL,'1133988',16.00,'297','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001842','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(4649,'ACNES CREAMY WASH TRIO ACTIV 50G','9',NULL,'1133994',16.00,'323.35','539.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001843','pcs','Inventory','VATABLE','0',NULL,0),(4650,'ACNES C10 PURE VIT C SERUM 15ML','9',NULL,'1133997',16.00,'1654.45','2729.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001844','pcs','Inventory','VATABLE','0',NULL,0),(4651,'ACNES 3 IN 1 SET -WASH TONE S/GEL','9',NULL,'1133998',16.00,'1154.2812','1919.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001845','pcs','Inventory','VATABLE','0',NULL,0),(4652,'ACNES VITAMIN BOOST CLEANSER 50G','9',NULL,'1133999',16.00,'368.3','614.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001846','pcs','Inventory','VATABLE','0',NULL,0),(4653,'ACNES SCAR CARE DARK SPOTS 12G','9',NULL,'1134000',16.00,'343.36','569.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001847','pcs','Inventory','VATABLE','0',NULL,0),(4654,'BACTIGRAS 10CM*10CM 1s','6',NULL,'1134059',16.00,'100','200',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','','5001848','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5055,'ABIDEC MULTIVITAMIN SYRUP WITH OMEGA 3 150ML','6','1','1100060',16.00,'1250','2125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000949','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5056,'ACCU-CHEK ACTIVE MACHINE','11','1','1100075',16.00,'1.16','2364.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000950','pcs','Inventory','VATABLE','0',NULL,0),(5057,'ACCU-CHEK SOFTCLIX LANCETS 200S','11','1','1100081',16.00,'7.5','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000951','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(5058,'ACLOTAS SR 200MG TABS 50S','10','1','1100089',16.00,'29.9','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,50.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000952','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5059,'ACTION TABLETS 100S','6','1','1100113',16.00,'3.13','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,76.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000953','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5060,'ACYCLOVIR 5% CREAM 10G','10','1','1100140',16.00,'1200.00','1995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000954','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5061,'ACYCLOVIR DENK 5% CREAM 7GM','10','1','1100142',16.00,'669.5','1140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000955','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5062,'ADDYZOA CAPSULES','10','1','1100160',16.00,'803','1385',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000956','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(5063,'ADOL 250MG SUPPOSITORIES 10S','10','1','1100165',16.00,'29.23','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000957','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5064,'ADVANTAN CREAM 15GM','10','1','1100175',16.00,'752','1250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000958','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5065,'ADVANTAN OINTMENT 15GM','10','1','1100176',16.00,'752','1250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000959','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5066,'AERO CHAMBER WITH INFANT MUSK','11','1','1100187',16.00,'3927','6560',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000960','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(5067,'AERO CHAMBER WITH CHILD MASK','11','1','1100188',16.00,'3927','6560',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000961','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(5068,'ALDOMET 500MG TABS 30S','11','1','1100228',16.00,'29.1','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000962','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5069,'ALLOPURINOL 100MG TABS 28S','11','1','1100252',16.00,'4.286','8',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000963','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5070,'ALWAYS ULTRA EXTRA LONG 7S','12','1','1100318',16.00,'92.03','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000964','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(5071,'ALZOLAM 0.25MG TABS 100S','10','1','1100319',16.00,'17.25','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,46.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000965','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5072,'AMARYL 1MG TABS 30S','11','1','1100325',16.00,'18.333','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000966','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5073,'AMARYL 4MG TABS 30S','11','1','1100327',16.00,'69.642','123',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000967','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5074,'AMARYL M 2/500MG TABS 30S','11','1','1100328',16.00,'35.64','63',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000968','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5075,'AMITRIPTYLINE 25MG TABS 100S','10','1','1100346',16.00,'1.77','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,54.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000969','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5076,'AMITRIPTYLINE 25MG TABS 28S','10','1','1100347',16.00,'3.214','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000970','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5077,'AMLOCIP NB 5/5MG TABS 30S','11','1','1100348',16.00,'36.9','65',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000971','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5078,'AMLOSUN 5MG TABS 30S','11','1','1100350',16.00,'21.667','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000972','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5079,'AMOXIL FORTE SYRUP 250MG/5ML 100ML','10','1','1100360',16.00,'307','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000973','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(5080,'AMPICLOX NEONATAL DROPS 8ML','10','1','1100370',16.00,'156.565','260',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000974','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(5081,'ANTHISAN CREAM 25GM','6','1','1100405',16.00,'510','885',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000975','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5082,'APROVEL 150MG TABS 28S','11','1','1100425',16.00,'68.707','121',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000976','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5083,'APROVEL 300MG TABS 28S','11','1','1100426',16.00,'88.856','157',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000977','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5084,'ARICEPT 5MG TABS 28S','11','1','1100457',16.00,'95.343','167',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000978','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5085,'AQUEOUS CREAM 500GM','10','1','1100458',16.00,'162.4','294.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000979','pcs','Inventory','VATABLE','0','0039.11.28',0),(5086,'ASTYMIN FORTE CAPSULES','6','1','1100553',16.00,'562.1','970',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000980','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5087,'ASTYMIN LIQUID 200ML','6','1','1100555',16.00,'263','455',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000981','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5088,'ATENOLOL 50MG TABS 28S','11','1','1100570',16.00,'6.79','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,56.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000982','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5089,'ATRIPLA TABS 30S','11','1','1100583',16.00,'8631.06','12434',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000983','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5090,'AUGMENTIN ES SUSP 642.9MG/5ML - 100ML','10','1','1100601',16.00,'1525','2550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000984','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(5091,'AXE BRAND UNIVERSAL OIL 3ML','6','1','1100686',16.00,'95','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000985','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5092,'AZATHIOPRINE 50MG TABS 56S','11','1','1100691',16.00,'7.857','14',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000986','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5093,'AZTOR 40MG 50S','11','1','1100703',16.00,'50','88',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000987','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5094,'BACH RESCUE NIGHT 10ML','6','1','1100811',16.00,'1200','2040',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000988','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5095,'BACH RESCUE REMEDY 10ML','6','1','1100813',16.00,'1300','2210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000989','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5096,'BALLET MOSQUITO REPELLANT P/JELLY 100GM','9','1','1100927',16.00,'126.00036','164.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000990','pcs','Inventory','VATABLE','0',NULL,0),(5097,'BAZUKA VERRUCA GEL 5GM','6','1','1100976',16.00,'780','1345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000991','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5098,'BELL MOUSTACHE SCISSORS','12','1','1101022',16.00,'133.4','285.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000992','pcs','Inventory','VATABLE','0',NULL,0),(5099,'BENADRYL ONE A DAY RELIEF TABLETS 7S','6','1','1101039',16.00,'665','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000993','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(5100,'BENDURIC 5MG TABS 100S','11','1','1101044',16.00,'2.21','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,142.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000994','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5101,'BENYLIN 4 FLU TABS 24S','6','1','1101046',16.00,'760','1300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000995','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(5102,'BENZHEXOL 5MG TABS','10','1','1101059',16.00,'2.222','3.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000996','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5103,'BETADINE ANTISEPTIC SOLN 500ML','6','1','1101082',16.00,'872.784','1484.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000997','pcs','Inventory','VATABLE','0',NULL,0),(5104,'BETALOC ZOK 100MG TABS 30S','11','1','1101097',16.00,'35.44','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000998','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5105,'BETALOC ZOK 25MG TABS 14S','11','1','1101098',16.00,'34.434','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5000999','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5106,'BETAPYN TABS 18S','10','1','1101101',16.00,'18.385','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,46.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001000','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5107,'BETASERC 8MG TABS 100S','10','1','1101104',16.00,'29.64','50',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,92.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001001','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5108,'A.VOGEL ECHINAFORCE 50ML','6','1','1101168',16.00,'1001','1705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001002','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(5109,'BIO OIL 125ML','9','1','1101209',16.00,'865.05028','1430.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001003','pcs','Inventory','VATABLE','0',NULL,0),(5110,'BIO OIL 60ML','9','1','1101211',16.00,'521.95012','874.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001004','pcs','Inventory','VATABLE','0',NULL,0),(5111,'BI-PRETERAX 5/1.25MG TABS 30S','11','1','1101220',16.00,'58.35','104',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001005','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5112,'BISPANOL SYRUP 100ML','6','1','1101229',16.00,'144.9','255',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001006','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5113,'BISPANOL SYRUP 60ML','6','1','1101230',16.00,'99.75','175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001007','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5114,'BONJELA ADULT 16YEARS + 15G','6','1','1101346',16.00,'680','1160',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001008','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5115,'BONJELA TEETHING GEL 15GM','6','1','1101349',16.00,'585','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001009','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5116,'BRALIX TABS 100S','10','1','1101481',16.00,'6.48','11.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,76.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001010','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5117,'BRANULA G18','10','1','1101482',16.00,'30','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001011','pcs','Inventory','EXEMPTED','0','0039.11.32',0),(5118,'BRANULA G24','10','1','1101485',16.00,'13','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001012','pcs','Inventory','EXEMPTED','0','0039.11.32',0),(5119,'BRO ZEDEX SYRUP 100ML','6','1','1101505',16.00,'165','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001013','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5120,'BROZELIN EXPECTORANT 100ML','6','1','1101521',16.00,'228.96','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001014','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5121,'BRUSTAN SUSPENSION 100ML','6','1','1101551',16.00,'215','370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001015','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5122,'BUDECORT 100MCG INHALER','11','1','1101583',16.00,'841.02','1430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001016','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5123,'CABALIN 25MG CAPS 24S','11','1','1101710',16.00,'21.085','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,72.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001017','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5124,'CALCIMAX SYRUP 150ML','6','1','1101750',16.00,'680','1170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001018','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5125,'CALCINOL 1000 WITH D3 SACHETS 10S','6','1','1101751',16.00,'56.5','98',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001019','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5126,'CALCIUM C 1000 SANDOZ 10S','6','1','1101753',16.00,'530.1','915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001020','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(5127,'CALPOL SALINE NASAL SPRAY 15ML','6','1','1101768',16.00,'630','1085',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001021','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5128,'CALPOL SIXPLUS SUSPENSION S/FREE 80ML','6','1','1101770',16.00,'660','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001022','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5129,'CANDID V 6 PESSARIES','10','1','1101825',16.00,'336.42','570',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001023','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5130,'CANDITRAL 100MG CAP 12S','10','1','1101829',16.00,'134.39','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001024','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5131,'CARBIMAZOLE 5MG TABS 100S','11','1','1101867',16.00,'2.185','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001025','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(5132,'CARDINOL 50MG TABS 28S','11','1','1101875',16.00,'4.429','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,56.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001026','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5133,'CARDIVAS 6.25MG TABS 30S','11','1','1101882',16.00,'25.167','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001027','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5134,'CARTIL SUPER FORTE CAPSULES 30S','6','1','1101918',16.00,'44.098','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001028','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5135,'CATAFLAM DROPS 0.5MG/ML 15ML','10','1','1101926',16.00,'587.25','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001029','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5136,'CAUSTIC PENCIL 40%','10','1','1101930',16.00,'208.8','354.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001030','pcs','Inventory','VATABLE','0','0039.11.28',0),(5137,'CELCOXX 200MG CAPS 50S','10','1','1101951',16.00,'32.2','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001031','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5138,'CELESTAMINE TABS 30S','10','1','1101953',16.00,'14.437','24',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001032','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5139,'CENTRUM ADVANCE 30S','6','1','1101966',16.00,'900','1505',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001033','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5140,'CENTRUM ADVANCE 50+ 30S','6','1','1101967',16.00,'850','1420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001034','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5141,'CENTRUM ADVANCE 50+ 60S','6','1','1101968',16.00,'1550','2590',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001035','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5142,'CENTRUM KIDS 30S','6','1','1101975',16.00,'1050','1755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001036','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5143,'CENTRUM PERFORMANCE 30S','6','1','1101976',16.00,'1140','1905',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001037','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5144,'CERAZETTE 75MCG TABS 3S','10','1','1101988',16.00,'693.333','1160',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001038','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(5145,'CETAMOL SYRUP 60ML','6','1','1101999',16.00,'40','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001039','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5146,'CILOXAN EYE DROPS','10','1','1102127',16.00,'379.6','635',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001040','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5147,'CIPROBAY 500MG TABS 10S','10','1','1102135',16.00,'297.068','494',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001041','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5148,'CIPROBAY HC OTIC DROPS 10ML','10','1','1102137',16.00,'1147.5','1975',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001042','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5149,'CITAL SYRUP','6','1','1102148',16.00,'240.30','415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001043','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5150,'CITROSODA ORIGINAL 120GM','6','1','1102157',16.00,'660.4','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001044','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5151,'CITROSODA ORIGINAL 60G','6','1','1102158',16.00,'446.95','775',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001045','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5152,'CLARITEK SUSP 50ML','10','1','1102183',16.00,'434.7','750',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001046','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5153,'CLARITEK 250MG TABS 10S','10','1','1102184',16.00,'80.5','134',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001047','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5154,'CLAVULIN 1GM TABS 14S','10','1','1102205',16.00,'109.143','183',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,15.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001048','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(5155,'CO-APROVEL 300/12.5MG TABLETS 28S','11','1','1102301',16.00,'97.929','171',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001049','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5156,'COLGATE DENTAL FLOSS','12','1','1102341',16.00,'417.6','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001050','pcs','Inventory','VATABLE','0',NULL,0),(5157,'COMBIGAN EYE DROPS 5ML','10','1','1102422',16.00,'1535','2550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001051','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5158,'COMPEED COLD SORE PATCH 15S','6','1','1102431',16.00,'850','1465',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001052','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5159,'CONTEMPO CONDOMS BAREBACK 3S','6','1','1102443',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001053','pcs','Inventory','VATABLE','0',NULL,0),(5160,'CONTEMPO CONDOMS KING SIZE 3S','6','1','1102446',16.00,'212.5','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001054','pcs','Inventory','VATABLE','0',NULL,0),(5161,'CONTEMPO CONDOMS POWER PLAY 3S','6','1','1102449',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001055','pcs','Inventory','VATABLE','0',NULL,0),(5162,'CONTEMPO CONDOMS WET N WILD 3S','6','1','1102451',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001056','pcs','Inventory','VATABLE','0',NULL,0),(5163,'CONTIFLO XL CAPS 400MCG 30S','11','1','1102453',16.00,'17.667','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,26.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001057','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5164,'CONTOUR PLUS GLUCOMETER','11','1','1102454',16.00,'500','1000',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001058','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(5165,'CONTRACTUBEX OINTMENT 20GM','10','1','1102458',16.00,'552.5','915',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001059','pcs','Inventory','EXEMPTED','0','0039.11.73',0),(5166,'CORONATION HOT WATER BOTTLE L/S ( RIBBED )','6','1','1102492',16.00,'1044','1774.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001060','pcs','Inventory','VATABLE','0',NULL,0),(5167,'COVERAM 5/10MG TABS 30S','11','1','1102551',16.00,'58.594','103',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001061','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5168,'COVONIA THROAT SPRAY 30ML','6','1','1102554',16.00,'1300','2305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001062','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5169,'COZAAR 50MG TABS 28S','11','1','1102560',16.00,'107.143','188',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001063','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5170,'COZEPAM 5MG TABS 100S','10','1','1102561',16.00,'1.94','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001064','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5171,'CRAFE AWAY MINI FILTERS','6','1','1102563',16.00,'156.6','270.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001065','pcs','Inventory','VATABLE','0',NULL,0),(5172,'CREPE BANDAGE 2IN (5CM) ELASTOLITE','6','1','1102573',16.00,'14','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001066','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5173,'CRESTOR 5MG TABS 28S','11','1','1102580',16.00,'53.71','89',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001067','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5174,'CRESTOR 10MG TABS 28S','11','1','1102581',16.00,'57.496','95',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,38.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001068','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5175,'CRESTOR 20MG TABS 28S','11','1','1102582',16.00,'82.874','137',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001069','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5176,'DAKTACORT CREAM 15GM','10','1','1102671',16.00,'541.8','925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001070','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5177,'DAKTARIN ORAL GEL 40GM','10','1','1102673',16.00,'813.6','1345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001071','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5178,'DAONIL 5MG 100S','11','1','1102680',16.00,'15.92','28.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,90.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001072','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5179,'DAZIT 5MG TABS 30S','10','1','1102710',16.00,'40','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,15.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001073','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5180,'DAZOLIC 500MG TABS 100S','10','1','1102711',16.00,'20.1','34.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001074','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5181,'DEEP FREEZE GEL 100G','6','1','1102717',16.00,'505','845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001075','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5182,'DELASED CHESTY NON DROWSY 100ML','6','1','1102733',16.00,'94.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001076','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5183,'DELASED PAEDIATRIC 100ML','6','1','1102736',16.00,'94.5','165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001077','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5184,'DENTINOX TEETHING GEL 15GM','6','1','1102761',16.00,'400','685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001078','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5185,'DENTOGEL GEL 10G','6','1','1102763',16.00,'152','265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001079','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5186,'DERMOVATE CREAM 25GM','10','1','1102790',16.00,'529.38','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001080','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5187,'DETTOL SOAP COOL 90G','12','1','1102813',16.00,'87.0116','134.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001081','pcs','Inventory','VATABLE','0',NULL,0),(5188,'DEXTRACIN EYE DROPS','10','1','1102827',16.00,'175','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001082','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5189,'DEXTROSE 5% 500ML','10','1','1102831',16.00,'60','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001083','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5190,'DIFLUCAN 200MG CAPS 7S','10','1','1102881',16.00,'538.171','910',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001084','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5191,'DIGITAL THERMOMETER','6','1','1102884',16.00,'105','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001085','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(5192,'DIGOXIN 125MCG TABLETS 28S','11','1','1102888',16.00,'8.571','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001086','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5193,'DIOVAN 160MG CAPS 28S','11','1','1102933',16.00,'72.928','129',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001087','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5194,'DIPROGENTA CREAM 15GM','10','1','1102937',16.00,'616.23','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001088','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5195,'DIPROGENTA OINTMENT 15GM','10','1','1102938',16.00,'616.23','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001089','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5196,'DIPROSALIC OINTMENT 10GM','10','1','1102940',16.00,'433.73','735',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001090','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5197,'DIPROSONE CREAM 30GM','10','1','1102943',16.00,'709.71','1210',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001091','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5198,'DIPROSONE OINTMENT 30GM','10','1','1102945',16.00,'709.71','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001092','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5199,'DISPOSABLE SYRINGES 10ML','10','1','1102956',16.00,'6.8','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,68.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001093','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(5200,'DISPOSABLE SYRINGES 2ML','10','1','1102958',16.00,'3.9','7.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001094','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(5201,'DISZINC DISPERSIBLE TABLETS 30S','6','1','1102967',16.00,'7.251','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001095','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5202,'DIURIDE 10MG TABS 20S','11','1','1102969',16.00,'28.613','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001096','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5203,'DIURIDE 20MG TABS 20S','11','1','1102970',16.00,'47.513','84',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001097','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5204,'DOBESIL 500MG TABS 50S','11','1','1102983',16.00,'42.912','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,70.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001098','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5205,'DUOFILM SOLUTION','10','1','1103169',16.00,'620','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001099','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5206,'DURACELL BATTERIES AAA 2S.','12','1','1103184',16.00,'258.4016','394.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001100','pcs','Inventory','VATABLE','0',NULL,0),(5207,'DUREX PLAY (TINGLE) LUBRICATING GEL 50ML','6','1','1103212',16.00,'586.4612','1004.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001101','pcs','Inventory','VATABLE','0',NULL,0),(5208,'DUSPATALIN 135MG TABS 50S','10','1','1103219',16.00,'27.79','47',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,50.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001102','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5209,'EBASTEL 5MG/5ML SYRUP 120ML','10','1','1103403',16.00,'1006.00','1725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001103','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5210,'EFFERALGAN 500MG TABLETS 16S','6','1','1103423',16.00,'15.41','27',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,32.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001104','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5211,'ELASTOPLAST WATER RESISTANT PLASTERS 10S','6','1','1103442',16.00,'324.8','560.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001105','pcs','Inventory','VATABLE','0',NULL,0),(5212,'EMANZEN FORTE 10MG TABS 30S','10','1','1103798',16.00,'33.962','57',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,35.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001106','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5213,'EMLA CREAM 5%','10','1','1103808',16.00,'550','935',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001107','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5214,'ENAT CREAM 50G','9','1','1103823',16.00,'927.895','1595',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001108','pcs','Inventory','VATABLE','0',NULL,0),(5215,'ENCORATE CHRONO 500MG TABS 30S','11','1','1103832',16.00,'40','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,16.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001109','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5216,'ENCORATE CHRONO 200MG TABS 100S','11','1','1103833',16.00,'12','22',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001110','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5217,'EPANUTIN 50MG CAPS 28S','11','1','1103872',16.00,'13.719','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001111','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5218,'EPIMAX ALL PURPOSE MOISTURISER 400GM','9','1','1103883',16.00,'1566','2680.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001112','pcs','Inventory','VATABLE','0',NULL,0),(5219,'EPSOM SALT 100GM','6','1','1103889',16.00,'70','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001113','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5220,'EROVITA OVULATION TEST KIT','6','1','1103918',16.00,'1276','2194.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001114','pcs','Inventory','VATABLE','0',NULL,0),(5221,'ESTOVON TABLETS 30S','6','1','1103963',16.00,'32.188','56',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001115','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5222,'EUMOVATE CREAM 25GM','10','1','1103988',16.00,'519','875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001116','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5223,'EVANOVA CAPS 20S','10','1','1104002',16.00,'514.3','875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001117','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(5224,'EXOCIN EYE & EAR DROPS 5ML','10','1','1104031',16.00,'583','995',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001118','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5225,'FASTUM GEL 30GM','10','1','1104132',16.00,'450','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001119','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5226,'FASTUM GEL DISPENSER 100GM','10','1','1104134',16.00,'1000','1720',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001120','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5227,'FEMFRESH DAILY INTIMATE WASH 250ML','12','1','1104151',16.00,'854.5604','1300.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001121','pcs','Inventory','VATABLE','0',NULL,0),(5228,'FERROGLOBIN SYRUP 200ML','6','1','1104185',16.00,'432','805',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001122','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5229,'FINOSIN TABS 30S','11','1','1104198',16.00,'50.67','91',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,37.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001123','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5230,'0','6','1','1104244',16.00,'145','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001124','pcs','Inventory','VATABLE','0',NULL,0),(5231,'FLAMOX 500MG CAPS 20s','10','1','1104272',16.00,'19.15','32',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001125','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(5232,'FLAMOX SUSP 250MG/5ML 100ML','10','1','1104273',16.00,'340','565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001126','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(5233,'FLAREX EYE DROPS 5ML','10','1','1104274',16.00,'357','605',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001127','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5234,'FLEET ENEMA 133ML','10','1','1104277',16.00,'505','845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001128','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5235,'FLIXONASE NASAL SPRAY','10','1','1104293',16.00,'2574','4355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001129','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5236,'FLUCOZAL 150MG CAPS','10','1','1104381',16.00,'132.54','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001130','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5237,'FLUCOZAL 50MG CAPS 14S','10','1','1104383',16.00,'49.826','84',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001131','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5238,'FML NEO EYE DROPS 5ML','10','1','1104401',16.00,'476','800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001132','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5239,'FRANOL TABLETS 100S','11','1','1104429',16.00,'1.71','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,80.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001133','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5240,'FREEFLEX FORTE TABLETS 30S','6','1','1104431',16.00,'46.802','81',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001134','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5241,'FUCIDIN CREAM 15GM','10','1','1104463',16.00,'340','570',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001135','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5242,'FUTSIL SOLUTION','6','1','1104509',16.00,'216.75','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001136','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5243,'FYBOGEL LEMON 10S','6','1','1104510',16.00,'590','1015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001137','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5244,'FYBOGEL ORANGE 10S','6','1','1104512',16.00,'710','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001138','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5245,'GABANERVE TABS 10S','11','1','1104623',16.00,'85.905','147',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001139','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5246,'GABBRORAL 250MG TABS 12S','10','1','1104626',16.00,'49.33','83',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001140','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5247,'GENTIAN VIOLET 100ML','6','1','1104779',16.00,'33','65',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001141','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5248,'GERATHERM DIGITAL THERMOMETER(RAPID)','6','1','1104793',16.00,'1240','2135',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001142','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(5249,'GILLETTE BLUE 2 DISPOSABLE RAZORS 1S','12','1','1104809',16.00,'50.6688','80.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001143','pcs','Inventory','VATABLE','0',NULL,0),(5250,'GILLETTE MACH3 CARTRIDGE 2S','12','1','1104829',16.00,'522','799.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001144','pcs','Inventory','VATABLE','0',NULL,0),(5251,'GILLETTE MACH3 TURBO RAZOR 2 UP','12','1','1104837',16.00,'925.1058','1409.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001145','pcs','Inventory','VATABLE','0',NULL,0),(5252,'GLEVONIX 500MG TABS 10S','10','1','1104886',16.00,'94.429','158',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001146','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5253,'GLUCORED FORTE 5/500MG TABS 50S','11','1','1104916',16.00,'13.26','25',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,50.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001147','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5254,'GLYCERINE ADULT SUPPOSITORIES 4G 12S','6','1','1104934',16.00,'29.583','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001148','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5255,'GLYCERINE CHILD SUPPOSITORIES 2G','6','1','1104935',16.00,'33.3','57',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,21.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001149','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5256,'GRABACIN - 3 TULLE 10CM X 10CM','6','1','1104971',16.00,'63.8','110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001150','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5257,'GRISEOFULVIN 125MG TABS 100S','10','1','1104985',16.00,'2.55','5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001151','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5258,'H/AID CHILDRENS MULTIVITAMINS 30S','6','1','1105056',16.00,'805.35','1395',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001152','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5259,'H/AID CHILDRENS MULTIVITAMINS 90S','6','1','1105057',16.00,'1495.65','2575',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001153','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5260,'H/AID EVENING PRIMROSE 1000MG 30S','6','1','1105075',16.00,'982.35','1690',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001154','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5261,'H/AID OMEGA 3-6-9 60S','6','1','1105128',16.00,'1778.85','3060',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001155','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5262,'H/AID OSTEOFLEX GLU+CHOND 90S','6','1','1105131',16.00,'3070.95','5285',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001156','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5263,'H/AID VIT C 1500MG PR 30S','6','1','1105175',16.00,'867.3','1505',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001157','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(5264,'H/AID VIT E 400 IU 30S','6','1','1105187',16.00,'1123.95','1945',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001158','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5265,'H/AID VIT E 400IU 60S','6','1','1105188',16.00,'2000.1','3445',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001159','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5266,'HUMALOG MIX 50/50 CARTRIDGE 5S','11','1','1105480',16.00,'1121','1873',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001160','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(5267,'HUMALOG MIX25 3ML 5S','11','1','1105482',16.00,'963.4','1609',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001161','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(5268,'HUMULIN 70/30 3ML CATRIDGES 5S','11','1','1105486',16.00,'655.4','1095',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001162','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(5269,'HYDRALAZINE 25MG TABS 100S','11','1','1105497',16.00,'4.69','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,112.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001163','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5270,'HYDREA 500MG CAPS 100S','11','1','1105498',16.00,'30','53',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001164','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5271,'HYLO-COMOD EYE DROPS 10ML','10','1','1105513',16.00,'1119.54','1860',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001165','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5272,'I.V. GIVING SET','10','1','1105533',16.00,'11','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001166','pcs','Inventory','EXEMPTED','0','0039.11.93',0),(5273,'IBUMEX SUSP 100ML','6','1','1105538',16.00,'70.35','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001167','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5274,'IMIGRAN 100MG TABS 6S','10','1','1105555',16.00,'965.667','1594',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001168','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5275,'IMMUNACE TABLET 30S','6','1','1105560',16.00,'915','1530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001169','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5276,'IMODIUM PLUS TABLETS 6S','6','1','1105562',16.00,'550','920',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001170','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5277,'IMURAN 50MG TABS 100S','11','1','1105578',16.00,'52.1','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,150.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001171','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5278,'INFACOL LIQUID','6','1','1105586',16.00,'627','1075',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001172','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5279,'IRIFONE GEL 50GM','10','1','1105690',16.00,'408.5','705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001173','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5280,'ISOFLAV CR ISOFLAVONES CAPSULES','10','1','1105705',16.00,'51','88',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001174','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5281,'IVERMECTIN 6MG TABS','10','1','1105734',16.00,'376.2','640',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001175','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5282,'JOHNSONS BABY OIL 125ML','12','1','1105799',16.00,'328.28','505.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001176','pcs','Inventory','VATABLE','0',NULL,0),(5283,'JOINTACE (GLUCOSAMINE & CHONDROITIN) * 30S','6','1','1105851',16.00,'1157','1935',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001177','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5284,'JOINTACE (GLUCOSAMINE & OMEGA 3) *30S','6','1','1105852',16.00,'867.8','1450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001178','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5285,'KENALOG IN ORABASE','10','1','1105928',16.00,'1110','1980',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001179','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5286,'KETOPLUS SHAMPOO','10','1','1105949',16.00,'996.266','1644.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001180','pcs','Inventory','VATABLE','0',NULL,0),(5287,'KLACID 500MG TABLETS 14S','10','1','1105980',16.00,'157.14','271',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001181','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5288,'KLENZIT C GEL 15GMS','10','1','1105994',16.00,'820.58','1375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001182','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5289,'KLENZIT GEL 15GMS','10','1','1105995',16.00,'556.25','925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001183','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5290,'KOLZINE 500MCG TABS 100S','11','1','1106004',16.00,'5.48','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,9.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001184','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5291,'KONTAB 50MG TABS 50S','10','1','1106007',16.00,'21.9','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001185','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5292,'KOTEX TAMPONS MINI 16S','12','1','1106021',16.00,'237.317','355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001186','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(5293,'LAMICTAL 100MG TABS 30S','11','1','1106240',16.00,'171.967','296',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001187','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5294,'LANOLIN CREAM 50GMS','12','1','1106265',16.00,'139.2','219.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001188','pcs','Inventory','VATABLE','0',NULL,0),(5295,'LANTUS SOLOSTAR PREFILLED PENS 3ML 5S','11','1','1106271',16.00,'1263.518','2098',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001189','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(5296,'LEMSIP MAX ALL IN ONE CAPS 16S','6','1','1106320',16.00,'640','1520',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001190','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(5297,'LEMSIP MAX COLD &FLU SATCHETS B/CURRANT 10S','6','1','1106328',16.00,'57','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001191','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(5298,'LEMSIP MAX DAY & NIGHT CAPSULES 16S','6','1','1106331',16.00,'680','1215',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001192','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(5299,'LIOTON GEL 30GM','10','1','1106406',16.00,'600','1015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001193','pcs','Inventory','EXEMPTED','0','0039.11.73',0),(5300,'LIPIGET 10MG TABS 10S','11','1','1106435',16.00,'25.2','44',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001194','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5301,'LIPITOR 40MG TABS 30S','11','1','1106443',16.00,'78.558','136',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001195','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5302,'LIPITOR 80MG TABS 30S','11','1','1106444',16.00,'78.558','136',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,16.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001196','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5303,'LIPSORE 5% CREAM 2GM','10','1','1106449',16.00,'280','475',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001197','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5304,'LONART 180/480MG ORAL SUSP 60ML','10','1','1106498',16.00,'216','365',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001198','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(5305,'LOOBID 200/500MG TABS 10S','10','1','1106499',16.00,'22','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001199','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5306,'LOTEM SYRUP 100ML','6','1','1106535',16.00,'314.81','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001200','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5307,'LOTRIDERM CREAM 30GM','10','1','1106537',16.00,'1750','2925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001201','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5308,'LUMIGAN EYE DROPS 0.03% 3ML','11','1','1106569',16.00,'1841','3245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001202','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5309,'LYSOFLAM TABS 30S','10','1','1106610',16.00,'13.333','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,15.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001203','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5310,'M2-TONE TABLETS 20S','10','1','1106642',16.00,'25.72','40',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,180.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001204','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(5311,'MALANIL ADULT 250/100MG TABLETS','10','1','1106725',16.00,'200.25','317',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001205','pcs','Inventory','EXEMPTED','0','0039.11.83',0),(5312,'MEDIGEL GEL','6','1','1106837',16.00,'405','705',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001206','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5313,'MEDITROL 0.25MCG CAPS 30S','10','1','1106854',16.00,'42.088','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001207','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5314,'MEDIVEN OINTMENT 15gm','10','1','1106856',16.00,'44.1','74',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001208','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5315,'MEDROL 4MG TABS 30S','10','1','1106864',16.00,'18.4','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001209','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5316,'METCOS 10MG TABS 100S','10','1','1106917',16.00,'1.53','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,98.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001210','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5317,'METFORMIN DENK 500MG TABS 100S','11','1','1106922',16.00,'5.023','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001211','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5318,'MGR-10mg TABS 30S','10','1','1106939',16.00,'35.897','60',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001212','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5319,'MICARDIS 40MG TABS 28S','11','1','1106941',16.00,'79.576','136',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001213','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5320,'MICARDIS 80MG TABS 28S','11','1','1106943',16.00,'90.924','158',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001214','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5321,'MICRONEMA 20ML','10','1','1106951',16.00,'126','225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001215','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5322,'MICROFINE G30 (8MM) PEN NEEDLES 100S','11','1','1106952',16.00,'21.6','38.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001216','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(5323,'MICROFINE G31 (5MM) PEN NEEDLES 100S','11','1','1106953',16.00,'21.6','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001217','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(5324,'MICROFINE INSULIN SYRINGES *0.5ML','11','1','1106954',16.00,'12.85','22.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001218','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(5325,'MICROPORE TAPE 1 INCH','6','1','1106966',16.00,'153','264',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001219','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5326,'MIRTAZ 15MG TABS 30S','11','1','1107017',16.00,'61.667','112',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,33.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001220','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5327,'MIRTAZ 30MG TABS 30S','11','1','1107018',16.00,'82.667','150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001221','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5328,'MIXTARD 30/70 INSULIN 10ML','11','1','1107034',16.00,'508','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001222','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(5329,'MOBIC 7.5MG TABS 30S','10','1','1107088',16.00,'46.319','78',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001223','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5330,'NIVEA LIP BALM ORIGINAL CARE 4.8GM','9','1','1107221',16.00,'212.19996','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001224','pcs','Inventory','VATABLE','0',NULL,0),(5331,'NIVEA LIP BALM FOR MEN 4.8G','9','1','1107222',16.00,'258.33316','375.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001225','pcs','Inventory','VATABLE','0',NULL,0),(5332,'NIVEA BODY LOTION (NOURISHING) DRY SKIN 200ML','9','1','1107233',16.00,'262.49988','364.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001226','pcs','Inventory','VATABLE','0',NULL,0),(5333,'NIVEA SUNTAN LOTION SPF30 200ML','9','1','1107263',16.00,'1516.66636','2170.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001227','pcs','Inventory','VATABLE','0',NULL,0),(5334,'NIVEA SUNTAN KIDS LOTION SPF50 200ML','12','1','1107267',16.00,'1820.83344','2605.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001228','pcs','Inventory','VATABLE','0',NULL,0),(5335,'NACET PLATINUM WHITE 20 X 5S','12','1','1107287',16.00,'43.71228','70.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001229','pcs','Inventory','VATABLE','0',NULL,0),(5336,'NAN 1','6','1','1107343',16.00,'1027.76','1460.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001230','pcs','Inventory','VATABLE','0',NULL,0),(5337,'NAN 2','6','1','1107345',16.00,'1027.76','1460.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001231','pcs','Inventory','VATABLE','0',NULL,0),(5338,'NAN 3','6','1','1107347',16.00,'1027.76','1460.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001232','pcs','Inventory','VATABLE','0',NULL,0),(5339,'NEBICARD 2.5MG TABS 30S','11','1','1107430',16.00,'17.001','30',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,56.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001233','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5340,'NEOPEPTINE DROPS 15ML','6','1','1107466',16.00,'300','415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001234','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5341,'NETAZOX DT 200MG 6S','10','1','1107476',16.00,'203.9','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001235','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5342,'NEUROCARE CAPS 30S','10','1','1107483',16.00,'41.499','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001236','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5343,'NEURONTIN 100MG CAPS 100S','11','1','1107484',16.00,'24.387','43',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,70.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001237','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5344,'NEURONTIN 300MG CAPS 100S','11','1','1107485',16.00,'55.87','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,70.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001238','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5345,'NEURORUBINE INJECTION 5S','10','1','1107487',16.00,'237','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001239','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5346,'NICORETTE ICY WHITE GUM 4MG','6','1','1107621',16.00,'335.71','565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,21.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001240','pcs','Inventory','EXEMPTED','0',NULL,0),(5347,'NICORETTE FRESHMINT GUM 2MG','6','1','1107629',16.00,'285.714','478',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001241','pcs','Inventory','EXEMPTED','0',NULL,0),(5348,'NITREST 10MG TABS 30S','10','1','1107659',16.00,'26.667','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001242','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5349,'NITROFURANTON 100MG TABLETS','10','1','1107660',16.00,'1.89','3.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,33.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001243','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5350,'NO SPA 40MG TABS 100S','10','1','1107671',16.00,'8.976','15',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,90.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001244','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5351,'NORMAX 400MG TABS 10S','10','1','1107686',16.00,'11.11','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,44.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001245','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5352,'NOW BIOTIN 1000MG CAPS 100S','6','1','1107760',16.00,'900','1505',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001246','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5353,'NOW VITAMIN A SOFTGEL 100S','6','1','1107785',16.00,'820','1370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001247','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5354,'NOW VITAMIN D3 1000 IU 180S','6','1','1107789',16.00,'985','1645',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001248','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5355,'NOW VITAMIN D3 5000IU 120S','6','1','1107790',16.00,'1360','2275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001249','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5356,'NUROFEN CAPLETS 200MG 12S','6','1','1107799',16.00,'410','685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001250','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5357,'NUROFEN EXPRESS LIQ CAPS 400MG 10S','6','1','1107808',16.00,'765','1280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001251','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5358,'NUROFEN EXPRESS LIQUID CAPS 200MG 10S','6','1','1107809',16.00,'495','830',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001252','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5359,'NUROFEN MAX MIGRAINE 12S','6','1','1107814',16.00,'740','1240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001253','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5360,'NUROFEN SUSPENSION ORANGE 100ML','6','1','1107821',16.00,'570','955',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001254','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5361,'NUROFEN TABLETS 200MG 12S','6','1','1107823',16.00,'370','620',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001255','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5362,'NYTOL HERBAL TABLETS 30S','6','1','1107846',16.00,'915','1540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001256','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5363,'NYTOL ONE-A-NIGHT 50MG 20S','6','1','1107847',16.00,'940','1570',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001257','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5364,'OLBAS INHALER','6','1','1107922',16.00,'360','620',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001258','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5365,'OLD SPICE DEODORANT STICK ORIGINAL 85G','12','1','1107935',16.00,'1160','1880.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001259','pcs','Inventory','VATABLE','0',NULL,0),(5366,'OLFEN 50MG TABS 20S','10','1','1107949',16.00,'38.85','66',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001260','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5367,'OPSITE DRESSING 15.5CMX8.5CM 20S','6','1','1108034',16.00,'205','353',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,18.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001261','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5368,'OPSITE SPRAY 100ML','6','1','1108037',16.00,'900','1550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001262','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5369,'OPTIVE EYE DROPS 10ML','6','1','1108052',16.00,'844','1455',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001263','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5370,'OPTREX EYE WASH 100ML','6','1','1108053',16.00,'740','1245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001264','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5371,'OPTREX BLOODSHOT EYE DROPS','6','1','1108055',16.00,'735','1235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001265','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5372,'OPTREX BRIGHTENING DROPS 10ML','6','1','1108056',16.00,'725','1220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001266','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5373,'OPTREX DRY EYES LUBRICATING DROPS','6','1','1108060',16.00,'685','1155',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001267','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5374,'OPTREX ITCHY EYE DROPS 10ML','6','1','1108064',16.00,'680','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001268','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5375,'OPTREX SORE EYE DROPS 10ML','6','1','1108068',16.00,'750','1415',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001269','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5376,'ORAL B DENTAL FLOSS UNWAXED ORIGINAL 50M','12','1','1108086',16.00,'208.8','319.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001270','pcs','Inventory','VATABLE','0',NULL,0),(5377,'OSTEOCARE LIQUID','6','1','1108186',16.00,'623','1045',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001271','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5378,'OSTEOCERIN TABS 10S','10','1','1108190',16.00,'62','117',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001272','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5379,'OTRIVIN ADULT DROPS 10ML','6','1','1108196',16.00,'431','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001273','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5380,'OTRIVIN PAED DROPS 10ML','6','1','1108197',16.00,'431','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001274','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5381,'OVACARE TABS 30S','6','1','1108199',16.00,'1226','2110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001275','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5382,'PARA DENK SUPP 250MG 10S','10','1','1108327',16.00,'21.245','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001276','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5383,'PARLODEL 2.5MG TABS 30S','10','1','1108343',16.00,'46.667','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,16.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001277','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5384,'PEGLEC POWDER 137.15GMS','10','1','1108378',16.00,'1148.1','1895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001278','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5385,'PENAMOX 500MG CAPS 500S','10','1','1108381',16.00,'10.974','18.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001279','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(5386,'PERFECTIL CAPS 30S','6','1','1108404',16.00,'1190.00','1990',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001280','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5387,'PHENOBARBITONE 30MG TABS 100S','10','1','1108434',16.00,'1.534','3',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,165.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001281','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5388,'PIOGLUC 30MG TABS 28S','11','1','1108567',16.00,'12.75','23',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001282','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5389,'PLENDIL 5MG TABS 30S','11','1','1108617',16.00,'52.83','93',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,26.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001283','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5390,'POLYGYNAX PESSARIES 12S','10','1','1108648',16.00,'57.083','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001284','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5391,'POWERGESIC MR TABLETS 100S','10','1','1108704',16.00,'17','28.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,86.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001285','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5392,'PRAZITEL 600MG TABS 100S','10','1','1108706',16.00,'21.165','35.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,61.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001286','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5393,'PRED FORTE EYE DROPS','10','1','1108710',16.00,'737','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001287','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5394,'PREGNACARE FOR CONCEPTION','6','1','1108721',16.00,'906','1515',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001288','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5395,'PRIMAPORE AWD 15CM*8CM 20S','6','1','1108761',16.00,'50','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001289','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5396,'PRIMAPORE AWD 20CM*10CM 20S','6','1','1108762',16.00,'85','147',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,15.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001290','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5397,'PROCTOSEDYL SUPPOSITORIES 12S','10','1','1108795',16.00,'106.25','177',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001291','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5398,'PRODEP 20MG TABS 60S','11','1','1108797',16.00,'27.475','49',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001292','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5399,'PROLOC D 10/10mg TABS 30S','11','1','1108801',16.00,'41.767','74',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,25.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001293','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5400,'HISTARGAN SYRUP 100ML','10','1','1108806',16.00,'36','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001294','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5401,'PURECAL CHEWABLE TABS 30S','6','1','1108889',16.00,'725','1250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001295','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5402,'PYRALVEX SOLUTION 10ML','6','1','1108897',16.00,'445','770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001296','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5403,'QUITIPIN 100MG TABS 30S','11','1','1108979',16.00,'44.803','82',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001297','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5404,'RECARTIX FORTE 30S','6','1','1109027',16.00,'35.115','62',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001298','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5405,'REFRESH TEARS 15MLS','6','1','1109044',16.00,'664','1145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001299','pcs','Inventory','EXEMPTED','0',NULL,0),(5406,'RENNIE PEPPERMINT 48S','6','1','1109084',16.00,'225','390',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001300','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5407,'REPACE-H 50/12.5MG TABS 30S','11','1','1109097',16.00,'26.917','47',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001301','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5408,'RHINATHIOL ADULT SYRUP 125ML','6','1','1109251',16.00,'326.688','550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001302','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5409,'RISDONE 1MG TABS 50S','10','1','1109291',16.00,'43.7','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001303','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5410,'SAFERON SYRUP 150ML','6','1','1109381',16.00,'336.42','580',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001304','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5411,'SAFERON PLUS TABLETS 30S','6','1','1109382',16.00,'23.85','42',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001305','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5412,'SAFETY PINS ASSORTED','12','1','1109383',16.00,'14.5','27.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001306','pcs','Inventory','VATABLE','0',NULL,0),(5413,'SAVLON ANTISEPTIC CREAM 15G','6','1','1109436',16.00,'217','380',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001307','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5414,'SAVLON ANTISEPTIC LIQUID 250ML','6','1','1109440',16.00,'344.52','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001308','pcs','Inventory','VATABLE','0',NULL,0),(5415,'SCOTTS EMULSION REGULAR 100ML','6','1','1109527',16.00,'324.169','535',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001309','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5416,'SEBAMED BABY CHILDRENS SHAMPOO','12','1','1109543',16.00,'730.1852','1245.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001310','pcs','Inventory','VATABLE','0',NULL,0),(5417,'SEBAMED BABY CLEANSING BAR','9','1','1109544',16.00,'603.2','1034.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001311','pcs','Inventory','VATABLE','0',NULL,0),(5418,'SEBAMED BABY LOTION 100ML','12','1','1109549',16.00,'754','1285.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001312','pcs','Inventory','VATABLE','0',NULL,0),(5419,'SEBAMED FEMININE INTIMATE WASH 200ML','12','1','1109573',16.00,'1218','2074.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001313','pcs','Inventory','VATABLE','0',NULL,0),(5420,'SENOKOT TABLETS 20S','6','1','1109615',16.00,'460','800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001314','pcs','Inventory','EXEMPTED','0','0039.11.82',0),(5421,'SEPGARD GEL 1% 15GM','10','1','1109641',16.00,'193.375','325',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001315','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5422,'SEPTRIN SUSPENSION 100ML','10','1','1109648',16.00,'324.931','550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001316','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5423,'SEPTRIN SUSPENSION 50ML','10','1','1109649',16.00,'209.738','355',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001317','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5424,'SERETIDE A/HALER 50MCG/500MCG','11','1','1109652',16.00,'1971','3395',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001318','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5425,'SERETIDE A/HALER 50MCG/250MCG','11','1','1109654',16.00,'1520','2615',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001319','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5426,'SICCAPOS GEL 10GM','10','1','1109717',16.00,'547','945',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001320','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5427,'SIMPLE REGENARATION A/R NIGHT CREAM 50ML','9','1','1109792',16.00,'1344.44','2034.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001321','pcs','Inventory','VATABLE','0',NULL,0),(5428,'SIMVASTATIN 20MG TABS 28S','11','1','1109830',16.00,'3.393','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001322','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5429,'SIMVASTATIN 40MG TABS 28S','11','1','1109831',16.00,'5.107','10',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001323','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5430,'SINAREST VAPOCAPS 10S','6','1','1109832',16.00,'29.501','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001324','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5431,'SKILAX DROPS 15ML','6','1','1109853',16.00,'450','775',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001325','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5432,'SOLIFEN 5MG TABS 10S','11','1','1109975',16.00,'105','189',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001326','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5433,'SPASMOMEN 40MG TABS 30S','10','1','1110013',16.00,'29.067','49',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001327','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5434,'SPIRIVA 18MCG CAPS REFILLS','11','1','1110021',16.00,'5254.5','8780',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001328','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5435,'SPIRONOLACTONE 25MG 28S','11','1','1110023',16.00,'11.071','21',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001329','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5436,'STUDEX EAR GEL','9','1','1110088',16.00,'149.9996','260.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001330','pcs','Inventory','VATABLE','0',NULL,0),(5437,'STILNOX 10MG TABS 14S','10','1','1110126',16.00,'34.205','58',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001331','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5438,'STREPSILS STRAWBERRY S/FREE 36S','6','1','1110141',16.00,'750','1275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001332','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5439,'STREPSILS ORIGINAL 16S','6','1','1110154',16.00,'435','740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001333','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5440,'STREPSILS SORE THROAT & BLOCKED NOSE 36S','6','1','1110158',16.00,'815','1430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001334','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5441,'STUD SPRAY','6','1','1110161',16.00,'760','1310',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001335','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5442,'STUGERON 25MG TABS 50S','10','1','1110162',16.00,'10.656','19',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001336','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5443,'SUCRAFIL O GEL SUCRALFATE AND OXETACAINE SUSPENSION 100','6','1','1110167',16.00,'233.18','410',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001337','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5444,'SUDAFED DECONGESANT TABLETS 12S','6','1','1110169',16.00,'500','860',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001338','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5445,'SURESIGN PREGNANCY MIDSTREAM TWIN','6','1','1110249',16.00,'580','1000.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001339','pcs','Inventory','VATABLE','0',NULL,0),(5446,'SURESIGN PREGNANCY STRIPS 2S','6','1','1110250',16.00,'208.8','360.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001340','pcs','Inventory','VATABLE','0',NULL,0),(5447,'SURGICAL SPIRIT 5 LITRE','6','1','1110257',16.00,'750','1290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001341','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5448,'SUSTEN 400MG CAPS 30S','10','1','1110262',16.00,'95','158',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001342','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(5449,'TACROVATE FORTE OINT 0.1%','10','1','1110313',16.00,'1170.9','2015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001343','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5450,'TACROVATE OINTMENT 0.03% 10GRAMS','10','1','1110314',16.00,'774.3','1295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001344','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5451,'TAVANIC 500MG TABS 5S','10','1','1110346',16.00,'375.48','630',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001345','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5452,'TEGRETOL 200MG TABS 50S','11','1','1110377',16.00,'6.664','12',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,43.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001346','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5453,'TELTAS 40MG TABS 30S','11','1','1110383',16.00,'46.667','83',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001347','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5454,'TIGER BALM RED 19.4G','6','1','1110468',16.00,'270','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001348','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5455,'TOPAMAX 50MG TABS 60S','10','1','1110579',16.00,'64.995','110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001349','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5456,'TRANSAMIN 500MG TABS 20S','11','1','1110604',16.00,'34','62',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001350','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5457,'TRANSPORE TAPE 1 INCH','10','1','1110605',16.00,'183.667','305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001351','pcs','Inventory','EXEMPTED','0','0039.11.32',0),(5458,'TRAVOGEN CREAM 20GM','10','1','1110618',16.00,'509.015','845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001352','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5459,'TRIMETABOL SYRUP 150ML','6','1','1110638',16.00,'621','1070',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001353','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5460,'TRUVADA 200/300MG TABS 30S','11','1','1110682',16.00,'4508','7530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001354','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5461,'TX-MF TABLETS 30S','11','1','1110711',16.00,'49.009','86',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001355','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5462,'ULGICID SUSPENSION MINT 200ML','6','1','1110823',16.00,'278.67','485',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001356','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5463,'URINE BAG WITH OUTLET 2L','10','1','1110869',16.00,'27','51',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001357','pcs','Inventory','EXEMPTED','0','0132.11.00',0),(5464,'VENIZ XR 75MG CAPS 30S','10','1','1111067',16.00,'58','100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001358','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5465,'VENTAB XL 75MG TABS 30S','10','1','1111068',16.00,'68','109',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001359','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5466,'VERMOX SYRUP 30ML','6','1','1111081',16.00,'505.8','865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001360','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5467,'VIAGRA 50MG TABS 4S','11','1','1111092',16.00,'659.118','1200',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001361','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5468,'VICKS VAPOUR RUB 50GM U.K','6','1','1111113',16.00,'480','830',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001362','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5469,'VICKS VAPOUR RUB 50GM LOCAL','6','1','1111115',16.00,'685','1140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001363','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5470,'VISIONACE TABLETS 30S','6','1','1111140',16.00,'889','1485',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001364','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5471,'VITACAP CAPSULES 50S','6','1','1111147',16.00,'20.738','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,70.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001365','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5472,'VOLTAREN EMULGEL 20GM','6','1','1111291',16.00,'439.527','755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001366','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5473,'WARFARIN 1MG TABLETS 28S','11','1','1111309',16.00,'2.321','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001367','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5474,'WAXSOL EAR DROPS 10ML','6','1','1111339',16.00,'500','865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001368','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5475,'WELLMAN CONCEPTION','6','1','1111349',16.00,'979','1635',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001369','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5476,'WELLWOMAN CAPSULES 30S','6','1','1111353',16.00,'1008','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001370','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5477,'WOW GAUZE BANDAGES 2 12S','6','1','1111398',16.00,'3.083','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001371','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5478,'WOW GAUZE BANDAGES 4 12S','6','1','1111400',16.00,'11.667','22',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001372','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5479,'XARELTO 10MG TABS 10S','11','1','1111420',16.00,'125.37','220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001373','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5480,'YASMIN TABS 21S','10','1','1111447',16.00,'739','1150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001374','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(5481,'ZAMUR 500MG TABLETS 10S','10','1','1111462',16.00,'149.776','249',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001375','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5482,'ZECUF LOZENGES HERBAL LEMON','6','1','1111475',16.00,'176.32','304.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001376','pcs','Inventory','VATABLE','0',NULL,0),(5483,'ZEDCAL SUSP 200ML','6','1','1111481',16.00,'354','615',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001377','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5484,'ZEDCAL TABLETS 30S','6','1','1111482',16.00,'325','565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001378','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5485,'ZERODOL 100MG TABS 30S','10','1','1111492',16.00,'15.219','27',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001379','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5486,'ZESTRIL 5MG TABS 28S','11','1','1111496',16.00,'15.934','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001380','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5487,'ZINC & CASTOR OIL CREAM 225G - Bells','12','1','1111506',16.00,'649.6','1145.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001381','pcs','Inventory','VATABLE','0',NULL,0),(5488,'ZINC OXIDE PLASTER 2 (5CM*4M)','6','1','1111510',16.00,'55','100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001382','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5489,'ZINC OXIDE PLASTER 3 (7.5CM*4M)','6','1','1111511',16.00,'70','125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001383','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5490,'ZINNAT SUSP. 125MG/5ML 100ML','10','1','1111532',16.00,'1083.6','1855',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001384','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5491,'ZITHROMAX 200MG/5ML SUSP - 15ML','10','1','1111541',16.00,'612.8','1030',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001385','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5492,'ZOSERT 50MG TABS 30S','11','1','1111563',16.00,'53.333','97',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001386','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5493,'ZYLORIC 100MG TABS 100S','11','1','1111573',16.00,'25','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,91.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001387','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5494,'OCULAST EYE DROPS 15ML','10','1','1111665',16.00,'276','465',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001388','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5495,'SURESIGN BLOOD PRESSURE MONITOR','11','1','1111686',16.00,'3478.84','5810.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001389','pcs','Inventory','VATABLE','0',NULL,0),(5496,'TELMI H 40/12.5MG TABS 30S','11','1','1111687',16.00,'42.633','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001390','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5497,'ZECUF LOZENGES HERBAL ORIGINAL','6','1','1111695',16.00,'176.32','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001391','pcs','Inventory','VATABLE','0',NULL,0),(5498,'COMBIZOL TABS 10S','10','1','1111713',16.00,'39.16','66',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001392','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5499,'TELMI 40MG TABLET 30S','11','1','1111821',16.00,'36.9','65',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001393','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5500,'NEBILONG-H 5MG/12.5MG TABS 30S','11','1','1111851',16.00,'44.392','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,19.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001394','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5501,'QUADRAJEL GEL 15GM','10','1','1111898',16.00,'231.4','400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001395','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5502,'HITORAL CREAM 20GM','10','1','1111951',16.00,'60','105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001396','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5503,'TIMOLOL EYE DROPS 0.25% 5ML','10','1','1112008',16.00,'800','1380',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001397','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5504,'ASCORIL DRY COUGH SYP 100ML','6','1','1112128',16.00,'293.7','515',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001398','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5505,'OZITAS 5MG TABS 30S','10','1','1112262',16.00,'38.833','67',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,15.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001399','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5506,'SERETIDE 25/250 EVOHALER','11','1','1112272',16.00,'1803','3105',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001400','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5507,'COVERAM 5/5MG TABS 30S','11','1','1112372',16.00,'53.495','95',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001401','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5508,'COVERAM 10/10MG TABS 30S','11','1','1112373',16.00,'81.533','129',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,45.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001402','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5509,'NEXPRO 40MG TABS 50S','11','1','1112426',16.00,'23','42',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,34.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001403','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5510,'VISIONACE PLUS CAPS 56S','6','1','1112444',16.00,'1245','2080',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001404','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5511,'WELLMAN PLUS OMEGA CAPS 56S','6','1','1112447',16.00,'1588','2655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001405','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5512,'ZECUF LOZENGES HERBAL ORANGE','6','1','1112449',16.00,'176.32','309.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001406','pcs','Inventory','VATABLE','0',NULL,0),(5513,'TELTAS H 80/25MG TABS 30S','11','1','1112506',16.00,'56','96',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001407','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5514,'GAVISCON DOUBLE ACTION LIQUID 300ML','6','1','1112523',16.00,'1350','2255',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001408','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5515,'TAMSOLIN 0.4MG CAPS 10S','11','1','1112639',16.00,'59.25','108',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001409','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5516,'NEBILONG 5mg TABS 30S','11','1','1112729',16.00,'41.207','73',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,29.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001410','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5517,'CASTOR OIL 50 ML','6','1','1112758',16.00,'40.6','70.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001411','pcs','Inventory','VATABLE','0',NULL,0),(5518,'CHARCOAL TABS 100S (MEDICINAL) U.K','6','1','1112759',16.00,'420','730',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001412','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5519,'CONTEMPO CONDOM EROTICA 3S','6','1','1112850',16.00,'212.5004','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001413','pcs','Inventory','VATABLE','0',NULL,0),(5520,'ANIMAL PARADE VITAMIN C 90S','6','1','1112907',16.00,'1210','2085',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001414','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(5521,'MURINE DRY AND TIRED EYES','6','1','1113490',16.00,'510','880',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001415','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5522,'SUNDOWN CALCIUM 1200MCG +VIT D 1000IU TABLETS 60','6','1','1113539',16.00,'1350','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001416','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5523,'SUNDOWN OSTEO BI-FLEX TABLETS 40S','6','1','1113548',16.00,'1683','2865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001417','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5524,'SUNDOWN VIT D3 5000MCG SOFTGELS 150S','6','1','1113552',16.00,'1431','2435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001418','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5525,'CO-MICARDIS 40MG TABS 28S','11','1','1113566',16.00,'79.576','136',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001419','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5526,'TELMI 80MG TABS 30S','11','1','1113797',16.00,'51.35','90',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001420','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5527,'ISLIM 400MG CAPS 30S','6','1','1113883',16.00,'33.334','58',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001421','pcs','Inventory','EXEMPTED','0','0039.11.84',0),(5528,'ISOPTIN SR 240MG TABS 30S','11','1','1113996',16.00,'87.704','154',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001422','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5529,'LEVOBACT 750MG TABS 10S','10','1','1113999',16.00,'74.6','124',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001423','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5530,'NOW OMEGA 3-6-9 CAPS 100S','6','1','1114009',16.00,'1565','2615',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001424','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5531,'CLOMID 50MG TABS 30S','10','1','1114031',16.00,'93.333','156',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001425','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5532,'LEFLOX 750MG TABS 10S','10','1','1114074',16.00,'95.14','158',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001426','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5533,'NOW HORNY GOAT WEED EXTRACT 90S','6','1','1114114',16.00,'2285','3820',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001427','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5534,'CADRONATE 150MG TABS 3S','10','1','1114541',16.00,'972','1605',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001428','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5535,'DOMADOL 50MG TABS 100S','10','1','1114574',16.00,'7.137','12.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,22.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001429','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5536,'NUROFEN MIGRAINE 12S','6','1','1114674',16.00,'450','755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001430','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5537,'GLUCOMET N 5/500mg TABS 28S','11','1','1114905',16.00,'9.214','16',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001431','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5538,'PROCTOSEDYL OINTMENT 30GM','6','1','1115158',16.00,'2230','3840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001432','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5539,'METOZ 2.5MG TABS 30S','11','1','1115203',16.00,'22.992','41',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001433','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5540,'INSPRA EPLERENOON 25MG 30S','11','1','1115211',16.00,'96.014','169',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001434','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5541,'PRADAXA 110MG CAPSULES 60S','11','1','1115223',16.00,'122.525','216',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001435','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5542,'AVOMINE TRAVE SICKNESS TABLETS 10S','6','1','1115362',16.00,'310','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001436','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5543,'ELASTOPLAST FABRIC PLASTERS 10S','6','1','1115406',16.00,'280','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001437','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5544,'IMODIUM MELT INSTANTS 2MG 6S','6','1','1115415',16.00,'550','1070',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001438','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5545,'MOVICOL PAEDIATRIC SATCHETS 30S','6','1','1115423',16.00,'41.17','71',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001439','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5546,'TOT HEMA ORAL SOL 10ML AMPOULES 20S','10','1','1115484',16.00,'28.95','49',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001440','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5547,'THEOPHED (FRANOL GENERIC) TABLETS 100S','11','1','1115505',16.00,'1.55','3.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001441','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5548,'AERIUS SYRUP 60ML','10','1','1115506',16.00,'410.82','700',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001442','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5549,'FOLLEY CATHETER 2 WAY G18','10','1','1115637',16.00,'45','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001443','pcs','Inventory','EXEMPTED','0','0036.11.00',0),(5550,'CENTRUM MEN 30','6','1','1115698',16.00,'1050','1755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001444','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5551,'ZINCAT-OD SYRUP 60ML','10','1','1115788',16.00,'100.94','170',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001445','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5552,'WISDOM INTERDENTAL BRUSHES 0.60MM 5S','12','1','1115893',16.00,'328.86','530.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001446','pcs','Inventory','VATABLE','0',NULL,0),(5553,'GABIX 300MG CAPS 10S','11','1','1116176',16.00,'30.8','55',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001447','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5554,'TELMI AM 40/5MG TABS 30S','11','1','1116181',16.00,'44.77','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001448','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5555,'SINGULAIR 10MG TABS 28S','11','1','1116225',16.00,'64.976','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001449','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5556,'PARIET 10MG TABS 28S','11','1','1116314',16.00,'101.604','180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,56.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001450','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5557,'OPTIVE PLUS EYE DROPS 10ML','6','1','1116407',16.00,'1044','1800',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001451','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5558,'TWYNSTA 40/5MG TABS 28S','11','1','1116594',16.00,'102.3','177',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,84.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001452','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5559,'NEUROBEST TABS 30S','6','1','1116721',16.00,'14.374','26',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001453','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5560,'METRONIDAZOLE SYRUP 100ML','10','1','1116725',16.00,'36','61',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001454','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5561,'MINOXIN 5% SOLUTION 60ML','10','1','1116757',16.00,'2267.8','3834.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001455','pcs','Inventory','VATABLE','0','0039.11.28',0),(5562,'NIVEA AFTER SHAVE BALM SENSITIVE 100ML','12','1','1116884',16.00,'774.99948','1110.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001456','pcs','Inventory','VATABLE','0',NULL,0),(5563,'TWYNSTA 40/10MG TABS 28S','11','1','1117011',16.00,'102.3','176',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,25.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001457','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5564,'YESCORT 6MG TABLETS 30S','11','1','1117137',16.00,'21.462','39',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,32.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001458','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5565,'PROGYNOVA 2MG TABS 20S','10','1','1117236',16.00,'17.68','31',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001459','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(5566,'QUEST CRANBIOTIX - PROBIOTIC WITH CRANBERRY 30S','6','1','1117245',16.00,'1235','2065',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001460','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5567,'FEBO-G 40MG TABS 20S','11','1','1117251',16.00,'75','132',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,40.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001461','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5568,'AVELON 400MG TABS 10S','10','1','1117277',16.00,'221.32','368',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001462','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5569,'IMPRAMINE 25MG TABS 28S','10','1','1117279',16.00,'16.071','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001463','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5570,'SENSODYNE REPAIR & PROTECT 75ML','12','1','1117530',16.00,'460.47128','620.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001464','pcs','Inventory','VATABLE','0',NULL,0),(5571,'CENTRUM 50+ MEN 30S','6','1','1117540',16.00,'1200','2005',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001465','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5572,'DUODART 0.5MG CAPS 30S','11','1','1117636',16.00,'70.20','117',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,60.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001466','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5573,'VITAMIN C EFF ORANGE 1000MG 20S (PHC)','6','1','1117726',16.00,'585','1008.621',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001467','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(5574,'LIPITOR 20MG TABS 30S','11','1','1117775',16.00,'76.103','130',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,77.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001468','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5575,'SUNDOWN COMPLETE OMEGA 3-5-6-7-9 SOFTGELS 90S','6','1','1117831',16.00,'2326.5','3960',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001469','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5576,'KLEEN ENEMAX 100MCG 135ML','10','1','1117990',16.00,'173','295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001470','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5577,'SUNDOWN VIT D3 1000MCG SOFTGEL 200S','6','1','1117996',16.00,'1431','2435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001471','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5578,'LIPIGET 40MG TABS 10S','11','1','1118009',16.00,'56','97',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001472','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5579,'NIVEA SHOWER GEL MEN COOL KICK 250ML','12','1','1118109',16.00,'391.66704','545.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001473','pcs','Inventory','VATABLE','0',NULL,0),(5580,'SLOW SODIUM TABLETS 600MG 100S','10','1','1118112',16.00,'22','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,54.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001474','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5581,'PREGNACARE FOR BREASTFEEDING','6','1','1118198',16.00,'1697.273','3120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001475','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5582,'ESCLAM KIT 7S','11','1','1118360',16.00,'360.463','631',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001476','pcs','Inventory','EXEMPTED','0','0039.11.14',0),(5583,'LEVIPIL 500MG TABS 30S','10','1','1118388',16.00,'64','111',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001477','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5584,'ASOMEX D 2.5/12.5MG TABS 30S','11','1','1118481',16.00,'52.213','92',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001478','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5585,'FORALIN 400 INHALER','11','1','1118517',16.00,'2134.52','3740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001479','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5586,'ANIMAL PARADE KIDZINC LOZENGES 90S','6','1','1118544',16.00,'1825','3140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001480','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5587,'FORALIN INHALER 100','11','1','1118554',16.00,'1099.94','1925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001481','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5588,'FEMELLE COTTON BALLS 100S','12','1','1118619',16.00,'232','405.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001482','pcs','Inventory','VATABLE','0',NULL,0),(5589,'FEMELLE COTTON BUDS 200S','9','1','1118824',16.00,'168.2','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001483','pcs','Inventory','VATABLE','0',NULL,0),(5590,'OLD SPICE DEODORANT STICK PURE SPORT 85G','12','1','1118982',16.00,'1160','1880.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001484','pcs','Inventory','VATABLE','0',NULL,0),(5591,'FORALIN 200 INHALER','11','1','1119823',16.00,'1487.8','2605',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001485','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5592,'QUEST VIT C 1000MG TIMED RELEASE TABS BONUS 45s','6','1','1120062',16.00,'785','1315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001486','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5593,'BALLET MOSQUITO REPELLENT MOUSE SPRAY 100ML','9','1','1120074',16.00,'233.9952','394.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001487','pcs','Inventory','VATABLE','0',NULL,0),(5594,'NIVEA MEN SHAVING FOAM SENSITIVE 200ML','12','1','1120156',16.00,'562.50024','780.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001488','pcs','Inventory','VATABLE','0',NULL,0),(5595,'SENSODYNE TOOTH BRUSH (GUM CARE) SOFT','12','1','1120382',16.00,'134.56','185.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001489','pcs','Inventory','VATABLE','0',NULL,0),(5596,'ALTACEF 500MG TABS 10S','10','1','1120669',16.00,'86.953','146',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001490','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5597,'ECOFREE 120MG TABS 10S','10','1','1120754',16.00,'49.498','83',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001491','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5598,'COW & GATE NUTRISTART 2 400G','6','1','1120798',16.00,'1066.50052','1710.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001492','pcs','Inventory','VATABLE','0',NULL,0),(5599,'COW & GATE NUTRISTART 1 400G','6','1','1120799',16.00,'1066.50052','1710.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001493','pcs','Inventory','VATABLE','0',NULL,0),(5600,'COW & GATE NUTRISTART JUNIOR 3 400G','6','1','1120801',16.00,'1066.50052','1710.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001494','pcs','Inventory','VATABLE','0',NULL,0),(5601,'DUREX CONDOMS PLEASURE ME','6','1','1120808',16.00,'241.9876','454.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001495','pcs','Inventory','VATABLE','0',NULL,0),(5602,'NEXIKEN KIT 7S','11','1','1120814',16.00,'213.964','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001496','pcs','Inventory','EXEMPTED','0','0039.11.14',0),(5603,'METHYLATED SPIRIT 100ML','6','1','1120818',16.00,'31.32','54.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001497','pcs','Inventory','VATABLE','0',NULL,0),(5604,'LETROL 2.5MG TABS 5S','11','1','1120822',16.00,'150','263',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001498','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5605,'BIOFLOR 250MG SACHETS 10S','6','1','1120864',16.00,'76.5','133',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001499','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5606,'CIPLADON 500MG EFF TABLETS 16S','6','1','1120876',16.00,'16.80','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,45.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001500','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5607,'NATURAL COTTON MAXI SUPER PADS 12S','12','1','1120949',16.00,'382.5','585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001501','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(5608,'VICKS VAPOUR RUB 100GM U.K','6','1','1121446',16.00,'800','1655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001502','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5609,'CLOMID 50MG TABS 10S','10','1','1121496',16.00,'56','93',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001503','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(5610,'DEEP FREEZE COLD PATCH','6','1','1121526',16.00,'360','605',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001504','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5611,'OXYBUTYNIN 5MG TABS 100S','11','1','1121536',16.00,'5','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,16.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001505','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5612,'TERBIFIN 250MG TABS 14S','10','1','1121594',16.00,'110.879','185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001506','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5613,'MESTINON PYRIDOSTIGMINE 60MG TABS 20S','10','1','1121600',16.00,'35','59',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001507','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5614,'PANTOLOC 20MG TABS 28S','11','1','1121612',16.00,'49.214','87',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001508','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5615,'APROVASC 150/5MG TABS 28S','11','1','1121741',16.00,'74.967','132',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,21.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001509','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5616,'CATAFLAM 15MG/ML SUSP 120ML','10','1','1122053',16.00,'699.55','1180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001510','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5617,'APDROPS DX 5/1MG 3ML DROPS','10','1','1122060',16.00,'425.6','720',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001511','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5618,'PERFECTIL PLUS SKIN CAPS 60S','6','1','1122067',16.00,'1512','2530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001512','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5619,'VICKS INHALER INDIA','6','1','1122202',16.00,'385','655',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,11.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001513','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5620,'ALWAYS EVERYDAY PANTYLINERS NORMAL 20S','12','1','1122404',16.00,'100.5488','155.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001514','pcs','Inventory','VATABLE','0',NULL,0),(5621,'WISDOM CLEAN BETWEEN FLOSSER','12','1','1122478',16.00,'393.588','629.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001515','pcs','Inventory','VATABLE','0',NULL,0),(5622,'LRP CICAPLAST BAUME B5 40ml','12','1','1122494',16.00,'1155.534','1865.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001516','pcs','Inventory','VATABLE','0',NULL,0),(5623,'LRP LIPIKAR CLEANSING BAR 150g','12','1','1122512',16.00,'606.86676','980.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001517','pcs','Inventory','VATABLE','0',NULL,0),(5624,'VEET HAIR REMOVAL CREAM SENSITIVE 50G','12','1','1122644',16.00,'487.9424','750.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001518','pcs','Inventory','VATABLE','0',NULL,0),(5625,'DUREX PLAY FEEL 50ML','6','1','1122703',16.00,'586.4612','1004.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001519','pcs','Inventory','VATABLE','0',NULL,0),(5626,'NYTOL ORIGINALS 25MG 20S','6','1','1122740',16.00,'660','1110',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001520','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5627,'NIVEA FOR MEN BODY MILK (COOL KICK) 200ML','9','1','1122817',16.00,'270.83332','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001521','pcs','Inventory','VATABLE','0',NULL,0),(5628,'DERMOL EMOLLIENT CREAM 500GM','9','1','1122874',16.00,'1238.88','2119.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001522','pcs','Inventory','VATABLE','0',NULL,0),(5629,'APROVASC 300/5MG TABS 28S','11','1','1122894',16.00,'88.733','157',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,21.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001523','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5630,'DUREX CONDOM SELECT FLAVOURS','6','1','1123252',16.00,'199.636','345.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001524','pcs','Inventory','VATABLE','0',NULL,0),(5631,'CYTOTEC MISOPROSTOL TABLETS 28S','10','1','1123647',16.00,'59.514','99',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,17.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001525','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5632,'LOXIAM MR 8/8MG TABS 10S','10','1','1123800',16.00,'63.7','108',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001526','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5633,'QUITIPIN 300MG TABS 30S','10','1','1124330',16.00,'76.667','129',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001527','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5634,'GIT SR 150MG CAPS 10S','10','1','1124332',16.00,'67.898','114',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001528','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5635,'LATEX EXAMINATION GLOVES LARGE 100S','6','1','1124334',16.00,'4.4','9.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,200.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001529','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5636,'MS TELLME OVULATION MIDSTREAM 5PCS','6','1','1124513',16.00,'1216.0048','2094.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001530','pcs','Inventory','VATABLE','0',NULL,0),(5637,'LEVOLUKAST ADULTS TABS 30S','10','1','1124835',16.00,'47.467','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001531','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5638,'CLEAR T GEL 20GM','10','1','1124882',16.00,'408','685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001532','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5639,'SUDAFED CONGESTION & HEADACHE RELIEF MAX CAPS 16S','6','1','1124919',16.00,'565','975',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001533','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5640,'CONTEMPO CONDOM FLAVOURS 3S','6','1','1124937',16.00,'212.5004','375.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001534','pcs','Inventory','VATABLE','0',NULL,0),(5641,'VITAHEALTH JOINTCARE FORTIFIED 30S','6','1','1125012',16.00,'1831.75','3045',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001535','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5642,'STERIMAR BABY NASAL HYGIENE (ISOTONIC 50ML','6','1','1125035',16.00,'427.5','740',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001536','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5643,'FLEMING 625MG TABS 14S','10','1','1125063',16.00,'24.016','42',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001537','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(5644,'SUCRALFATE 1GM TABS 60S','11','1','1125089',16.00,'15.833','29',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,32.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001538','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5645,'EUTHYROX 25MCG TABS 30S','11','1','1125091',16.00,'4','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001539','pcs','Inventory','EXEMPTED','0','0039.11.16',0),(5646,'ARCOXIA 120MG TABS 7S','10','1','1125117',16.00,'116.499','195',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001540','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5647,'CLINDAR T PLUS GEL 20GM','10','1','1125231',16.00,'439','745',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001541','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5648,'PRINTING PAPERS','13','1','1125260',16.00,'696','400.01208',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001542','pcs','Inventory','VATABLE','0',NULL,0),(5649,'MEDTEXTILE SOFT CURVICAL COLAR 1005-2','6','1','1125279',16.00,'1160','1975',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001543','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(5650,'MED/T KNEE JOINT SUPPORT ADJUSTABLE - 6035-S/L','6','1','1125301',16.00,'1595','2745',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001544','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(5651,'MEDTEXTILE ANKLE SUPPORT LIGHT FIXATION-7034-L','6','1','1125305',16.00,'660','1125',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001545','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(5652,'MEDTEXTILE WRIST WRAP W/STRAP-8512-S/L','6','1','1125309',16.00,'690','1175',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001546','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(5653,'MEDTEXTILE WHITE ARM SLING FACILITATED - 9912-L','6','1','1125315',16.00,'800','1360',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001547','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(5654,'MEDTEXTILE WHITE ARM SLING FACILITATED - 9912-XL','6','1','1125316',16.00,'800','1360',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001548','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(5655,'MEDTEXTILE ANKLE SUPPORT W/STRAP - 7025-M','6','1','1125320',16.00,'1050','1785',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001549','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(5656,'MED/T ANKLE SUPPORT E/MEDIUM FIXATION - 7101-S','6','1','1125323',16.00,'750','1300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001550','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(5657,'MEDTEXTILE WRIST WRAP ELASTIC - 8506-L','6','1','1125330',16.00,'750','1275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001551','pcs','Inventory','EXEMPTED','0','0039.11.89',0),(5658,'PRINTED BAG WHITE 1KG - GOODLIFE','13','1','1125358',16.00,'3.248','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,966.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001552','pcs','Inventory','VATABLE','0',NULL,0),(5659,'PRINTED BAG WHITE 2KG - GOODLIFE','13','1','1125359',16.00,'4.408','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1062.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001553','pcs','Inventory','VATABLE','0',NULL,0),(5660,'BETTER YOU MAGNESIUM OIL SPRAY MUSCLE 100ML','6','1','1125369',16.00,'2076.4','3529.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001554','pcs','Inventory','VATABLE','0',NULL,0),(5661,'FORXIGA 10MG TABS 28S','11','1','1125379',16.00,'143.065','244',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,109.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001555','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5662,'MEDISIGN BLOOD GLUCOSE METER','11','1','1125381',16.00,'1565.52','2695',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001556','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(5663,'HUMALOG KWIKPEN 3ML','11','1','1125414',16.00,'1295','2165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001557','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(5664,'NATRIXAM 1.5/5MG 30S','11','1','1125446',16.00,'33.503','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,69.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001558','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5665,'HUMALOG MIX 25 QUICK PEN','11','1','1125448',16.00,'1101','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001559','pcs','Inventory','EXEMPTED','0','0039.11.81',0),(5666,'ACNES SEALING GEL 9G','9','1','1125461',16.00,'320.16','535.00012',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001560','pcs','Inventory','VATABLE','0',NULL,0),(5667,'DALACIN C 150MG TABS 100S','10','1','1125514',16.00,'37.77','63.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,36.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001561','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5668,'ACTILOSA CAPS 10S','6','1','1125580',16.00,'45','77',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001562','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5669,'EPSOM SALT 25G','6','1','1125663',16.00,'40.6','74.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001563','pcs','Inventory','VATABLE','0',NULL,0),(5670,'CILVAS 10MG TABS 30S','11','1','1125875',16.00,'44.55','78',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001564','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5671,'N/AID ACTIVE MAN arginine','6','1','1125975',16.00,'1485','2525',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001565','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5672,'N/AID MENS HEALTHY & VITALITY MULTIVITAMINS & MINERALS CAPS 30S','6','1','1125980',16.00,'1269','2160',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001566','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5673,'N/AID FOLIC ACID 400ug TABS 90S','6','1','1125983',16.00,'823.5','1400',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001567','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5674,'N/AID TR VITAMIN C 1000MG TABLETS 30S','6','1','1126408',16.00,'864','1470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001568','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(5675,'WELLWOMAN 70+ TABLETS 30S','6','1','1126499',16.00,'1008','1685',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001569','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5676,'EROSTIN SUSPENSION 60MLS','10','1','1126517',16.00,'426.92','725',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001570','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5677,'CLEAR BLUE DIGITAL PREGNANCY TEST WEEK INDICATOR','6','1','1126526',16.00,'1566.00','3699.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001571','pcs','Inventory','VATABLE','0',NULL,0),(5678,'SUNDOWN MELATONIN 5 MG DISSOLVABLE 90S','6','1','1126529',16.00,'1296','2205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001572','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5679,'SUNDOWN VITAMIN C 500MG TR CAPS 90S','6','1','1126530',16.00,'1620','2755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001573','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(5680,'SUNDOWN VITAMIN C 1000MG CAPS 133S','6','1','1126531',16.00,'2160','3675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001574','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(5681,'SUNDOWN VITAMIN C 500MG CHEW TABS 100S','6','1','1126533',16.00,'1935','3290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001575','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(5682,'N/AID EVENING PRIMROSE OIL 1000MG 90S','6','1','1126535',16.00,'1683','2865',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001576','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5683,'BRONCHOPED SYRUP 100ML','6','1','1126537',16.00,'313.51','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001577','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5684,'N/AID VITAMIN B COMPLEX 50+ C TABS 30S','6','1','1126613',16.00,'1161','1975',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001578','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5685,'N/AID D3 1000iu TABS 90S','6','1','1126614',16.00,'1080','1840',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001579','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5686,'N/AID HAIR SKIN & NAILS TABS 90S','6','1','1126621',16.00,'1350','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001580','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5687,'DUSPATALIN 200MG TABS 30S','10','1','1126758',16.00,'45.15','76',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001581','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5688,'DYNAPAR QPS 30ML SPARY','10','1','1126774',16.00,'638.5','1055',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001582','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5689,'EPIMAX BABY & JUNIOR LOTION BTL PUMP 450ML','12','1','1127055',16.00,'1148.4','1955.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001583','pcs','Inventory','VATABLE','0',NULL,0),(5690,'TREVIA 50MG TABS 35S','11','1','1127062',16.00,'49.286','87',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,35.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001584','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5691,'GLENCET 5MG TABS 30S','10','1','1127070',16.00,'40.495','66',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,25.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001585','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5692,'N/AID MULTIVITAMIN DROPS INFANTS & CHILDREN 50ML','6','1','1127095',16.00,'918','1565',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001586','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5693,'QUEST OAD PREGNA MULTI TABS 30S','6','1','1127109',16.00,'540','910',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001587','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5694,'BRILINTA 90MG TABS 56S','11','1','1127112',16.00,'154.858','284',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001588','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5695,'ROVISTA 5MG TABS 30S','11','1','1127144',16.00,'25.667','45',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001589','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5696,'ROVISTA 10MG TABS 30S','11','1','1127160',16.00,'40.6','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,80.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001590','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5697,'MOMATE AZ NASAL SPRAY','10','1','1127166',16.00,'1386.31','2305',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001591','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5698,'CELEBREX CELECOXIB 200MG CAPSULES 100S','10','1','1127170',16.00,'60.815','104',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,79.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001592','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5699,'GAVISCON ADVANCE PEPPERMINT TABLETS 24S.','6','1','1127178',16.00,'1090','1835',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001593','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5700,'SENSODYNE EXTRA FRESH T/PASTE 75ML','12','1','1127360',16.00,'376.75176','505.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001594','pcs','Inventory','VATABLE','0',NULL,0),(5701,'GABICA 50MG TABS 35S','11','1','1127377',16.00,'39','69',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,35.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001595','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5702,'FAY WET WIPES ANTIBACTERIAL 10S','12','1','1127383',16.00,'71.3574','119.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001596','pcs','Inventory','VATABLE','0',NULL,0),(5703,'WS STUDEX UNIVERSAL EAR PIERCING INSTRUMENT KIT','14','1','1127431',16.00,'2900','1000.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001597','pcs','Inventory','VATABLE','0',NULL,0),(5704,'RELVAR ELLIPTA 100/25MCG A/HALER','11','1','1127434',16.00,'2591','4330',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001598','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5705,'GABICA PREGABALIN 75MG TABS 35S','11','1','1127443',16.00,'43.6','77',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,63.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001599','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5706,'PHOTOBLOCK GEL 75G SPF 50+','9','1','1127446',16.00,'660.0052','1164.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001600','pcs','Inventory','VATABLE','0',NULL,0),(5707,'ARCOXIA 120MG TABS 28S','10','1','1127588',16.00,'116.543','196',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001601','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5708,'DOVE SOAP GENTLE EXFOLIATING 100G','9','1','1127618',16.00,'145.58','234.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001602','pcs','Inventory','VATABLE','0',NULL,0),(5709,'BIC 1 POUCH 1 SINGLE','12','1','1127624',16.00,'14.9408','25.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001603','pcs','Inventory','VATABLE','0',NULL,0),(5710,'BIOGAIA BABY DROPS 5ML','6','1','1127989',16.00,'1306.00','2225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001604','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5711,'BIOGAIA PROTECTS TABS CHEW 10S','6','1','1127990',16.00,'568','985',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001605','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5712,'DYNACORT (DEFLAZACORT) 6MG 30S','10','1','1128029',16.00,'16','28',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,26.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001606','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5713,'EROVITA FIRST AID KIT BLUE','6','1','1128030',16.00,'1205','2075',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001607','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5714,'SUNDOWN OMEGA 3-6-9 200S','6','1','1128128',16.00,'3105','5280',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001608','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5715,'ACCU-CHEK INSTANT STRIPS 50S','11','1','1128185',16.00,'1550.00012','2635.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001609','pcs','Inventory','VATABLE','0',NULL,0),(5716,'AVENT NATURAL MANUAL BREAST PUMP -SCF330/60','12','1','1128271',16.00,'6733.8','9230.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001610','pcs','Inventory','VATABLE','0',NULL,0),(5717,'LISTERINE ZERO 250ML','12','1','1128275',16.00,'532.44','789.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001611','pcs','Inventory','VATABLE','0',NULL,0),(5718,'SINGULAIR 5MG TABS 28S','11','1','1128320',16.00,'64.976','115',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001612','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5719,'TENA TISSUE PAPERS (for branche use)','15','1','1128328',16.00,'34.8','55.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001613','pcs','Inventory','VATABLE','0',NULL,0),(5720,'CANESPOR CREAM 1% 15GM','10','1','1128429',16.00,'657.081','1120',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001614','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5721,'DAY NURSE CAPSULE','6','1','1128434',16.00,'1080','1750',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001615','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(5722,'CANDEREL TABS GREEN 100S','6','1','1128450',16.00,'280','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001616','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5723,'SAFECAL TABLETS','6','1','1128465',16.00,'595.41','1025',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001617','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5724,'REKFA GOLD 30S','6','1','1128467',16.00,'838.35','1445',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001618','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5725,'IDEOS CHEWABLE TABS','6','1','1128470',16.00,'840','1445',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001619','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5726,'NEXIUM 20MG TABS 28S','11','1','1128479',16.00,'91.64','154',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,9.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001620','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5727,'SPORANOX 100MG 15S','10','1','1128511',16.00,'275.94','459',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001621','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5728,'PANTO-DENK 40MG TABS 28S','11','1','1128515',16.00,'28.118','50',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001622','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5729,'GARNIER COLOR NATURALS FR/GB/AR 5 3 CH CL D (LIGHT GOLDEN BROWN) KIT','12','1','1128566',16.00,'295.99952','445.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001623','pcs','Inventory','VATABLE','0',NULL,0),(5730,'0','12','1','1128586',16.00,'443.99696','690.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001624','pcs','Inventory','VATABLE','0',NULL,0),(5731,'0','12','1','1128590',16.00,'443.99696','690.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001625','pcs','Inventory','VATABLE','0',NULL,0),(5732,'BIO OIL 25ML','9','1','1128722',16.00,'259.1498','439.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001626','pcs','Inventory','VATABLE','0',NULL,0),(5733,'DEXTRO ENERGY GLUCOSE TAB NATURAL 47G','6','1','1128775',16.00,'155','265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001627','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5734,'DEXTRO ENERGY GLUCOSE TAB TROPICAL 47G','6','1','1128777',16.00,'155','265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001628','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5735,'KOTEX ULTRA THIN NORMAL 16S','12','1','1128968',16.00,'167.78','245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001629','pcs','Inventory','EXEMPTED','0','0039.11.57',0),(5736,'KOTEX ULTRA THIN NORMAL WITH WINGS 14S','12','1','1128969',16.00,'194.6248','339.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001630','pcs','Inventory','VATABLE','0',NULL,0),(5737,'TRAMACET TABS 20S','10','1','1129044',16.00,'36.765','63',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,15.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001631','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5738,'KOTEX PANTY LINERS 20s INDIVIDUALLY WRAPPED','12','1','1129083',16.00,'126.15','189.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001632','pcs','Inventory','VATABLE','0',NULL,0),(5739,'FOSMOL SATCHET 3000MG 1S','10','1','1129092',16.00,'1073','1785',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001633','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5740,'MOMATE NASAL SPRAY 50MCG 60D','10','1','1129093',16.00,'725.35','1235',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,8.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001634','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5741,'SKINS CONDOMS ASSORTED 4S','6','1','1129102',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001635','pcs','Inventory','VATABLE','0',NULL,0),(5742,'SKINS CONDOMS BUBBLEGUM 4S','6','1','1129103',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001636','pcs','Inventory','VATABLE','0',NULL,0),(5743,'SKINS CONDOMS DOTS & RIBS 4S','6','1','1129104',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001637','pcs','Inventory','VATABLE','0',NULL,0),(5744,'SKINS CONDOMS FLAVOURS 4S','6','1','1129105',16.00,'230.0048','400.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001638','pcs','Inventory','VATABLE','0',NULL,0),(5745,'SKINS CONDOMS EXTRA LARGE 4S','6','1','1129108',16.00,'260.0024','445.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001639','pcs','Inventory','VATABLE','0',NULL,0),(5746,'AVALIFE ADVANCE RESCUE CAPS 30S','6','1','1129112',16.00,'1020','1735',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001640','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5747,'NEUROZAN PLUS OMEGA-3','6','1','1129142',16.00,'2200.00','3675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001641','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5748,'TRIPLIXAM 10/2.5/10MG','11','1','1129154',16.00,'2483.076','4150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001642','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5749,'GALVUS 50MG TABS 28S','11','1','1129156',16.00,'85.911','149',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,7.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001643','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5750,'TRAJENTA 5MG 30S','11','1','1129193',16.00,'145.093','254',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001644','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5751,'PREGNACARE LOTION 200ML','12','1','1129259',16.00,'974.4','1665.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001645','pcs','Inventory','VATABLE','0',NULL,0),(5752,'DETTOL SOAP HERBAL 90GM','12','1','1129282',16.00,'87.0116','145',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001646','pcs','Inventory','VATABLE','0',NULL,0),(5753,'DETTOL HANDWASH FRESH PUMP 200ML','12','1','1129286',16.00,'326.6792','484.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001647','pcs','Inventory','VATABLE','0',NULL,0),(5754,'FERTILION F CAPS 30S','6','1','1129295',16.00,'1480','2550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001648','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5755,'FAST AID ASSORTED CLEAR PLASTERS 24S','6','1','1129296',16.00,'290','499.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001649','pcs','Inventory','VATABLE','0',NULL,0),(5756,'FAST AID FABRIC PLASTERS 24S','6','1','1129395',16.00,'371.2','639.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001650','pcs','Inventory','VATABLE','0',NULL,0),(5757,'FAST AID KIDS PLASTERS 15S','6','1','1129397',16.00,'278.4','479.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001651','pcs','Inventory','VATABLE','0',NULL,0),(5758,'VICKS BABY RUB 50G','6','1','1129398',16.00,'550','955',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001652','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5759,'ELASTOPLAST STRIP 6.0CM X 10CM FABRIC','6','1','1129431',16.00,'411.84','700',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001653','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5760,'OLBAS NASAL SPRAY 20ML','6','1','1129441',16.00,'700','1205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001654','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5761,'BETTER YOU MAGNESIUM OIL SPRAY SLEEP 100ML','6','1','1129452',16.00,'2076.4','3529.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001655','pcs','Inventory','VATABLE','0',NULL,0),(5762,'FABIA UPPER ARM BLOOD PRESSURE MACHINE','11','1','1129457',16.00,'3357.76','5610',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001656','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(5763,'VICTOZA 6MG /M1 PRE-FILLED PEN','11','1','1129465',16.00,'8950','13875',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001657','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5764,'BETMIGA 50MG 30S','10','1','1129471',16.00,'96.068','161',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,9.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001658','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5765,'H&B CALCIUM WITH VITAMIN D & K 60S','6','1','1129481',16.00,'510','880',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001659','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5766,'H&B ULTRA MAN MULTIVITAMIN 100S','6','1','1129491',16.00,'1600','2755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001660','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5767,'ACNES MENTHOLATUM VITAMIN CLEANSER 50G','9','1','1129502',16.00,'368.3','620.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001661','pcs','Inventory','VATABLE','0',NULL,0),(5768,'EPIMOL-E CLEANSER BARSOAP 100G','9','1','1129503',16.00,'439.9648','735.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001662','pcs','Inventory','VATABLE','0',NULL,0),(5769,'0','12','1','1129505',16.00,'961.92652','1569.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001663','pcs','Inventory','VATABLE','0',NULL,0),(5770,'0','13','1','1129508',16.00,'1.16','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,706.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001664','pcs','Inventory','VATABLE','0',NULL,0),(5771,'0','13','1','1129509',16.00,'1.914','0.01044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1290.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001665','pcs','Inventory','VATABLE','0',NULL,0),(5772,'BIOFOLIC DHA 100S','6','1','1129510',16.00,'23.098','41',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001666','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5773,'OSMOLAX SOLUTION 100ML','6','1','1129531',16.00,'262.5','455',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001667','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5774,'TEGRETOL SYRUP 100MG/5ML 150ML','11','1','1129560',16.00,'817.7','1440',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001668','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5775,'VALUPAK VITAMIN C EFFER 1000MG 20S','6','1','1129585',16.00,'530','920',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001669','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(5776,'PROFERTIL MEN TABS 60S','6','1','1129602',16.00,'5781.2','9945',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001670','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5777,'CONTOUR PLUS STRIPS 25S','11','1','1129890',16.00,'920','1585',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001671','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(5778,'N/AID MAGNESIUM CITRATE 119MG 60S','6','1','1129908',16.00,'1350','2295',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001672','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5779,'RELCER TABLETS 30S','6','1','1129909',16.00,'216','365',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001673','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5780,'TITANIA CUTICLE NIPPER STAINLESS','12','1','1129943',16.00,'1164.9996','1855.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001674','pcs','Inventory','VATABLE','0',NULL,0),(5781,'TITANIA TITANIA BABY SCISSORS STAINLESS','12','1','1129946',16.00,'469.99952','754.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001675','pcs','Inventory','VATABLE','0',NULL,0),(5782,'TITANIA 4 HAIR SECTION CLIPS + 8 HAIR RIBBONS','12','1','1129952',16.00,'375.00016','605.00032',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001676','pcs','Inventory','VATABLE','0',NULL,0),(5783,'PAPERMINTS 18 CAPSULES','12','1','1129980',16.00,'118.1112','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001677','pcs','Inventory','VATABLE','0',NULL,0),(5784,'PAPERMINTS 40 COOL CAPS','12','1','1129981',16.00,'226.2','449.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001678','pcs','Inventory','VATABLE','0',NULL,0),(5785,'CONTOUR PLUS STRIPS 50S','11','1','1129986',16.00,'1600','2755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001679','pcs','Inventory','EXEMPTED','0','0122.11.00',0),(5786,'DENMAN ELASTIC BANDS BLACK LARGE 4MM - 18PC -71014D','12','1','1130008',16.00,'339.3','584.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001680','pcs','Inventory','VATABLE','0',NULL,0),(5787,'REPLENISH CAPS 30S','6','1','1130027',16.00,'1666.8','2870',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001681','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5788,'CREVIL GERMANY FEMININE INTIMATE 100ML','12','1','1130031',16.00,'567.936','919.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001682','pcs','Inventory','VATABLE','0',NULL,0),(5789,'CREVIL GERMANY FEMININE INTIMATE 300ML','12','1','1130032',16.00,'1114.18','1799.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001683','pcs','Inventory','VATABLE','0',NULL,0),(5790,'BENYLIN WET COUGH MENTHOL 100ML','6','1','1130042',16.00,'449.1','765',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001684','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5791,'OPTIVE EYE GEL DROPS 10ML','6','1','1130056',16.00,'1075','1850',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001685','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5792,'VITAHEALTH COD LIVER OIL 200ML','6','1','1130058',16.00,'637.5','1060',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001686','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5793,'FLEMING 228MG/5ML SUSP 70ML','10','1','1130079',16.00,'223.041','375',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001687','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(5794,'DURACELL LITHIUM 3V 2032 2S','12','1','1130083',16.00,'235.596','370.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001688','pcs','Inventory','VATABLE','0',NULL,0),(5795,'JOHNSON\'S BABY S&SHINY 2-IN-1 SHAMP&COND 200ML','12','1','1130122',16.00,'431.52','660.00056',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001689','pcs','Inventory','VATABLE','0',NULL,0),(5796,'0','12','1','1130158',16.00,'145.58','230.00016',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001690','pcs','Inventory','VATABLE','0',NULL,0),(5797,'GLUCOPHAGE XR 1G 60S','11','1','1130179',16.00,'12.667','22',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,50.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001691','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5798,'ALMAX FORTE SATCHETS 30S','6','1','1130180',16.00,'26.2','46',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001692','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5799,'WELLTEEN HER PLUS','6','1','1130235',16.00,'1088','1820',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001693','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5800,'UPERIO 100MG TABS 28S','11','1','1130275',16.00,'98.925','187',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,56.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001694','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5801,'AVALIFE AVACARE COLON CARE 30S','6','1','1130284',16.00,'1360','2315',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001695','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5802,'COTIPRED EFF TABLET 20MG 20S','10','1','1130286',16.00,'27.2','48',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001696','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5803,'AZITHRAX 200MG/5ML SUSPENSION 30ML','10','1','1130293',16.00,'401.38','675',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001697','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5804,'AZITHRAX 200MG/5ML SUSPENSION 15ML','10','1','1130295',16.00,'202.8','345',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001698','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5805,'SARU ORGANICS 3-IN-1 SHAMPOO 240 ML','12','1','1130297',16.00,'464','744.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001699','pcs','Inventory','VATABLE','0',NULL,0),(5806,'SARU ORGANICS LEAVE-IN CONDITIONER 240 ML','12','1','1130298',16.00,'638','1025.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001700','pcs','Inventory','VATABLE','0',NULL,0),(5807,'SARU ORGANICS DETANGLER CONDITIONER 240 ML','12','1','1130301',16.00,'522','829.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001701','pcs','Inventory','VATABLE','0',NULL,0),(5808,'EPNONE 50MG TABS 30S','11','1','1130456',16.00,'106.805','187',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001702','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5809,'STUDEX KIDS EARINGS TINY TIPS ASSORTED','9','1','1130472',16.00,'449.9988','769.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,12.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001703','pcs','Inventory','VATABLE','0',NULL,0),(5810,'ARBITEL H 40/12.5MG TABS 30S','11','1','1130478',16.00,'36.935','65',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001704','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5811,'NEBZMART S 10S','11','1','1130502',16.00,'780','1365',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001705','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5812,'HARTEZE 10MG TABS 28s','11','1','1130541',16.00,'45.12','79',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001706','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5813,'COLGATE BABY T/PASTE STRAWBERRY 50ML','12','1','1130558',16.00,'169.215','264.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001707','pcs','Inventory','VATABLE','0',NULL,0),(5814,'COLGATE KIDS T/PASTE BUBBLE FRUIT 50ML','12','1','1130559',16.00,'166.7094','260.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001708','pcs','Inventory','VATABLE','0',NULL,0),(5815,'GRAMOCEF-O 100MG/5ML 100ML','10','1','1130565',16.00,'729.6','1220',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001709','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5816,'SWISS HERBAL LOZENGES SAGE 12S','6','1','1130593',16.00,'270','470',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001710','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5817,'LRP ANTHELIOS SUN LOTION SPF50+ 100ML','9','1','1130600',16.00,'1902.27936','3064.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001711','pcs','Inventory','VATABLE','0',NULL,0),(5818,'FUN TIME CHERRY LUBE 75ML','6','1','1130636',16.00,'348','629.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001712','pcs','Inventory','VATABLE','0',NULL,0),(5819,'FUN TIME ORIGINAL LUBE 75ML','6','1','1130637',16.00,'348','629.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001713','pcs','Inventory','VATABLE','0',NULL,0),(5820,'FUN TIME STRAWBERRY LUBE 75ML','6','1','1130638',16.00,'348','629.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001714','pcs','Inventory','VATABLE','0',NULL,0),(5821,'JARDIANCE 10MG TABS 30S','11','1','1130655',16.00,'140.559','238',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001715','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5822,'NERVOPLEX TABS 10S','6','1','1130712',16.00,'808.5432','1400.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001716','pcs','Inventory','VATABLE','0','0039.11.27',0),(5823,'XYKAA EXTEND 1000MG TABS 30S','6','1','1130716',16.00,'20.40','36',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,90.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001717','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5824,'PRESARTAN 30S','11','1','1130725',16.00,'8.443','16.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001718','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5825,'PRESARTAN H 28S','11','1','1130733',16.00,'14.41','27.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,84.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001719','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5826,'PAPERMINTS BIG MERCHANDISING PLEXI - 4 SKUS','14','1','1130912',16.00,'376.8608','675.01212',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001720','pcs','Inventory','VATABLE','0',NULL,0),(5827,'PULMOCEF 500MG 10S','10','1','1130963',16.00,'22','38',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001721','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5828,'DIASTOP TABS 100S','6','1','1131026',16.00,'3.58','7',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001722','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5829,'DUREX CONDOMS FETHERLITE FEEL THIN 12S','6','1','1131030',16.00,'902.2596','1554.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001723','pcs','Inventory','VATABLE','0',NULL,0),(5830,'QUEST OAD INFANT MULTI LIQUID 150ML','6','1','1131043',16.00,'525','880',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001724','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5831,'BROMOCRIPTIN 2.5MG 30S(CRIPTON)','10','1','1131174',16.00,'29.216','49',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,32.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001725','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5832,'FASTUM GEL 20 GM','10','1','1131232',16.00,'278.5','480',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001726','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5833,'MOMATE F CREAM 10GM','10','1','1131239',16.00,'538.45','925',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001727','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5834,'TERBIN CREAM 15GM','10','1','1131247',16.00,'255.00','435',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001728','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5835,'BENNETTS NIPPLE CREAM LANOLIN FREE 30ML','12','1','1131333',16.00,'547.8622','914.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001729','pcs','Inventory','VATABLE','0',NULL,0),(5836,'BENNETTS NIPPLE CREAM WITH LANOLIN 50ML','12','1','1131334',16.00,'865.42844','1439.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001730','pcs','Inventory','VATABLE','0',NULL,0),(5837,'BENNETTS BABY BARSOAP 100G','9','1','1131335',16.00,'499.64796','829.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001731','pcs','Inventory','VATABLE','0',NULL,0),(5838,'BENNETTS SALINE NOSE SPRAY KIT (ASPIRATOR)','12','1','1131336',16.00,'743.4','1430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001732','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5839,'BENNETTS SALINE NOSE SPRAY 30ML','12','1','1131337',16.00,'601.198','1150',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001733','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5840,'JAMIESON OMEGA 3-6-9 1200MG SOFTGELS 200S','6','1','1131345',16.00,'1719','2960',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001734','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5841,'JAMIESON MELATONIN 3MG CAPSULES 30S','6','1','1131346',16.00,'846','1460',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001735','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5842,'JAMIESON MEGA CAL SOFT CHEWS (SWISS CHOCOLATE) 60S','6','1','1131351',16.00,'1341.9','2310',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001736','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5843,'JAMIESON MULTI 100% COMPLETE MEN CAPLETS 90S','6','1','1131357',16.00,'1775.95','3055',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001737','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5844,'CONACE-P TABS 30S','10','1','1131372',16.00,'6.667','13',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001738','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5845,'CONOLEVO 500MG CAPS 10S','10','1','1131374',16.00,'10','17',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001739','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5846,'DICLOCON MR TABS 30S','10','1','1131377',16.00,'5','9',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001740','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5847,'CRECHE GUARD IMMUNE MULTIVITAMIN SYRUP 100ML','6','1','1131484',16.00,'516','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001741','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5848,'SENSODYNE REPAIR & PROTECT WHITENING T/PASTE 75ML','12','1','1131498',16.00,'444.7672','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001742','pcs','Inventory','VATABLE','0',NULL,0),(5849,'THARAKA PROPOLIS TINCTURE 15ML','6','1','1131511',16.00,'696','1130.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001743','pcs','Inventory','VATABLE','0',NULL,0),(5850,'THARAKA JUST GARGLE OFF (50G)','6','1','1131515',16.00,'232','379.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001744','pcs','Inventory','VATABLE','0',NULL,0),(5851,'LRP PURE VITAMIN C10 SERUM 30ml','9','1','1131534',16.00,'4387.02372','7064.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001745','pcs','Inventory','VATABLE','0',NULL,0),(5852,'BIO-OIL DRY SKIN GEL 100ML','9','1','1131537',16.00,'543.84976','944.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001746','pcs','Inventory','VATABLE','0',NULL,0),(5853,'BIO-OIL DRY SKIN GEL 200ML','9','1','1131538',16.00,'908.84956','1554.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001747','pcs','Inventory','VATABLE','0',NULL,0),(5854,'N/AID VITAMIN C 1000MG LOW-ACID TABS 90S','6','1','1131585',16.00,'1620','2755',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001748','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(5855,'NAT C ESTER SATCHETS 1000MG 30S(LOW ACID)','6','1','1131587',16.00,'1057.88','1770',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001749','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(5856,'ZINCOS ZINC SULPHATE 20MG 100s','10','1','1131593',16.00,'2.11','4.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,19.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001750','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5857,'ZYTEL CT 40/12.5 TABS 30S','11','1','1131598',16.00,'44','80',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001751','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5858,'BIOGAIA GASTRUS TABLETS 30S','6','1','1131608',16.00,'1332','2265',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001752','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5859,'GLENCEE VITAMIN C EFFERVESCENT TABS 20S','6','1','1131625',16.00,'495.01','845',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001753','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(5860,'OLIGOCARE FORTE 20S','6','1','1131759',16.00,'590.00','1015',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001754','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5861,'DIABETONE TABS 30S','6','1','1131763',16.00,'916','1530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001755','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5862,'PHARMATIMOL 0.5% EYE DROPS 5ML','10','1','1131773',16.00,'198','335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001756','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5863,'WINNAPORE 8X15CM 20S','6','1','1131833',16.00,'30','52',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,20.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001757','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5864,'EUGICA HERBAL COLD & FLU SATCHEST 10S','6','1','1131923',16.00,'521','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001758','pcs','Inventory','EXEMPTED','0','0039.11.26',0),(5865,'EUGICA HERBAL THROAT SPRAY 10ML','6','1','1131924',16.00,'715.14','1224.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001759','pcs','Inventory','VATABLE','0',NULL,0),(5866,'JAMIESON ZINC 25MG 100 S','6','1','1131944',16.00,'719.1','1240',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001760','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5867,'IMMUNACE EXTRA 30S','6','1','1131955',16.00,'1397','2335',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001761','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5868,'BIOFREEZE KENYA 59ML TUBE','6','1','1131957',16.00,'315','540',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001762','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5869,'SIMILAC GOLD 2 HMO 400G','6','1','1132091',16.00,'1144.0036','1720.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001763','pcs','Inventory','VATABLE','0',NULL,0),(5870,'APTAMIL BABY MILK 400GM 3','6','1','1132096',16.00,'1121.80004','1494.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001764','pcs','Inventory','VATABLE','0',NULL,0),(5871,'MENTHODEX VAPOUR RUB 50GMS','6','1','1132102',16.00,'465','795',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001765','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5872,'ANDOLEX-C WILD BERRY PASTILLES 20S','6','1','1132104',16.00,'793.44','1364.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001766','pcs','Inventory','VATABLE','0',NULL,0),(5873,'TELMI AM 80/10MG TABS 30S','11','1','1132137',16.00,'72.274','127',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,58.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001767','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5874,'WELLBABY MULTIVITAMIN DROPS 30ML','6','1','1132179',16.00,'898.2','1670',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001768','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5875,'LRP LIPIKAR BAUME AP+M 200ml','12','1','1132181',16.00,'1901.04396','2889.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001769','pcs','Inventory','VATABLE','0',NULL,0),(5876,'GLENCEE KIDS VITAMIN C EFFERVESCENT TABS 20S','6','1','1132189',16.00,'364.99','630',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001770','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(5877,'GOODLIFE CLEAR LIQUID SOAP FRAGRANCE FREE 500ML','12','1','1132325',16.00,'161.24','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001771','pcs','Inventory','VATABLE','0',NULL,0),(5878,'GOODLIFE COCONUT LIQUID SOAP 500ML','12','1','1132326',16.00,'161.24','300.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001772','pcs','Inventory','VATABLE','0',NULL,0),(5879,'GOODLIFE LEMONGRASS SURFACE ALCOHOL DISINFECTANT 500ML','12','1','1132327',16.00,'307.4','639.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001773','pcs','Inventory','VATABLE','0',NULL,0),(5880,'GOODLIFE L/GRASS N& EUCALYPTUS INSECT REPELLENT TUBE 50ML','9','1','1132329',16.00,'48.314','198.0004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001774','pcs','Inventory','VATABLE','0',NULL,0),(5881,'ACNES MOISTURISING CREAM 75G WITH SPF 27+','9','1','1132338',16.00,'466.32','769.99988',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001775','pcs','Inventory','VATABLE','0',NULL,0),(5882,'N/AID COLLAGEN BEAUTY FORMULA CAPS 90S','6','1','1132345',16.00,'2835','4820',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001776','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5883,'NEBICARD 5MG TABLETS 50S','11','1','1132397',16.00,'29.878','54',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001777','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5884,'LAZOPE CAPS 30MG 10S','11','1','1132422',16.00,'10.5','35',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,26.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001778','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5885,'SCOTTS HEIGHT CHART','6','1','1132452',16.00,'0.01','0.01',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001779','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5886,'INDERAL 10MG TABS 50S','11','1','1132454',16.00,'11.136','21',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,50.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001780','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5887,'MAGIC DROPS HYALURONIC ACID SERUM 30ML','9','1','1132459',16.00,'1856','3085.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001781','pcs','Inventory','VATABLE','0',NULL,0),(5888,'SWISS ENERGY OMEGA 3.6.9 OPTIMUM 30S','6','1','1132485',16.00,'1305','2245',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001782','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5889,'SWISS NO HANGOVER EFF TABS 20S','6','1','1132488',16.00,'675.00','1165',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001783','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5890,'FLINSTSHINE GUMMIES-VITAMIN C+ZINC 30S','6','1','1132490',16.00,'710','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001784','pcs','Inventory','EXEMPTED','0','0039.11.72',0),(5891,'FLINSTSHINE GUMMIES- MULTI VITAMINS 30S','6','1','1132491',16.00,'710','1225',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001785','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5892,'QUEST ZINC CITRATE 30MG + COPPER TABS 30S','6','1','1132493',16.00,'520','895',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001786','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5893,'PREDILONE 5MG TABS 100S','11','1','1132499',16.00,'0.735','2',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001787','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5894,'LRP LIPIKAR CLEANSING BAR 150g- Twin Pack','12','1','1132504',16.00,'532.5096','859.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001788','pcs','Inventory','VATABLE','0',NULL,0),(5895,'DICONAZOL 200MG 100S','10','1','1132584',16.00,'8.74','15.5',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001789','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5896,'DYNAMO DELAY MALE DESENSITIZER SPRAY 22.2ML','6','1','1132621',16.00,'1415.5','2510',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001790','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5897,'SURGICAL SPIRIT 500ML','6','1','1132704',16.00,'90','155',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001791','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5898,'AZIX 200MG/5ML SUSP 37.5ML','10','1','1132790',16.00,'425','735',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001792','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5899,'COEMPAKEN 12.5/1000MG TABS 28S','11','1','1133117',16.00,'58.018','106',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001793','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5900,'COEMPAKEN 5/500MG TABS 28S','11','1','1133146',16.00,'42.857','78',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001794','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5901,'COEMPAKEN 5/1000MG TABS 28S','11','1','1133147',16.00,'48.214','88',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,56.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001795','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5902,'EMPAKEN 25MG TABS 14S','11','1','1133149',16.00,'80.357','147',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,28.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001796','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5903,'TRICOHIST EXPECTORANT 60ML','6','1','1133281',16.00,'80','140',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001797','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5904,'NIVEA SHOWER WATER LILY FEMALE 250ML','12','1','1133315',16.00,'391.66704','545.00048',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001798','pcs','Inventory','VATABLE','0',NULL,0),(5905,'CERAVE HYDRATING CLEANSER 236ML','9','1','1133354',16.00,'896.0536','1499.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001799','pcs','Inventory','VATABLE','0',NULL,0),(5906,'CERAVE HYDRATING CLEANSER 473ML','9','1','1133355',16.00,'1326.14448','2215.00028',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001800','pcs','Inventory','VATABLE','0',NULL,0),(5907,'CERAVE FOAM CLEANSER 236ML','9','1','1133356',16.00,'1111.09092','1859.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001801','pcs','Inventory','VATABLE','0',NULL,0),(5908,'CERAVE FOAM CLEANSER 473ML','9','1','1133357',16.00,'1634.38432','2684.9998',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001802','pcs','Inventory','VATABLE','0',NULL,0),(5909,'CERAVE DAILY MOISTURIZING LOTION 236ML','9','1','1133358',16.00,'1254.45996','2059.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001803','pcs','Inventory','VATABLE','0',NULL,0),(5910,'CERAVE DAILY MOISTURIZING LOTION 473ML','9','1','1133359',16.00,'1856.59856','3030.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001804','pcs','Inventory','VATABLE','0',NULL,0),(5911,'CERAVE MOISTURIZING CREAM 340G','9','1','1133360',16.00,'1641.5624','2680.0002',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001805','pcs','Inventory','VATABLE','0',NULL,0),(5912,'CERAVE MOISTURIZING CREAM 454G','9','1','1133361',16.00,'1999.9676','3219.99992',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001806','pcs','Inventory','VATABLE','0',NULL,0),(5913,'STEROPLAST DRESSING PADS STERILE 5s ( 5cm X 5cm )','6','1','1133389',16.00,'120','205',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001807','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5914,'STEROPLAST CLEAR & FABRIC PLASTERS 64s','6','1','1133390',16.00,'220','370',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001808','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5915,'STEROPLAST HOT/COLD PACK','6','1','1133391',16.00,'870','1464.99996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001809','pcs','Inventory','VATABLE','0',NULL,0),(5916,'EMEFILM 4MG STRIPS 5S','10','1','1133403',16.00,'73.08','128',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001810','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5917,'FOSFOMAX GRANULES 3GM 1S','10','1','1133409',16.00,'1250.375','2180',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001811','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5918,'0','9','1','1133411',16.00,'3897.6','6475.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001812','pcs','Inventory','VATABLE','0',NULL,0),(5919,'0','9','1','1133412',16.00,'3654','6070.00044',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001813','pcs','Inventory','VATABLE','0',NULL,0),(5920,'0','9','1','1133413',16.00,'4222.4','7009.99948',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001814','pcs','Inventory','VATABLE','0',NULL,0),(5921,'0','9','1','1133414',16.00,'3897.6','6475.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001815','pcs','Inventory','VATABLE','0',NULL,0),(5922,'0','12','1','1133415',16.00,'4141.2','6874.99984',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001816','pcs','Inventory','VATABLE','0',NULL,0),(5923,'0','12','1','1133416',16.00,'3897.6','6475.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001817','pcs','Inventory','VATABLE','0',NULL,0),(5924,'0','9','1','1133417',16.00,'3897.6','6475.00052',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001818','pcs','Inventory','VATABLE','0',NULL,0),(5925,'ENDOCARE TENSAGE FIRMING NOURISHING CREAM 50ML','9','1','1133418',16.00,'4547.2','7550.00036',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001819','pcs','Inventory','VATABLE','0',NULL,0),(5926,'ENDOCARE RADIANCE EYE COUNTOUR DARK CIRCLES 15ML','9','1','1133419',16.00,'3735.2','6205.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001820','pcs','Inventory','VATABLE','0',NULL,0),(5927,'BIRETIX PURIFYING OILY SKIN CLEANSER 200ML','9','1','1133420',16.00,'2273.6','3774.9996',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001821','pcs','Inventory','VATABLE','0',NULL,0),(5928,'BIRETIX DUO GEL ANT-BLEMISH GEL 30ML','9','1','1133421',16.00,'2436','4045.00004',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001822','pcs','Inventory','VATABLE','0',NULL,0),(5929,'ACNES SOAP 80G','9','1','1133450',16.00,'183.86','290',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001823','pcs','Inventory','VATABLE','0',NULL,0),(5930,'DUZELA 30MG CAPS 30S','10','1','1133536',16.00,'58.33','102',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,6.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001824','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5931,'HT ONE PLUSFINE PEN G32*4MM NEEDLES 100S','11','1','1133547',16.00,'16.408','30',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001825','pcs','Inventory','EXEMPTED','0','0035.11.00',0),(5932,'RECARE HCG PREGNANCY CASSETTE TEST 1S','6','1','1133562',16.00,'100','250',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001826','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(5933,'RECARE HCG PREGNANCY MID STREAM TEST 1S','6','1','1133563',16.00,'220','420',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001827','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(5934,'RECARE LH OVULATION CASSETTE TEST 1S','6','1','1133564',16.00,'225','490',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001828','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(5935,'ACCUFAST HCG PREGNANCY TEST MID STREAM 1S','6','1','1133565',16.00,'220','450',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001829','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(5936,'ACCUFAST HCG PREGNANCY TEST WEEKLY 1S','6','1','1133566',16.00,'400','690',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001830','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(5937,'ACCUFAST LH OVULATION TEST MID STREAM 1S','6','1','1133567',16.00,'220','500',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001831','pcs','Inventory','EXEMPTED','0','0119.11.00',0),(5938,'LRP EFFACLAR DUO(+) 40ML & 15ml Moisturiser Gift','9','1','1133575',16.00,'1314.9528','2119.99976',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001832','pcs','Inventory','VATABLE','0',NULL,0),(5939,'LRP EFFACLAR DUO(+) SPF30 40ML & 15ml Moisturiser Gift','9','1','1133576',16.00,'1704.0168','2744.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001833','pcs','Inventory','VATABLE','0',NULL,0),(5940,'MICROLIFE BP MONITOR EASY B2','11','1','1133577',16.00,'4132.5','7275',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001834','pcs','Inventory','EXEMPTED','0','0120.11.00',0),(5941,'MOZZISHIELD NO DEET INSECT REPELLENT 100ML','9','1','1133647',16.00,'359.6','599.99956',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001835','pcs','Inventory','VATABLE','0',NULL,0),(5942,'ACTION TABLETS 110S','6','1','1133880',16.00,'3.191','6',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001836','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5943,'ENTERONORM VIALS 10S','6','1','1133907',16.00,'41.31','70',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001837','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5944,'WEBBER NATURALS MELATONIN 3MG QUICK DISSOLVING TABS 90S','6','1','1133967',16.00,'1350','2300',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001838','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5945,'WEBBER NATURALS MELATONIN 5MG TIME RELEASE TABS 60S','6','1','1133968',16.00,'1215','2100',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001839','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5946,'SWISS HERBAL LOZENGES EUCALYPTUS & MENTHOL 20S','6','1','1133986',16.00,'297','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001840','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5947,'SWISS HERBAL LOZENGES SAGE 20S','6','1','1133987',16.00,'297','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001841','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5948,'SWISS HERBAL LOZENGES HONEY 20S','6','1','1133988',16.00,'297','530',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001842','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5949,'ACNES CREAMY WASH TRIO ACTIV 50G','9','1','1133994',16.00,'323.35','539.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001843','pcs','Inventory','VATABLE','0',NULL,0),(5950,'ACNES C10 PURE VIT C SERUM 15ML','9','1','1133997',16.00,'1654.45','2729.99968',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001844','pcs','Inventory','VATABLE','0',NULL,0),(5951,'ACNES 3 IN 1 SET -WASH TONE S/GEL','9','1','1133998',16.00,'1154.2812','1919.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001845','pcs','Inventory','VATABLE','0',NULL,0),(5952,'ACNES VITAMIN BOOST CLEANSER 50G','9','1','1133999',16.00,'368.3','614.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001846','pcs','Inventory','VATABLE','0',NULL,0),(5953,'ACNES SCAR CARE DARK SPOTS 12G','9','1','1134000',16.00,'343.36','569.99964',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001847','pcs','Inventory','VATABLE','0',NULL,0),(5954,'BACTIGRAS 10CM*10CM 1s','6','1','1134059',16.00,'100','200',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001848','pcs','Inventory','EXEMPTED','0','0039.11.34',0),(5955,'KIDDZ MAXXOMEGA3 ORANGE LEMON FLAVOUR 100ML','6','1','1134060',16.00,'369.75','640',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001849','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5956,'KIDDZ MAXXOMEGA3 ORANGE LEMON FLAVOUR 200ML','6','1','1134061',16.00,'688.5','1185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001850','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5957,'IMODIUM DUAL ACTION RELIEF TABLETS 6s','6','1','1134063',16.00,'550','920',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001851','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5958,'IMODIUM DUAL ACTION RELIEF TABLETS 12s','6','1','1134064',16.00,'900','1500',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001852','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5959,'HYDROCORTISONE OINTMENT 15G','10','1','1134579',16.00,'250','430',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001853','pcs','Inventory','EXEMPTED','0','0039.11.24',0),(5960,'LRP NIACINAMIDE SERUM FOR DULL AND UNEVEN SKIN 30ML','9','1','1134900',16.00,'4386.58176','7064.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001854','pcs','Inventory','VATABLE','0',NULL,0),(5961,'DAKTARIN 2% CREAM 30GM','10','1','1134924',16.00,'326.4','550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001855','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5962,'ANDOLEX-C ANTIBACTERIAL MOUTHWASH 100ML','6','1','1134929',16.00,'626.4','1079.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001856','pcs','Inventory','VATABLE','0',NULL,0),(5963,'ANDOLEX-C ANTIBACTERIAL MOUTHWASH 200ML','6','1','1134930',16.00,'1074.16','1855.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001857','pcs','Inventory','VATABLE','0',NULL,0),(5964,'EUGICA COFF HERBAL LOZENGES 8S','6','1','1134931',16.00,'106.488','179.99952',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','6','0000-00-00','mainitem','Inclusive','','active','','5001858','pcs','Inventory','VATABLE','0',NULL,0),(5965,'KIDDZ MAXXOMEGA3 ORANGE LEMON FLAVOUR 100ML','6','1','1134060',16.00,'369.75','640',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','5','0000-00-00','mainitem','Inclusive','','active','','5001849','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5966,'KIDDZ MAXXOMEGA3 ORANGE LEMON FLAVOUR 200ML','6','1','1134061',16.00,'688.5','1185',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','5','0000-00-00','mainitem','Inclusive','','active','','5001850','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5967,'LRP NIACINAMIDE SERUM FOR DULL AND UNEVEN SKIN 30ML','9','1','1134900',16.00,'4386.58176','7064.99972',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','1','1','5','0000-00-00','mainitem','Inclusive','','active','','5001854','pcs','Inventory','VATABLE','0',NULL,0),(5968,'DAKTARIN 2% CREAM 30GM','10','1','1134924',16.00,'326.4','550',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','1','1','5','0000-00-00','mainitem','Inclusive','','active','','5001855','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(5969,'ANDOLEX-C ANTIBACTERIAL MOUTHWASH 100ML','6','1','1134929',16.00,'626.4','1079.99944',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','5','0000-00-00','mainitem','Inclusive','','active','','5001856','pcs','Inventory','VATABLE','0',NULL,0),(5970,'ANDOLEX-C ANTIBACTERIAL MOUTHWASH 200ML','6','1','1134930',16.00,'1074.16','1855.00008',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','1','1','5','0000-00-00','mainitem','Inclusive','','active','','5001857','pcs','Inventory','VATABLE','0',NULL,0),(5972,'SEBAMED CLEAR FACE CLEANSING BAR','9','1','1109564',16.00,'754.00','1290.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','1','5001859','pcs','mainitem','VATABLE','0',NULL,0),(5973,'SEBAMED CLEAR FACE CLEANSING BAR','9','1','1109564',16.00,'754','1290.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','1','5001859','pcs','mainitem','VATABLE','0',NULL,0),(5974,'SEBAMED CLEAR FACE CLEANSING BAR','9','1','1109564',16.00,'754.00','1290.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','1','5001859','pcs','mainitem','VATABLE','0',NULL,0),(5975,'UNCOVER ALOE INVISIBLE-180ML','9','1','1135052',16.00,'1481.32','2390.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','1','5001860','pcs','mainitem','VATABLE','0',NULL,0),(5976,'UNCOVER ALOE INVISIBLE-180ML','9','1','1135052',16.00,'1481.32','2390.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,4.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','1','5001860','pcs','mainitem','VATABLE','0',NULL,0),(5977,'UNCOVER ALOE INVISIBLE-180ML','9','1','1135052',16.00,'1481.32','2390.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','1','5001860','pcs','mainitem','VATABLE','0',NULL,0),(5978,'PROPRANOLOL 40MG TABS 100S','11','1','1108816',16.00,'1.74','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','1','5001861','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5979,'PROPRANOLOL 40MG TABS 100S','11','1','1108816',16.00,'1.74','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,100.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','1','5001861','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5980,'PROPRANOLOL 40MG TABS 100S','11','1','1108816',16.00,'1.74','4',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','1','5001861','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5981,'M$Ms CHOCOLATE 45G','12','1','1127370',16.00,'129.195','200.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','1','5001862','pcs','Inventory','VATABLE','0',NULL,0),(5982,'M$Ms CHOCOLATE 45G','12','1','1127370',16.00,'129.195','200.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,24.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','1','5001862','pcs','Inventory','VATABLE','0',NULL,0),(5983,'M$Ms CHOCOLATE 45G','12','1','1127370',16.00,'129.195','200.00024',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','1','5001862','pcs','Inventory','VATABLE','0',NULL,0),(5984,'CLAVULIN 228MG/5ML SUSP - 70ML','12','1','1102201',16.00,'392.71','660',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','1','5001863','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(5985,'CLAVULIN 228MG/5ML SUSP - 70ML','12','1','1102201',16.00,'392.71','660',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','1','5001863','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(5986,'CLAVULIN 228MG/5ML SUSP - 70ML','12','1','1102201',16.00,'392.71','660',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','1','5001863','pcs','Inventory','EXEMPTED','0','0039.11.13',0),(5987,'DAY NURSE LIQUID 240ML','6','1','1102706',16.00,'1,550.00','2,635.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','1','5001864','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(5988,'DAY NURSE LIQUID 240ML','6','1','1102706',16.00,'1,550.00','2,635.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','1','5001864','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(5989,'DAY NURSE LIQUID 240ML','6','1','1102706',16.00,'1550','2,635.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','1','5001864','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(5990,'BENYLIN COLD & FLU MAX STRENGTH DAY & NIGHT CAPSULES 16','6','1','1101049',16.00,'590','1,015.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','1','5001865','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(5991,'BENYLIN COLD & FLU MAX STRENGTH DAY & NIGHT CAPSULES 16','6','1','1101049',16.00,'590','1,015.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','1','5001865','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(5992,'BENYLIN COLD & FLU MAX STRENGTH DAY & NIGHT CAPSULES 16','6','1','1101049',16.00,'590.00','1,015.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','1','5001865','pcs','Inventory','EXEMPTED','0','0039.11.27',0),(5993,'OLFEN 75MG/2ML AMPS 5S','10','1','1107946',16.00,'222','382',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','1','5001866','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5995,'OLFEN 75MG/2ML AMPS 5S','10','1','1107946',16.00,'222','382',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','1','5001866','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5996,'OLFEN 75MG/2ML AMPS 5S','10','1','1107946',16.00,'222.00','382',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','1','5001866','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(5997,'JAMIESON PRENATAL CHEWABLE TABLETS 60S','6','1','1131483',16.00,'1,311.49','2,260.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','1','5001867','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5998,'JAMIESON PRENATAL 100% + DHA SOFT GELS 60S','6','1','1131352',1.00,'1,473.30','2,535.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','1','5001868','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(5999,'METRONIDAZOLE 400MG TABS 21S','10','1','1135123',2.00,'20.714','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','1','5001869','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(6000,'JAMIESON PRENATAL CHEWABLE TABLETS 60S','6','1','1131483',16.00,'1,311.49','2,260.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','1','5001867','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(6001,'JAMIESON PRENATAL 100% + DHA SOFT GELS 60S','6','1','1131352',1.00,'1,473.30','2,535.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','1','5001868','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(6002,'METRONIDAZOLE 400MG TABS 21S','10','1','1135123',2.00,'20.714','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','1','5001869','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(6003,'JAMIESON PRENATAL CHEWABLE TABLETS 60S','6','1','1131483',16.00,'1311.49','2,260.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,1.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','1','5001867','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(6004,'JAMIESON PRENATAL 100% + DHA SOFT GELS 60S','6','1','1131352',1.00,'1473','2,535.00',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,2.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','1','5001868','pcs','Inventory','EXEMPTED','0','0039.11.29',0),(6005,'METRONIDAZOLE 400MG TABS 21S','10','1','1135123',2.00,'20.71','37',NULL,'0',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','1','5001869','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(6006,'LAMISIL 250MG TABS 14S','10','1','1106245',16.00,'126.6','900',NULL,'',NULL,NULL,'1',0,0,NULL,0,0,0,9.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','1','5001870','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(6007,'TRAMAL 50MG TABS 10S','10','1','1110601',16.00,'135.6','300',NULL,'',NULL,NULL,'1',0,0,NULL,0,0,0,5.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','1','5001871','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(6008,'LAMISIL 250MG TABS 14S','10','1','1106245',16.00,'126.6','900',NULL,'',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','1','5001870','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(6009,'TRAMAL 50MG TABS 10S','10','1','1110601',16.00,'135.6','300',NULL,'',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','1','5001871','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(6010,'LAMISIL 250MG TABS 14S','10','1','1106245',16.00,'126.6','900',NULL,'',NULL,NULL,'1',0,0,NULL,0,0,0,14.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','1','5001870','pcs','Inventory','EXEMPTED','0','0039.11.07',0),(6011,'TRAMAL 50MG TABS 10S','10','1','1110601',16.00,'135.6','300',NULL,'',NULL,NULL,'1',0,0,NULL,0,0,0,10.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','1','5001871','pcs','Inventory','EXEMPTED','0','0039.11.20',0),(6012,'EPIMOL-B BABY & JUNIOR EMOLLIENT CREAM 150G','12','1','1131326',16.00,'126.6','1000',NULL,'',NULL,NULL,'1',0,0,NULL,0,0,0,30.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','1','5001872','pcs','Inventory','VATABLE','0',NULL,0),(6013,'EPIMOL-B BABY & JUNIOR EMOLLIENT CREAM 150G','12','1','1131326',16.00,'126.6','1000',NULL,'',NULL,NULL,'1',0,0,NULL,0,0,0,0.00,'','71','1','5','0000-00-00','mainitem','Inclusive','','active','1','5001872','pcs','Inventory','VATABLE','0',NULL,0),(6014,'EPIMOL-B BABY & JUNIOR EMOLLIENT CREAM 150G','12','1','1131326',16.00,'126.6','1000',NULL,'',NULL,NULL,'1',0,0,NULL,0,0,0,3.00,'','71','1','6','0000-00-00','mainitem','Inclusive','','active','1','5001872','pcs','Inventory','VATABLE','0',NULL,0); /*!40000 ALTER TABLE `productlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products` -- DROP TABLE IF EXISTS `products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `products` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `category` varchar(50) NOT NULL, `supplier` varchar(50) DEFAULT NULL, `code` varchar(255) DEFAULT NULL, `description` varchar(255) NOT NULL, `tax_included` decimal(10,2) NOT NULL DEFAULT 16.00, `buyingprice` varchar(50) NOT NULL, `sellingprice` varchar(50) NOT NULL DEFAULT '0.00', `promoprice` varchar(50) DEFAULT NULL, `wholesaleprice` varchar(50) NOT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `reorderevel` int(50) DEFAULT NULL, `allow_alt_description` tinyint(1) NOT NULL, `is_serialized` tinyint(1) NOT NULL, `imgid` varchar(255) DEFAULT NULL, `override_default_tax` int(1) NOT NULL DEFAULT 0, `is_service` int(1) NOT NULL DEFAULT 0, `deleted` int(1) NOT NULL DEFAULT 0, `qty` decimal(10,2) NOT NULL, `dateposted` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `store` varchar(50) NOT NULL, `expdate` date NOT NULL, `orderamount` varchar(50) NOT NULL DEFAULT 'mainitem', `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `shortname` varchar(50) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `uom` varchar(20) NOT NULL DEFAULT 'pcs', `producttype` varchar(30) NOT NULL DEFAULT 'Inventory', `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) NOT NULL, `vattype` varchar(20) NOT NULL DEFAULT 'VATABLE', `reorderquantity` varchar(20) DEFAULT NULL, `hscode` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `item_number` (`code`), KEY `phppos_items_ibfk_1` (`supplier`), KEY `name` (`name`), KEY `deleted` (`deleted`), KEY `phppos_items_ibfk_2` (`imgid`) ) ENGINE=InnoDB AUTO_INCREMENT=1875 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `products` -- LOCK TABLES `products` WRITE; /*!40000 ALTER TABLE `products` DISABLE KEYS */; INSERT INTO `products` VALUES (1,'NEUROCARE PLUS CAPS 30S.','6',NULL,'5000001','1100001',16.00,'53.00','78.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(2,'ABZ SUSPENSION 10ML','6',NULL,'5000002','1100064',16.00,'34.00','50.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(3,'ABZ TABLETS','6',NULL,'5000003','1100065',16.00,'22.00','33.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(4,'ACLOTAS 100MG TABS 50S','10',NULL,'5000004','1100088',16.00,'28.10','42.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(5,'ACTIFED WET COUGH&COLD SYRUP 100ML','6',NULL,'5000005','1100112',16.00,'348.00','514.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.26'),(6,'ACYCLOVIR 5% CREAM 2GMS','10',NULL,'5000006','1100141',16.00,'210.00','310.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(7,'ACYCLOVIR 200MG DENK TABS 25S','10',NULL,'5000007','1100143',16.00,'40.00','59.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(8,'ACYCLOVIR 400MG TABS 56S','10',NULL,'5000008','1100144',16.00,'9.64','14.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(9,'ADALAT LA 30MG TABS 30S','11',NULL,'5000009','1100149',16.00,'65.76','97.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(10,'ADALAT RETARD 20MG TABS 60S','11',NULL,'5000010','1100150',16.00,'49.72','73.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(11,'ADOL 125MG SUPPOSITORIES 10S','10',NULL,'5000011','1100164',16.00,'29.23','43.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(12,'AERIUS 5MG TABS 30S','10',NULL,'5000012','1100184',16.00,'71.30','105.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(13,'AERIUS SYRUP 150ML','10',NULL,'5000013','1100185',16.00,'1025.36','1515.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(14,'AIRTAL 100MG TABS 40S','10',NULL,'5000014','1100200',16.00,'70.25','104.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(15,'ALCOHOL SWABS 100S','11',NULL,'5000015','1100223',16.00,'1.10','2.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(16,'ALDACTONE 25MG TABS 100S','11',NULL,'5000016','1100225',16.00,'18.07','27.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(17,'ALLOPURINOL 300MG TABS 28S','11',NULL,'5000017','1100251',16.00,'7.14','11.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(18,'ALOE PURA ALOE VERA JUICE 500ML','6',NULL,'5000018','1100280',16.00,'955.00','1411.21',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(19,'AMARYL 2MG TABS 30S','11',NULL,'5000019','1100326',16.00,'38.80','57.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(20,'AMLOSUN 10MG TABS 30S','11',NULL,'5000020','1100349',16.00,'40.17','59.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(21,'AMLOVAS 5MG TABS 30S','11',NULL,'5000021','1100353',16.00,'17.88','26.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(22,'AMOXIL 500MG CAPS 100S','10',NULL,'5000022','1100358',16.00,'16.09','24.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(23,'AMOXIL SYRUP 125MG/5ML 100ML','10',NULL,'5000023','1100361',16.00,'244.50','361.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(24,'AMOXYCILLIN 500MG CAPS 500S','10',NULL,'5000024','1100364',16.00,'0.76','1.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(25,'AMPICLOX 500MG CAPS 100S','10',NULL,'5000025','1100369',16.00,'15.85','23.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(26,'ANDOLEX C MOUTH WASH 200ML','6',NULL,'5000026','1100383',16.00,'990.00','1462.93',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(27,'ANUSOL OINTMENT 25GM','6',NULL,'5000027','1100410',16.00,'465.00','687.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(28,'ANUSOL PLUS HC OINTMENT 15GM','6',NULL,'5000028','1100411',16.00,'685.00','1012.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(29,'APPEVITE SYRUP 100ML','6',NULL,'5000029','1100420',16.00,'158.40','234.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(30,'ARTEQUICK 62.5/375mg TABS 4S','10',NULL,'5000030','1100512',16.00,'455.00','672.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.83'),(31,'ASCARD 75MG TABLETS','11',NULL,'5000031','1100522',16.00,'99.90','148.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(32,'ASCORIL EXPECTORANT 100ML','6',NULL,'5000032','1100530',16.00,'191.35','283.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(33,'ASCORIL EXPECTORANT 200ML','6',NULL,'5000033','1100531',16.00,'332.86','492.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(34,'ASHTONS TEETHING POWDER IMPORTED 20S','6',NULL,'5000034','1100534',16.00,'20.00','30.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(35,'ASOMEX 2.5MG 30S','11',NULL,'5000035','1100535',16.00,'46.27','68.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(36,'ATACAND 8MG TABS 28S','11',NULL,'5000036','1100560',16.00,'65.23','96.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(37,'ATENOLOL 100MG TABS 28S','11',NULL,'5000037','1100568',16.00,'4.29','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(38,'ATENOLOL 25MG TABS 28S','11',NULL,'5000038','1100569',16.00,'5.00','7.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(39,'ATRIZIN 5MG/5ML SYRUP 60ML','10',NULL,'5000039','1100589',16.00,'97.50','144.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(40,'AUGMENTIN 1GM TABLETS 14S','10',NULL,'5000040','1100598',16.00,'134.93','199.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(41,'AUGMENTIN 375MG TABS 20S','10',NULL,'5000041','1100599',16.00,'59.10','87.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(42,'AUGMENTIN 625MG TABS 14S','10',NULL,'5000042','1100600',16.00,'82.00','121.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(43,'AUGMENTIN 228MG/5ML SUSP - 70ML','10',NULL,'5000043','1100602',16.00,'506.00','748.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(44,'AUGMENTIN SYRUP 457MG/5ML - 70ML','10',NULL,'5000044','1100603',16.00,'788.20','1165.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(45,'AVAMYS 27.5MCG NASAL SPRAY 120 DOSES','10',NULL,'5000045','1100615',16.00,'738.00','1091.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(46,'AZTOR 10MG 50S','11',NULL,'5000046','1100701',16.00,'28.50','42.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(47,'AZTOR 20MG 50S','11',NULL,'5000047','1100702',16.00,'38.24','57.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(48,'BACTIFLOX 500MG 10S','10',NULL,'5000048','1100825',16.00,'149.68','221.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(49,'BALLET MOSQUITO REPELLANT LOTION 130ML','9',NULL,'5000049','1100926',16.00,'131.03','193.97',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(50,'BAYER ASPIRIN CARDIO 100MG 30S','11',NULL,'5000050','1100970',16.00,'156.11','231.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(51,'NAIL CUTTER BABY BELLS','12',NULL,'5000051','1101023',16.00,'150.00','221.55',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(52,'NAIL CUTTER SIZE M BELL','12',NULL,'5000052','1101025',16.00,'190.00','281.03',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(53,'BENYLIN 4 FLU 200ML','6',NULL,'5000053','1101045',16.00,'624.00','922.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(54,'BENYLIN COLD & FLU MAX STRENGTH CAPS 16S','6',NULL,'5000054','1101047',16.00,'550.00','813.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(55,'BENYLIN DRY COUGH 100ML','6',NULL,'5000055','1101053',16.00,'449.10','664.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(56,'BENYLIN EXPECTORANT 100ML','6',NULL,'5000056','1101054',16.00,'449.10','664.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(57,'BENYLIN PAEDIATRIC 100ML','6',NULL,'5000057','1101056',16.00,'449.10','664.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(58,'BENYLIN WITH CODEINE 100ML','10',NULL,'5000058','1101057',16.00,'629.10','930.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(59,'BETA GRIPE WATER 100ML','6',NULL,'5000059','1101073',16.00,'80.00','118.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(60,'BETADINE ANTISEPTIC SOLN 125ML','6',NULL,'5000060','1101081',16.00,'357.28','455.17',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(61,'BETADINE MOUTHWASH 125ML','6',NULL,'5000061','1101083',16.00,'395.00','583.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(62,'BETADINE MOUTHWASH 250ML','6',NULL,'5000062','1101084',16.00,'690','879.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(63,'BETADINE SPRAY POWDER 55G','6',NULL,'5000063','1101086',16.00,'522.00','771.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(64,'BETASON CREAM 15GM','10',NULL,'5000064','1101107',16.00,'32.60','48.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(65,'BETASON G OINT 15GM','10',NULL,'5000065','1101108',16.00,'71.50','106.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(66,'BETASON S OINTMENT 15GM','10',NULL,'5000066','1101111',16.00,'73.00','108.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(67,'BIO OIL 200ML','9',NULL,'5000067','1101210',16.00,'1041.51','1538.79',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(68,'BISODOL TABLETS','6',NULL,'5000068','1101224',16.00,'581.40','859.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(69,'BISOLVON LINCTUS 200ML','6',NULL,'5000069','1101227',16.00,'470.70','696.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(70,'BLISTEX INTENSIVE MOISTURISER','9',NULL,'5000070','1101290',16.00,'297.42','439.66',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(71,'BONIUM TABLETS','6',NULL,'5000071','1101345',16.00,'12.90','19.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(72,'BONNISAN SYRUP 120ML','6',NULL,'5000072','1101350',16.00,'259.44','383.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(73,'BOUNTY CHOCOLATE 57G','12',NULL,'5000073','1101465',16.00,'85.17','125.86',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(74,'BRUFEN SUSP 100MG/5ML - 100ML','6',NULL,'5000074','1101526',16.00,'447.18','661.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(75,'BRUSTAN TABS 10S','6',NULL,'5000075','1101552',16.00,'8.64','13.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(76,'BULKOT B CREAM 15GM','10',NULL,'5000076','1101594',16.00,'52.00','77.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(77,'BULKOT CREAM 15GM','10',NULL,'5000077','1101595',16.00,'21.85','32.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(78,'BULKOT MIXI CREAM 20GM','10',NULL,'5000078','1101597',16.00,'116.00','171.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(79,'BUMP PATROL 7 DAY TREATMENT SOLUTION 65ML','12',NULL,'5000079','1101609',16.00,'374.00','552.59',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(80,'BUSCOPAN 10MG TABS 50S','10',NULL,'5000080','1101638',16.00,'15.50','23.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(81,'CACHNERVE CAPS 30S','10',NULL,'5000081','1101712',16.00,'38.33','57.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(82,'CADIPHEN SYRUP 100ML','6',NULL,'5000082','1101726',16.00,'100.00','148.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(83,'CADISTIN EXPECTORANT 100ML','6',NULL,'5000083','1101727',16.00,'98.00','145.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(84,'CALAMINE LOTION 100ML','9',NULL,'5000084','1101746',16.00,'28.00','41.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(85,'CALPOL SUSPENSION 100ML','6',NULL,'5000085','1101771',16.00,'271.31','401.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(86,'CALPOL SUSPENSION 60ML','6',NULL,'5000086','1101772',16.00,'183.56','271.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(87,'CANDID B CREAM 15GM','10',NULL,'5000087','1101813',16.00,'163.76','242.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(88,'CANDID B CREAM 30GM','10',NULL,'5000088','1101814',16.00,'317.73','470.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(89,'CANDID B LOTION','10',NULL,'5000089','1101815',16.00,'247.42','366.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(90,'CANDID CREAM 20GM','10',NULL,'5000090','1101816',16.00,'219.83','325.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(91,'CANDID EAR DROPS','10',NULL,'5000091','1101817',16.00,'140.62','208.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(92,'CANDID LOTION 20ML','10',NULL,'5000092','1101818',16.00,'166.00','245.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(93,'CANDID MOUTH PAINT','10',NULL,'5000093','1101819',16.00,'159.31','235.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(94,'CANDID POWDER','6',NULL,'5000094','1101820',16.00,'210.04','310.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(95,'CANDID T V SUSPENSION','10',NULL,'5000095','1101822',16.00,'331.97','491.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(96,'CANDID V 1 PESSARIES','10',NULL,'5000096','1101823',16.00,'238.57','353.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(97,'CANDID V 3 PESSARIES','10',NULL,'5000097','1101824',16.00,'299.04','442.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(98,'CANDID VAGINAL GEL','10',NULL,'5000098','1101827',16.00,'317.73','470.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(99,'CANDIFEM VAGINAL PESSARIES 6S','10',NULL,'5000099','1101828',16.00,'264.00','390.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(100,'CANESTEN CREAM 20GM','10',NULL,'5000100','1101849',16.00,'585.00','865.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(101,'CARCA 25MG TABS 30S','11',NULL,'5000101','1101870',16.00,'56.37','83.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(102,'CARCA 12.5MG TABS 30S','11',NULL,'5000102','1101872',16.00,'41.67','62.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(103,'CARDINOL 25MG TABS 28S','11',NULL,'5000103','1101873',16.00,'3.63','5.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(104,'CARDINOL 100MG TABS 28S','11',NULL,'5000104','1101874',16.00,'6.93','10.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(105,'CARDISPRIN 75MG TABS 28S','11',NULL,'5000105','1101878',16.00,'57.14','84.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(106,'CARNATION CORN CAPS 5S','6',NULL,'5000106','1101911',16.00,'240.00','355.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(107,'CASTOR OIL 100ML','6',NULL,'5000107','1101923',16.00,'70.00','103.45',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(108,'CATAFLAM 50MG TABS 100S','10',NULL,'5000108','1101925',16.00,'31.48','47.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(109,'CATOXYMAG SUSPENSION 200ML','6',NULL,'5000109','1101929',16.00,'180.00','266.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(110,'CAUSTIC PENCIL 95%','10',NULL,'5000110','1101931',16.00,'231.40','342.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0','0039.11.28'),(111,'CENTRUM ADVANCE 60S','6',NULL,'5000111','1101969',16.00,'1400.00','2069.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(112,'CEPROLEN D EYE/EAR DROPS 5ML','10',NULL,'5000112','1101986',16.00,'241.00','356.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(113,'CEPROLEN E/E DROPS','10',NULL,'5000113','1101987',16.00,'160.00','236.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(114,'CERUMOL EAR DROPS','6',NULL,'5000114','1101993',16.00,'370.00','547.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(115,'CETAMOL 500MG TABS 100S','6',NULL,'5000115','1101997',16.00,'1.16','2.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(116,'CETAMOL SYRUP 100ML','6',NULL,'5000116','1101998',16.00,'54.60','81.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(117,'CETRIZET 10MG TABS 100S','10',NULL,'5000117','1102002',16.00,'20.10','30.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(118,'CETRIZET D TABS 100S','10',NULL,'5000118','1102003',16.00,'23.00','34.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(119,'CHARCOAL TABS ACTIVATED 100S (LOCAL)','6',NULL,'5000119','1102025',16.00,'3.90','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(120,'CARMEX LIPBALM STRAWBERRY TUBE 10G','9',NULL,'5000120','1102059',16.00,'300.00','443.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(121,'CIALIS 20MG TABS 2S','11',NULL,'5000121','1102117',16.00,'923.5','1365.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(122,'CIPRO DENK 500MG TABS 10S','10',NULL,'5000122','1102141',16.00,'51.59','76.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(123,'CIPROINTA 500MG TABS 10S','10',NULL,'5000123','1102142',16.00,'15.72','23.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(124,'CLARINASE TABS 14S','10',NULL,'5000124','1102170',16.00,'47.88','71.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(125,'CLARITYNE 10MG TABS 30S','10',NULL,'5000125','1102187',16.00,'48.60','72.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(126,'CLARITYNE 5MG/5ML SYRUP 100ML','10',NULL,'5000126','1102188',16.00,'476.69','704.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(127,'CLAVULIN 457MG/5ML - 70ML','10',NULL,'5000127','1102203',16.00,'613.28','906.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(128,'CLAVULIN 625MG TABS 14S','10',NULL,'5000128','1102204',16.00,'64.50','95.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(129,'CLOB B CREAM 15GM','10',NULL,'5000129','1102278',16.00,'67.50','100.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(130,'CLOB CREAM 15GM','10',NULL,'5000130','1102279',16.00,'41.00','61.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(131,'CLOBEDERM OINTMENT 15GM','10',NULL,'5000131','1102280',16.00,'96.00','142.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(132,'CLOPILET 75MG TABS 30S','11',NULL,'5000132','1102286',16.00,'50.00','74.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(133,'CLOPIXOL INJ ACUPHASE 100MG/2ML','10',NULL,'5000133','1102289',16.00,'1774.00','2622.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(134,'CLOZOLE B CREAM15GM','10',NULL,'5000134','1102298',16.00,'66.10','98.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(135,'CLOZOLE CREAM','10',NULL,'5000135','1102299',16.00,'16.80','25.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(136,'CO-DIOVAN 80/12.5MG TABS 28S','11',NULL,'5000136','1102326',16.00,'78.44','116.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(137,'COLDCAP DAY AND NIGHT CAPS 24S','6',NULL,'5000137','1102331',16.00,'139.65','206.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(138,'COLDCAP DAY TIME 12S','6',NULL,'5000138','1102332',16.00,'67.20','99.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(139,'COLDCAP NIGHT TIME 12S','6',NULL,'5000139','1102333',16.00,'67.20','99.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(140,'COLDCAP ORIGINAL 12S','6',NULL,'5000140','1102334',16.00,'78.75','116.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(141,'COLDCAP ORIGINAL 96S','6',NULL,'5000141','1102335',16.00,'5.95','9.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(142,'COLDCAP SYRUP 100ML','6',NULL,'5000142','1102336',16.00,'71.40','106.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(143,'COLGATE KIDS T/PASTE SMILES 50ML (2-5YRS)','12',NULL,'5000143','1102348',16.00,'200.00','295.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(144,'CO-MICARDIS 80MG TABS 28S','11',NULL,'5000144','1102428',16.00,'93.86','139.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(145,'CONCOR 10MG TABS 30S','11',NULL,'5000145','1102438',16.00,'44.00','65.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(146,'CONCOR 5MG TABS 30S','11',NULL,'5000146','1102439',16.00,'20.83','31.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(147,'CONTEMPO CONDOMS ROUGH RIDER 3S','6',NULL,'5000147','1102450',16.00,'212.5','270.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(148,'COSATRIM DS TABS 100S','10',NULL,'5000148','1102501',16.00,'4.21','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(149,'COSVATE GM CREAM 15GM','10',NULL,'5000149','1102523',16.00,'171.00','253.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(150,'COTTON WOOL 100GM','12',NULL,'5000150','1102539',16.00,'62.00','92.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.33'),(151,'COTTON WOOL 400GM','12',NULL,'5000151','1102540',16.00,'220.00','325.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.33'),(152,'COTTON WOOL 50GM','12',NULL,'5000152','1102541',16.00,'30.00','44.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.33'),(153,'COVERAM 10/5MG TABS 30S','11',NULL,'5000153','1102553',16.00,'67.94','100.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(154,'COX B 200MG CAPS 50S','10',NULL,'5000154','1102558',16.00,'24.75','37.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(155,'CREPE BANDAGE 3IN 7.5CM ELASTOLITE','6',NULL,'5000155','1102574',16.00,'18.00','27.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(156,'CREPE BANDAGE 4IN 10CM ELASTOLITE','6',NULL,'5000156','1102575',16.00,'22.00','33.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(157,'CREPE BANDAGE 6IN 15CM ELASTOLITE','6',NULL,'5000157','1102576',16.00,'30.00','44.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(158,'CYCLOPAM SUSPENSION 30ML','6',NULL,'5000158','1102642',16.00,'154.00','228.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(159,'CYCLOPAM TABLETS 20S','10',NULL,'5000159','1102643',16.00,'8.99','13.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(160,'CYPON 100ML','10',NULL,'5000160','1102648',16.00,'148.00','219.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(161,'CYPON 200ML','10',NULL,'5000161','1102649',16.00,'259.00','383.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(162,'DAFLON 500MG TABS 30S','11',NULL,'5000162','1102669',16.00,'17.41','26.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(163,'DAKTARIN CREAM 20GM','10',NULL,'5000163','1102672',16.00,'341.00','504.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(164,'DALACIN C 300MG TABS 16S','10',NULL,'5000164','1102676',16.00,'90.75','134.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(165,'DALACIN T SOLUTION','10',NULL,'5000165','1102678',16.00,'806.00','1191.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(166,'DEEP FREEZE GEL 35G','6',NULL,'5000166','1102718',16.00,'263.00','389.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(167,'DEEP FREEZE SPRAY 150ML','6',NULL,'5000167','1102719',16.00,'572.00','845.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(168,'DEEP HEAT CREAM 15GM','6',NULL,'5000168','1102721',16.00,'177.00','262.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(169,'DEEP HEAT CREAM 35GM','6',NULL,'5000169','1102722',16.00,'195.00','288.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(170,'DEEP HEAT CREAM 67GM','6',NULL,'5000170','1102723',16.00,'339.00','501.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(171,'DEEP HEAT RUB 100GM','6',NULL,'5000171','1102725',16.00,'420.00','621.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(172,'DEEP HEAT SPRAY','6',NULL,'5000172','1102726',16.00,'455.00','672.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(173,'DEEP RELIEF GEL 30GM','6',NULL,'5000173','1102729',16.00,'501.30','741.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(174,'DEEP RELIEF GEL 50GM','6',NULL,'5000174','1102730',16.00,'662.00','978.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(175,'DELASED CHESTY COUGH 100ML','6',NULL,'5000175','1102732',16.00,'94.50','140.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(176,'DELASED DRY COUGH 100ML','6',NULL,'5000176','1102734',16.00,'94.50','140.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(177,'DELASED DRY NON DROWSY 100ML','6',NULL,'5000177','1102735',16.00,'94.50','140.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(178,'DERMIDEX CREAM','10',NULL,'5000178','1102786',16.00,'59.85','88.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(179,'DETTOL LIQUID 125ML','6',NULL,'5000179','1102808',16.00,'272.2752','346.55',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(180,'DETTOL LIQUID 250ML','6',NULL,'5000180','1102809',16.00,'454.65','671.55',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(181,'DETTOL LIQUID 500ML','6',NULL,'5000181','1102810',16.00,'919.00','1357.76',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(182,'DETTOL LIQUID 50ML','6',NULL,'5000182','1102811',16.00,'87.92','130.17',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(183,'DEXA-G EYE DROPS 5ML','10',NULL,'5000183','1102815',16.00,'384.93','569.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(184,'DIALIN CAPS 2MG','6',NULL,'5000184','1102841',16.00,'26.25','39.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(185,'DIAMOX 250MG TABS 100S','11',NULL,'5000185','1102844',16.00,'29.25','43.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(186,'DICLODENK 100MG TABS 100S','10',NULL,'5000186','1102862',16.00,'9.37','14.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(187,'DICLOGENTA EYE DROPS 5ML','10',NULL,'5000187','1102865',16.00,'182.45','270.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(188,'DICLOMOL EC 50MG TABS 100S','10',NULL,'5000188','1102866',16.00,'1.00','1.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(189,'DICLOMOL GEL 20GM','10',NULL,'5000189','1102867',16.00,'154.00','228.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(190,'DICLOMOL PLUS TABS 100S','10',NULL,'5000190','1102868',16.00,'10.66','16.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(191,'DICLOMOL SR 100MG TABS 100S','10',NULL,'5000191','1102869',16.00,'3.53','5.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(192,'DIFLUCAN 150MG CAPS','10',NULL,'5000192','1102880',16.00,'751.18','1110.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(193,'DISFLATYL TABS 100S','6',NULL,'5000193','1102947',16.00,'17.00','25.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(194,'DISPOSABLE 3PLY SURGICAL MASKS 50S','10',NULL,'5000194','1102953',16.00,'3.20','5.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0096.11.02'),(195,'DISPOSABLE SYRINGES 20ML','10',NULL,'5000195','1102957',16.00,'8.70','13.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0035.11.00'),(196,'DISPOSABLE SYRINGES 5ML','10',NULL,'5000196','1102960',16.00,'4.00','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0035.11.00'),(197,'DOLOACT MR TABS 100S','10',NULL,'5000197','1102992',16.00,'16.50','24.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(198,'DOLOMED MR TABS 100S','10',NULL,'5000198','1102996',16.00,'12.25','18.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(199,'DOXYCYCLINE 100MG 50S U.K','10',NULL,'5000199','1103057',16.00,'16.50','24.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(200,'DOXYCYCLINE CAPSULES *100S LOCAL','10',NULL,'5000200','1103059',16.00,'3.00','4.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(201,'DULCOLAX 5MG TABS 30S','10',NULL,'5000201','1103150',16.00,'9.07','13.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(202,'DULCOLAX 10MG SUPPOSITORIES 12S','10',NULL,'5000202','1103151',16.00,'52.50','78.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(203,'DUPHALAC LIQUID 200ML','6',NULL,'5000203','1103172',16.00,'603.40','892.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(204,'DUPHASTON 10MG TABS 20S','10',NULL,'5000204','1103174',16.00,'60','84.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(205,'DUREX CONDOMS ELITE','6',NULL,'5000205','1103191',16.00,'155.00','229.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(206,'DUREX CONDOMS EXTRA SAFE','6',NULL,'5000206','1103192',16.00,'172.10','254.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(207,'DUREX CONDOMS FETHERLITE 3S','6',NULL,'5000207','1103193',16.00,'172.10','254.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(208,'DUREX CONDOMS PERFORMA','6',NULL,'5000208','1103198',16.00,'208.61','308.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(209,'EBASTEL 10MG TABS 20S','10',NULL,'5000209','1103402',16.00,'75.60','112.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(210,'ELASTOPLAST FABRIC 100S','6',NULL,'5000210','1103431',16.00,'0.95','1.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(211,'ELOCOM CREAM 15GM','10',NULL,'5000211','1103785',16.00,'705.10','1042.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(212,'ELOCOM OINTMENT 15GM','10',NULL,'5000212','1103787',16.00,'709.71','1049.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(213,'ELTROXIN 100MCG TABS 100S','11',NULL,'5000213','1103788',16.00,'10.06','15.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(214,'ELYCORT CREAM 15GM','10',NULL,'5000214','1103790',16.00,'50.00','74.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(215,'ELYCORT OINTMENT 15GM','10',NULL,'5000215','1103791',16.00,'53.00','78.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(216,'ELYVATE CREAM 15GM','10',NULL,'5000216','1103793',16.00,'41.65','62.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(217,'EMITINO SUSPENSION 30ML','10',NULL,'5000217','1103806',16.00,'400.00','591.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(218,'EMITINO 4MG TABS 10S','10',NULL,'5000218','1103807',16.00,'40','59.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(219,'ENAPRIL 20 H TABS 30S','11',NULL,'5000219','1103817',16.00,'49.34','73.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(220,'ENAPRIL 5MG TABS 100S','11',NULL,'5000220','1103818',16.00,'4.98','7.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(221,'ENAPRIL 10MG TABS 100S','11',NULL,'5000221','1103819',16.00,'8.90','13.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(222,'ENAPRIL 20MG TABS 100S','11',NULL,'5000222','1103820',16.00,'15.56','23.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(223,'ENAT 400IU VIT E CAPSULES','6',NULL,'5000223','1103822',16.00,'1280.00','1892.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(224,'ENO LEMON 48S','6',NULL,'5000224','1103854',16.00,'10.8125','16.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(225,'ENSURE POWDER VANILLA 400G','6',NULL,'5000225','1103863',16.00,'1257.00','1858.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.84'),(226,'ENTAMIZOLE SYRUP 100ML','10',NULL,'5000226','1103865',16.00,'393.90','582.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(227,'ENTEROGERMINA 5ML 10S','6',NULL,'5000227','1103868',16.00,'51.24','76.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(228,'ENZOFLAM TABS 10S','10',NULL,'5000228','1103869',16.00,'30.00','44.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(229,'EPANUTIN 100MG CAPS 84S','11',NULL,'5000229','1103871',16.00,'12.40','18.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(230,'EROSTIN 10MG TABS 10S','10',NULL,'5000230','1103905',16.00,'30.74','45.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(231,'EROVITA EASY PREGNANCY KIT','6',NULL,'5000231','1103907',16.00,'114.84','146.55',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(232,'ERYTHROMYCIN 500MG TABS 100S','10',NULL,'5000232','1103933',16.00,'6.50','10.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.06'),(233,'ESOSE 40MG TABS 10S','11',NULL,'5000233','1103955',16.00,'46.73','69.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(234,'EUCRYL SMOKERS T/PASTE','12',NULL,'5000234','1103985',16.00,'250.00','369.83',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(235,'EUCRYL SMOKERS T/POWDER','12',NULL,'5000235','1103986',16.00,'240.00','354.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(236,'EUMOVATE OINTMENT 25GM','10',NULL,'5000236','1103989',16.00,'519.00','767.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(237,'EURAX HC ANTI-ITCH CREAM 15GM','6',NULL,'5000237','1103995',16.00,'490.00','724.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(238,'EVRA PATCH 3S','10',NULL,'5000238','1104017',16.00,'1417.50','2095.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(239,'LATEX EXAMINATION GLOVES MEDIUM 100S','6',NULL,'5000239','1104019',16.00,'4.40','7.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0096.11.02'),(240,'EXEVATE MF OINTMENT','10',NULL,'5000240','1104023',16.00,'315.95','467.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(241,'EXFORGE 160/5MG TABS 28S','11',NULL,'5000241','1104026',16.00,'65.15','96.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(242,'FASTUM GEL 50GM','10',NULL,'5000242','1104133',16.00,'660.00','975.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(243,'FCN 150MG CAPS','10',NULL,'5000243','1104137',16.00,'64.35','95.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(244,'FEBREX PLUS SYRUP 100ML','6',NULL,'5000244','1104139',16.00,'135.00','200.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(245,'FEBREX PLUS TABS 20S','6',NULL,'5000245','1104140',16.00,'5.80','9.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(246,'FERROGLOBIN CAPS 30S','6',NULL,'5000246','1104184',16.00,'507.60','750.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(247,'FISHERMANS FRIEND LOZS 25G LEMON','6',NULL,'5000247','1104245',16.00,'145','184.48',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(248,'FISHERMANS FRIEND LOZS 25G MINT S/FREE','6',NULL,'5000248','1104246',16.00,'145','184.48',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(249,'FISHERMANS FRIEND LOZS 25G ORIGINAL EXTRA STRONG','6',NULL,'5000249','1104247',16.00,'145','184.48',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0','0039.11.20'),(250,'FISHERMANS FRIEND LOZS 25G BLACKCURRANT','6',NULL,'5000250','1104248',16.00,'125.00','184.48',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(251,'FLAGYL 200MG/5ML SUSP 100ML','10',NULL,'5000251','1104268',16.00,'502.00','742.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(252,'FLATAMEAL DS SUSPENSION 200ML','6',NULL,'5000252','1104275',16.00,'195.00','288.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(253,'FLATAMEAL DS TABLETS 200S','6',NULL,'5000253','1104276',16.00,'3','4.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(254,'FLORANORM 250MG SACCHAROMYCES BOULARDII SACHETS 10S','6',NULL,'5000254','1104301',16.00,'83.00','123.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(255,'FLUCLOXACILLIN 500MG CAPS 100S','10',NULL,'5000255','1104375',16.00,'6.25','9.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(256,'FLUCOZAL 200MG CAPS 10S','10',NULL,'5000256','1104382',16.00,'132.21','195.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(257,'FLUGONE C+F TABLETS 10S','6',NULL,'5000257','1104384',16.00,'88.00','130.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(258,'FLUGONE CAPSULES 10S','6',NULL,'5000258','1104385',16.00,'93.99','139.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(259,'FLUGONE DM COUGH SYRUP 120ML','6',NULL,'5000259','1104386',16.00,'194.00','287.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(260,'FLUGONE DM SYRUP 60ML','6',NULL,'5000260','1104387',16.00,'122.06','180.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(261,'FLUGONE P COUGH SYRUP 120ML','6',NULL,'5000261','1104388',16.00,'186.99','276.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(262,'FLUGONE P SYRUP 60ML','6',NULL,'5000262','1104389',16.00,'122.06','180.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(263,'FOLIC ACID 5MG TABS 28S','10',NULL,'5000263','1104403',16.00,'4.29','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(264,'FRAMYDEX EYE/EAR DROP 8ML','10',NULL,'5000264','1104421',16.00,'198.45','293.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(265,'FUROSEMIDE 40MG TABS 100S','11',NULL,'5000265','1104461',16.00,'1.29','2.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(266,'FUCICORT CREAM 15GM','10',NULL,'5000266','1104462',16.00,'486.92','720.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(267,'FYBOGEL ORANGE 60S','6',NULL,'5000267','1104511',16.00,'30.80','46.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(268,'GAUZE SWABS STERILE 3*3 (100S)','6',NULL,'5000268','1104748',16.00,'3.16','5.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(269,'GAUZE SWABS STERILE 4*4 (100S)','6',NULL,'5000269','1104749',16.00,'3.90','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(270,'GAVISCON DOUBLE ACTION LIQUID 150ML','6',NULL,'5000270','1104757',16.00,'586.46','867.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(271,'GINSOMIN CAPSULES 30S','6',NULL,'5000271','1104866',16.00,'27.36','40.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(272,'GLUCOMET 500MG TABS 28S','11',NULL,'5000272','1104908',16.00,'3.39','5.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(273,'GLUCOMET 850MG TABS 28S','11',NULL,'5000273','1104909',16.00,'7.11','11.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(274,'GLUCOPHAGE 1GM TABS 60S','11',NULL,'5000274','1104910',16.00,'9.17','14.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(275,'GLUCOPHAGE 500MG TABS 90S','11',NULL,'5000275','1104911',16.00,'4.67','7.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(276,'GLUCOPHAGE 850MG TABS 60S','11',NULL,'5000276','1104912',16.00,'8.50','13.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(277,'GLUCOPHAGE XR 500MG 90S','11',NULL,'5000277','1104913',16.00,'8.44','12.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(278,'GLUCOPLUS MACHINE','11',NULL,'5000278','1104914',16.00,'1000.00','1477.59',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(279,'GLUCOSE POWDER 100G','6',NULL,'5000279','1104918',16.00,'34.8','43.97',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(280,'GLYCERINE INFANT SUPPOSITORIES 1G','6',NULL,'5000280','1104936',16.00,'33.17','49.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(281,'GLYCERINE LIQUID 50ML','9',NULL,'5000281','1104937',16.00,'29.00','43.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(282,'GRABACIN DUSTING POWDER','10',NULL,'5000282','1104972',16.00,'99.28','147.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(283,'GRABACIN-3 OINTMENT 20GM','10',NULL,'5000283','1104973',16.00,'186.30','275.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(284,'GRISEOFULVIN 250MG TABS 100S','10',NULL,'5000284','1104986',16.00,'3.58','5.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(285,'GRISEOFULVIN 500MG TABS 100S','10',NULL,'5000285','1104987',16.00,'7.20','11.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(286,'HEDEX TABLETS 100S','6',NULL,'5000286','1105372',16.00,'3.85','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(287,'HEMOSAN CAPSULES *30S','6',NULL,'5000287','1105383',16.00,'6.71','10.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(288,'HEMSAMIC 500MG CAPS 20S','10',NULL,'5000288','1105385',16.00,'36.24','54.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(289,'HUMALOG 3ML CARTRIDGE 5S','11',NULL,'5000289','1105479',16.00,'1110.60','1641.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.81'),(290,'HYDROCHLOROTHIAZIDE 50MG TABS 100S','11',NULL,'5000290','1105499',16.00,'1.74','3.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(291,'HYDROCORTISONE CREAM 30GM','10',NULL,'5000291','1105503',16.00,'310.00','458.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(292,'HYDROGEN PEROXIDE 20V 200ML','6',NULL,'5000292','1105509',16.00,'27.84','35.34',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(293,'HYDROXYCHLOROQUINE 200MG TABS 30S','10',NULL,'5000293','1105511',16.00,'34.83','51.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(294,'IBUMEX GEL 25GM','6',NULL,'5000294','1105537',16.00,'52.50','78.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(295,'IBUMEX SUSP 60ML','6',NULL,'5000295','1105539',16.00,'49.35','73.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(296,'IBUPROFEN 400MG TABLETS B/P 84S','6',NULL,'5000296','1105541',16.00,'3.81','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(297,'IMODIUM LOPERAMIDE 2MG CAPS 6S','6',NULL,'5000297','1105561',16.00,'206.10','305.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(298,'INFA-V VAGINAL PESSARIES 8S','10',NULL,'5000298','1105589',16.00,'407.00','601.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(299,'INTAMINE CREAM 25GM','6',NULL,'5000299','1105669',16.00,'63.00','93.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(300,'IROVEL H TABS 30S','11',NULL,'5000300','1105691',16.00,'55.67','82.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(301,'IROVEL 150MG TABS 30S','11',NULL,'5000301','1105692',16.00,'48.08','71.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(302,'JOINTACE (COLLAGEN/GLUCOSAMINE & CHONDROITIN) *30S','6',NULL,'5000302','1105850',16.00,'1051.82','1710.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(303,'JOLEN FACIAL STRIP WAX 16STRIPS','12',NULL,'5000303','1105859',16.00,'160.00','236.21',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(304,'KARVOL DECONGESTANT CAPSULES','6',NULL,'5000304','1105907',16.00,'30.5','45.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(305,'KEPPRA 250MG TABS 60S','11',NULL,'5000305','1105941',16.00,'41.37','61.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(306,'KETOLAC EYE DROPS 5ML','10',NULL,'5000306','1105948',16.00,'220.00','325.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(307,'KLY LUBRICATING JELLY 42G','6',NULL,'5000307','1105998',16.00,'150.00','222.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.41'),(308,'KOFOL SYRUP 100ML','6',NULL,'5000308','1106001',16.00,'168.00','248.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(309,'KOTEX PANTY LINERS REGULAR 20S','12',NULL,'5000309','1106020',16.00,'100.88','149.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(310,'KOTEX TAMPONS REGULAR 16S','12',NULL,'5000310','1106022',16.00,'237.58','351.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.57'),(311,'KOTEX TAMPONS SUPER 16S','12',NULL,'5000311','1106023',16.00,'233.33','345.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.57'),(312,'LACTULAC LIQUID 200ML','6',NULL,'5000312','1106207',16.00,'412.25','609.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(313,'LAMISIL CREAM 15GM','10',NULL,'5000313','1106243',16.00,'960.00','1419.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(314,'LASIX 40MG TABS 20S','11',NULL,'5000314','1106284',16.00,'35.10','52.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(315,'LEFLOX 500MG TABS 10S','10',NULL,'5000315','1106304',16.00,'70.85','105.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(316,'LEMSIP COLD & FLU SATCHETS BLACKCURRANT 10S','6',NULL,'5000316','1106313',16.00,'57.00','84.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(317,'LEMSIP MAX COLD & FLU SATCHETS LEMON 10S','6',NULL,'5000317','1106329',16.00,'63.50','94.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(318,'LETROZ 2.5MG TABS 25S','11',NULL,'5000318','1106348',16.00,'134.00','198.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(319,'LEXOTANIL 1.5MG TABS 30S','10',NULL,'5000319','1106356',16.00,'16.23','24.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(320,'LEXOTANIL 3.0MG TABS 30S','10',NULL,'5000320','1106357',16.00,'22.71','34.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(321,'SKYN ORIGINAL NON LATEX CONDOM','6',NULL,'5000321','1106367',16.00,'401.205','511.21',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(322,'LIQUID PARAFFIN 100ML','6',NULL,'5000322','1106454',16.00,'52.2','66.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(323,'LISTERINE COOL MINT M/WASH 250ML','12',NULL,'5000323','1106460',16.00,'459.00','678.45',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(324,'LONART DS TABLETS 6S','10',NULL,'5000324','1106500',16.00,'22.83','34.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.83'),(325,'LANCETS 100S','11',NULL,'5000325','1106522',16.00,'1.10','2.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0035.11.00'),(326,'LOSARTAS HT 50/12.5MG TABS 30S','11',NULL,'5000326','1106528',16.00,'29.50','44.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(327,'LOSARTAS 50MG 28S','11',NULL,'5000327','1106529',16.00,'24.46','36.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(328,'LYRICA 25MG CAPS 28S','11',NULL,'5000328','1106605',16.00,'36.00','53.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(329,'LYRICA 75MG CAPS 28S','11',NULL,'5000329','1106606',16.00,'90.02','133.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(330,'MANIX TABLETS 20S','6',NULL,'5000330','1106781',16.00,'31.60','47.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(331,'MARAMOJA TABLETS 100S','6',NULL,'5000331','1106782',16.00,'3.37','5.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(332,'MARAMOJA TABLETS 20S','6',NULL,'5000332','1106783',16.00,'130.31','193.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(333,'MARS BARS 51G','12',NULL,'5000333','1106790',16.00,'85.17','125.86',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(334,'MAXIDEX EYE DROPS','10',NULL,'5000334','1106800',16.00,'280.50','415.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(335,'MAXIDEX EYE OINTMENT','10',NULL,'5000335','1106801',16.00,'433.50','641.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(336,'MAXITROL EYE DROPS','10',NULL,'5000336','1106803',16.00,'175.20','259.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(337,'MEBO OINTMENT 15 GRAMS','10',NULL,'5000337','1106818',16.00,'639.20','945.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(338,'MEBO OINTMENT 30 GRAMS','10',NULL,'5000338','1106819',16.00,'1288.92','1905.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(339,'MEDI-KEEL THROAT LOZENGES 16S ORIGINAL','6',NULL,'5000339','1106840',16.00,'25.00','37.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(340,'MEDIPLAST FABRIC 100S','6',NULL,'5000340','1106842',16.00,'0.55','1.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(341,'MEDIVEN CREAM 15GM','10',NULL,'5000341','1106855',16.00,'44.90','66.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(342,'MEDIVEN S OINTMENT 15GM','10',NULL,'5000342','1106857',16.00,'132.75','196.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(343,'MEFTAL FORTE TABS 20S','10',NULL,'5000343','1106868',16.00,'16.50','24.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(344,'MEFTAL 500MG TABS 20S','10',NULL,'5000344','1106869',16.00,'14.05','21.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(345,'MENTHODEX COUGH SYRUP 200ML','6',NULL,'5000345','1106892',16.00,'318.60','471.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(346,'MENTHODEX COUGH SYRUP 100ML','6',NULL,'5000346','1106893',16.00,'212.40','314.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(347,'MERCILON 3*21S','10',NULL,'5000347','1106899',16.00,'663.33','980.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(348,'METROMAG MILK OF MAGNESIA 100ML','6',NULL,'5000348','1106933',16.00,'99.00','146.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(349,'MICROFINE INSULIN SYRINGES *1ML','11',NULL,'5000349','1106955',16.00,'12.85','19.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0035.11.00'),(350,'MICROGYNON-30 PILLS 21S','10',NULL,'5000350','1106959',16.00,'253.27','374.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(351,'MILTON STERILISING FLUID 500ML','12',NULL,'5000351','1106980',16.00,'281.70','416.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(352,'MILTON STERILISING TABLETS 28S','12',NULL,'5000352','1106981',16.00,'533.6','680.17',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(353,'MINOCYCLINE 100MG 28S','10',NULL,'5000353','1106987',16.00,'72.50','107.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(354,'MOBIC 15MG TABS 10S','10',NULL,'5000354','1107086',16.00,'69.67','103.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(355,'MOMATE CREAM 15GM','10',NULL,'5000355','1107108',16.00,'448.56','663.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(356,'MONTALLERG 10/5MG TABS 20S','11',NULL,'5000356','1107120',16.00,'47.25','70.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(357,'MONTIGET GRANULES 4MG 14S','11',NULL,'5000357','1107123',16.00,'34.42','51.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(358,'MONTIGET 10MG TABS 14S','11',NULL,'5000358','1107124',16.00,'50.72','75.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(359,'MONTIGET 5MG TABS 14S','11',NULL,'5000359','1107125',16.00,'36.50','54.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(360,'MOTILIUM 10MG TABS 20S','10',NULL,'5000360','1107151',16.00,'26.46','39.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(361,'MOTILIUM SYRUP 100 ML','10',NULL,'5000361','1107153',16.00,'430.20','636.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(362,'MOVICOL SATCHETS 30S','6',NULL,'5000362','1107156',16.00,'65.00','96.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(363,'MUCOSOLVAN LIQUID 100ML','6',NULL,'5000363','1107168',16.00,'393.12','581.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(364,'MUVERA 15MG TABS 100S','10',NULL,'5000364','1107188',16.00,'22.40','33.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(365,'MUVERA 7.5MG TABS 100S','10',NULL,'5000365','1107189',16.00,'13.37','20.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(366,'MYCOTA CREAM','6',NULL,'5000366','1107196',16.00,'230.00','340.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(367,'MYCOTA POWDER 70G','6',NULL,'5000367','1107197',16.00,'650.00','961.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(368,'MYOSPAZ TABS 100S','10',NULL,'5000368','1107203',16.00,'15.80','23.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(369,'NAPROSYN 500MG TABS 56S','10',NULL,'5000369','1107351',16.00,'38.39','57.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(370,'NASIVION PAEDIATRIC NASAL DROPS','6',NULL,'5000370','1107355',16.00,'112.50','166.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0',NULL),(371,'NASOSAL DROPS 10ML','6',NULL,'5000371','1107358',16.00,'424.00','627.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(372,'NATRILIX SR 1.5MG TABS 30S','11',NULL,'5000372','1107408',16.00,'24.60','36.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(373,'NEBILET 5MG TABS 28S','11',NULL,'5000373','1107423',16.00,'63.57142857','94.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(374,'NETAZOX 500MG TABS 6S','10',NULL,'5000374','1107477',16.00,'47.58','70.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(375,'NEURORUBINE FORTE TABLETS 20S','10',NULL,'5000375','1107486',16.00,'20.00','30.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(376,'NEXIUM 20MG TABS 14S','11',NULL,'5000376','1107612',16.00,'86.95','128.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(377,'NEXIUM 40MG TABS 14S','11',NULL,'5000377','1107613',16.00,'112.02','166.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(378,'NICORETTE FRUITFUSION GUM 2MG','6',NULL,'5000378','1107627',16.00,'285.71','422.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0',NULL),(379,'NICORETTE FRUITFUSION GUM 4MG','6',NULL,'5000379','1107628',16.00,'335.71','496.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0',NULL),(380,'NICORETTE FRESHMINT GUM 4MG','6',NULL,'5000380','1107630',16.00,'335.71','496.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0',NULL),(381,'NIFEDIDENK RETARD 20MG TABS 100S','11',NULL,'5000381','1107637',16.00,'11.26','17.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(382,'NIFELAT RETARD 20MG TABS 100S','11',NULL,'5000382','1107638',16.00,'5.15','8.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(383,'NILOL 50/20MG TABS 30S','11',NULL,'5000383','1107642',16.00,'24.17','36.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(384,'NOGLUC 5MG TABS 28S','11',NULL,'5000384','1107675',16.00,'3.74','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(385,'NORMAL SALINE 500ML','10',NULL,'5000385','1107684',16.00,'95.00','140.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(386,'NORMAL SALINE NASAL DROPS 10ML','6',NULL,'5000386','1107685',16.00,'25.00','37.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(387,'NORVASC 5MG TABS 30S','11',NULL,'5000387','1107690',16.00,'47.30','70.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(388,'NORVASC 10MG TABS 30S','11',NULL,'5000388','1107691',16.00,'95.29','141.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(389,'NOSIC TABS 20S','10',NULL,'5000389','1107694',16.00,'16.46','24.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(390,'NOVORIN SALINE NASAL DROPS 15ML','6',NULL,'5000390','1107754',16.00,'81.00','120.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(391,'NUROFEN COLD & FLU TABS 24S','6',NULL,'5000391','1107803',16.00,'1005.00','1485.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(392,'NUROFEN SUSP ORANGE 200ML','6',NULL,'5000392','1107819',16.00,'1250.00','1847.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(393,'NYSTAN ORAL DROPS 30ML','10',NULL,'5000393','1107843',16.00,'45.00','67.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(394,'NYSTATIN ORAL DROPS 30ML','10',NULL,'5000394','1107844',16.00,'40.00','59.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(395,'OB REGULAR TAMPONS 8S','12',NULL,'5000395','1107868',16.00,'160.00','236.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.57'),(396,'OB SUPER TAMPONS 8S','12',NULL,'5000396','1107870',16.00,'184.00','272.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.57'),(397,'OCID 20MG CAPS 100S','11',NULL,'5000397','1107881',16.00,'1.84','3.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(398,'OILATUM CREAM TUBE 150GM','9',NULL,'5000398','1107898',16.00,'860.00','1270.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(399,'OILATUM SOAP 100GM','9',NULL,'5000399','1107916',16.00,'446.55','660.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(400,'OJEN OZ TABS 10S','10',NULL,'5000400','1107917',16.00,'23.68','35.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(401,'OLBAS OIL 10ML ADULTS','6',NULL,'5000401','1107923',16.00,'430.00','635.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(402,'OLBAS OIL CHILDREN','6',NULL,'5000402','1107924',16.00,'430.00','635.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(403,'OLFEN 100MG SR DEPOCAPS 10S','10',NULL,'5000403','1107945',16.00,'71.00','105.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(404,'OLFEN 75MG SR DEPOTABS 30S','10',NULL,'5000404','1107947',16.00,'36.17','53.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(405,'OLFEN GEL 20GM','10',NULL,'5000405','1107950',16.00,'490.00','724.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(406,'OMASTIN 50mg/5ml SUSPENSION 35ML','10',NULL,'5000406','1107962',16.00,'313.50','463.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(407,'OMEGA H3 CAPSULES 30S','6',NULL,'5000407','1107963',16.00,'28.16','42.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(408,'OMEPRAZOLE 20MG TABS 28S','11',NULL,'5000408','1107964',16.00,'5.00','7.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(409,'ON CALL PLUS TEST STRIPS 50S','11',NULL,'5000409','1107974',16.00,'517.24','764.66',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(410,'ONAZIN EYE DROPS 10ML','6',NULL,'5000410','1107975',16.00,'267.30','395.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(411,'ORAL B DENTAL FLOSS WAXED MINT 50M','12',NULL,'5000411','1108082',16.00,'180.00','266.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(412,'ORAL REHYDRATION SALTS 14G 100S','6',NULL,'5000412','1108120',16.00,'6.00','9.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(413,'ORELOX SUSPENSION 40MG/5ML 100ML','10',NULL,'5000413','1108136',16.00,'1710.','2528.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(414,'OSTEOCARE JOINT GLUCOSAMINE & CHONDROITIN TABS 60S','6',NULL,'5000414','1108185',16.00,'1428.00','2110.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(415,'OSTEOCARE TABLETS 30S','6',NULL,'5000415','1108189',16.00,'432.00','638.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(416,'OTOREX EAR DROPS 10ML','6',NULL,'5000416','1108194',16.00,'206.00','304.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(417,'P-ALAXIN TABS 9S','10',NULL,'5000417','1108229',16.00,'187.00','276.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.83'),(418,'PANADOL ADVANCE 100S','6',NULL,'5000418','1108283',16.00,'4.69','7.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(419,'PANADOL ADVANCE 20S','6',NULL,'5000419','1108285',16.00,'130.58','193.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(420,'PANADOL BABY & INFANT SUSP 100ML','6',NULL,'5000420','1108287',16.00,'238.00','352.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(421,'PANADOL EXTRA With Opti Zorb 100S','6',NULL,'5000421','1108293',16.00,'4.80','7.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(422,'PANADOL EXTRA with Opti Zorb 20S','6',NULL,'5000422','1108295',16.00,'130.94','193.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(423,'PANDERM OINTMENT 15GM','10',NULL,'5000423','1108303',16.00,'351.50','519.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(424,'PANTOCID 40MG TABS 50S','11',NULL,'5000424','1108325',16.00,'43.00','64.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(425,'PARIET 20MG TABS 28S','11',NULL,'5000425','1108339',16.00,'172.06','254.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(426,'PEDITRAL ORANGE O.R.S','6',NULL,'5000426','1108375',16.00,'58.01','86.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(427,'PERNEX AC 5% GEL 20GM','10',NULL,'5000427','1108408',16.00,'286.00','423.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(428,'PHARMASAL OINTMENT','10',NULL,'5000428','1108425',16.00,'43.00','64.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(429,'PIRITON EXPECTORANT 100ML','6',NULL,'5000429','1108573',16.00,'343.19','507.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(430,'PIRITON SYRUP 100ML','6',NULL,'5000430','1108574',16.00,'296.00','437.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(431,'PIRITON 4MG TABS 1000S','10',NULL,'5000431','1108575',16.00,'2.36','3.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(432,'PIROXICAM 20MG CAPS 100S','10',NULL,'5000432','1108576',16.00,'0.95','1.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(433,'PONSTAN FORTE 500MG TABS 50S','10',NULL,'5000433','1108653',16.00,'19.82','29.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(434,'POSTINOR 0.75MG TABLETS','10',NULL,'5000434','1108663',16.00,'126.90','188.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(435,'POWERGESIC PLUS GEL 30G','6',NULL,'5000435','1108703',16.00,'180.00','266.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(436,'PREDNISOLONE 5MG TABS 100S','11',NULL,'5000436','1108713',16.00,'1.64','2.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(437,'PREDNISONE 5MG TABS 100S','11',NULL,'5000437','1108714',16.00,'1.80','3.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(438,'PREDSOL FORTE 60ML','10',NULL,'5000438','1108716',16.00,'773.50','1143.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(439,'PREGNACARE CAPS 30S','6',NULL,'5000439','1108719',16.00,'566.00','836.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(440,'PREGNACARE PLUS','6',NULL,'5000440','1108722',16.00,'1100.00','1626.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(441,'PRIMAPORE AWD 6CM*8.3CM 50S','6',NULL,'5000441','1108764',16.00,'40.00','59.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(442,'PRIMOLUT N 5MG TABS 30S','10',NULL,'5000442','1108767',16.00,'26.93','40.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(443,'PROBETA N DROPS','10',NULL,'5000443','1108787',16.00,'90.00','133.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(444,'PROMETHAZINE 25MG TABS 100S','10',NULL,'5000444','1108807',16.00,'1.22','2.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(445,'PULMICORT 0.5MG/ML NEBULISING SOLN 20S','11',NULL,'5000445','1108874',16.00,'204.21','302.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(446,'QUEST MARINE OMEGA EPA 1000MG CAPS 90S FOR 45S','6',NULL,'5000446','1108943',16.00,'620.00','916.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(447,'QUITIPIN 200MG TABS 30S','11',NULL,'5000447','1108978',16.00,'66.00','98.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(448,'RANFERON 12 SYRUP 200ML','6',NULL,'5000448','1109009',16.00,'275.00','406.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(449,'RANFERON CAPSULES 30S','6',NULL,'5000449','1109010',16.00,'11.63','17.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(450,'RECARTIX CAPS 30S','6',NULL,'5000450','1109026',16.00,'42.67','63.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(451,'REGENOVEX CAPSULES 30S','6',NULL,'5000451','1109058',16.00,'3499.72','4458.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(452,'RELCER GEL 180ML','6',NULL,'5000452','1109067',16.00,'283.91','420.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(453,'REMIDIN MOUTHWASH 100ML','6',NULL,'5000453','1109072',16.00,'188','277.59',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(454,'RHINATHIOL INFANT SYRUP 125ML','6',NULL,'5000454','1109252',16.00,'290.41','429.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(455,'RHINATHIOL WITH PROMETHAZINE 125ML','6',NULL,'5000455','1109253',16.00,'292.02','432.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(456,'RHIZIN 5MG/5ML SYRUP 60ML','10',NULL,'5000456','1109258',16.00,'180.00','266.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(457,'RILIF MR TABS 20S','10',NULL,'5000457','1109274',16.00,'26.25','39.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(458,'RILIF PLUS TABS 30S','10',NULL,'5000458','1109275',16.00,'15.73','23.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(459,'RILIF SR 200MG TABS 30S','10',NULL,'5000459','1109276',16.00,'27.08','40.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(460,'RIVOTRIL 2MG TABS 30S','10',NULL,'5000460','1109295',16.00,'26.65','39.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(461,'ROBITUSSIN DRY COUGH 100ML','6',NULL,'5000461','1109305',16.00,'530.00','783.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(462,'ROZAVEL 10MG TABS 30S','11',NULL,'5000462','1109343',16.00,'48.70','72.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(463,'ROZAVEL 5MG TABS 30S','11',NULL,'5000463','1109344',16.00,'38.27','57.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(464,'SALBUTAMOL 4MG TABS 100S','11',NULL,'5000464','1109388',16.00,'0.79','1.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(465,'SATROGYL 300MG TABS 30S','10',NULL,'5000465','1109430',16.00,'32.00','47.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(466,'SAVLON ANTISEPTIC LIQUID 75ML','6',NULL,'5000466','1109442',16.00,'86.00','126.72',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(467,'SCABION CREAM 20GM','10',NULL,'5000467','1109446',16.00,'97.46','144.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(468,'SCOTTS EMULSION ORANGE 100ML','6',NULL,'5000468','1109525',16.00,'324.17','479.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(469,'SCOTTS EMULSION ORANGE 200ML.','6',NULL,'5000469','1109526',16.00,'624.25','922.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(470,'SCOTTS EMULSION REGULAR 200ML','6',NULL,'5000470','1109528',16.00,'624.25','922.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(471,'SECZOLE DS 1GM TABS','10',NULL,'5000471','1109590',16.00,'70.00','103.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(472,'SELSUN SHAMPOO 100ML','12',NULL,'5000472','1109607',16.00,'620.00','916.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(473,'SENNA NATURAL LAXATIVE TABS 50S','6',NULL,'5000473','1109609',16.00,'2.70','4.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.82'),(474,'SEPTRIN FORTE DS 960MG 10S','10',NULL,'5000474','1109646',16.00,'39.85','59.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(475,'SEVEN SEAS COD LIVER OIL 100ML','6',NULL,'5000475','1109671',16.00,'370.60','548.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(476,'SEVEN SEAS ONE A DAY CAPS 60S','6',NULL,'5000476','1109685',16.00,'1079.75','1596.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(477,'SILVEREX CREAM 10GM','10',NULL,'5000477','1109734',16.00,'76.00','112.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(478,'SILVEREX CREAM 25GM','10',NULL,'5000478','1109735',16.00,'142.00','210.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(479,'SIMPLE REPLENISHING RICH MOIST. 125ML','9',NULL,'5000479','1109803',16.00,'644.74','952.59',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(480,'SIMPLE SOOTHING FACIAL TONER 200ML','9',NULL,'5000480','1109812',16.00,'579.31','856.03',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(481,'SINUTAB ND TABLETS','6',NULL,'5000481','1109845',16.00,'620.00','916.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.26'),(482,'SNICKERS BAR 50G','12',NULL,'5000482','1109947',16.00,'78.62','116.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(483,'SOLVIN PLUS EXPECTORANT 120ML','6',NULL,'5000483','1109985',16.00,'259.00','383.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(484,'SOLVIN PLUS TABS 100S','10',NULL,'5000484','1109987',16.00,'9.25','14.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(485,'SONATEC MOUTHWASH 250ML','12',NULL,'5000485','1109994',16.00,'149.10','220.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(486,'STERILE GLOVES 7.5','10',NULL,'5000486','1110103',16.00,'24.00','35.34',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(487,'STERON 5MG TABS 100S','10',NULL,'5000487','1110109',16.00,'16.73','25.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(488,'STREPSILS ORANGE/VITAMIN C 36S','6',NULL,'5000488','1110152',16.00,'690.00','1020.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(489,'SUBSYDE-DR 100MG CAPS 10S','10',NULL,'5000489','1110166',16.00,'24.34','36.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(490,'SUDOCREAM 60GM','12',NULL,'5000490','1110180',16.00,'380.00','561.21',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(491,'SURGICAL SPIRIT 100ML','6',NULL,'5000491','1110256',16.00,'40.00','59.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(492,'SYLATE 500mg TABS 18S','11',NULL,'5000492','1110291',16.00,'65.28','96.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(493,'SYMBICORT TURBUHALER 160/4.5UG -120DOSES','11',NULL,'5000493','1110292',16.00,'682.50','1009.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(494,'SYSTANE EYE DROPS 15ML','10',NULL,'5000494','1110304',16.00,'1190.00','1759.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(495,'SYSTANE ULTRA EYE DROPS','10',NULL,'5000495','1110305',16.00,'1408.00','2081.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(496,'TAGERA FORTE 1GM 2S','10',NULL,'5000496','1110317',16.00,'47.00','69.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(497,'TAMOXIFEN 20MG TABS 30S','11',NULL,'5000497','1110322',16.00,'10.74','16.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(498,'TEARS NATURALE II','6',NULL,'5000498','1110365',16.00,'573.75','848.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(499,'TELMI H 80/12.5mg TABS 30S','11',NULL,'5000499','1110382',16.00,'60.57','90.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(500,'TENORETIC 100/25MG TABS 28S','11',NULL,'5000500','1110416',16.00,'60.57','90.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(501,'TENORMIN 50MG TABS 28S','11',NULL,'5000501','1110420',16.00,'34.76','51.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(502,'TETRACYCLINE EYE OINTMENT','10',NULL,'5000502','1110436',16.00,'33.00','49.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(503,'TINIDAZOLE 500MG TABS 4s','10',NULL,'5000503','1110479',16.00,'3','4.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(504,'TIXYLIX TODDLER SYRUP 3MTHS -5 YRS','6',NULL,'5000504','1110549',16.00,'600.00','887.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(505,'TOBRADEX EYE DROPS','10',NULL,'5000505','1110550',16.00,'663.00','980.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(506,'TODAY PREMIUM PESSARIES','10',NULL,'5000506','1110554',16.00,'110.00','163.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(507,'TOUCH & GO TOOTHACHE SOLUTION','6',NULL,'5000507','1110589',16.00,'180.00','266.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(508,'TRAMAL 100MG TABS 30S','10',NULL,'5000508','1110600',16.00,'135.12','200.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(509,'TRAMED 500/250MG TABS 30S','11',NULL,'5000509','1110602',16.00,'38.85','57.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(510,'TRAVOCORT CREAM 15GM','10',NULL,'5000510','1110617',16.00,'678.00','1002.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(511,'TRES ORIX FORTE CAPS 20S','6',NULL,'5000511','1110620',16.00,'28.75','42.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(512,'TRES ORIX FORTE SYRUP 100ML','6',NULL,'5000512','1110621',16.00,'450.00','665.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(513,'TRES ORIX FORTE SYRUP 250ML','6',NULL,'5000513','1110622',16.00,'645.00','953.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(514,'TRICOHIST EXPECTORANT 100ML','6',NULL,'5000514','1110631',16.00,'130.00','192.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(515,'TRIMEX DIABETIC EXPECTORANT 100ML','6',NULL,'5000515','1110639',16.00,'136.50','202.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(516,'TRIMEX EXPECTORANT ADULT 100ML','6',NULL,'5000516','1110640',16.00,'105.00','155.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(517,'TRIMEX MUCOLYTIC SYRUP 100ML','6',NULL,'5000517','1110641',16.00,'52.50','78.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(518,'TRIMEX PAEDIATRIC 100ML','6',NULL,'5000518','1110642',16.00,'105.00','155.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(519,'TRIOKIT TABS 4 (COMBIKIT)','10',NULL,'5000519','1110648',16.00,'623.00','921.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(520,'TRUST CONDOMS 24S','6',NULL,'5000520','1110677',16.00,'20.25','30.17',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(521,'TRUST CONDOMS STUDDED 24S','6',NULL,'5000521','1110678',16.00,'37.50666667','47.41',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(522,'TUSPEL PLUS SYRUP 100ML','6',NULL,'5000522','1110698',16.00,'137.06','203.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(523,'TUSPEL SYRUP 100ML','6',NULL,'5000523','1110699',16.00,'121.00','179.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(524,'TUSPRESS SYRUP 100ML','6',NULL,'5000524','1110700',16.00,'136.17','201.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(525,'UNIBROL 250MG TABS 24S','10',NULL,'5000525','1110842',16.00,'26.25','39.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(526,'UNIBROL 125MG/5ML SYRUP','10',NULL,'5000526','1110843',16.00,'248.06','367.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(527,'UNISTEN HC CREAM 20G','10',NULL,'5000527','1110853',16.00,'105.00','155.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(528,'UNIVIR 400MG TABS 10s','10',NULL,'5000528','1110858',16.00,'33.08','49.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(529,'UNIVIR CREAM 10GM','10',NULL,'5000529','1110859',16.00,'123.28','182.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(530,'VALIUM 5MG TABS 25S','10',NULL,'5000530','1110981',16.00,'20.05','30.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(531,'VASELINE LIP THERAPY TIN (ALOE) 20G','9',NULL,'5000531','1111002',16.00,'160.00','236.21',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(532,'VASELINE LIP THERAPY TIN ( ORIGINAL) 20G','9',NULL,'5000532','1111004',16.00,'185.6','236.21',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(533,'VASELINE LIP THERAPY TIN (ROSY LIPS)','9',NULL,'5000533','1111006',16.00,'185.6','236.21',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(534,'VDM-KIT','10',NULL,'5000534','1111018',16.00,'507.30','750.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(535,'VENTOLIN EVOHALER*200DOSES','11',NULL,'5000535','1111069',16.00,'232.00','343.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(536,'VERMOX MEBENDAZOLE 100MG TABS 6S','6',NULL,'5000536','1111079',16.00,'482.40','713.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(537,'VERMOX MEBENDAZOLE 500MG TABS 1S','6',NULL,'5000537','1111080',16.00,'482.40','713.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(538,'VIAGRA 100MG TABS 4S','11',NULL,'5000538','1111093',16.00,'700.57','942.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(539,'VICKS INHALER UK','6',NULL,'5000539','1111105',16.00,'280.00','414.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(540,'VICKS SINEX MICROMIST NASAL SPRAY 15ML','6',NULL,'5000540','1111108',16.00,'560.00','828.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(541,'VICKS VAPO RUB JAR 25GM','6',NULL,'5000541','1111114',16.00,'395.00','584.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(542,'VISCID GEL 200ML','6',NULL,'5000542','1111138',16.00,'166.00','245.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(543,'VISINE EYE DROPS 15ML','6',NULL,'5000543','1111139',16.00,'720.00','1064.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(544,'VOLINI GEL 30G','6',NULL,'5000544','1111287',16.00,'200.00','296.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(545,'VOLTAREN GEL 50G','6',NULL,'5000545','1111293',16.00,'463.41','685.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(546,'VOLTAREN R 100MG TABS 100S','10',NULL,'5000546','1111295',16.00,'49.95','74.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(547,'VOLTAREN SR 75MG TABS 30S','10',NULL,'5000547','1111296',16.00,'74.01','109.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(548,'VOLTFAST 50MG SATCHETS 9S','10',NULL,'5000548','1111301',16.00,'67.50','100.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(549,'WARFARIN 5MG TABLETS 28S','11',NULL,'5000549','1111311',16.00,'2.50','4.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(550,'WELLKID MULTIVITAMIN LIQ 4-12YRS 150ML','6',NULL,'5000550','1111345',16.00,'998','1327.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(551,'WELLMAN 50+ TABLETS *30S','6',NULL,'5000551','1111347',16.00,'907.20','1341.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(552,'WELLWOMAN 50+ TABLETS','6',NULL,'5000552','1111352',16.00,'907.20','1341.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(553,'WISDOM DENTAL FLOSS 100M','12',NULL,'5000553','1111378',16.00,'215.10','318.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(554,'WOODWARDS GRIPE WATER 100ML','6',NULL,'5000554','1111392',16.00,'98.00','145.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(555,'WOW GAUZE BANDAGES 3 12S','6',NULL,'5000555','1111399',16.00,'5.00','7.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(556,'XALATAN DROPS','11',NULL,'5000556','1111417',16.00,'1960.94','2898.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(557,'XANAX 0.5MG TABS 30S','10',NULL,'5000557','1111419',16.00,'27.88','41.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(558,'XATRAL 10MG TABS 30S','11',NULL,'5000558','1111423',16.00,'84.833','125.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(559,'XTRADERM CREAM 20GM','10',NULL,'5000559','1111429',16.00,'127.88','189.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(560,'XYLO-MEPHA ADULT XYLOMETAZOLINE NASAL SPRAY0.1% 10ML','6',NULL,'5000560','1111435',16.00,'627.90','928.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(561,'XYZAL 5MG TABS 30S','10',NULL,'5000561','1111438',16.00,'64.83','96.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(562,'XYZAL SYRUP 75ML','10',NULL,'5000562','1111439',16.00,'652.00','964.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(563,'ZECUF HERBAL COUGH SYRUP 100ML','6',NULL,'5000563','1111474',16.00,'132.00','195.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(564,'ZECUF LOZENGES HERBAL RASBERRY','6',NULL,'5000564','1111476',16.00,'152.00','225.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(565,'ZEDEX SYRUP 100ML','6',NULL,'5000565','1111483',16.00,'136.00','201.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(566,'ZEFCOLIN COUGH SYRUP 100ML','6',NULL,'5000566','1111486',16.00,'228.96','338.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(567,'ZENTEL 400MG TABLETS 1S','6',NULL,'5000567','1111489',16.00,'149.50','221.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(568,'ZENTEL SUSPENSION 20ML','6',NULL,'5000568','1111490',16.00,'149.50','221.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(569,'ZINNAT 500MG TABLETS 10S','10',NULL,'5000569','1111531',16.00,'121.95','180.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(570,'ZINNAT SUSP. 125MG/5ML 50ML','10',NULL,'5000570','1111533',16.00,'619.20','915.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(571,'ZINNAT SUSP. 250MG/5ML 50ML','10',NULL,'5000571','1111534',16.00,'1083.60','1601.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(572,'ZOVIRAX CREAM 2GM','10',NULL,'5000572','1111567',16.00,'1004.00','1484.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(573,'ZUPRICIN OINTMENT 15GM','10',NULL,'5000573','1111570',16.00,'444.11','656.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(574,'ZYLORIC 300MG TABS 28S','11',NULL,'5000574','1111574',16.00,'64.43','95.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(575,'ZYNCET 10MG TABS 50S','10',NULL,'5000575','1111576',16.00,'3.06','5.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(576,'ZYNCET SYRUP 60ML','10',NULL,'5000576','1111577',16.00,'113','166.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(577,'ZYRTAL MR TABLETS 20S','10',NULL,'5000577','1111585',16.00,'28.12','42.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(578,'ZYRTEC CETRIZINE 10MG TABLETS 30S','10',NULL,'5000578','1111587',16.00,'55.97','83.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(579,'BECLOMIN OINTMENT 15GM','10',NULL,'5000579','1111596',16.00,'120.00','177.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(580,'STREPSILS EXTRA STRENGTH B/CURRANT 24 S','6',NULL,'5000580','1111820',16.00,'690.00','1020.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(581,'ROBIDOM SR 20/30MG CAPS 30S','10',NULL,'5000581','1111843',16.00,'58.67','87.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(582,'PEPTO BISMOL PEPPERMINT TABS 24S','6',NULL,'5000582','1111878',16.00,'750.00','1108.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(583,'ANUSOL PLUS HC SUPPOSITORIES 12S','6',NULL,'5000583','1111886',16.00,'60.00','89.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(584,'ANTHISAN BITE AND STING CREAM 20GM','6',NULL,'5000584','1111944',16.00,'455.00','672.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(585,'KAMAGRA ORAL JELLY SATCHETS','10',NULL,'5000585','1112097',16.00,'68.29','101.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(586,'NEURO FORTE TABS 20S','10',NULL,'5000586','1112419',16.00,'11.90','18.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(587,'NEOPEPTINE CAPS 10S','6',NULL,'5000587','1112570',16.00,'29.75','44.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(588,'VASELINE LIP THERAPY TIN (COCOA BUTTER) 20G','9',NULL,'5000588','1112641',16.00,'160.00','236.21',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(589,'NEXIUM 10MG SACHETS 28S','11',NULL,'5000589','1112653',16.00,'125.74','186.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(590,'DABORAL 125MG/5ML SYRUP 60 ML','10',NULL,'5000590','1112811',16.00,'205.00','303.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(591,'ANIMAL PARADE KIDS MULTIVITAMIN 90S','6',NULL,'5000591','1112899',16.00,'1625.00','2401.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(592,'ANIMAL PARADE KIDS IMMUNE BOOSTER 90S','6',NULL,'5000592','1112904',16.00,'1400.00','2069.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(593,'WOODWARDS GRIPE WATER ALCOHOL AND SUGAR FREE 150ML','6',NULL,'5000593','1112968',16.00,'715.00','1057.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(594,'SENSODYNE RAPID ACTION TOOTHPASTE 75ML','12',NULL,'5000594','1113193',16.00,'396.96','586.21',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(595,'ASOMEX LT 2.5/50MG TABS 60S','11',NULL,'5000595','1113207',16.00,'38.25','57.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(596,'SUNDOWN VITAMIN E 400IU SOFTGELS 100S','6',NULL,'5000596','1113553',16.00,'1350.00','1995.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(597,'ONDEM MD 8MG TABS 10S','10',NULL,'5000597','1113896',16.00,'82.50','122.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(598,'STREPSILS HONEY & LEMON LOZ 24S UK','6',NULL,'5000598','1113918',16.00,'550.00','813.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(599,'ZERODOL P 100MG TABS 30S','10',NULL,'5000599','1114026',16.00,'26.23','39.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(600,'KAMAGRA 100MG TABS 4S','10',NULL,'5000600','1114178',16.00,'56.75','84.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(601,'KAMAGRA 50MG TABS 4S','10',NULL,'5000601','1114179',16.00,'46.50','69.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(602,'SAWA POWER CAPSULES 450MG','6',NULL,'5000602','1114222',16.00,'712.53','1053.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(603,'PHYTORAL OINTMENT 15GMS','10',NULL,'5000603','1114236',16.00,'243.10','359.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(604,'BANEOCIN OINTMENT 20GM','10',NULL,'5000604','1114242',16.00,'198.00','293.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(605,'SUNDOWN BIOTIN 5000MCG 60S','6',NULL,'5000605','1114246',16.00,'1125.00','1663.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(606,'SUNDOWN CALMAGZINC 100S','6',NULL,'5000606','1114247',16.00,'1138.50','1682.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(607,'ALWAYS ULTRA LONG 8S','12',NULL,'5000607','1114636',16.00,'92.03','136.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.57'),(608,'SULPHUR OINTMENT 25G','10',NULL,'5000608','1114657',16.00,'18.00','27.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(609,'TINCTURE OF IODINE 100ML','6',NULL,'5000609','1114664',16.00,'88.00','130.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(610,'POLYGYNAX PESSARIES 6S','10',NULL,'5000610','1114673',16.00,'68.50','101.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(611,'DUREX PLAY (CHERRY)LUBRICATING GEL 50ML','6',NULL,'5000611','1114710',16.00,'502.33','742.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(612,'OPSITE POST-OP DRESSING 9.5CM*8.5CM','6',NULL,'5000612','1114821',16.00,'175.00','259.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(613,'WELLWOMAN PLUS OMEGA 3-6-9','6',NULL,'5000613','1114846',16.00,'1248.18','1826.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(614,'KALUMA PAIN BALM 9ML','6',NULL,'5000614','1114871',16.00,'70.00','103.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(615,'BECOACTIN SYRUP 200ML','6',NULL,'5000615','1114874',16.00,'218.00','322.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(616,'L-MONTUS 5/10MG TABS 10S','10',NULL,'5000616','1114875',16.00,'40.70','60.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(617,'COSVATE CREAM 15GMS','10',NULL,'5000617','1115056',16.00,'147.00','217.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(618,'ALWAYS MAXI THICK EXTRA LONG 7S','12',NULL,'5000618','1115227',16.00,'92.11','136.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.57'),(619,'NEUROCARE TABS 30S','10',NULL,'5000619','1115331',16.00,'41.50','61.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(620,'CURAM 625MG TABS 14S','10',NULL,'5000620','1115380',16.00,'21.86','32.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(621,'AMLONG 5MG TABS 30S','11',NULL,'5000621','1115512',16.00,'12.83','19.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(622,'ZYRTEC SYRUP 75ML','10',NULL,'5000622','1115569',16.00,'434','674.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(623,'ALWAYS MAXI THICK LONG 7S','12',NULL,'5000623','1115573',16.00,'92.11','136.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.57'),(624,'AMLOZAAR 50MG TABS 30S','11',NULL,'5000624','1115613',16.00,'44.35','66.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(625,'CENTRUM WOMAN 30S','6',NULL,'5000625','1115699',16.00,'1050.00','1552.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(626,'DIAMICRON MR 60MG 30S','11',NULL,'5000626','1115770',16.00,'32.66','48.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(627,'ETORIX 90MG TABLETS 30S','10',NULL,'5000627','1115783',16.00,'43.27','64.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(628,'WISDOM INTERDENTAL BRUSHES 0.45MM 5S','12',NULL,'5000628','1115894',16.00,'283.50','418.97',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(629,'DISPOSABLE NEEDLES G23* 25MM 100S','10',NULL,'5000629','1116013',16.00,'1.20','2.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0035.11.00'),(630,'XARELTO 20MG TABS 14S','11',NULL,'5000630','1116104',16.00,'125.36','185.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(631,'MICROGYNON FE PILLS 28S','10',NULL,'5000631','1116236',16.00,'72.22','107.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(632,'SURGICAL BLADE SIZE 22','10',NULL,'5000632','1116272',16.00,'3.80','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0035.11.00'),(633,'DIPROSALIC OINTMENT 30GM','10',NULL,'5000633','1116714',16.00,'794.50','1174.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(634,'AMLONG 10MG TABS 30S','11',NULL,'5000634','1116845',16.00,'22.43','33.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(635,'NIZORAL SHAMPOO 120ML','10',NULL,'5000635','1116854',16.00,'995.00','1470.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(636,'FLUCONA DENK 150MG CAPS','10',NULL,'5000636','1117002',16.00,'152.45','225.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(637,'ETORIX 60MG TABS 40S','10',NULL,'5000637','1117053',16.00,'28.85','43.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(638,'MICROFINE G32 (4MM) PEN NEEDLES 100S','11',NULL,'5000638','1117056',16.00,'21.60','32.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0035.11.00'),(639,'ANDOLEX C SPRAY 30ML','6',NULL,'5000639','1117142',16.00,'848.00','1253.45',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(640,'CARTIL OMEGA CAPS 30S','6',NULL,'5000640','1117148',16.00,'46.67','69.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(641,'PANADOL ELIXIR SYRUP CHILD 5-12 YEARS 100ML','6',NULL,'5000641','1117153',16.00,'307.68','455.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(642,'MAXIPLAST PLASTER FABRIC 100S','6',NULL,'5000642','1117183',16.00,'1.25','2.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(643,'NOGLUC 5MG TABS 112S','11',NULL,'5000643','1117186',16.00,'3.54','5.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(644,'COARTEM 80MG/480MG 6S','10',NULL,'5000644','1117209',16.00,'324.70','480.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.83'),(645,'ORELOX 200MG TABS 10S','10',NULL,'5000645','1117252',16.00,'140.87','208.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(646,'NEBILONG AM 5/5mg TABS 30S','11',NULL,'5000646','1117294',16.00,'46.37','69.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(647,'CENTRUM 50+ WOMAN 30S','6',NULL,'5000647','1117539',16.00,'1200.00','1773.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(648,'FEXET 120MG TABS 20S','10',NULL,'5000648','1117562',16.00,'28.70','42.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(649,'FEXET 180MG TABS 20S','10',NULL,'5000649','1117563',16.00,'34.30','51.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(650,'OMICAP 20MG CAPS 100S','11',NULL,'5000650','1117629',16.00,'1.15','2.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(651,'AMOKLAVIN 625MG TABS 14S','10',NULL,'5000651','1117634',16.00,'36.09','53.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(652,'KOTEX ULTRA THIN PADS NORMAL 8S','12',NULL,'5000652','1117814',16.00,'91.88','136.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.57'),(653,'EPIMAX BABY & JUNIOR JAR 400G','12',NULL,'5000653','1117819',16.00,'1350.00','1994.83',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(654,'STREPSILS LOZ HONEY & LEMON 100S','6',NULL,'5000654','1117962',16.00,'8.74','13.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(655,'LIPITOR 10MG TABS 30S','11',NULL,'5000655','1118126',16.00,'56.51','84.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(656,'ESOME 40MG CAPS 14S','11',NULL,'5000656','1118327',16.00,'29.67','44.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(657,'ZAART-H 50/12.5MG TABS 30S','11',NULL,'5000657','1118346',16.00,'26.89','40.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(658,'DIRACIP M TABS','10',NULL,'5000658','1118347',16.00,'5.57','8.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(659,'DIRACIP M DS TABS 15S','10',NULL,'5000659','1118350',16.00,'11.13','16.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(660,'DIRACIP M SUSPENSION 100ML','10',NULL,'5000660','1118351',16.00,'167.00','247.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(661,'ESOMAC 20MG TABS 28S','11',NULL,'5000661','1118361',16.00,'21.77','32.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(662,'ESOMAC 40MG TABS 14S','11',NULL,'5000662','1118387',16.00,'43.54','64.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(663,'MS TELLME PREGNANCY TEST KIT CASSETTE','6',NULL,'5000663','1118436',16.00,'86.20','127.59',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(664,'MS TELLME PREGNANCY TEST KIT MIDSTREAM','6',NULL,'5000664','1118437',16.00,'172.41','255.17',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(665,'CEFASYN 500MG TABS 10S','10',NULL,'5000665','1118445',16.00,'22.62','33.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(666,'AMOXYCILLIN 500MG CAPS 100S','10',NULL,'5000666','1118494',16.00,'5.20','8.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(667,'STREPSILS REGULAR 100S','6',NULL,'5000667','1118553',16.00,'8.74','13.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(668,'YOU C 1000 ISOTONIC LEMON WATER 500ML','6',NULL,'5000668','1118696',16.00,'135.60','200.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(669,'YOU C 1000 ISOTONIC ORANGE WATER 500ML','6',NULL,'5000669','1118697',16.00,'135.60','200.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(670,'YOU C VITAMIN ORANGE DRINK 140ML','6',NULL,'5000670','1118698',16.00,'79.57','117.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(671,'YOU C VITAMIN LEMON DRINK 140ML','6',NULL,'5000671','1118699',16.00,'79.57','117.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(672,'EROVITA HCG PREGNANCY STRIPS 100S','6',NULL,'5000672','1118701',16.00,'8.50','12.93',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(673,'ARCOXIA 90MG TABS 7S','10',NULL,'5000673','1119829',16.00,'116.50','172.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(674,'KOMBIGLYZE 5/1000MG TABS 30S','11',NULL,'5000674','1120052',16.00,'144.31','215.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(675,'GLYCERINE IDEAL 200ML','9',NULL,'5000675','1120108',16.00,'170.00','250.86',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(676,'FUCOL 150MG','10',NULL,'5000676','1120177',16.00,'184.00','272.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(677,'DICLOFENAC GEL 20GMS','10',NULL,'5000677','1120719',16.00,'20.22','30.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(678,'ESOME 20MG CAPS 14S','11',NULL,'5000678','1120740',16.00,'18.2','27.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(679,'GAVISCON LIQUID PEPPERMINT 200ML','6',NULL,'5000679','1120746',16.00,'534.33','790.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(680,'VOLTAREN R 100MG TABS 30S','10',NULL,'5000680','1120748',16.00,'77.15','114.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(681,'EFFERALGAN 1000MG TABLETS 8S','6',NULL,'5000681','1120749',16.00,'238.00','352.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(682,'DUREX CONDOMS PLEASUREMAX ME','6',NULL,'5000682','1120778',16.00,'175.00','258.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(683,'D3 60K 60 000IU 4S','10',NULL,'5000683','1120824',16.00,'65.00','96.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(684,'FULCOVER 100MG TABS 10S','10',NULL,'5000684','1120854',16.00,'85.50','126.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(685,'CEZINE 10MG TABS 10S','10',NULL,'5000685','1120866',16.00,'17.25','25.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(686,'PANTOCID D 40MG TABS 30S','11',NULL,'5000686','1120871',16.00,'32.02','47.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(687,'CIPLADON 1000MG EFF TABLETS 8S','6',NULL,'5000687','1120877',16.00,'34.57','51.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(688,'ACNEVIT ANTI ACNE SERUM 30ML','9',NULL,'5000688','1120885',16.00,'1297.41','1917.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(689,'CIALIS 5MG TABS 28S','11',NULL,'5000689','1120906',16.00,'214.64','317.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(690,'CIALIS 20MG TABS 4S','11',NULL,'5000690','1120998',16.00,'855.5','1264.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(691,'AMLOZAAR H 50/5MG TABS 30S','11',NULL,'5000691','1121421',16.00,'49.92','74.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(692,'ACCURATE MALARIA TEST KIT 1S ( WITH BUFFER)','6',NULL,'5000692','1121601',16.00,'160.00','236.21',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(693,'PREGNACARE TABS 30S','6',NULL,'5000693','1122065',16.00,'487.00','720.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(694,'BISOPROLOL 2.5MG TABS 28S','11',NULL,'5000694','1122091',16.00,'3.14','5.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(695,'WISDOM FRESH EFFECT FRESH BREATH SPRAY 12.5ML','12',NULL,'5000695','1122475',16.00,'294.408','375.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(696,'LRP PIGMENTCLAR SERUM 30ml','9',NULL,'5000696','1122500',16.00,'2966.22','4383.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(697,'LRP EFFACLAR FOAMING CLEANSER 200ML','9',NULL,'5000697','1122504',16.00,'1236.15','1826.72',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(698,'LRP ANTHELIOS SHAKA FLUID FACE SPF50+ 50ML','9',NULL,'5000698','1122529',16.00,'2006.7072','2556.03',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(699,'LRP ANTHELIOS SHAKA SPRAY SPF50+ 200ML','9',NULL,'5000699','1122530',16.00,'2089.88','3088.79',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(700,'FISHERMANS FRIEND LOZS 25G H/LEMON','6',NULL,'5000700','1122615',16.00,'125.00','184.48',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0','0039.11.20'),(701,'ETORIX 120MG TABLETS 20S','10',NULL,'5000701','1123030',16.00,'57.70','85.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(702,'CLOFORT 250MG/5ML SUSP 75ML','10',NULL,'5000702','1123312',16.00,'935.30','1382.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(703,'TALGENTIS 20MG TABS 4S','10',NULL,'5000703','1123314',16.00,'110.75','164.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(704,'OTOBIOTIC EAR DROPS','10',NULL,'5000704','1123380',16.00,'249.20','368.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(705,'LYCLEAR DERMAL CREAM 30 GM','9',NULL,'5000705','1123387',16.00,'1250.00','1847.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(706,'RISEK 40MG SATCHETS 10S','11',NULL,'5000706','1123388',16.00,'34.30','51.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(707,'TALGENTIS 5MG TABS 30S','10',NULL,'5000707','1123395',16.00,'70.12','104.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(708,'NEBILET 5/12.5MG TABS 28S','11',NULL,'5000708','1123464',16.00,'63.71','94.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(709,'NIVEA ROLL-ON WOMEN INVIS B & W CLEAR 50ML','12',NULL,'5000709','1123532',16.00,'323.28','477.59',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(710,'FEMELLE COTTON BUDS 100S','12',NULL,'5000710','1123536',16.00,'90.00','132.76',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(711,'SUNDOWN ESSENTIAL ZINC 50MG CAPLETS 100S','6',NULL,'5000711','1123805',16.00,'1125.00','1663.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(712,'BLACK OPAL EVEN TRUE OIL FREE MOISTURIZER SPF 15','9',NULL,'5000712','1124298',16.00,'1297.41','1917.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(713,'QUEST VITAMIN C EFFERVESCENT 1000MG 20S','6',NULL,'5000713','1124302',16.00,'510.00','754.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(714,'MENTHOL PLUS BALM 30ML','6',NULL,'5000714','1124421',16.00,'95.00','140.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(715,'PRINCIPLE IMMUNE BOOST + EFF 20S','6',NULL,'5000715','1124427',16.00,'634.50','938.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(716,'GOFEN 400MG TABS 60S','6',NULL,'5000716','1124454',16.00,'17.82','26.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(717,'SKYN INTENSE FEL DOTTED NON LATEX CONDOM','6',NULL,'5000717','1125014',16.00,'345.87','511.21',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(718,'GOOD MORNING LUNG TONIC 60ML','6',NULL,'5000718','1125044',16.00,'75.00','111.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(719,'CARTIL FORTE CAPSULES 30S','6',NULL,'5000719','1125064',16.00,'40.20','59.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(720,'BELL BRAND NAIL CLIPPER L/S','12',NULL,'5000720','1125084',16.00,'200.00','295.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(721,'EUTHYROX 50MCG TABS 30S','11',NULL,'5000721','1125092',16.00,'4.90','7.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(722,'EUTHYROX 100MCG TABS 30S','11',NULL,'5000722','1125093',16.00,'7.77','11.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(723,'EROVITA MIDSTREAM PREGNANCY KIT','6',NULL,'5000723','1125372',16.00,'197.2','250.86',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(724,'MEDISIGN BLOOD GLUCOSE STRIPS 50S','11',NULL,'5000724','1125382',16.00,'1393.12','2059.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0122.11.00'),(725,'TRUST CONDOMS RIBBED 24S','6',NULL,'5000725','1125451',16.00,'37.5086','47.41',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(726,'ACNES SCAR CARE 12G','9',NULL,'5000726','1125462',16.00,'296.00','437.07',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(727,'ACNES VIT C C10 SERUM 15ML','9',NULL,'5000727','1125465',16.00,'1426.25','2107.76',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(728,'ACNES TREATMENT 3PC PACK','9',NULL,'5000728','1125466',16.00,'995.07','1470.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(729,'DUREX CONDOMS FETHERLITE ULTRA 3S','6',NULL,'5000729','1125627',16.00,'208.61','308.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(730,'ONE TOUCH SELECT PLUS STRIPS','11',NULL,'5000730','1125767',16.00,'1170.00','1729.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(731,'DUREX CONDOMS FETHERLITE ULTRA 12S','6',NULL,'5000731','1125816',16.00,'777.81','1149.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(732,'JANUMET 50/500MG 56S','11',NULL,'5000732','1125819',16.00,'60.71','90.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(733,'AMLODENK 5MG TABS 50S','11',NULL,'5000733','1125909',16.00,'11.40','17.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(734,'ZULU TABS 10S','10',NULL,'5000734','1125951',16.00,'22.80','34.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(735,'N/AID PRO-30 MAX 30 billion CAPS 30S','6',NULL,'5000735','1125986',16.00,'2160.00','3192.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(736,'MAALOX SATCHETS LEMON 20S','6',NULL,'5000736','1125989',16.00,'433.98','641.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(737,'N/AID CHEW VITAMIN C 500MG TABLETS sugar free 50S','6',NULL,'5000737','1126407',16.00,'1080.00','1596.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(738,'CEZINE 10MG/5ML 60MLS','10',NULL,'5000738','1126415',16.00,'173.25','256.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(739,'PAROL SYRUP 100MLS','6',NULL,'5000739','1126418',16.00,'165.00','244.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(740,'LEVOBACT 500MG TABS 10S','10',NULL,'5000740','1126427',16.00,'22.20','33.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(741,'SEVEN SEAS MULTIVITAMIN SYRUP 100ML','6',NULL,'5000741','1126521',16.00,'491.30','726.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(742,'GLEMONT L 10/5MG TABS 7S','10',NULL,'5000742','1127044',16.00,'76.54','113.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(743,'ZULU MR TABLETS 20S','10',NULL,'5000743','1127074',16.00,'29.68','44.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(744,'N/AID D3 5000IU TABS 60S','6',NULL,'5000744','1127085',16.00,'1282.50','1895.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(745,'QUEST OAD ENERGY B+C TABS 30s','6',NULL,'5000745','1127104',16.00,'415.00','613.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(746,'QUEST OAD IMMUNE C TABS 30s','6',NULL,'5000746','1127106',16.00,'470.00','695.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(747,'QUEST OAD MULTI TABS 30s','6',NULL,'5000747','1127110',16.00,'480.00','709.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(748,'MENTHOL PLUS BALM 9ML JAR','6',NULL,'5000748','1127115',16.00,'41.00','61.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(749,'M $ MS PEANUT 45G','12',NULL,'5000749','1127371',16.00,'111.38','164.66',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(750,'FAY WET WIPES PURE 10S','12',NULL,'5000750','1127382',16.00,'45.22','67.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(751,'FAY POCKET HANKIES 10S','12',NULL,'5000751','1127384',16.00,'14.49','21.55',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(752,'WELLKID IMMUNE CHEWABLE TABS 30S','6',NULL,'5000752','1127444',16.00,'1045.46','1530.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(753,'ARCOXIA 90MG TABS 28S','10',NULL,'5000753','1127589',16.00,'116.44','172.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(754,'BIC J5MINI ASSORTED LIGHTER','12',NULL,'5000754','1127629',16.00,'51.36','75.86',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(755,'PREVA CEREBROPROTEIN HYDROSYLATE 90MG CAPS 30S','10',NULL,'5000755','1127876',16.00,'74.52','110.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(756,'ACCU-CHEK ACTIVE STRIPS 50S','11',NULL,'5000756','1128055',16.00,'1250.00','1847.41',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(757,'ANUSOL SUPPOSITORIES 12S','6',NULL,'5000757','1128129',16.00,'38.75','57.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(758,'ULTRA VIT C PLUS ZINC EFF 20S','6',NULL,'5000758','1128183',16.00,'568.5','924.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(759,'LRP EFFACLAR DUO(+) SPF30 40ml','9',NULL,'5000759','1128242',16.00,'1718.70','2539.66',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(760,'ORAQUICK HIV SELF TEST..','10',NULL,'5000760','1128305',16.00,'444.048','487.93',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(761,'DESLORADENK 5MG TABLETS 10S','10',NULL,'5000761','1128321',16.00,'20.89','31.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(762,'KY JELLY 82GM','6',NULL,'5000762','1128322',16.00,'700.00','1034.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.41'),(763,'WELLBABY MULTIVITAMIN LIQUID 4M-4YRS 150ML','6',NULL,'5000763','1128430',16.00,'898.20','1327.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(764,'ZITHROMAX 500MG TABS 3S','10',NULL,'5000764','1128436',16.00,'1140.00','1685.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(765,'VAGI PLUS PESSARIES','10',NULL,'5000765','1128438',16.00,'685.30','1013.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(766,'DAY AND NIGHT NURSE CAPS 24S','6',NULL,'5000766','1128442',16.00,'1250.00','1847.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.26'),(767,'SUNDOWN CALCIUM 600 PLUS TABS 120S','6',NULL,'5000767','1128446',16.00,'1350.00','1995.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(768,'SUNDOWN MELATONIN 3MG TABS 60S','6',NULL,'5000768','1128453',16.00,'1080.00','1596.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(769,'FLAGENTYL 500MG TABS 4S','10',NULL,'5000769','1128476',16.00,'407.62','602.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(770,'GALVUS MET 50/500MG TABS 30S','11',NULL,'5000770','1128481',16.00,'90','127.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(771,'MAALOX PLUS TABS 40S','6',NULL,'5000771','1128483',16.00,'16.79','25.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(772,'GALVUS MET 50/1000MG TABS 30S','11',NULL,'5000772','1128486',16.00,'86.11','127.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(773,'BEECHAMS COLD & FLU HOT BLACKCURRANT 5S.','6',NULL,'5000773','1128756',16.00,'300.00','443.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(774,'HYDROCHLOROTHIAZIDE 25MG TABS 100S','11',NULL,'5000774','1129047',16.00,'1.46','2.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(775,'ORBIT COMPLETE STRIPS PEPPERMINT 12s (14x12x32) - SUGAR FREE','12',NULL,'5000775','1129057',16.00,'129.31','191.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(776,'ORBIT COMPLETE STRIPS STRAWBERRY 12s (14x12x32) - SUGAR FREE','12',NULL,'5000776','1129058',16.00,'129.31','191.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(777,'ORBIT COMPLETE STRIPS RASBERRY 12s (14x12x32) - SUGAR FREE','12',NULL,'5000777','1129059',16.00,'129.31','191.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(778,'ORBIT WILD STRAWBERRY 10s (20x30x10)','12',NULL,'5000778','1129061',16.00,'45.26','67.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(779,'ORBIT BUBBLEMINT 10s (20x30x10)','12',NULL,'5000779','1129063',16.00,'45.26','67.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(780,'ORBIT PEPPERMINT 10s (20x30x10)','12',NULL,'5000780','1129064',16.00,'45.26','67.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(781,'SKITTLES BIGGER CANDY 38GM (1x14x38)- SUGAR COATED','12',NULL,'5000781','1129067',16.00,'71.12','105.17',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(782,'KOTEX ULTRA THIN PADS SUPER 8s','12',NULL,'5000782','1129079',16.00,'91.88','136.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.57'),(783,'SKINS PERFORMANCE RING 1S','6',NULL,'5000783','1129095',16.00,'422.42','624.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(784,'SKINS CONDOMS NATURAL 4S','6',NULL,'5000784','1129106',16.00,'198.28','293.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(785,'SKINS CONDOMS ULTRA THIN 4S','6',NULL,'5000785','1129107',16.00,'198.28','293.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(786,'GAVISCON DOUBLE ACTION TABLETS 24S','6',NULL,'5000786','1129109',16.00,'750.00','1108.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(787,'GAVISCON DOUBLE ACTION TABLETS 48S','6',NULL,'5000787','1129110',16.00,'1200.00','1773.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(788,'AVALIFE DAILY FLORA BALANCE CAPS 30S','6',NULL,'5000788','1129111',16.00,'765.00','1131.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(789,'ACCU-CHEK INSTANT MACHINE','11',NULL,'5000789','1129138',16.00,'0.01','0.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(790,'FEMIPLAN PILLS 28S','10',NULL,'5000790','1129160',16.00,'60.00','89.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(791,'BIO HEALTH EXTRA ZINC 60S','6',NULL,'5000791','1129317',16.00,'905.00','1337.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(792,'APTAMIL BABY MILK 3 800GM','6',NULL,'5000792','1129417',16.00,'1862.63','2752.59',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(793,'NIGHT NURSE LIQUID 160ML','6',NULL,'5000793','1129439',16.00,'1390.00','2054.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.26'),(794,'STEROPLAST FABRIC ASS 16S','6',NULL,'5000794','1129496',16.00,'75.00','111.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(795,'STEROPLAST WASHPROOF ASS 16S','6',NULL,'5000795','1129497',16.00,'75.00','111.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(796,'STEROPLAST CLEAR ASS 16S','6',NULL,'5000796','1129498',16.00,'75.00','111.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(797,'ENO LEMON SACHETS 4S','6',NULL,'5000797','1129499',16.00,'71.05','105.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(798,'CEOVIT TABS 250MG 200S','6',NULL,'5000798','1129519',16.00,'4.12','6.03',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(799,'MELCAM 7.5 TABLET 100S','10',NULL,'5000799','1129522',16.00,'2.44','4.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(800,'MELCAM 15 TABLET 50S','10',NULL,'5000800','1129523',16.00,'4.50','7.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(801,'LORATIN FAST 100S','10',NULL,'5000801','1129524',16.00,'6.00','9.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(802,'NILACID SUSPENSION 200ML','6',NULL,'5000802','1129530',16.00,'180.00','266.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(803,'OSMOLAX SOLUTION 200ML','6',NULL,'5000803','1129532',16.00,'450.00','665.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(804,'AMBROX SYRUP 100ML','6',NULL,'5000804','1129533',16.00,'131.25','194.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(805,'ADOVAS SYRUP 100ML','6',NULL,'5000805','1129534',16.00,'170.00','251.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(806,'ZIMAX 500 TABLET','10',NULL,'5000806','1129538',16.00,'112.50','166.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(807,'SQUARE ZINC 20 TABLET 100S','6',NULL,'5000807','1129561',16.00,'3.15','4.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(808,'VISINE ALLERGY EYE DROPS 15ML','6',NULL,'5000808','1129564',16.00,'1010.00','1493.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(809,'VALUPAK VITAMIN B COMPLEX TABS 60S','6',NULL,'5000809','1129581',16.00,'200.00','296.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(810,'CANESPOR SOLUTION','10',NULL,'5000810','1129603',16.00,'657.08','971.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(811,'ECOFREE PLUS 10S','10',NULL,'5000811','1129605',16.00,'35.20','52.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(812,'LRP EFFACLAR DUO(+) 40ml','9',NULL,'5000812','1129841',16.00,'1326.29','1960.34',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(813,'LRP EFFACLAR FOAM CLEANSER 400ml','9',NULL,'5000813','1129843',16.00,'1826.13','2698.28',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(814,'LRP LIPIKAR SYNDET AP+ WASH 200ml','12',NULL,'5000814','1129881',16.00,'957.84','1415.52',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(815,'DISSENTEN 2MG 15S','6',NULL,'5000815','1129899',16.00,'345.00','510.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(816,'BENYLIN EXPECTORANT 200ML','6',NULL,'5000816','1129910',16.00,'450.00','665.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(817,'LENOR -72 TABS','10',NULL,'5000817','1129921',16.00,'25.00','37.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(818,'PAPERMINTS 24 STRIPS','12',NULL,'5000818','1129979',16.00,'101.82','150.86',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(819,'AVALIFE FEMIFLORA CAPS 30S','6',NULL,'5000819','1129983',16.00,'1360.00','2010.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(820,'NIVEA DEEP DEO ROLL ON FOR MEN 50ML','12',NULL,'5000820','1130024',16.00,'323.28','477.59',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(821,'ONE TOUCH SELECT PLUS FLEX SYSTEM KIT-for exchange','11',NULL,'5000821','1130041',16.00,'0.01','0.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(822,'METFORMIN HCL 500MG TABS 60S','11',NULL,'5000822','1130049',16.00,'1.94','3.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(823,'VITAHEALTH COD LIVER OIL 100ML','6',NULL,'5000823','1130057',16.00,'323.00','477.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(824,'VITAHEALTH COD LIVER OIL 500ML','6',NULL,'5000824','1130059',16.00,'1466.25','2167.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(825,'VITAHEALTH PURE FISH OIL CAPS 60S','6',NULL,'5000825','1130060',16.00,'786.25','1162.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(826,'VITAHEALTH JOINTCARE DAILY CAPS 30S','6',NULL,'5000826','1130061',16.00,'1037.00','1532.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(827,'FLEMING 457MG/5ML SUSP 70ML','10',NULL,'5000827','1130080',16.00,'414.92','613.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(828,'FLEMING 1GM TABS 14S','10',NULL,'5000828','1130081',16.00,'34.67','51.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(829,'N/AID ZINC PICOLINATE TABS 30S','6',NULL,'5000829','1130091',16.00,'729.00','1077.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(830,'DOVE SOAP GO -FRESH RESTORE 100G','12',NULL,'5000830','1130159',16.00,'153.51','226.72',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(831,'ENO TABLETS 100S','6',NULL,'5000831','1130178',16.00,'4.282','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(832,'GILLETTE BLUE 11 PLUS DISPOSABLES 3S','12',NULL,'5000832','1130196',16.00,'116.43','172.41',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(833,'AQUAMIST WATER 300ML * 24s','6',NULL,'5000833','1130232',16.00,'27.01708333','34.48',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(834,'AQUAMIST WATER 500ML *24s','6',NULL,'5000834','1130233',16.00,'30.34','44.83',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(835,'WELLTEEN HIM PLUS','6',NULL,'5000835','1130236',16.00,'712.00','1052.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(836,'AQUAMIST LEMON FLAVOURED WATER *12','6',NULL,'5000836','1130271',16.00,'51.62773333','65.52',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(837,'AZITHRAX 500MG 3S','10',NULL,'5000837','1130294',16.00,'293.22','433.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(838,'TRANDATE 200MG TABS 100S','11',NULL,'5000838','1130481',16.00,'33.60','50.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(839,'TRANDATE 100MG TABS 100S','11',NULL,'5000839','1130482',16.00,'28.00','41.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(840,'COLGATE T/BRUSH DOUBLE ACTION - STD','12',NULL,'5000840','1130545',16.00,'44.05','65.52',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(841,'COLGATE HERBAL T/PASTE 35G - ANTIBACTERIA','12',NULL,'5000841','1130552',16.00,'50.36','74.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(842,'GRAMOCEF-O 400MG CAPS 10S','10',NULL,'5000842','1130566',16.00,'79.60','118.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(843,'SWISS HERBAL LOZENGES EUCALYPTUS & MENTHOL 12S','6',NULL,'5000843','1130592',16.00,'270.00','399.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(844,'SWISS HERBAL LOZENGES HONEY 12S','6',NULL,'5000844','1130594',16.00,'270.00','399.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(845,'TREVIAMET 50/1000MG TABS 35S','11',NULL,'5000845','1130635',16.00,'49.29','73.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(846,'LEMSIP CHESTY COUGH SYRUP 180ML','6',NULL,'5000846','1130643',16.00,'1300.00','1921.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(847,'TREVIAMET 50/500MG TABS 35S','11',NULL,'5000847','1130666',16.00,'49.29','73.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(848,'MAALOX PLUS SUSPENSION 250ML','6',NULL,'5000848','1130671',16.00,'527.99','780.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(849,'INVOLYN 408MG CAPS 10S','10',NULL,'5000849','1130698',16.00,'209.15','309.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(850,'LRP EFFACLAR ACNE ROUTINE KIT -3 in 1','9',NULL,'5000850','1130715',16.00,'1898.61','2806.03',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(851,'CLARIWIN TABS 500MG 10S','10',NULL,'5000851','1130744',16.00,'24.21','36.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(852,'QUEST OAD MULTI CHEWABL KIDS 30S','6',NULL,'5000852','1130907',16.00,'460.00','680.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(853,'BEUFLOX D EYE DROPS 5ML','10',NULL,'5000853','1131008',16.00,'204.00','301.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(854,'DUREX PLAY WARMING 50ML','6',NULL,'5000854','1131031',16.00,'505.57','747.41',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(855,'GOODLIFE HAND SANITIZER 50ML','12',NULL,'5000855','1131037',16.00,'50.00','74.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(856,'CELABET TABS 30S','10',NULL,'5000856','1131167',16.00,'11.16','17.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(857,'IBUPROFEN-DENK 400MGS 20S','6',NULL,'5000857','1131190',16.00,'10.00','15.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(858,'FLUGONE EX 120ML','6',NULL,'5000858','1131209',16.00,'194.00','287.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.26'),(859,'MTM 100MG TABLETS 4S','10',NULL,'5000859','1131240',16.00,'43.00','64.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(860,'MTM 50MG TABLETS 4S','10',NULL,'5000860','1131241',16.00,'32.00','47.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(861,'EMPIGET 10MG 14S','11',NULL,'5000861','1131254',16.00,'64.29','95.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(862,'STREPSILS HONEY AND LEMON 6S','6',NULL,'5000862','1131259',16.00,'56.39','83.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(863,'STREPSILS REGULAR 6S','6',NULL,'5000863','1131260',16.00,'56.39','83.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(864,'SMUGEL LUBRICATION GEL 50G','6',NULL,'5000864','1131321',16.00,'200.00','296.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.41'),(865,'EPIMOL-B BABY & JUNIOR EMOLLIENT CREAM 400G','12',NULL,'5000865','1131325',16.00,'935.30','1381.90',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(866,'JAMIESON B6+B12 AND FOLIC ACID TABLETS 110S','6',NULL,'5000866','1131342',16.00,'343.71','508.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(867,'JAMIESON ZINC LOZENGES HONEY LEMON 30S','6',NULL,'5000867','1131354',16.00,'758.70','1121.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(868,'JAMIESON COLD FIGHTER CHEWABLE TABLETS 30S','6',NULL,'5000868','1131355',16.00,'450','936.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(869,'JAMIESON MULTI KIDS CHEWABLE TABLETS 60S','6',NULL,'5000869','1131356',16.00,'1087.75','1607.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(870,'CIPZICON 500MG TABS 10S','10',NULL,'5000870','1131369',16.00,'7.50','11.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(871,'CLAVCON 625 MG TABS 14S','10',NULL,'5000871','1131370',16.00,'17.86','26.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(872,'CONACE MR TABS 30S','10',NULL,'5000872','1131371',16.00,'6.67','10.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(873,'CONZIT 500MG TABS 3S','10',NULL,'5000873','1131376',16.00,'70.00','103.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(874,'ESOMCON 20MG TABS 28S','11',NULL,'5000874','1131378',16.00,'7.14','11.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(875,'ESOMCON 4OMG TABS 14S','11',NULL,'5000875','1131379',16.00,'14.29','21.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(876,'LRP LIPIKAR BAUME AP+M 400ml','12',NULL,'5000876','1131399',16.00,'2048.54','3027.59',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(877,'NATURAL COTTONS MAXI PADS SUPER 10S','12',NULL,'5000877','1131470',16.00,'463.50','685.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.57'),(878,'LIPITAS 10MG TABS 30S','11',NULL,'5000878','1131480',16.00,'35.83','53.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(879,'NEALGYL 80MG ORODISPERSIBLE TABS 10S','10',NULL,'5000879','1131489',16.00,'59.50','88.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(880,'CAL-C-VITA PLUS EFF TABLETS 10S','6',NULL,'5000880','1131510',16.00,'326.70','483.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(881,'GOODLIFE HAND SANITIZER 500ML','12',NULL,'5000881','1131535',16.00,'250.00','369.83',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(882,'DIGEVA F SATCHETS 25s','6',NULL,'5000882','1131571',16.00,'20.40','30.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(883,'LEPONEX 25MG 100S','10',NULL,'5000883','1131578',16.00,'61.27','91.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(884,'NAT C VITAMIN C TABS 1000MG 30S','6',NULL,'5000884','1131586',16.00,'820.75','1213.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(885,'IBUBROFEN DENK 400MG TABS 100S','6',NULL,'5000885','1131589',16.00,'7.00','10.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(886,'IBUBROFEN DENK 600MG 20S','6',NULL,'5000886','1131590',16.00,'16.48','24.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(887,'MEDIPHEN 400MG TABS 100S','6',NULL,'5000887','1131748',16.00,'1.30','2.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(888,'PHARMAGENTACIN E/E DROPS 10ML','10',NULL,'5000888','1131755',16.00,'21.00','31.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(889,'PHARMAPHENICOL EYE DROPS 10ML','10',NULL,'5000889','1131764',16.00,'23.00','34.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(890,'PHARMADEXONE EYE DROPS 5ML','10',NULL,'5000890','1131766',16.00,'81.00','120.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(891,'PHARMADEXNICOL EYE DROPS 5ML','10',NULL,'5000891','1131769',16.00,'130.00','192.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(892,'PHARMADEXNEOCIN EYE/EAR DROPS 10ML','10',NULL,'5000892','1131771',16.00,'88.20','130.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(893,'PHARMASINE EYE DROPS 10ML','10',NULL,'5000893','1131778',16.00,'207.00','306.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(894,'PHARMACROM EYE DROPS 10ML','10',NULL,'5000894','1131779',16.00,'180.00','266.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(895,'BUSCOPAN PLUS TABS 40S','6',NULL,'5000895','1131784',16.00,'31.03','46.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(896,'TAMEPYN TABS 20S','10',NULL,'5000896','1131792',16.00,'10.80','16.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(897,'NAT C YUMMY GUMMIES 125MG 25S','6',NULL,'5000897','1131797',16.00,'933.00','1379.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(898,'QUEST OAD ZINC PLUS 15MG TABS 30S','6',NULL,'5000898','1131802',16.00,'370.00','547.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(899,'COLFRESH GUM ICEMINT SUGARFREE 21G','12',NULL,'5000899','1131859',16.00,'65.00','95.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(900,'COLFRESH GUM SPEARMINT SUGARFREE 21G','12',NULL,'5000900','1131860',16.00,'65.00','95.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(901,'COLFRESH GUM WHITE SUGARFREE 21G','12',NULL,'5000901','1131861',16.00,'65.00','95.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(902,'COLFRESH GUM STRAWBERRY SUGARFREE 21G','12',NULL,'5000902','1131862',16.00,'65.00','95.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(903,'PYNSTOP TABS 20S','10',NULL,'5000903','1131871',16.00,'13.38','20.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(904,'H&B VITAMIN C &ZINC ORANGE EFF 20S','6',NULL,'5000904','1131907',16.00,'701.75','1037.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(905,'MAMALAIT GRANULES 100GM','6',NULL,'5000905','1131921',16.00,'1183.20','1749.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.84'),(906,'NOVACLAV 625MG TABS 20S','10',NULL,'5000906','1131927',16.00,'16.17','24.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(907,'DISPOSABLE KIDS 3PLY SURGICAL MASKS 50S','10',NULL,'5000907','1131940',16.00,'6.40','9.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0096.11.02'),(908,'JAMIESON ZINC 50MG 100 S','6',NULL,'5000908','1131945',16.00,'1296.90','1917.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(909,'QUEST OAD IMMUNE MULTI TABS 30S','6',NULL,'5000909','1131954',16.00,'595.00','879.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(910,'APTAMIL BABY MILK 400GM 2','6',NULL,'5000910','1132095',16.00,'967.07','1429.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(911,'RHINAPHYTO 100ML','6',NULL,'5000911','1132098',16.00,'348.15','514.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(912,'MENTHODEX SUGAR FREE LOZENGES BLACKCURRANT 36S','6',NULL,'5000912','1132101',16.00,'449.58','664.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(913,'AZIX 500MG TABS 3S','10',NULL,'5000913','1132130',16.00,'383.00','566.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(914,'BENYLIN 4 FLU 100ML','6',NULL,'5000914','1132148',16.00,'342.00','505.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(915,'DISPOSABLE 3PLY BLACK SURGICAL MASKS 50S','10',NULL,'5000915','1132162',16.00,'7.00','10.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0096.11.02'),(916,'BEROCCA PERFORMANCE EFF TABS ORANGE 20S','6',NULL,'5000916','1132175',16.00,'724.50','1071.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(917,'EMCON 0.75MG TABLETS','10',NULL,'5000917','1132215',16.00,'29.00','43.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(918,'PANADOL ACTIFAST SOLUBLE TABS 12S','6',NULL,'5000918','1132216',16.00,'276.00','408.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(919,'KLEAR DECONGESTANT CAPSULES 10S','6',NULL,'5000919','1132239',16.00,'20.00','30.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(920,'MAXIMMUNE CHEW TABS 30S','6',NULL,'5000920','1132240',16.00,'720.00','1064.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(921,'BENYLIN CHILD WET COUGH MUCUS RELIEF 100ML','6',NULL,'5000921','1132317',16.00,'423.00','625.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(922,'GOODLIFE PURE PETROLEUM JELLY TUBE 50GM','9',NULL,'5000922','1132323',16.00,'34.13','50.86',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(923,'GOODLIFE BABY PETROLEUM JELLY TUBE 100GM','12',NULL,'5000923','1132324',16.00,'58.93','87.07',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(924,'GOODLIFE SANITIZER SPRAY WITH MOISTURIZER 120ML','12',NULL,'5000924','1132328',16.00,'84.00','124.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(925,'AZICIP 500MG TABS 3S','10',NULL,'5000925','1132339',16.00,'190.01','281.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(926,'MEGYL 400MG TABS 100S','10',NULL,'5000926','1132455',16.00,'1.50','2.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(927,'KN95 MEDICAL PROTECTIVE FACE MASK 25S','10',NULL,'5000927','1132547',16.00,'84.00','124.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0096.11.02'),(928,'ELYMOX SUSP 125MG/5ML ML','10',NULL,'5000928','1132556',16.00,'50.00','74.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(929,'AXYLIN SUSP 100ML','10',NULL,'5000929','1132562',16.00,'65.00','96.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(930,'CLOTRINE CREAM 20GM','10',NULL,'5000930','1132564',16.00,'31.50','47.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(931,'ACINET 457MG/5ML SUSP 100ML','10',NULL,'5000931','1132568',16.00,'220.00','325.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(932,'DOMADOL 50MG TABS 10S','10',NULL,'5000932','1132578',16.00,'10.52','16.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(933,'GIFOL TABS 100S','11',NULL,'5000933','1132588',16.00,'2.12','3.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(934,'CURAMOL SUSPENSION 60ML','6',NULL,'5000934','1132696',16.00,'23.00','34.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(935,'BACTROBAN 2% OINTMENT 15G','10',NULL,'5000935','1132971',16.00,'405.50','599.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(936,'DUREX CONDOMS FEEL','6',NULL,'5000936','1133235',16.00,'185.6','236.21',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(937,'PANADOL BABY & INFANT SUSP 60ML','6',NULL,'5000937','1133291',16.00,'145.89','216.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(938,'CONCEIVE PLUS FERTILITY SUPPORT CAPSULES FOR WOMEN 60S','6',NULL,'5000938','1133351',16.00,'3160.00','4670.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(939,'STEROPLAST BLISTER CUSHIONS 4s','6',NULL,'5000939','1133387',16.00,'160.00','236.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(940,'STEROPLAST LARGE PLASTERS 4s','6',NULL,'5000940','1133388',16.00,'110.00','163.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(941,'MYLAN HIV SELF TEST KIT','10',NULL,'5000941','1133464',16.00,'538.7371429','591.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(942,'THOMPSON VIT E 265MG(400 IU) 30S','6',NULL,'5000942','1133519',16.00,'839.00','1240.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(943,'SUNDOWN MELATONIN 3MG TABS 120S','6',NULL,'5000943','1133546',16.00,'1620.00','2394.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(944,'DIATESSE XPER GLUCOSE-KETONE METER','11',NULL,'5000944','1133548',16.00,'1955.42','2890.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0120.11.00'),(945,'DIATESSE XPER GLUCOSE TEST STRIPS 50S','11',NULL,'5000945','1133549',16.00,'1564.80','2312.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0122.11.00'),(946,'DIATESSE B-KETONE TEST STRIPS 10S','11',NULL,'5000946','1133550',16.00,'2011.90','2973.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0122.11.00'),(947,'QUEST OAD MULTI CHEWABLE KIDS + CHEWABLE KIDS PROBIOTIC GIFT','6',NULL,'5000947','1133580',16.00,'460.00','680.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(948,'GOFEN 200MG SOFTGEL CAPS 60S','6',NULL,'5000948','1133883',16.00,'11.98','18.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(949,'ABIDEC MULTIVITAMIN SYRUP WITH OMEGA 3 150ML','6',NULL,'5000949','1100060',16.00,'1250.00','2125.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(950,'ACCU-CHEK ACTIVE MACHINE','11',NULL,'5000950','1100075',16.00,'1.00','2038.79',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(951,'ACCU-CHEK SOFTCLIX LANCETS 200S','11',NULL,'5000951','1100081',16.00,'7.50','13.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0035.11.00'),(952,'ACLOTAS SR 200MG TABS 50S','10',NULL,'5000952','1100089',16.00,'29.90','51.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(953,'ACTION TABLETS 100S','6',NULL,'5000953','1100113',16.00,'3.13','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(954,'ACYCLOVIR 5% CREAM 10G','10',NULL,'5000954','1100140',16.00,'1200.00','1995.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(955,'ACYCLOVIR DENK 5% CREAM 7GM','10',NULL,'5000955','1100142',16.00,'669.50','1140.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(956,'ADDYZOA CAPSULES','10',NULL,'5000956','1100160',16.00,'803.00','1385.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.84'),(957,'ADOL 250MG SUPPOSITORIES 10S','10',NULL,'5000957','1100165',16.00,'29.23','51.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(958,'ADVANTAN CREAM 15GM','10',NULL,'5000958','1100175',16.00,'752.00','1250.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(959,'ADVANTAN OINTMENT 15GM','10',NULL,'5000959','1100176',16.00,'752.00','1250.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(960,'AERO CHAMBER WITH INFANT MUSK','11',NULL,'5000960','1100187',16.00,'3927.00','6560.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0122.11.00'),(961,'AERO CHAMBER WITH CHILD MASK','11',NULL,'5000961','1100188',16.00,'3927.00','6560.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0122.11.00'),(962,'ALDOMET 500MG TABS 30S','11',NULL,'5000962','1100228',16.00,'29.10','51.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(963,'ALLOPURINOL 100MG TABS 28S','11',NULL,'5000963','1100252',16.00,'4.29','8.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(964,'ALWAYS ULTRA EXTRA LONG 7S','12',NULL,'5000964','1100318',16.00,'92.03','140.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.57'),(965,'ALZOLAM 0.25MG TABS 100S','10',NULL,'5000965','1100319',16.00,'17.25','29.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(966,'AMARYL 1MG TABS 30S','11',NULL,'5000966','1100325',16.00,'18.33','35.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(967,'AMARYL 4MG TABS 30S','11',NULL,'5000967','1100327',16.00,'69.64','123.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(968,'AMARYL M 2/500MG TABS 30S','11',NULL,'5000968','1100328',16.00,'35.64','63.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(969,'AMITRIPTYLINE 25MG TABS 100S','10',NULL,'5000969','1100346',16.00,'1.77','3.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(970,'AMITRIPTYLINE 25MG TABS 28S','10',NULL,'5000970','1100347',16.00,'3.21','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(971,'AMLOCIP NB 5/5MG TABS 30S','11',NULL,'5000971','1100348',16.00,'36.90','65.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(972,'AMLOSUN 5MG TABS 30S','11',NULL,'5000972','1100350',16.00,'21.67','39.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(973,'AMOXIL FORTE SYRUP 250MG/5ML 100ML','10',NULL,'5000973','1100360',16.00,'307.00','530.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(974,'AMPICLOX NEONATAL DROPS 8ML','10',NULL,'5000974','1100370',16.00,'156.56','260.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(975,'ANTHISAN CREAM 25GM','6',NULL,'5000975','1100405',16.00,'510.00','885.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(976,'APROVEL 150MG TABS 28S','11',NULL,'5000976','1100425',16.00,'68.71','121.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(977,'APROVEL 300MG TABS 28S','11',NULL,'5000977','1100426',16.00,'88.86','157.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(978,'ARICEPT 5MG TABS 28S','11',NULL,'5000978','1100457',16.00,'95.34','167.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(979,'AQUEOUS CREAM 500GM','10',NULL,'5000979','1100458',16.00,'140.00','254.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0','0039.11.28'),(980,'ASTYMIN FORTE CAPSULES','6',NULL,'5000980','1100553',16.00,'562.10','970.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(981,'ASTYMIN LIQUID 200ML','6',NULL,'5000981','1100555',16.00,'263.00','455.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(982,'ATENOLOL 50MG TABS 28S','11',NULL,'5000982','1100570',16.00,'6.79','12.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(983,'ATRIPLA TABS 30S','11',NULL,'5000983','1100583',16.00,'8631.06','12434.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(984,'AUGMENTIN ES SUSP 642.9MG/5ML - 100ML','10',NULL,'5000984','1100601',16.00,'1525.00','2550.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(985,'AXE BRAND UNIVERSAL OIL 3ML','6',NULL,'5000985','1100686',16.00,'95.00','165.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(986,'AZATHIOPRINE 50MG TABS 56S','11',NULL,'5000986','1100691',16.00,'7.86','14.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(987,'AZTOR 40MG 50S','11',NULL,'5000987','1100703',16.00,'50.00','88.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(988,'BACH RESCUE NIGHT 10ML','6',NULL,'5000988','1100811',16.00,'1200.00','2040.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(989,'BACH RESCUE REMEDY 10ML','6',NULL,'5000989','1100813',16.00,'1300.00','2210.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(990,'BALLET MOSQUITO REPELLANT P/JELLY 100GM','9',NULL,'5000990','1100927',16.00,'108.62','142.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(991,'BAZUKA VERRUCA GEL 5GM','6',NULL,'5000991','1100976',16.00,'780.00','1345.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(992,'BELL MOUSTACHE SCISSORS','12',NULL,'5000992','1101022',16.00,'115.00','245.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(993,'BENADRYL ONE A DAY RELIEF TABLETS 7S','6',NULL,'5000993','1101039',16.00,'665.00','1145.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(994,'BENDURIC 5MG TABS 100S','11',NULL,'5000994','1101044',16.00,'2.21','5.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(995,'BENYLIN 4 FLU TABS 24S','6',NULL,'5000995','1101046',16.00,'760.00','1300.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(996,'BENZHEXOL 5MG TABS','10',NULL,'5000996','1101059',16.00,'2.22','3.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(997,'BETADINE ANTISEPTIC SOLN 500ML','6',NULL,'5000997','1101082',16.00,'752.40','1280.17',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(998,'BETALOC ZOK 100MG TABS 30S','11',NULL,'5000998','1101097',16.00,'35.44','61.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(999,'BETALOC ZOK 25MG TABS 14S','11',NULL,'5000999','1101098',16.00,'34.43','60.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1000,'BETAPYN TABS 18S','10',NULL,'5001000','1101101',16.00,'18.39','32.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1001,'BETASERC 8MG TABS 100S','10',NULL,'5001001','1101104',16.00,'29.64','50.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1002,'A.VOGEL ECHINAFORCE 50ML','6',NULL,'5001002','1101168',16.00,'1001.00','1705.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.84'),(1003,'BIO OIL 125ML','9',NULL,'5001003','1101209',16.00,'745.73','1232.76',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1004,'BIO OIL 60ML','9',NULL,'5001004','1101211',16.00,'449.96','754.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1005,'BI-PRETERAX 5/1.25MG TABS 30S','11',NULL,'5001005','1101220',16.00,'58.35','104.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1006,'BISPANOL SYRUP 100ML','6',NULL,'5001006','1101229',16.00,'144.90','255.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1007,'BISPANOL SYRUP 60ML','6',NULL,'5001007','1101230',16.00,'99.75','175.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1008,'BONJELA ADULT 16YEARS + 15G','6',NULL,'5001008','1101346',16.00,'680.00','1160.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1009,'BONJELA TEETHING GEL 15GM','6',NULL,'5001009','1101349',16.00,'585.00','995.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1010,'BRALIX TABS 100S','10',NULL,'5001010','1101481',16.00,'6.48','11.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1011,'BRANULA G18','10',NULL,'5001011','1101482',16.00,'30.00','52.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.32'),(1012,'BRANULA G24','10',NULL,'5001012','1101485',16.00,'13.00','23.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.32'),(1013,'BRO ZEDEX SYRUP 100ML','6',NULL,'5001013','1101505',16.00,'165.00','290.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1014,'BROZELIN EXPECTORANT 100ML','6',NULL,'5001014','1101521',16.00,'228.96','400.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1015,'BRUSTAN SUSPENSION 100ML','6',NULL,'5001015','1101551',16.00,'215.00','370.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1016,'BUDECORT 100MCG INHALER','11',NULL,'5001016','1101583',16.00,'841.08','1430.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1017,'CABALIN 25MG CAPS 24S','11',NULL,'5001017','1101710',16.00,'21.09','38.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1018,'CALCIMAX SYRUP 150ML','6',NULL,'5001018','1101750',16.00,'680.00','1170.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1019,'CALCINOL 1000 WITH D3 SACHETS 10S','6',NULL,'5001019','1101751',16.00,'56.50','98.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1020,'CALCIUM C 1000 SANDOZ 10S','6',NULL,'5001020','1101753',16.00,'530.10','915.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(1021,'CALPOL SALINE NASAL SPRAY 15ML','6',NULL,'5001021','1101768',16.00,'630.00','1085.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1022,'CALPOL SIXPLUS SUSPENSION S/FREE 80ML','6',NULL,'5001022','1101770',16.00,'660.00','1145.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1023,'CANDID V 6 PESSARIES','10',NULL,'5001023','1101825',16.00,'336.42','570.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1024,'CANDITRAL 100MG CAP 12S','10',NULL,'5001024','1101829',16.00,'134.39','225.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1025,'CARBIMAZOLE 5MG TABS 100S','11',NULL,'5001025','1101867',16.00,'2.19','4.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(1026,'CARDINOL 50MG TABS 28S','11',NULL,'5001026','1101875',16.00,'4.43','9.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1027,'CARDIVAS 6.25MG TABS 30S','11',NULL,'5001027','1101882',16.00,'25.17','45.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1028,'CARTIL SUPER FORTE CAPSULES 30S','6',NULL,'5001028','1101918',16.00,'44.10','76.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1029,'CATAFLAM DROPS 0.5MG/ML 15ML','10',NULL,'5001029','1101926',16.00,'587.25','995.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1030,'CAUSTIC PENCIL 40%','10',NULL,'5001030','1101930',16.00,'180.00','306.03',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0','0039.11.28'),(1031,'CELCOXX 200MG CAPS 50S','10',NULL,'5001031','1101951',16.00,'32.20','54.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1032,'CELESTAMINE TABS 30S','10',NULL,'5001032','1101953',16.00,'14.44','24.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1033,'CENTRUM ADVANCE 30S','6',NULL,'5001033','1101966',16.00,'900.00','1505.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1034,'CENTRUM ADVANCE 50+ 30S','6',NULL,'5001034','1101967',16.00,'850.00','1420.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1035,'CENTRUM ADVANCE 50+ 60S','6',NULL,'5001035','1101968',16.00,'1550.00','2590.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1036,'CENTRUM KIDS 30S','6',NULL,'5001036','1101975',16.00,'1050.00','1755.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1037,'CENTRUM PERFORMANCE 30S','6',NULL,'5001037','1101976',16.00,'1140.00','1905.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1038,'CERAZETTE 75MCG TABS 3S','10',NULL,'5001038','1101988',16.00,'693.33','1160.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(1039,'CETAMOL SYRUP 60ML','6',NULL,'5001039','1101999',16.00,'40.00','70.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1040,'CILOXAN EYE DROPS','10',NULL,'5001040','1102127',16.00,'379.60','635.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1041,'CIPROBAY 500MG TABS 10S','10',NULL,'5001041','1102135',16.00,'297.07','494.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1042,'CIPROBAY HC OTIC DROPS 10ML','10',NULL,'5001042','1102137',16.00,'1147.50','1975.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1043,'CITAL SYRUP','6',NULL,'5001043','1102148',16.00,'240.30','415.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1044,'CITROSODA ORIGINAL 120GM','6',NULL,'5001044','1102157',16.00,'660.40','1145.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1045,'CITROSODA ORIGINAL 60G','6',NULL,'5001045','1102158',16.00,'446.95','775.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1046,'CLARITEK SUSP 50ML','10',NULL,'5001046','1102183',16.00,'434.70','750.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1047,'CLARITEK 250MG TABS 10S','10',NULL,'5001047','1102184',16.00,'80.50','134.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1048,'CLAVULIN 1GM TABS 14S','10',NULL,'5001048','1102205',16.00,'109.14','183.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(1049,'CO-APROVEL 300/12.5MG TABLETS 28S','11',NULL,'5001049','1102301',16.00,'97.93','171.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1050,'COLGATE DENTAL FLOSS','12',NULL,'5001050','1102341',16.00,'360.00','625.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1051,'COMBIGAN EYE DROPS 5ML','10',NULL,'5001051','1102422',16.00,'1535.00','2550.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1052,'COMPEED COLD SORE PATCH 15S','6',NULL,'5001052','1102431',16.00,'850.00','1465.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1053,'CONTEMPO CONDOMS BAREBACK 3S','6',NULL,'5001053','1102443',16.00,'183.19','318.97',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1054,'CONTEMPO CONDOMS KING SIZE 3S','6',NULL,'5001054','1102446',16.00,'212.5','318.97',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1055,'CONTEMPO CONDOMS POWER PLAY 3S','6',NULL,'5001055','1102449',16.00,'183.19','318.97',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1056,'CONTEMPO CONDOMS WET N WILD 3S','6',NULL,'5001056','1102451',16.00,'183.19','318.97',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1057,'CONTIFLO XL CAPS 400MCG 30S','11',NULL,'5001057','1102453',16.00,'17.67','31.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1058,'CONTOUR PLUS GLUCOMETER','11',NULL,'5001058','1102454',16.00,'500.00','1000.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0120.11.00'),(1059,'CONTRACTUBEX OINTMENT 20GM','10',NULL,'5001059','1102458',16.00,'552.50','915.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.73'),(1060,'CORONATION HOT WATER BOTTLE L/S ( RIBBED )','6',NULL,'5001060','1102492',16.00,'900.00','1530.17',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1061,'COVERAM 5/10MG TABS 30S','11',NULL,'5001061','1102551',16.00,'58.59','103.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1062,'COVONIA THROAT SPRAY 30ML','6',NULL,'5001062','1102554',16.00,'1300.00','2305.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1063,'COZAAR 50MG TABS 28S','11',NULL,'5001063','1102560',16.00,'107.14','188.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1064,'COZEPAM 5MG TABS 100S','10',NULL,'5001064','1102561',16.00,'1.94','4.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1065,'CRAFE AWAY MINI FILTERS','6',NULL,'5001065','1102563',16.00,'135.00','232.76',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1066,'CREPE BANDAGE 2IN (5CM) ELASTOLITE','6',NULL,'5001066','1102573',16.00,'14.00','25.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1067,'CRESTOR 5MG TABS 28S','11',NULL,'5001067','1102580',16.00,'53.71','89.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1068,'CRESTOR 10MG TABS 28S','11',NULL,'5001068','1102581',16.00,'57.50','95.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1069,'CRESTOR 20MG TABS 28S','11',NULL,'5001069','1102582',16.00,'82.87','137.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1070,'DAKTACORT CREAM 15GM','10',NULL,'5001070','1102671',16.00,'541.80','925.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1071,'DAKTARIN ORAL GEL 40GM','10',NULL,'5001071','1102673',16.00,'813.60','1345.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1072,'DAONIL 5MG 100S','11',NULL,'5001072','1102680',16.00,'15.92','28.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1073,'DAZIT 5MG TABS 30S','10',NULL,'5001073','1102710',16.00,'40.00','67.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1074,'DAZOLIC 500MG TABS 100S','10',NULL,'5001074','1102711',16.00,'20.10','34.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1075,'DEEP FREEZE GEL 100G','6',NULL,'5001075','1102717',16.00,'505.00','845.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1076,'DELASED CHESTY NON DROWSY 100ML','6',NULL,'5001076','1102733',16.00,'94.50','165.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1077,'DELASED PAEDIATRIC 100ML','6',NULL,'5001077','1102736',16.00,'94.50','165.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1078,'DENTINOX TEETHING GEL 15GM','6',NULL,'5001078','1102761',16.00,'400.00','685.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1079,'DENTOGEL GEL 10G','6',NULL,'5001079','1102763',16.00,'152.00','265.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1080,'DERMOVATE CREAM 25GM','10',NULL,'5001080','1102790',16.00,'529.38','895.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1081,'DETTOL SOAP COOL 90G','12',NULL,'5001081','1102813',16.00,'75.01','116.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1082,'DEXTRACIN EYE DROPS','10',NULL,'5001082','1102827',16.00,'175.00','295.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1083,'DEXTROSE 5% 500ML','10',NULL,'5001083','1102831',16.00,'60.00','105.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1084,'DIFLUCAN 200MG CAPS 7S','10',NULL,'5001084','1102881',16.00,'538.17','910.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1085,'DIGITAL THERMOMETER','6',NULL,'5001085','1102884',16.00,'105.00','185.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0120.11.00'),(1086,'DIGOXIN 125MCG TABLETS 28S','11',NULL,'5001086','1102888',16.00,'8.57','16.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1087,'DIOVAN 160MG CAPS 28S','11',NULL,'5001087','1102933',16.00,'72.93','129.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1088,'DIPROGENTA CREAM 15GM','10',NULL,'5001088','1102937',16.00,'616.23','1025.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1089,'DIPROGENTA OINTMENT 15GM','10',NULL,'5001089','1102938',16.00,'616.23','1025.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1090,'DIPROSALIC OINTMENT 10GM','10',NULL,'5001090','1102940',16.00,'433.73','735.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1091,'DIPROSONE CREAM 30GM','10',NULL,'5001091','1102943',16.00,'709.71','1210.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1092,'DIPROSONE OINTMENT 30GM','10',NULL,'5001092','1102945',16.00,'709.71','1225.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1093,'DISPOSABLE SYRINGES 10ML','10',NULL,'5001093','1102956',16.00,'6.80','13.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0035.11.00'),(1094,'DISPOSABLE SYRINGES 2ML','10',NULL,'5001094','1102958',16.00,'3.90','7.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0035.11.00'),(1095,'DISZINC DISPERSIBLE TABLETS 30S','6',NULL,'5001095','1102967',16.00,'7.25','13.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1096,'DIURIDE 10MG TABS 20S','11',NULL,'5001096','1102969',16.00,'28.61','51.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1097,'DIURIDE 20MG TABS 20S','11',NULL,'5001097','1102970',16.00,'47.51','84.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1098,'DOBESIL 500MG TABS 50S','11',NULL,'5001098','1102983',16.00,'42.91','79.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1099,'DUOFILM SOLUTION','10',NULL,'5001099','1103169',16.00,'620.00','1025.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1100,'DURACELL BATTERIES AAA 2S.','12',NULL,'5001100','1103184',16.00,'222.76','340.52',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1101,'DUREX PLAY (TINGLE) LUBRICATING GEL 50ML','6',NULL,'5001101','1103212',16.00,'505.57','866.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1102,'DUSPATALIN 135MG TABS 50S','10',NULL,'5001102','1103219',16.00,'27.79','47.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1103,'EBASTEL 5MG/5ML SYRUP 120ML','10',NULL,'5001103','1103403',16.00,'1006.00','1725.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1104,'EFFERALGAN 500MG TABLETS 16S','6',NULL,'5001104','1103423',16.00,'15.41','27.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1105,'ELASTOPLAST WATER RESISTANT PLASTERS 10S','6',NULL,'5001105','1103442',16.00,'280.00','482.76',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1106,'EMANZEN FORTE 10MG TABS 30S','10',NULL,'5001106','1103798',16.00,'33.96','57.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1107,'EMLA CREAM 5%','10',NULL,'5001107','1103808',16.00,'550.00','935.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1108,'ENAT CREAM 50G','9',NULL,'5001108','1103823',16.00,'927.895','1375.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1109,'ENCORATE CHRONO 500MG TABS 30S','11',NULL,'5001109','1103832',16.00,'40.00','70.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1110,'ENCORATE CHRONO 200MG TABS 100S','11',NULL,'5001110','1103833',16.00,'12.00','22.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1111,'EPANUTIN 50MG CAPS 28S','11',NULL,'5001111','1103872',16.00,'13.72','25.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1112,'EPIMAX ALL PURPOSE MOISTURISER 400GM','9',NULL,'5001112','1103883',16.00,'1350.00','2310.34',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1113,'EPSOM SALT 100GM','6',NULL,'5001113','1103889',16.00,'70.00','125.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1114,'EROVITA OVULATION TEST KIT','6',NULL,'5001114','1103918',16.00,'1100.00','1892.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1115,'ESTOVON TABLETS 30S','6',NULL,'5001115','1103963',16.00,'32.19','56.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1116,'EUMOVATE CREAM 25GM','10',NULL,'5001116','1103988',16.00,'519.00','875.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1117,'EVANOVA CAPS 20S','10',NULL,'5001117','1104002',16.00,'514.30','875.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.84'),(1118,'EXOCIN EYE & EAR DROPS 5ML','10',NULL,'5001118','1104031',16.00,'583.00','995.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1119,'FASTUM GEL 30GM','10',NULL,'5001119','1104132',16.00,'450.00','770.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1120,'FASTUM GEL DISPENSER 100GM','10',NULL,'5001120','1104134',16.00,'1000.00','1720.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1121,'FEMFRESH DAILY INTIMATE WASH 250ML','12',NULL,'5001121','1104151',16.00,'736.69','1120.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1122,'FERROGLOBIN SYRUP 200ML','6',NULL,'5001122','1104185',16.00,'432.00','805.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1123,'FINOSIN TABS 30S','11',NULL,'5001123','1104198',16.00,'50.67','91.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1124,'FISHERMANS FRIEND LOZS 25G ANISEED','6',NULL,'5001124','1104244',16.00,'125.00','258.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1125,'FLAMOX 500MG CAPS 20s','10',NULL,'5001125','1104272',16.00,'19.15','32.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(1126,'FLAMOX SUSP 250MG/5ML 100ML','10',NULL,'5001126','1104273',16.00,'340.00','565.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(1127,'FLAREX EYE DROPS 5ML','10',NULL,'5001127','1104274',16.00,'357.00','605.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1128,'FLEET ENEMA 133ML','10',NULL,'5001128','1104277',16.00,'505.00','845.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1129,'FLIXONASE NASAL SPRAY','10',NULL,'5001129','1104293',16.00,'2574.00','4355.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1130,'FLUCOZAL 150MG CAPS','10',NULL,'5001130','1104381',16.00,'132.54','225.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1131,'FLUCOZAL 50MG CAPS 14S','10',NULL,'5001131','1104383',16.00,'49.83','84.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1132,'FML NEO EYE DROPS 5ML','10',NULL,'5001132','1104401',16.00,'476.00','800.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1133,'FRANOL TABLETS 100S','11',NULL,'5001133','1104429',16.00,'1.71','4.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1134,'FREEFLEX FORTE TABLETS 30S','6',NULL,'5001134','1104431',16.00,'46.80','81.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1135,'FUCIDIN CREAM 15GM','10',NULL,'5001135','1104463',16.00,'340.00','570.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1136,'FUTSIL SOLUTION','6',NULL,'5001136','1104509',16.00,'216.75','375.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1137,'FYBOGEL LEMON 10S','6',NULL,'5001137','1104510',16.00,'590.00','1015.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1138,'FYBOGEL ORANGE 10S','6',NULL,'5001138','1104512',16.00,'710.00','1225.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1139,'GABANERVE TABS 10S','11',NULL,'5001139','1104623',16.00,'85.91','147.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1140,'GABBRORAL 250MG TABS 12S','10',NULL,'5001140','1104626',16.00,'49.33','83.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1141,'GENTIAN VIOLET 100ML','6',NULL,'5001141','1104779',16.00,'33.00','65.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1142,'GERATHERM DIGITAL THERMOMETER(RAPID)','6',NULL,'5001142','1104793',16.00,'1240.00','2135.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0120.11.00'),(1143,'GILLETTE BLUE 2 DISPOSABLE RAZORS 1S','12',NULL,'5001143','1104809',16.00,'43.68','68.97',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1144,'GILLETTE MACH3 CARTRIDGE 2S','12',NULL,'5001144','1104829',16.00,'450.00','689.65',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1145,'GILLETTE MACH3 TURBO RAZOR 2 UP','12',NULL,'5001145','1104837',16.00,'797.50','1215.52',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1146,'GLEVONIX 500MG TABS 10S','10',NULL,'5001146','1104886',16.00,'94.43','158.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1147,'GLUCORED FORTE 5/500MG TABS 50S','11',NULL,'5001147','1104916',16.00,'13.26','25.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1148,'GLYCERINE ADULT SUPPOSITORIES 4G 12S','6',NULL,'5001148','1104934',16.00,'29.58','51.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1149,'GLYCERINE CHILD SUPPOSITORIES 2G','6',NULL,'5001149','1104935',16.00,'33.30','57.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1150,'GRABACIN - 3 TULLE 10CM X 10CM','6',NULL,'5001150','1104971',16.00,'63.80','110.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1151,'GRISEOFULVIN 125MG TABS 100S','10',NULL,'5001151','1104985',16.00,'2.55','5.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1152,'H/AID CHILDRENS MULTIVITAMINS 30S','6',NULL,'5001152','1105056',16.00,'805.35','1395.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1153,'H/AID CHILDRENS MULTIVITAMINS 90S','6',NULL,'5001153','1105057',16.00,'1495.65','2575.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1154,'H/AID EVENING PRIMROSE 1000MG 30S','6',NULL,'5001154','1105075',16.00,'982.35','1690.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1155,'H/AID OMEGA 3-6-9 60S','6',NULL,'5001155','1105128',16.00,'1778.85','3060.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1156,'H/AID OSTEOFLEX GLU+CHOND 90S','6',NULL,'5001156','1105131',16.00,'3070.95','5285.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1157,'H/AID VIT C 1500MG PR 30S','6',NULL,'5001157','1105175',16.00,'867.30','1505.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(1158,'H/AID VIT E 400 IU 30S','6',NULL,'5001158','1105187',16.00,'1123.95','1945.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1159,'H/AID VIT E 400IU 60S','6',NULL,'5001159','1105188',16.00,'2000.10','3445.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1160,'HUMALOG MIX 50/50 CARTRIDGE 5S','11',NULL,'5001160','1105480',16.00,'1121.00','1873.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.81'),(1161,'HUMALOG MIX25 3ML 5S','11',NULL,'5001161','1105482',16.00,'963.40','1609.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.81'),(1162,'HUMULIN 70/30 3ML CATRIDGES 5S','11',NULL,'5001162','1105486',16.00,'655.40','1095.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.81'),(1163,'HYDRALAZINE 25MG TABS 100S','11',NULL,'5001163','1105497',16.00,'4.69','9.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1164,'HYDREA 500MG CAPS 100S','11',NULL,'5001164','1105498',16.00,'30.00','53.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1165,'HYLO-COMOD EYE DROPS 10ML','10',NULL,'5001165','1105513',16.00,'1119.54','1860.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1166,'I.V. GIVING SET','10',NULL,'5001166','1105533',16.00,'11.00','19.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.93'),(1167,'IBUMEX SUSP 100ML','6',NULL,'5001167','1105538',16.00,'70.35','125.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1168,'IMIGRAN 100MG TABS 6S','10',NULL,'5001168','1105555',16.00,'965.67','1594.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1169,'IMMUNACE TABLET 30S','6',NULL,'5001169','1105560',16.00,'915.00','1530.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1170,'IMODIUM PLUS TABLETS 6S','6',NULL,'5001170','1105562',16.00,'550.00','920.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1171,'IMURAN 50MG TABS 100S','11',NULL,'5001171','1105578',16.00,'52.10','90.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1172,'INFACOL LIQUID','6',NULL,'5001172','1105586',16.00,'627.00','1075.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1173,'IRIFONE GEL 50GM','10',NULL,'5001173','1105690',16.00,'408.50','705.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1174,'ISOFLAV CR ISOFLAVONES CAPSULES','10',NULL,'5001174','1105705',16.00,'51.00','88.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1175,'IVERMECTIN 6MG TABS','10',NULL,'5001175','1105734',16.00,'376.20','640.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1176,'JOHNSONS BABY OIL 125ML','12',NULL,'5001176','1105799',16.00,'283.00','435.35',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1177,'JOINTACE (GLUCOSAMINE & CHONDROITIN) * 30S','6',NULL,'5001177','1105851',16.00,'1157.00','1935.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1178,'JOINTACE (GLUCOSAMINE & OMEGA 3) *30S','6',NULL,'5001178','1105852',16.00,'867.80','1450.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1179,'KENALOG IN ORABASE','10',NULL,'5001179','1105928',16.00,'1110.00','1980.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1180,'KETOPLUS SHAMPOO','10',NULL,'5001180','1105949',16.00,'858.85','1418.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1181,'KLACID 500MG TABLETS 14S','10',NULL,'5001181','1105980',16.00,'157.14','271.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1182,'KLENZIT C GEL 15GMS','10',NULL,'5001182','1105994',16.00,'820.58','1375.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1183,'KLENZIT GEL 15GMS','10',NULL,'5001183','1105995',16.00,'556.25','925.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1184,'KOLZINE 500MCG TABS 100S','11',NULL,'5001184','1106004',16.00,'5.48','10.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1185,'KONTAB 50MG TABS 50S','10',NULL,'5001185','1106007',16.00,'21.90','37.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1186,'KOTEX TAMPONS MINI 16S','12',NULL,'5001186','1106021',16.00,'237.32','355.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.57'),(1187,'LAMICTAL 100MG TABS 30S','11',NULL,'5001187','1106240',16.00,'171.97','296.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1188,'LANOLIN CREAM 50GMS','12',NULL,'5001188','1106265',16.00,'120.00','189.66',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1189,'LANTUS SOLOSTAR PREFILLED PENS 3ML 5S','11',NULL,'5001189','1106271',16.00,'1263.52','2098.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.81'),(1190,'LEMSIP MAX ALL IN ONE CAPS 16S','6',NULL,'5001190','1106320',16.00,'640.00','1520.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(1191,'LEMSIP MAX COLD &FLU SATCHETS B/CURRANT 10S','6',NULL,'5001191','1106328',16.00,'57.00','96.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(1192,'LEMSIP MAX DAY & NIGHT CAPSULES 16S','6',NULL,'5001192','1106331',16.00,'680.00','1215.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(1193,'LIOTON GEL 30GM','10',NULL,'5001193','1106406',16.00,'600.00','1015.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.73'),(1194,'LIPIGET 10MG TABS 10S','11',NULL,'5001194','1106435',16.00,'25.20','44.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1195,'LIPITOR 40MG TABS 30S','11',NULL,'5001195','1106443',16.00,'78.56','136.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1196,'LIPITOR 80MG TABS 30S','11',NULL,'5001196','1106444',16.00,'78.56','136.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1197,'LIPSORE 5% CREAM 2GM','10',NULL,'5001197','1106449',16.00,'280.00','475.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1198,'LONART 180/480MG ORAL SUSP 60ML','10',NULL,'5001198','1106498',16.00,'216.00','365.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.83'),(1199,'LOOBID 200/500MG TABS 10S','10',NULL,'5001199','1106499',16.00,'22.00','37.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1200,'LOTEM SYRUP 100ML','6',NULL,'5001200','1106535',16.00,'314.81','540.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1201,'LOTRIDERM CREAM 30GM','10',NULL,'5001201','1106537',16.00,'1750.00','2925.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1202,'LUMIGAN EYE DROPS 0.03% 3ML','11',NULL,'5001202','1106569',16.00,'1841.00','3245.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1203,'LYSOFLAM TABS 30S','10',NULL,'5001203','1106610',16.00,'13.33','23.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1204,'M2-TONE TABLETS 20S','10',NULL,'5001204','1106642',16.00,'25.71','40.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.84'),(1205,'MALANIL ADULT 250/100MG TABLETS','10',NULL,'5001205','1106725',16.00,'200.25','317.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.83'),(1206,'MEDIGEL GEL','6',NULL,'5001206','1106837',16.00,'405.00','705.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1207,'MEDITROL 0.25MCG CAPS 30S','10',NULL,'5001207','1106854',16.00,'42.09','73.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1208,'MEDIVEN OINTMENT 15gm','10',NULL,'5001208','1106856',16.00,'44.10','74.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1209,'MEDROL 4MG TABS 30S','10',NULL,'5001209','1106864',16.00,'18.40','31.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1210,'METCOS 10MG TABS 100S','10',NULL,'5001210','1106917',16.00,'1.53','3.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1211,'METFORMIN DENK 500MG TABS 100S','11',NULL,'5001211','1106922',16.00,'5.02','9.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1212,'MGR-10mg TABS 30S','10',NULL,'5001212','1106939',16.00,'35.90','60.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1213,'MICARDIS 40MG TABS 28S','11',NULL,'5001213','1106941',16.00,'79.58','136.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1214,'MICARDIS 80MG TABS 28S','11',NULL,'5001214','1106943',16.00,'90.92','158.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1215,'MICRONEMA 20ML','10',NULL,'5001215','1106951',16.00,'126.00','225.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1216,'MICROFINE G30 (8MM) PEN NEEDLES 100S','11',NULL,'5001216','1106952',16.00,'21.60','38.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0035.11.00'),(1217,'MICROFINE G31 (5MM) PEN NEEDLES 100S','11',NULL,'5001217','1106953',16.00,'21.60','38.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0035.11.00'),(1218,'MICROFINE INSULIN SYRINGES *0.5ML','11',NULL,'5001218','1106954',16.00,'12.85','22.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0035.11.00'),(1219,'MICROPORE TAPE 1 INCH','6',NULL,'5001219','1106966',16.00,'153.00','264.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1220,'MIRTAZ 15MG TABS 30S','11',NULL,'5001220','1107017',16.00,'61.67','112.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1221,'MIRTAZ 30MG TABS 30S','11',NULL,'5001221','1107018',16.00,'82.67','150.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1222,'MIXTARD 30/70 INSULIN 10ML','11',NULL,'5001222','1107034',16.00,'508.00','895.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.81'),(1223,'MOBIC 7.5MG TABS 30S','10',NULL,'5001223','1107088',16.00,'46.32','78.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1224,'NIVEA LIP BALM ORIGINAL CARE 4.8GM','9',NULL,'5001224','1107221',16.00,'182.93','267.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1225,'NIVEA LIP BALM FOR MEN 4.8G','9',NULL,'5001225','1107222',16.00,'222.70','323.28',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1226,'NIVEA BODY LOTION (NOURISHING) DRY SKIN 200ML','9',NULL,'5001226','1107233',16.00,'226.29','314.65',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1227,'NIVEA SUNTAN LOTION SPF30 200ML','9',NULL,'5001227','1107263',16.00,'1307.47','1870.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1228,'NIVEA SUNTAN KIDS LOTION SPF50 200ML','12',NULL,'5001228','1107267',16.00,'1569.68','2245.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1229,'NACET PLATINUM WHITE 20 X 5S','12',NULL,'5001229','1107287',16.00,'37.68','60.34',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1230,'NAN 1','6',NULL,'5001230','1107343',16.00,'886.00','1258.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1231,'NAN 2','6',NULL,'5001231','1107345',16.00,'886.00','1258.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1232,'NAN 3','6',NULL,'5001232','1107347',16.00,'886.00','1258.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1233,'NEBICARD 2.5MG TABS 30S','11',NULL,'5001233','1107430',16.00,'17.00','30.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1234,'NEOPEPTINE DROPS 15ML','6',NULL,'5001234','1107466',16.00,'300','415.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1235,'NETAZOX DT 200MG 6S','10',NULL,'5001235','1107476',16.00,'203.90','345.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1236,'NEUROCARE CAPS 30S','10',NULL,'5001236','1107483',16.00,'41.50','70.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1237,'NEURONTIN 100MG CAPS 100S','11',NULL,'5001237','1107484',16.00,'24.39','43.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1238,'NEURONTIN 300MG CAPS 100S','11',NULL,'5001238','1107485',16.00,'55.87','99.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1239,'NEURORUBINE INJECTION 5S','10',NULL,'5001239','1107487',16.00,'237.00','400.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1240,'NICORETTE ICY WHITE GUM 4MG','6',NULL,'5001240','1107621',16.00,'335.71','565.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0',NULL),(1241,'NICORETTE FRESHMINT GUM 2MG','6',NULL,'5001241','1107629',16.00,'285.71','478.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0',NULL),(1242,'NITREST 10MG TABS 30S','10',NULL,'5001242','1107659',16.00,'26.67','46.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1243,'NITROFURANTON 100MG TABLETS','10',NULL,'5001243','1107660',16.00,'1.89','3.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1244,'NO SPA 40MG TABS 100S','10',NULL,'5001244','1107671',16.00,'8.98','15.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1245,'NORMAX 400MG TABS 10S','10',NULL,'5001245','1107686',16.00,'11.11','19.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1246,'NOW BIOTIN 1000MG CAPS 100S','6',NULL,'5001246','1107760',16.00,'900.00','1505.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1247,'NOW VITAMIN A SOFTGEL 100S','6',NULL,'5001247','1107785',16.00,'820.00','1370.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1248,'NOW VITAMIN D3 1000 IU 180S','6',NULL,'5001248','1107789',16.00,'985.00','1645.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1249,'NOW VITAMIN D3 5000IU 120S','6',NULL,'5001249','1107790',16.00,'1360.00','2275.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1250,'NUROFEN CAPLETS 200MG 12S','6',NULL,'5001250','1107799',16.00,'410.00','685.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1251,'NUROFEN EXPRESS LIQ CAPS 400MG 10S','6',NULL,'5001251','1107808',16.00,'765.00','1280.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1252,'NUROFEN EXPRESS LIQUID CAPS 200MG 10S','6',NULL,'5001252','1107809',16.00,'495.00','830.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1253,'NUROFEN MAX MIGRAINE 12S','6',NULL,'5001253','1107814',16.00,'740.00','1240.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1254,'NUROFEN SUSPENSION ORANGE 100ML','6',NULL,'5001254','1107821',16.00,'570.00','955.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1255,'NUROFEN TABLETS 200MG 12S','6',NULL,'5001255','1107823',16.00,'370.00','620.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1256,'NYTOL HERBAL TABLETS 30S','6',NULL,'5001256','1107846',16.00,'915.00','1540.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1257,'NYTOL ONE-A-NIGHT 50MG 20S','6',NULL,'5001257','1107847',16.00,'940.00','1570.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1258,'OLBAS INHALER','6',NULL,'5001258','1107922',16.00,'360.00','620.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1259,'OLD SPICE DEODORANT STICK ORIGINAL 85G','12',NULL,'5001259','1107935',16.00,'1000.00','1620.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1260,'OLFEN 50MG TABS 20S','10',NULL,'5001260','1107949',16.00,'38.85','66.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1261,'OPSITE DRESSING 15.5CMX8.5CM 20S','6',NULL,'5001261','1108034',16.00,'205.00','353.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1262,'OPSITE SPRAY 100ML','6',NULL,'5001262','1108037',16.00,'900.00','1550.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1263,'OPTIVE EYE DROPS 10ML','6',NULL,'5001263','1108052',16.00,'844.00','1455.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1264,'OPTREX EYE WASH 100ML','6',NULL,'5001264','1108053',16.00,'740.00','1245.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1265,'OPTREX BLOODSHOT EYE DROPS','6',NULL,'5001265','1108055',16.00,'735.00','1235.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1266,'OPTREX BRIGHTENING DROPS 10ML','6',NULL,'5001266','1108056',16.00,'725.00','1220.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1267,'OPTREX DRY EYES LUBRICATING DROPS','6',NULL,'5001267','1108060',16.00,'685.00','1155.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1268,'OPTREX ITCHY EYE DROPS 10ML','6',NULL,'5001268','1108064',16.00,'680.00','1145.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1269,'OPTREX SORE EYE DROPS 10ML','6',NULL,'5001269','1108068',16.00,'750.00','1415.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1270,'ORAL B DENTAL FLOSS UNWAXED ORIGINAL 50M','12',NULL,'5001270','1108086',16.00,'180.00','275.86',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1271,'OSTEOCARE LIQUID','6',NULL,'5001271','1108186',16.00,'623.00','1045.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1272,'OSTEOCERIN TABS 10S','10',NULL,'5001272','1108190',16.00,'62.00','117.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1273,'OTRIVIN ADULT DROPS 10ML','6',NULL,'5001273','1108196',16.00,'431.00','725.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1274,'OTRIVIN PAED DROPS 10ML','6',NULL,'5001274','1108197',16.00,'431.00','725.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1275,'OVACARE TABS 30S','6',NULL,'5001275','1108199',16.00,'1226.00','2110.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1276,'PARA DENK SUPP 250MG 10S','10',NULL,'5001276','1108327',16.00,'21.25','36.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1277,'PARLODEL 2.5MG TABS 30S','10',NULL,'5001277','1108343',16.00,'46.67','80.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1278,'PEGLEC POWDER 137.15GMS','10',NULL,'5001278','1108378',16.00,'1148.10','1895.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1279,'PENAMOX 500MG CAPS 500S','10',NULL,'5001279','1108381',16.00,'10.97','18.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(1280,'PERFECTIL CAPS 30S','6',NULL,'5001280','1108404',16.00,'1190.00','1990.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1281,'PHENOBARBITONE 30MG TABS 100S','10',NULL,'5001281','1108434',16.00,'1.53','3.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1282,'PIOGLUC 30MG TABS 28S','11',NULL,'5001282','1108567',16.00,'12.75','23.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1283,'PLENDIL 5MG TABS 30S','11',NULL,'5001283','1108617',16.00,'52.83','93.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1284,'POLYGYNAX PESSARIES 12S','10',NULL,'5001284','1108648',16.00,'57.08','96.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1285,'POWERGESIC MR TABLETS 100S','10',NULL,'5001285','1108704',16.00,'17.00','28.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1286,'PRAZITEL 600MG TABS 100S','10',NULL,'5001286','1108706',16.00,'21.16','35.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1287,'PRED FORTE EYE DROPS','10',NULL,'5001287','1108710',16.00,'737.00','1225.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1288,'PREGNACARE FOR CONCEPTION','6',NULL,'5001288','1108721',16.00,'906.00','1515.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1289,'PRIMAPORE AWD 15CM*8CM 20S','6',NULL,'5001289','1108761',16.00,'50.00','86.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1290,'PRIMAPORE AWD 20CM*10CM 20S','6',NULL,'5001290','1108762',16.00,'85.00','147.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1291,'PROCTOSEDYL SUPPOSITORIES 12S','10',NULL,'5001291','1108795',16.00,'106.25','177.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1292,'PRODEP 20MG TABS 60S','11',NULL,'5001292','1108797',16.00,'27.48','49.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1293,'PROLOC D 10/10mg TABS 30S','11',NULL,'5001293','1108801',16.00,'41.77','74.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1294,'HISTARGAN SYRUP 100ML','10',NULL,'5001294','1108806',16.00,'36.00','61.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1295,'PURECAL CHEWABLE TABS 30S','6',NULL,'5001295','1108889',16.00,'725.00','1250.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1296,'PYRALVEX SOLUTION 10ML','6',NULL,'5001296','1108897',16.00,'445.00','770.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1297,'QUITIPIN 100MG TABS 30S','11',NULL,'5001297','1108979',16.00,'44.80','82.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1298,'RECARTIX FORTE 30S','6',NULL,'5001298','1109027',16.00,'35.12','62.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1299,'REFRESH TEARS 15MLS','6',NULL,'5001299','1109044',16.00,'664.00','1145.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0',NULL),(1300,'RENNIE PEPPERMINT 48S','6',NULL,'5001300','1109084',16.00,'225.00','390.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1301,'REPACE-H 50/12.5MG TABS 30S','11',NULL,'5001301','1109097',16.00,'26.92','47.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1302,'RHINATHIOL ADULT SYRUP 125ML','6',NULL,'5001302','1109251',16.00,'326.69','550.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1303,'RISDONE 1MG TABS 50S','10',NULL,'5001303','1109291',16.00,'43.70','73.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1304,'SAFERON SYRUP 150ML','6',NULL,'5001304','1109381',16.00,'336.42','580.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1305,'SAFERON PLUS TABLETS 30S','6',NULL,'5001305','1109382',16.00,'23.85','42.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1306,'SAFETY PINS ASSORTED','12',NULL,'5001306','1109383',16.00,'12.50','23.28',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1307,'SAVLON ANTISEPTIC CREAM 15G','6',NULL,'5001307','1109436',16.00,'217.00','380.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1308,'SAVLON ANTISEPTIC LIQUID 250ML','6',NULL,'5001308','1109440',16.00,'297.00','517.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1309,'SCOTTS EMULSION REGULAR 100ML','6',NULL,'5001309','1109527',16.00,'324.17','535.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1310,'SEBAMED BABY CHILDRENS SHAMPOO','12',NULL,'5001310','1109543',16.00,'629.47','1073.28',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1311,'SEBAMED BABY CLEANSING BAR','9',NULL,'5001311','1109544',16.00,'520.00','892.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1312,'SEBAMED BABY LOTION 100ML','12',NULL,'5001312','1109549',16.00,'650.00','1107.76',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1313,'SEBAMED FEMININE INTIMATE WASH 200ML','12',NULL,'5001313','1109573',16.00,'1050.00','1788.79',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1314,'SENOKOT TABLETS 20S','6',NULL,'5001314','1109615',16.00,'460.00','800.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.82'),(1315,'SEPGARD GEL 1% 15GM','10',NULL,'5001315','1109641',16.00,'193.38','325.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1316,'SEPTRIN SUSPENSION 100ML','10',NULL,'5001316','1109648',16.00,'324.93','550.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1317,'SEPTRIN SUSPENSION 50ML','10',NULL,'5001317','1109649',16.00,'209.74','355.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1318,'SERETIDE A/HALER 50MCG/500MCG','11',NULL,'5001318','1109652',16.00,'1971.00','3395.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1319,'SERETIDE A/HALER 50MCG/250MCG','11',NULL,'5001319','1109654',16.00,'1520.00','2615.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1320,'SICCAPOS GEL 10GM','10',NULL,'5001320','1109717',16.00,'547.00','945.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1321,'SIMPLE REGENARATION A/R NIGHT CREAM 50ML','9',NULL,'5001321','1109792',16.00,'1159.00','1754.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1322,'SIMVASTATIN 20MG TABS 28S','11',NULL,'5001322','1109830',16.00,'3.39','7.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1323,'SIMVASTATIN 40MG TABS 28S','11',NULL,'5001323','1109831',16.00,'5.11','10.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1324,'SINAREST VAPOCAPS 10S','6',NULL,'5001324','1109832',16.00,'29.50','52.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1325,'SKILAX DROPS 15ML','6',NULL,'5001325','1109853',16.00,'450.00','775.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1326,'SOLIFEN 5MG TABS 10S','11',NULL,'5001326','1109975',16.00,'105.00','189.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1327,'SPASMOMEN 40MG TABS 30S','10',NULL,'5001327','1110013',16.00,'29.07','49.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1328,'SPIRIVA 18MCG CAPS REFILLS','11',NULL,'5001328','1110021',16.00,'5254.50','8780.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1329,'SPIRONOLACTONE 25MG 28S','11',NULL,'5001329','1110023',16.00,'11.07','21.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1330,'STUDEX EAR GEL','9',NULL,'5001330','1110088',16.00,'129.31','224.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1331,'STILNOX 10MG TABS 14S','10',NULL,'5001331','1110126',16.00,'34.20','58.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1332,'STREPSILS STRAWBERRY S/FREE 36S','6',NULL,'5001332','1110141',16.00,'750.00','1275.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1333,'STREPSILS ORIGINAL 16S','6',NULL,'5001333','1110154',16.00,'435.00','740.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1334,'STREPSILS SORE THROAT & BLOCKED NOSE 36S','6',NULL,'5001334','1110158',16.00,'815.00','1430.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1335,'STUD SPRAY','6',NULL,'5001335','1110161',16.00,'760.00','1310.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1336,'STUGERON 25MG TABS 50S','10',NULL,'5001336','1110162',16.00,'10.66','19.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1337,'SUCRAFIL O GEL SUCRALFATE AND OXETACAINE SUSPENSION 100','6',NULL,'5001337','1110167',16.00,'233.18','410.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1338,'SUDAFED DECONGESANT TABLETS 12S','6',NULL,'5001338','1110169',16.00,'500.00','860.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1339,'SURESIGN PREGNANCY MIDSTREAM TWIN','6',NULL,'5001339','1110249',16.00,'500.00','862.07',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1340,'SURESIGN PREGNANCY STRIPS 2S','6',NULL,'5001340','1110250',16.00,'180.00','310.35',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1341,'SURGICAL SPIRIT 5 LITRE','6',NULL,'5001341','1110257',16.00,'750.00','1290.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1342,'SUSTEN 400MG CAPS 30S','10',NULL,'5001342','1110262',16.00,'95.00','158.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(1343,'TACROVATE FORTE OINT 0.1%','10',NULL,'5001343','1110313',16.00,'1170.90','2015.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1344,'TACROVATE OINTMENT 0.03% 10GRAMS','10',NULL,'5001344','1110314',16.00,'774.30','1295.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1345,'TAVANIC 500MG TABS 5S','10',NULL,'5001345','1110346',16.00,'375.48','630.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1346,'TEGRETOL 200MG TABS 50S','11',NULL,'5001346','1110377',16.00,'6.66','12.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1347,'TELTAS 40MG TABS 30S','11',NULL,'5001347','1110383',16.00,'46.67','83.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1348,'TIGER BALM RED 19.4G','6',NULL,'5001348','1110468',16.00,'270.00','470.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1349,'TOPAMAX 50MG TABS 60S','10',NULL,'5001349','1110579',16.00,'65.00','110.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1350,'TRANSAMIN 500MG TABS 20S','11',NULL,'5001350','1110604',16.00,'34.00','62.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1351,'TRANSPORE TAPE 1 INCH','10',NULL,'5001351','1110605',16.00,'183.67','305.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.32'),(1352,'TRAVOGEN CREAM 20GM','10',NULL,'5001352','1110618',16.00,'509.01','845.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1353,'TRIMETABOL SYRUP 150ML','6',NULL,'5001353','1110638',16.00,'621.00','1070.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1354,'TRUVADA 200/300MG TABS 30S','11',NULL,'5001354','1110682',16.00,'4508.00','7530.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1355,'TX-MF TABLETS 30S','11',NULL,'5001355','1110711',16.00,'49.01','86.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1356,'ULGICID SUSPENSION MINT 200ML','6',NULL,'5001356','1110823',16.00,'278.67','485.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1357,'URINE BAG WITH OUTLET 2L','10',NULL,'5001357','1110869',16.00,'27.00','51.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0132.11.00'),(1358,'VENIZ XR 75MG CAPS 30S','10',NULL,'5001358','1111067',16.00,'58.00','100.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1359,'VENTAB XL 75MG TABS 30S','10',NULL,'5001359','1111068',16.00,'68.00','109.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1360,'VERMOX SYRUP 30ML','6',NULL,'5001360','1111081',16.00,'505.80','865.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1361,'VIAGRA 50MG TABS 4S','11',NULL,'5001361','1111092',16.00,'659.12','1200.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1362,'VICKS VAPOUR RUB 50GM U.K','6',NULL,'5001362','1111113',16.00,'480.00','830.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1363,'VICKS VAPOUR RUB 50GM LOCAL','6',NULL,'5001363','1111115',16.00,'685.00','1140.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1364,'VISIONACE TABLETS 30S','6',NULL,'5001364','1111140',16.00,'889.00','1485.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1365,'VITACAP CAPSULES 50S','6',NULL,'5001365','1111147',16.00,'20.74','36.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1366,'VOLTAREN EMULGEL 20GM','6',NULL,'5001366','1111291',16.00,'439.53','755.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1367,'WARFARIN 1MG TABLETS 28S','11',NULL,'5001367','1111309',16.00,'2.32','4.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1368,'WAXSOL EAR DROPS 10ML','6',NULL,'5001368','1111339',16.00,'500.00','865.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1369,'WELLMAN CONCEPTION','6',NULL,'5001369','1111349',16.00,'979.00','1635.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1370,'WELLWOMAN CAPSULES 30S','6',NULL,'5001370','1111353',16.00,'1008.00','1685.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1371,'WOW GAUZE BANDAGES 2 12S','6',NULL,'5001371','1111398',16.00,'3.08','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1372,'WOW GAUZE BANDAGES 4 12S','6',NULL,'5001372','1111400',16.00,'11.67','22.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1373,'XARELTO 10MG TABS 10S','11',NULL,'5001373','1111420',16.00,'125.37','220.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1374,'YASMIN TABS 21S','10',NULL,'5001374','1111447',16.00,'739.00','1150.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(1375,'ZAMUR 500MG TABLETS 10S','10',NULL,'5001375','1111462',16.00,'149.78','249.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1376,'ZECUF LOZENGES HERBAL LEMON','6',NULL,'5001376','1111475',16.00,'152.00','262.93',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1377,'ZEDCAL SUSP 200ML','6',NULL,'5001377','1111481',16.00,'354.00','615.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1378,'ZEDCAL TABLETS 30S','6',NULL,'5001378','1111482',16.00,'325.00','565.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1379,'ZERODOL 100MG TABS 30S','10',NULL,'5001379','1111492',16.00,'15.22','27.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1380,'ZESTRIL 5MG TABS 28S','11',NULL,'5001380','1111496',16.00,'15.93','28.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1381,'ZINC & CASTOR OIL CREAM 225G - Bells','12',NULL,'5001381','1111506',16.00,'560.00','987.07',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1382,'ZINC OXIDE PLASTER 2 (5CM*4M)','6',NULL,'5001382','1111510',16.00,'55.00','100.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1383,'ZINC OXIDE PLASTER 3 (7.5CM*4M)','6',NULL,'5001383','1111511',16.00,'70.00','125.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1384,'ZINNAT SUSP. 125MG/5ML 100ML','10',NULL,'5001384','1111532',16.00,'1083.60','1855.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1385,'ZITHROMAX 200MG/5ML SUSP - 15ML','10',NULL,'5001385','1111541',16.00,'612.80','1030.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1386,'ZOSERT 50MG TABS 30S','11',NULL,'5001386','1111563',16.00,'53.33','97.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1387,'ZYLORIC 100MG TABS 100S','11',NULL,'5001387','1111573',16.00,'25.00','46.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1388,'OCULAST EYE DROPS 15ML','10',NULL,'5001388','1111665',16.00,'276.00','465.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1389,'SURESIGN BLOOD PRESSURE MONITOR','11',NULL,'5001389','1111686',16.00,'2999.00','5008.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1390,'TELMI H 40/12.5MG TABS 30S','11',NULL,'5001390','1111687',16.00,'42.63','76.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1391,'ZECUF LOZENGES HERBAL ORIGINAL','6',NULL,'5001391','1111695',16.00,'152.00','267.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1392,'COMBIZOL TABS 10S','10',NULL,'5001392','1111713',16.00,'39.16','66.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1393,'TELMI 40MG TABLET 30S','11',NULL,'5001393','1111821',16.00,'36.90','65.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1394,'NEBILONG-H 5MG/12.5MG TABS 30S','11',NULL,'5001394','1111851',16.00,'44.39','79.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1395,'QUADRAJEL GEL 15GM','10',NULL,'5001395','1111898',16.00,'231.40','400.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1396,'HITORAL CREAM 20GM','10',NULL,'5001396','1111951',16.00,'60.00','105.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1397,'TIMOLOL EYE DROPS 0.25% 5ML','10',NULL,'5001397','1112008',16.00,'800.00','1380.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1398,'ASCORIL DRY COUGH SYP 100ML','6',NULL,'5001398','1112128',16.00,'293.70','515.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1399,'OZITAS 5MG TABS 30S','10',NULL,'5001399','1112262',16.00,'38.83','67.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1400,'SERETIDE 25/250 EVOHALER','11',NULL,'5001400','1112272',16.00,'1803.00','3105.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1401,'COVERAM 5/5MG TABS 30S','11',NULL,'5001401','1112372',16.00,'53.49','95.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1402,'COVERAM 10/10MG TABS 30S','11',NULL,'5001402','1112373',16.00,'81.533','129.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1403,'NEXPRO 40MG TABS 50S','11',NULL,'5001403','1112426',16.00,'23.00','42.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1404,'VISIONACE PLUS CAPS 56S','6',NULL,'5001404','1112444',16.00,'1245.00','2080.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1405,'WELLMAN PLUS OMEGA CAPS 56S','6',NULL,'5001405','1112447',16.00,'1588.00','2655.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1406,'ZECUF LOZENGES HERBAL ORANGE','6',NULL,'5001406','1112449',16.00,'152.00','267.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1407,'TELTAS H 80/25MG TABS 30S','11',NULL,'5001407','1112506',16.00,'56.00','96.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1408,'GAVISCON DOUBLE ACTION LIQUID 300ML','6',NULL,'5001408','1112523',16.00,'1350.00','2255.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1409,'TAMSOLIN 0.4MG CAPS 10S','11',NULL,'5001409','1112639',16.00,'59.25','108.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1410,'NEBILONG 5mg TABS 30S','11',NULL,'5001410','1112729',16.00,'41.21','73.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1411,'CASTOR OIL 50 ML','6',NULL,'5001411','1112758',16.00,'35.00','60.34',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1412,'CHARCOAL TABS 100S (MEDICINAL) U.K','6',NULL,'5001412','1112759',16.00,'420.00','730.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1413,'CONTEMPO CONDOM EROTICA 3S','6',NULL,'5001413','1112850',16.00,'183.19','318.97',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1414,'ANIMAL PARADE VITAMIN C 90S','6',NULL,'5001414','1112907',16.00,'1210.00','2085.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(1415,'MURINE DRY AND TIRED EYES','6',NULL,'5001415','1113490',16.00,'510.00','880.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1416,'SUNDOWN CALCIUM 1200MCG +VIT D 1000IU TABLETS 60','6',NULL,'5001416','1113539',16.00,'1350.00','2295.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1417,'SUNDOWN OSTEO BI-FLEX TABLETS 40S','6',NULL,'5001417','1113548',16.00,'1683.00','2865.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1418,'SUNDOWN VIT D3 5000MCG SOFTGELS 150S','6',NULL,'5001418','1113552',16.00,'1431.00','2435.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1419,'CO-MICARDIS 40MG TABS 28S','11',NULL,'5001419','1113566',16.00,'79.58','136.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1420,'TELMI 80MG TABS 30S','11',NULL,'5001420','1113797',16.00,'51.35','90.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1421,'ISLIM 400MG CAPS 30S','6',NULL,'5001421','1113883',16.00,'33.33','58.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.84'),(1422,'ISOPTIN SR 240MG TABS 30S','11',NULL,'5001422','1113996',16.00,'87.70','154.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1423,'LEVOBACT 750MG TABS 10S','10',NULL,'5001423','1113999',16.00,'74.60','124.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1424,'NOW OMEGA 3-6-9 CAPS 100S','6',NULL,'5001424','1114009',16.00,'1565.00','2615.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1425,'CLOMID 50MG TABS 30S','10',NULL,'5001425','1114031',16.00,'93.33','156.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1426,'LEFLOX 750MG TABS 10S','10',NULL,'5001426','1114074',16.00,'95.14','158.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1427,'NOW HORNY GOAT WEED EXTRACT 90S','6',NULL,'5001427','1114114',16.00,'2285.00','3820.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1428,'CADRONATE 150MG TABS 3S','10',NULL,'5001428','1114541',16.00,'972.00','1605.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1429,'DOMADOL 50MG TABS 100S','10',NULL,'5001429','1114574',16.00,'7.14','12.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1430,'NUROFEN MIGRAINE 12S','6',NULL,'5001430','1114674',16.00,'450.00','755.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1431,'GLUCOMET N 5/500mg TABS 28S','11',NULL,'5001431','1114905',16.00,'9.21','16.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1432,'PROCTOSEDYL OINTMENT 30GM','6',NULL,'5001432','1115158',16.00,'2230.00','3840.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1433,'METOZ 2.5MG TABS 30S','11',NULL,'5001433','1115203',16.00,'22.99','41.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1434,'INSPRA EPLERENOON 25MG 30S','11',NULL,'5001434','1115211',16.00,'96.01','169.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1435,'PRADAXA 110MG CAPSULES 60S','11',NULL,'5001435','1115223',16.00,'122.53','216.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1436,'AVOMINE TRAVE SICKNESS TABLETS 10S','6',NULL,'5001436','1115362',16.00,'310.00','540.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1437,'ELASTOPLAST FABRIC PLASTERS 10S','6',NULL,'5001437','1115406',16.00,'280.00','480.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1438,'IMODIUM MELT INSTANTS 2MG 6S','6',NULL,'5001438','1115415',16.00,'550.00','1070.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1439,'MOVICOL PAEDIATRIC SATCHETS 30S','6',NULL,'5001439','1115423',16.00,'41.17','71.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1440,'TOT HEMA ORAL SOL 10ML AMPOULES 20S','10',NULL,'5001440','1115484',16.00,'28.95','49.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1441,'THEOPHED (FRANOL GENERIC) TABLETS 100S','11',NULL,'5001441','1115505',16.00,'1.55','3.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1442,'AERIUS SYRUP 60ML','10',NULL,'5001442','1115506',16.00,'410.82','700.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1443,'FOLLEY CATHETER 2 WAY G18','10',NULL,'5001443','1115637',16.00,'45.00','80.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0036.11.00'),(1444,'CENTRUM MEN 30','6',NULL,'5001444','1115698',16.00,'1050.00','1755.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1445,'ZINCAT-OD SYRUP 60ML','10',NULL,'5001445','1115788',16.00,'100.94','170.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1446,'WISDOM INTERDENTAL BRUSHES 0.60MM 5S','12',NULL,'5001446','1115893',16.00,'283.50','456.90',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1447,'GABIX 300MG CAPS 10S','11',NULL,'5001447','1116176',16.00,'30.80','55.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1448,'TELMI AM 40/5MG TABS 30S','11',NULL,'5001448','1116181',16.00,'44.77','79.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1449,'SINGULAIR 10MG TABS 28S','11',NULL,'5001449','1116225',16.00,'64.98','115.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1450,'PARIET 10MG TABS 28S','11',NULL,'5001450','1116314',16.00,'101.60','180.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1451,'OPTIVE PLUS EYE DROPS 10ML','6',NULL,'5001451','1116407',16.00,'1044.00','1800.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1452,'TWYNSTA 40/5MG TABS 28S','11',NULL,'5001452','1116594',16.00,'102.30','177.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1453,'NEUROBEST TABS 30S','6',NULL,'5001453','1116721',16.00,'14.37','26.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1454,'METRONIDAZOLE SYRUP 100ML','10',NULL,'5001454','1116725',16.00,'36.00','61.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1455,'MINOXIN 5% SOLUTION 60ML','10',NULL,'5001455','1116757',16.00,'1955.00','3306.03',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0','0039.11.28'),(1456,'NIVEA AFTER SHAVE BALM SENSITIVE 100ML','12',NULL,'5001456','1116884',16.00,'668.10','956.90',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1457,'TWYNSTA 40/10MG TABS 28S','11',NULL,'5001457','1117011',16.00,'102.30','176.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1458,'YESCORT 6MG TABLETS 30S','11',NULL,'5001458','1117137',16.00,'21.46','39.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1459,'PROGYNOVA 2MG TABS 20S','10',NULL,'5001459','1117236',16.00,'17.68','31.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(1460,'QUEST CRANBIOTIX - PROBIOTIC WITH CRANBERRY 30S','6',NULL,'5001460','1117245',16.00,'1235.00','2065.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1461,'FEBO-G 40MG TABS 20S','11',NULL,'5001461','1117251',16.00,'75.00','132.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1462,'AVELON 400MG TABS 10S','10',NULL,'5001462','1117277',16.00,'221.35','368.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1463,'IMPRAMINE 25MG TABS 28S','10',NULL,'5001463','1117279',16.00,'16.07','28.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1464,'SENSODYNE REPAIR & PROTECT 75ML','12',NULL,'5001464','1117530',16.00,'396.96','534.48',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1465,'CENTRUM 50+ MEN 30S','6',NULL,'5001465','1117540',16.00,'1200.00','2005.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1466,'DUODART 0.5MG CAPS 30S','11',NULL,'5001466','1117636',16.00,'70.20','117.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1467,'VITAMIN C EFF ORANGE 1000MG 20S (PHC)','6',NULL,'5001467','1117726',16.00,'585.00','1008.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(1468,'LIPITOR 20MG TABS 30S','11',NULL,'5001468','1117775',16.00,'76.10','130.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1469,'SUNDOWN COMPLETE OMEGA 3-5-6-7-9 SOFTGELS 90S','6',NULL,'5001469','1117831',16.00,'2326.50','3960.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1470,'KLEEN ENEMAX 100MCG 135ML','10',NULL,'5001470','1117990',16.00,'173.00','295.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1471,'SUNDOWN VIT D3 1000MCG SOFTGEL 200S','6',NULL,'5001471','1117996',16.00,'1431.00','2435.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1472,'LIPIGET 40MG TABS 10S','11',NULL,'5001472','1118009',16.00,'56.00','97.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1473,'NIVEA SHOWER GEL MEN COOL KICK 250ML','12',NULL,'5001473','1118109',16.00,'337.64','469.83',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1474,'SLOW SODIUM TABLETS 600MG 100S','10',NULL,'5001474','1118112',16.00,'22.00','37.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1475,'PREGNACARE FOR BREASTFEEDING','6',NULL,'5001475','1118198',16.00,'1697.27','3120.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1476,'ESCLAM KIT 7S','11',NULL,'5001476','1118360',16.00,'360.46','631.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.14'),(1477,'LEVIPIL 500MG TABS 30S','10',NULL,'5001477','1118388',16.00,'64.00','111.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1478,'ASOMEX D 2.5/12.5MG TABS 30S','11',NULL,'5001478','1118481',16.00,'52.21','92.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1479,'FORALIN 400 INHALER','11',NULL,'5001479','1118517',16.00,'2134.52','3740.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1480,'ANIMAL PARADE KIDZINC LOZENGES 90S','6',NULL,'5001480','1118544',16.00,'1825.00','3140.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1481,'FORALIN INHALER 100','11',NULL,'5001481','1118554',16.00,'1099.94','1925.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1482,'FEMELLE COTTON BALLS 100S','12',NULL,'5001482','1118619',16.00,'200.00','349.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1483,'FEMELLE COTTON BUDS 200S','9',NULL,'5001483','1118824',16.00,'145.00','250.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1484,'OLD SPICE DEODORANT STICK PURE SPORT 85G','12',NULL,'5001484','1118982',16.00,'1000.00','1620.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1485,'FORALIN 200 INHALER','11',NULL,'5001485','1119823',16.00,'1487.80','2605.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1486,'QUEST VIT C 1000MG TIMED RELEASE TABS BONUS 45s','6',NULL,'5001486','1120062',16.00,'785.00','1315.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1487,'BALLET MOSQUITO REPELLENT MOUSE SPRAY 100ML','9',NULL,'5001487','1120074',16.00,'201.72','340.52',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1488,'NIVEA MEN SHAVING FOAM SENSITIVE 200ML','12',NULL,'5001488','1120156',16.00,'484.91','672.41',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1489,'SENSODYNE TOOTH BRUSH (GUM CARE) SOFT','12',NULL,'5001489','1120382',16.00,'116.00','159.48',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1490,'ALTACEF 500MG TABS 10S','10',NULL,'5001490','1120669',16.00,'86.95','146.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1491,'ECOFREE 120MG TABS 10S','10',NULL,'5001491','1120754',16.00,'49.50','83.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1492,'COW & GATE NUTRISTART 2 400G','6',NULL,'5001492','1120798',16.00,'919.40','1474.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1493,'COW & GATE NUTRISTART 1 400G','6',NULL,'5001493','1120799',16.00,'919.40','1474.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1494,'COW & GATE NUTRISTART JUNIOR 3 400G','6',NULL,'5001494','1120801',16.00,'919.40','1474.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1495,'DUREX CONDOMS PLEASURE ME','6',NULL,'5001495','1120808',16.00,'208.61','392.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1496,'NEXIKEN KIT 7S','11',NULL,'5001496','1120814',16.00,'213.96','375.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.14'),(1497,'METHYLATED SPIRIT 100ML','6',NULL,'5001497','1120818',16.00,'27.00','46.55',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1498,'LETROL 2.5MG TABS 5S','11',NULL,'5001498','1120822',16.00,'150.00','263.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1499,'BIOFLOR 250MG SACHETS 10S','6',NULL,'5001499','1120864',16.00,'76.50','133.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1500,'CIPLADON 500MG EFF TABLETS 16S','6',NULL,'5001500','1120876',16.00,'17.28','29.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1501,'NATURAL COTTON MAXI SUPER PADS 12S','12',NULL,'5001501','1120949',16.00,'382.50','585.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.57'),(1502,'VICKS VAPOUR RUB 100GM U.K','6',NULL,'5001502','1121446',16.00,'800.00','1655.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1503,'CLOMID 50MG TABS 10S','10',NULL,'5001503','1121496',16.00,'56.00','93.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(1504,'DEEP FREEZE COLD PATCH','6',NULL,'5001504','1121526',16.00,'360.00','605.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1505,'OXYBUTYNIN 5MG TABS 100S','11',NULL,'5001505','1121536',16.00,'5.00','9.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1506,'TERBIFIN 250MG TABS 14S','10',NULL,'5001506','1121594',16.00,'110.88','185.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1507,'MESTINON PYRIDOSTIGMINE 60MG TABS 20S','10',NULL,'5001507','1121600',16.00,'35.00','59.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1508,'PANTOLOC 20MG TABS 28S','11',NULL,'5001508','1121612',16.00,'49.21','87.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1509,'APROVASC 150/5MG TABS 28S','11',NULL,'5001509','1121741',16.00,'74.97','132.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1510,'CATAFLAM 15MG/ML SUSP 120ML','10',NULL,'5001510','1122053',16.00,'699.55','1180.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1511,'APDROPS DX 5/1MG 3ML DROPS','10',NULL,'5001511','1122060',16.00,'425.60','720.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1512,'PERFECTIL PLUS SKIN CAPS 60S','6',NULL,'5001512','1122067',16.00,'1512.00','2530.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1513,'VICKS INHALER INDIA','6',NULL,'5001513','1122202',16.00,'385.00','655.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1514,'ALWAYS EVERYDAY PANTYLINERS NORMAL 20S','12',NULL,'5001514','1122404',16.00,'86.68','133.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1515,'WISDOM CLEAN BETWEEN FLOSSER','12',NULL,'5001515','1122478',16.00,'339.30','543.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1516,'LRP CICAPLAST BAUME B5 40ml','12',NULL,'5001516','1122494',16.00,'996.15','1607.76',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1517,'LRP LIPIKAR CLEANSING BAR 150g','12',NULL,'5001517','1122512',16.00,'523.16','844.83',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1518,'VEET HAIR REMOVAL CREAM SENSITIVE 50G','12',NULL,'5001518','1122644',16.00,'420.64','646.55',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1519,'DUREX PLAY FEEL 50ML','6',NULL,'5001519','1122703',16.00,'505.57','866.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1520,'NYTOL ORIGINALS 25MG 20S','6',NULL,'5001520','1122740',16.00,'660.00','1110.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1521,'NIVEA FOR MEN BODY MILK (COOL KICK) 200ML','9',NULL,'5001521','1122817',16.00,'233.48','327.59',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1522,'DERMOL EMOLLIENT CREAM 500GM','9',NULL,'5001522','1122874',16.00,'1068.00','1827.59',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1523,'APROVASC 300/5MG TABS 28S','11',NULL,'5001523','1122894',16.00,'88.73','157.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1524,'DUREX CONDOM SELECT FLAVOURS','6',NULL,'5001524','1123252',16.00,'172.10','297.41',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1525,'CYTOTEC MISOPROSTOL TABLETS 28S','10',NULL,'5001525','1123647',16.00,'59.51','99.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1526,'LOXIAM MR 8/8MG TABS 10S','10',NULL,'5001526','1123800',16.00,'63.70','108.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1527,'QUITIPIN 300MG TABS 30S','10',NULL,'5001527','1124330',16.00,'76.67','129.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1528,'GIT SR 150MG CAPS 10S','10',NULL,'5001528','1124332',16.00,'67.90','114.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1529,'LATEX EXAMINATION GLOVES LARGE 100S','6',NULL,'5001529','1124334',16.00,'4.40','9.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1530,'MS TELLME OVULATION MIDSTREAM 5PCS','6',NULL,'5001530','1124513',16.00,'1048.28','1806.03',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1531,'LEVOLUKAST ADULTS TABS 30S','10',NULL,'5001531','1124835',16.00,'47.47','80.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1532,'CLEAR T GEL 20GM','10',NULL,'5001532','1124882',16.00,'408.00','685.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1533,'SUDAFED CONGESTION & HEADACHE RELIEF MAX CAPS 16S','6',NULL,'5001533','1124919',16.00,'565.00','975.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1534,'CONTEMPO CONDOM FLAVOURS 3S','6',NULL,'5001534','1124937',16.00,'183.19','323.28',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1535,'VITAHEALTH JOINTCARE FORTIFIED 30S','6',NULL,'5001535','1125012',16.00,'1831.75','3045.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1536,'STERIMAR BABY NASAL HYGIENE (ISOTONIC 50ML','6',NULL,'5001536','1125035',16.00,'427.50','740.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1537,'FLEMING 625MG TABS 14S','10',NULL,'5001537','1125063',16.00,'24.02','42.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(1538,'SUCRALFATE 1GM TABS 60S','11',NULL,'5001538','1125089',16.00,'15.83','29.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1539,'EUTHYROX 25MCG TABS 30S','11',NULL,'5001539','1125091',16.00,'4.00','7.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.16'),(1540,'ARCOXIA 120MG TABS 7S','10',NULL,'5001540','1125117',16.00,'116.50','195.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1541,'CLINDAR T PLUS GEL 20GM','10',NULL,'5001541','1125231',16.00,'439.00','745.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1542,'PRINTING PAPERS','13',NULL,'5001542','1125260',16.00,'600.00','344.84',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1543,'MEDTEXTILE SOFT CURVICAL COLAR 1005-2','6',NULL,'5001543','1125279',16.00,'1160.00','1975.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.89'),(1544,'MED/T KNEE JOINT SUPPORT ADJUSTABLE - 6035-S/L','6',NULL,'5001544','1125301',16.00,'1595.00','2745.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.89'),(1545,'MEDTEXTILE ANKLE SUPPORT LIGHT FIXATION-7034-L','6',NULL,'5001545','1125305',16.00,'660.00','1125.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.89'),(1546,'MEDTEXTILE WRIST WRAP W/STRAP-8512-S/L','6',NULL,'5001546','1125309',16.00,'690.00','1175.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.89'),(1547,'MEDTEXTILE WHITE ARM SLING FACILITATED - 9912-L','6',NULL,'5001547','1125315',16.00,'800.00','1360.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.89'),(1548,'MEDTEXTILE WHITE ARM SLING FACILITATED - 9912-XL','6',NULL,'5001548','1125316',16.00,'800.00','1360.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.89'),(1549,'MEDTEXTILE ANKLE SUPPORT W/STRAP - 7025-M','6',NULL,'5001549','1125320',16.00,'1050.00','1785.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.89'),(1550,'MED/T ANKLE SUPPORT E/MEDIUM FIXATION - 7101-S','6',NULL,'5001550','1125323',16.00,'750.00','1300.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.89'),(1551,'MEDTEXTILE WRIST WRAP ELASTIC - 8506-L','6',NULL,'5001551','1125330',16.00,'750.00','1275.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.89'),(1552,'PRINTED BAG WHITE 1KG - GOODLIFE','13',NULL,'5001552','1125358',16.00,'2.80','0.01',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1553,'PRINTED BAG WHITE 2KG - GOODLIFE','13',NULL,'5001553','1125359',16.00,'3.80','0.01',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1554,'BETTER YOU MAGNESIUM OIL SPRAY MUSCLE 100ML','6',NULL,'5001554','1125369',16.00,'1790.00','3043.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1555,'FORXIGA 10MG TABS 28S','11',NULL,'5001555','1125379',16.00,'143.06','244.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1556,'MEDISIGN BLOOD GLUCOSE METER','11',NULL,'5001556','1125381',16.00,'1565.52','2695.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0120.11.00'),(1557,'HUMALOG KWIKPEN 3ML','11',NULL,'5001557','1125414',16.00,'1295.00','2165.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.81'),(1558,'NATRIXAM 1.5/5MG 30S','11',NULL,'5001558','1125446',16.00,'33.503','52.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1559,'HUMALOG MIX 25 QUICK PEN','11',NULL,'5001559','1125448',16.00,'1101.00','1840.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.81'),(1560,'ACNES SEALING GEL 9G','9',NULL,'5001560','1125461',16.00,'276.00','461.21',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1561,'DALACIN C 150MG TABS 100S','10',NULL,'5001561','1125514',16.00,'37.77','63.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1562,'ACTILOSA CAPS 10S','6',NULL,'5001562','1125580',16.00,'45.00','77.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1563,'EPSOM SALT 25G','6',NULL,'5001563','1125663',16.00,'35.00','64.66',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1564,'CILVAS 10MG TABS 30S','11',NULL,'5001564','1125875',16.00,'44.55','78.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1565,'N/AID ACTIVE MAN arginine','6',NULL,'5001565','1125975',16.00,'1485.00','2525.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1566,'N/AID MENS HEALTHY & VITALITY MULTIVITAMINS & MINERALS CAPS 30S','6',NULL,'5001566','1125980',16.00,'1269.00','2160.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1567,'N/AID FOLIC ACID 400ug TABS 90S','6',NULL,'5001567','1125983',16.00,'823.50','1400.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1568,'N/AID TR VITAMIN C 1000MG TABLETS 30S','6',NULL,'5001568','1126408',16.00,'864.00','1470.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(1569,'WELLWOMAN 70+ TABLETS 30S','6',NULL,'5001569','1126499',16.00,'1008.00','1685.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1570,'EROSTIN SUSPENSION 60MLS','10',NULL,'5001570','1126517',16.00,'426.92','725.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1571,'CLEAR BLUE DIGITAL PREGNANCY TEST WEEK INDICATOR','6',NULL,'5001571','1126526',16.00,'1350.00','3189.66',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1572,'SUNDOWN MELATONIN 5 MG DISSOLVABLE 90S','6',NULL,'5001572','1126529',16.00,'1296.00','2205.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1573,'SUNDOWN VITAMIN C 500MG TR CAPS 90S','6',NULL,'5001573','1126530',16.00,'1620.00','2755.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(1574,'SUNDOWN VITAMIN C 1000MG CAPS 133S','6',NULL,'5001574','1126531',16.00,'2160.00','3675.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(1575,'SUNDOWN VITAMIN C 500MG CHEW TABS 100S','6',NULL,'5001575','1126533',16.00,'1935.00','3290.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(1576,'N/AID EVENING PRIMROSE OIL 1000MG 90S','6',NULL,'5001576','1126535',16.00,'1683.00','2865.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1577,'BRONCHOPED SYRUP 100ML','6',NULL,'5001577','1126537',16.00,'313.51','540.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1578,'N/AID VITAMIN B COMPLEX 50+ C TABS 30S','6',NULL,'5001578','1126613',16.00,'1161.00','1975.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1579,'N/AID D3 1000iu TABS 90S','6',NULL,'5001579','1126614',16.00,'1080.00','1840.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1580,'N/AID HAIR SKIN & NAILS TABS 90S','6',NULL,'5001580','1126621',16.00,'1350.00','2295.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1581,'DUSPATALIN 200MG TABS 30S','10',NULL,'5001581','1126758',16.00,'45.15','76.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1582,'DYNAPAR QPS 30ML SPARY','10',NULL,'5001582','1126774',16.00,'638.50','1055.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1583,'EPIMAX BABY & JUNIOR LOTION BTL PUMP 450ML','12',NULL,'5001583','1127055',16.00,'990.00','1685.35',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1584,'TREVIA 50MG TABS 35S','11',NULL,'5001584','1127062',16.00,'49.29','87.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1585,'GLENCET 5MG TABS 30S','10',NULL,'5001585','1127070',16.00,'40.49','66.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1586,'N/AID MULTIVITAMIN DROPS INFANTS & CHILDREN 50ML','6',NULL,'5001586','1127095',16.00,'918.00','1565.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1587,'QUEST OAD PREGNA MULTI TABS 30S','6',NULL,'5001587','1127109',16.00,'540.00','910.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1588,'BRILINTA 90MG TABS 56S','11',NULL,'5001588','1127112',16.00,'154.86','284.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1589,'ROVISTA 5MG TABS 30S','11',NULL,'5001589','1127144',16.00,'25.67','45.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1590,'ROVISTA 10MG TABS 30S','11',NULL,'5001590','1127160',16.00,'40.60','70.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1591,'MOMATE AZ NASAL SPRAY','10',NULL,'5001591','1127166',16.00,'1386.62','2305.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1592,'CELEBREX CELECOXIB 200MG CAPSULES 100S','10',NULL,'5001592','1127170',16.00,'60.81','104.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1593,'GAVISCON ADVANCE PEPPERMINT TABLETS 24S.','6',NULL,'5001593','1127178',16.00,'1090.00','1835.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1594,'SENSODYNE EXTRA FRESH T/PASTE 75ML','12',NULL,'5001594','1127360',16.00,'324.79','435.35',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1595,'GABICA 50MG TABS 35S','11',NULL,'5001595','1127377',16.00,'39.00','69.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1596,'FAY WET WIPES ANTIBACTERIAL 10S','12',NULL,'5001596','1127383',16.00,'61.52','103.45',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1597,'WS STUDEX UNIVERSAL EAR PIERCING INSTRUMENT KIT','14',NULL,'5001597','1127431',16.00,'2500.00','862.07',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1598,'RELVAR ELLIPTA 100/25MCG A/HALER','11',NULL,'5001598','1127434',16.00,'2591.00','4330.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1599,'GABICA PREGABALIN 75MG TABS 35S','11',NULL,'5001599','1127443',16.00,'43.60','77.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1600,'PHOTOBLOCK GEL 75G SPF 50+','9',NULL,'5001600','1127446',16.00,'568.97','1004.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1601,'ARCOXIA 120MG TABS 28S','10',NULL,'5001601','1127588',16.00,'116.54','196.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1602,'DOVE SOAP GENTLE EXFOLIATING 100G','9',NULL,'5001602','1127618',16.00,'125.50','202.59',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1603,'BIC 1 POUCH 1 SINGLE','12',NULL,'5001603','1127624',16.00,'12.88','21.55',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1604,'BIOGAIA BABY DROPS 5ML','6',NULL,'5001604','1127989',16.00,'1306.00','2225.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1605,'BIOGAIA PROTECTS TABS CHEW 10S','6',NULL,'5001605','1127990',16.00,'568.00','985.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1606,'DYNACORT (DEFLAZACORT) 6MG 30S','10',NULL,'5001606','1128029',16.00,'16.00','28.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1607,'EROVITA FIRST AID KIT BLUE','6',NULL,'5001607','1128030',16.00,'1205.00','2075.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1608,'SUNDOWN OMEGA 3-6-9 200S','6',NULL,'5001608','1128128',16.00,'3105.00','5280.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1609,'ACCU-CHEK INSTANT STRIPS 50S','11',NULL,'5001609','1128185',16.00,'1336.21','2271.55',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1610,'AVENT NATURAL MANUAL BREAST PUMP -SCF330/60','12',NULL,'5001610','1128271',16.00,'5805.00','7956.90',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1611,'LISTERINE ZERO 250ML','12',NULL,'5001611','1128275',16.00,'459.00','681.03',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1612,'SINGULAIR 5MG TABS 28S','11',NULL,'5001612','1128320',16.00,'64.98','115.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1613,'TENA TISSUE PAPERS (for branche use)','15',NULL,'5001613','1128328',16.00,'30.00','47.41',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1614,'CANESPOR CREAM 1% 15GM','10',NULL,'5001614','1128429',16.00,'657.08','1120.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1615,'DAY NURSE CAPSULE','6',NULL,'5001615','1128434',16.00,'1080.00','1750.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.26'),(1616,'CANDEREL TABS GREEN 100S','6',NULL,'5001616','1128450',16.00,'280.00','480.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1617,'SAFECAL TABLETS','6',NULL,'5001617','1128465',16.00,'595.41','1025.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1618,'REKFA GOLD 30S','6',NULL,'5001618','1128467',16.00,'838.35','1445.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1619,'IDEOS CHEWABLE TABS','6',NULL,'5001619','1128470',16.00,'840.00','1445.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1620,'NEXIUM 20MG TABS 28S','11',NULL,'5001620','1128479',16.00,'91.64','154.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1621,'SPORANOX 100MG 15S','10',NULL,'5001621','1128511',16.00,'275.94','459.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1622,'PANTO-DENK 40MG TABS 28S','11',NULL,'5001622','1128515',16.00,'28.12','50.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1623,'GARNIER COLOR NATURALS FR/GB/AR 5 3 CH CL D (LIGHT GOLDEN BROWN) KIT','12',NULL,'5001623','1128566',16.00,'255.17','383.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1624,'L’ORÉAL ELVIVE EXTRAORDINARY OIL SHAMPOO 200ML','12',NULL,'5001624','1128586',16.00,'382.76','594.83',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1625,'L’ORÉAL ELVIVE EXTRA ORDINARY OIL CONDITIONER 200ML','12',NULL,'5001625','1128590',16.00,'382.76','594.83',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1626,'BIO OIL 25ML','9',NULL,'5001626','1128722',16.00,'223.41','379.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1627,'DEXTRO ENERGY GLUCOSE TAB NATURAL 47G','6',NULL,'5001627','1128775',16.00,'155.00','265.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1628,'DEXTRO ENERGY GLUCOSE TAB TROPICAL 47G','6',NULL,'5001628','1128777',16.00,'155.00','265.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1629,'KOTEX ULTRA THIN NORMAL 16S','12',NULL,'5001629','1128968',16.00,'167.78','245.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.57'),(1630,'KOTEX ULTRA THIN NORMAL WITH WINGS 14S','12',NULL,'5001630','1128969',16.00,'167.78','293.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1631,'TRAMACET TABS 20S','10',NULL,'5001631','1129044',16.00,'36.77','63.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1632,'KOTEX PANTY LINERS 20s INDIVIDUALLY WRAPPED','12',NULL,'5001632','1129083',16.00,'108.75','163.79',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1633,'FOSMOL SATCHET 3000MG 1S','10',NULL,'5001633','1129092',16.00,'1073.00','1785.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1634,'MOMATE NASAL SPRAY 50MCG 60D','10',NULL,'5001634','1129093',16.00,'725.35','1235.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1635,'SKINS CONDOMS ASSORTED 4S','6',NULL,'5001635','1129102',16.00,'198.28','344.83',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1636,'SKINS CONDOMS BUBBLEGUM 4S','6',NULL,'5001636','1129103',16.00,'198.28','344.83',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1637,'SKINS CONDOMS DOTS & RIBS 4S','6',NULL,'5001637','1129104',16.00,'198.28','344.83',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1638,'SKINS CONDOMS FLAVOURS 4S','6',NULL,'5001638','1129105',16.00,'198.28','344.83',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1639,'SKINS CONDOMS EXTRA LARGE 4S','6',NULL,'5001639','1129108',16.00,'224.14','383.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1640,'AVALIFE ADVANCE RESCUE CAPS 30S','6',NULL,'5001640','1129112',16.00,'1020.00','1735.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1641,'NEUROZAN PLUS OMEGA-3','6',NULL,'5001641','1129142',16.00,'2200.00','3675.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1642,'TRIPLIXAM 10/2.5/10MG','11',NULL,'5001642','1129154',16.00,'2483.08','4150.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1643,'GALVUS 50MG TABS 28S','11',NULL,'5001643','1129156',16.00,'85.91','149.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1644,'TRAJENTA 5MG 30S','11',NULL,'5001644','1129193',16.00,'145.09','254.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1645,'PREGNACARE LOTION 200ML','12',NULL,'5001645','1129259',16.00,'840.00','1435.35',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1646,'DETTOL SOAP HERBAL 90GM','12',NULL,'5001646','1129282',16.00,'75.01','125.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1647,'DETTOL HANDWASH FRESH PUMP 200ML','12',NULL,'5001647','1129286',16.00,'281.62','418.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1648,'FERTILION F CAPS 30S','6',NULL,'5001648','1129295',16.00,'1480.00','2550.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1649,'FAST AID ASSORTED CLEAR PLASTERS 24S','6',NULL,'5001649','1129296',16.00,'250.00','431.03',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1650,'FAST AID FABRIC PLASTERS 24S','6',NULL,'5001650','1129395',16.00,'320.00','551.72',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1651,'FAST AID KIDS PLASTERS 15S','6',NULL,'5001651','1129397',16.00,'240.00','413.79',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1652,'VICKS BABY RUB 50G','6',NULL,'5001652','1129398',16.00,'550.00','955.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1653,'ELASTOPLAST STRIP 6.0CM X 10CM FABRIC','6',NULL,'5001653','1129431',16.00,'411.84','700.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1654,'OLBAS NASAL SPRAY 20ML','6',NULL,'5001654','1129441',16.00,'700.00','1205.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1655,'BETTER YOU MAGNESIUM OIL SPRAY SLEEP 100ML','6',NULL,'5001655','1129452',16.00,'1790.00','3043.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1656,'FABIA UPPER ARM BLOOD PRESSURE MACHINE','11',NULL,'5001656','1129457',16.00,'3357.76','5610.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0120.11.00'),(1657,'VICTOZA 6MG /M1 PRE-FILLED PEN','11',NULL,'5001657','1129465',16.00,'8950.00','13875.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1658,'BETMIGA 50MG 30S','10',NULL,'5001658','1129471',16.00,'96.07','161.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1659,'H&B CALCIUM WITH VITAMIN D & K 60S','6',NULL,'5001659','1129481',16.00,'510.00','880.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1660,'H&B ULTRA MAN MULTIVITAMIN 100S','6',NULL,'5001660','1129491',16.00,'1600.00','2755.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1661,'ACNES MENTHOLATUM VITAMIN CLEANSER 50G','9',NULL,'5001661','1129502',16.00,'317.50','534.48',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1662,'EPIMOL-E CLEANSER BARSOAP 100G','9',NULL,'5001662','1129503',16.00,'379.28','633.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1663,'BENNETTS HAIR & BODY WASHá 400ML','12',NULL,'5001663','1129505',16.00,'829.25','1353.45',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1664,'PRINTED WHITE MILLINERY BAGS ‘ GOODLIFE’ 4 X 6','13',NULL,'5001664','1129508',16.00,'1.00','0.01',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1665,'PRINTED WHITE MILLINERY BAGS ‘ GOODLIFE’ 6 X 7.5','13',NULL,'5001665','1129509',16.00,'1.65','0.01',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1666,'BIOFOLIC DHA 100S','6',NULL,'5001666','1129510',16.00,'23.10','41.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1667,'OSMOLAX SOLUTION 100ML','6',NULL,'5001667','1129531',16.00,'262.50','455.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1668,'TEGRETOL SYRUP 100MG/5ML 150ML','11',NULL,'5001668','1129560',16.00,'817.70','1440.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1669,'VALUPAK VITAMIN C EFFER 1000MG 20S','6',NULL,'5001669','1129585',16.00,'530.00','920.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(1670,'PROFERTIL MEN TABS 60S','6',NULL,'5001670','1129602',16.00,'5781.20','9945.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1671,'CONTOUR PLUS STRIPS 25S','11',NULL,'5001671','1129890',16.00,'920.00','1585.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0122.11.00'),(1672,'N/AID MAGNESIUM CITRATE 119MG 60S','6',NULL,'5001672','1129908',16.00,'1350.00','2295.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1673,'RELCER TABLETS 30S','6',NULL,'5001673','1129909',16.00,'216.00','365.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1674,'TITANIA CUTICLE NIPPER STAINLESS','12',NULL,'5001674','1129943',16.00,'1004.31','1599.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1675,'TITANIA TITANIA BABY SCISSORS STAINLESS','12',NULL,'5001675','1129946',16.00,'405.17','650.86',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1676,'TITANIA 4 HAIR SECTION CLIPS + 8 HAIR RIBBONS','12',NULL,'5001676','1129952',16.00,'323.28','521.55',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1677,'PAPERMINTS 18 CAPSULES','12',NULL,'5001677','1129980',16.00,'101.82','258.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1678,'PAPERMINTS 40 COOL CAPS','12',NULL,'5001678','1129981',16.00,'195.00','387.93',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1679,'CONTOUR PLUS STRIPS 50S','11',NULL,'5001679','1129986',16.00,'1600.00','2755.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0122.11.00'),(1680,'DENMAN ELASTIC BANDS BLACK LARGE 4MM - 18PC -71014D','12',NULL,'5001680','1130008',16.00,'292.50','504.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1681,'REPLENISH CAPS 30S','6',NULL,'5001681','1130027',16.00,'1666.80','2870.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1682,'CREVIL GERMANY FEMININE INTIMATE 100ML','12',NULL,'5001682','1130031',16.00,'489.60','793.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1683,'CREVIL GERMANY FEMININE INTIMATE 300ML','12',NULL,'5001683','1130032',16.00,'960.50','1551.72',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1684,'BENYLIN WET COUGH MENTHOL 100ML','6',NULL,'5001684','1130042',16.00,'449.10','765.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1685,'OPTIVE EYE GEL DROPS 10ML','6',NULL,'5001685','1130056',16.00,'1075.00','1850.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1686,'VITAHEALTH COD LIVER OIL 200ML','6',NULL,'5001686','1130058',16.00,'637.50','1060.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1687,'FLEMING 228MG/5ML SUSP 70ML','10',NULL,'5001687','1130079',16.00,'223.04','375.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(1688,'DURACELL LITHIUM 3V 2032 2S','12',NULL,'5001688','1130083',16.00,'203.10','318.97',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1689,'JOHNSON\'S BABY S&SHINY 2-IN-1 SHAMP&COND 200ML','12',NULL,'5001689','1130122',16.00,'372.00','568.97',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1690,'DOVE SOAP GO FRESH – FRESH TOUCH 100G','12',NULL,'5001690','1130158',16.00,'125.50','198.28',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1691,'GLUCOPHAGE XR 1G 60S','11',NULL,'5001691','1130179',16.00,'12.67','22.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1692,'ALMAX FORTE SATCHETS 30S','6',NULL,'5001692','1130180',16.00,'26.20','46.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1693,'WELLTEEN HER PLUS','6',NULL,'5001693','1130235',16.00,'1088.00','1820.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1694,'UPERIO 100MG TABS 28S','11',NULL,'5001694','1130275',16.00,'98.92','187.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1695,'AVALIFE AVACARE COLON CARE 30S','6',NULL,'5001695','1130284',16.00,'1360.00','2315.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1696,'COTIPRED EFF TABLET 20MG 20S','10',NULL,'5001696','1130286',16.00,'27.20','48.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1697,'AZITHRAX 200MG/5ML SUSPENSION 30ML','10',NULL,'5001697','1130293',16.00,'401.38','675.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1698,'AZITHRAX 200MG/5ML SUSPENSION 15ML','10',NULL,'5001698','1130295',16.00,'202.80','345.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1699,'SARU ORGANICS 3-IN-1 SHAMPOO 240 ML','12',NULL,'5001699','1130297',16.00,'400.00','642.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1700,'SARU ORGANICS LEAVE-IN CONDITIONER 240 ML','12',NULL,'5001700','1130298',16.00,'550.00','883.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1701,'SARU ORGANICS DETANGLER CONDITIONER 240 ML','12',NULL,'5001701','1130301',16.00,'450.00','715.52',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1702,'EPNONE 50MG TABS 30S','11',NULL,'5001702','1130456',16.00,'106.81','187.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1703,'STUDEX KIDS EARINGS TINY TIPS ASSORTED','9',NULL,'5001703','1130472',16.00,'387.93','663.79',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1704,'ARBITEL H 40/12.5MG TABS 30S','11',NULL,'5001704','1130478',16.00,'36.94','65.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1705,'NEBZMART S 10S','11',NULL,'5001705','1130502',16.00,'780.00','1365.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1706,'HARTEZE 10MG TABS 28s','11',NULL,'5001706','1130541',16.00,'45.12','79.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1707,'COLGATE BABY T/PASTE STRAWBERRY 50ML','12',NULL,'5001707','1130558',16.00,'145.88','228.45',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1708,'COLGATE KIDS T/PASTE BUBBLE FRUIT 50ML','12',NULL,'5001708','1130559',16.00,'143.72','224.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1709,'GRAMOCEF-O 100MG/5ML 100ML','10',NULL,'5001709','1130565',16.00,'729.60','1220.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1710,'SWISS HERBAL LOZENGES SAGE 12S','6',NULL,'5001710','1130593',16.00,'270.00','470.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1711,'LRP ANTHELIOS SUN LOTION SPF50+ 100ML','9',NULL,'5001711','1130600',16.00,'1639.90','2642.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1712,'FUN TIME CHERRY LUBE 75ML','6',NULL,'5001712','1130636',16.00,'300.00','543.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1713,'FUN TIME ORIGINAL LUBE 75ML','6',NULL,'5001713','1130637',16.00,'300.00','543.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1714,'FUN TIME STRAWBERRY LUBE 75ML','6',NULL,'5001714','1130638',16.00,'300.00','543.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1715,'JARDIANCE 10MG TABS 30S','11',NULL,'5001715','1130655',16.00,'140.56','238.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1716,'NERVOPLEX TABS 10S','6',NULL,'5001716','1130712',16.00,'697.02','1206.90',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0','0039.11.27'),(1717,'XYKAA EXTEND 1000MG TABS 30S','6',NULL,'5001717','1130716',16.00,'20.40','36.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1718,'PRESARTAN 30S','11',NULL,'5001718','1130725',16.00,'8.44','16.01',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1719,'PRESARTAN H 28S','11',NULL,'5001719','1130733',16.00,'14.41','27.01',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1720,'PAPERMINTS BIG MERCHANDISING PLEXI - 4 SKUS','14',NULL,'5001720','1130912',16.00,'324.88','581.91',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1721,'PULMOCEF 500MG 10S','10',NULL,'5001721','1130963',16.00,'22.00','38.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1722,'DIASTOP TABS 100S','6',NULL,'5001722','1131026',16.00,'3.58','7.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1723,'DUREX CONDOMS FETHERLITE FEEL THIN 12S','6',NULL,'5001723','1131030',16.00,'777.81','1340.52',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1724,'QUEST OAD INFANT MULTI LIQUID 150ML','6',NULL,'5001724','1131043',16.00,'525.00','880.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1725,'BROMOCRIPTIN 2.5MG 30S(CRIPTON)','10',NULL,'5001725','1131174',16.00,'29.22','49.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1726,'FASTUM GEL 20 GM','10',NULL,'5001726','1131232',16.00,'278.50','480.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1727,'MOMATE F CREAM 10GM','10',NULL,'5001727','1131239',16.00,'538.45','925.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1728,'TERBIN CREAM 15GM','10',NULL,'5001728','1131247',16.00,'255.00','435.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1729,'BENNETTS NIPPLE CREAM LANOLIN FREE 30ML','12',NULL,'5001729','1131333',16.00,'472.30','788.79',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1730,'BENNETTS NIPPLE CREAM WITH LANOLIN 50ML','12',NULL,'5001730','1131334',16.00,'746.06','1241.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1731,'BENNETTS BABY BARSOAP 100G','9',NULL,'5001731','1131335',16.00,'430.73','715.52',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1732,'BENNETTS SALINE NOSE SPRAY KIT (ASPIRATOR)','12',NULL,'5001732','1131336',16.00,'743.40','1430.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1733,'BENNETTS SALINE NOSE SPRAY 30ML','12',NULL,'5001733','1131337',16.00,'601.20','1150.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1734,'JAMIESON OMEGA 3-6-9 1200MG SOFTGELS 200S','6',NULL,'5001734','1131345',16.00,'1719.00','2960.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1735,'JAMIESON MELATONIN 3MG CAPSULES 30S','6',NULL,'5001735','1131346',16.00,'846.00','1460.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1736,'JAMIESON MEGA CAL SOFT CHEWS (SWISS CHOCOLATE) 60S','6',NULL,'5001736','1131351',16.00,'1341.90','2310.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1737,'JAMIESON MULTI 100% COMPLETE MEN CAPLETS 90S','6',NULL,'5001737','1131357',16.00,'1775.95','3055.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1738,'CONACE-P TABS 30S','10',NULL,'5001738','1131372',16.00,'6.67','13.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1739,'CONOLEVO 500MG CAPS 10S','10',NULL,'5001739','1131374',16.00,'10.00','17.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1740,'DICLOCON MR TABS 30S','10',NULL,'5001740','1131377',16.00,'5.00','9.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1741,'CRECHE GUARD IMMUNE MULTIVITAMIN SYRUP 100ML','6',NULL,'5001741','1131484',16.00,'516.00','895.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1742,'SENSODYNE REPAIR & PROTECT WHITENING T/PASTE 75ML','12',NULL,'5001742','1131498',16.00,'383.42','517.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1743,'THARAKA PROPOLIS TINCTURE 15ML','6',NULL,'5001743','1131511',16.00,'600.00','974.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1744,'THARAKA JUST GARGLE OFF (50G)','6',NULL,'5001744','1131515',16.00,'200.00','327.59',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1745,'LRP PURE VITAMIN C10 SERUM 30ml','9',NULL,'5001745','1131534',16.00,'3781.92','6090.52',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1746,'BIO-OIL DRY SKIN GEL 100ML','9',NULL,'5001746','1131537',16.00,'468.84','814.65',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1747,'BIO-OIL DRY SKIN GEL 200ML','9',NULL,'5001747','1131538',16.00,'783.49','1340.52',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1748,'N/AID VITAMIN C 1000MG LOW-ACID TABS 90S','6',NULL,'5001748','1131585',16.00,'1620.00','2755.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(1749,'NAT C ESTER SATCHETS 1000MG 30S(LOW ACID)','6',NULL,'5001749','1131587',16.00,'1057.88','1770.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(1750,'ZINCOS ZINC SULPHATE 20MG 100s','10',NULL,'5001750','1131593',16.00,'2.11','4.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1751,'ZYTEL CT 40/12.5 TABS 30S','11',NULL,'5001751','1131598',16.00,'44.00','80.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1752,'BIOGAIA GASTRUS TABLETS 30S','6',NULL,'5001752','1131608',16.00,'1332.00','2265.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1753,'GLENCEE VITAMIN C EFFERVESCENT TABS 20S','6',NULL,'5001753','1131625',16.00,'495.01','845.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(1754,'OLIGOCARE FORTE 20S','6',NULL,'5001754','1131759',16.00,'590.00','1015.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1755,'DIABETONE TABS 30S','6',NULL,'5001755','1131763',16.00,'916.00','1530.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1756,'PHARMATIMOL 0.5% EYE DROPS 5ML','10',NULL,'5001756','1131773',16.00,'198.00','335.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1757,'WINNAPORE 8X15CM 20S','6',NULL,'5001757','1131833',16.00,'30.00','52.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1758,'EUGICA HERBAL COLD & FLU SATCHEST 10S','6',NULL,'5001758','1131923',16.00,'521.00','895.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.26'),(1759,'EUGICA HERBAL THROAT SPRAY 10ML','6',NULL,'5001759','1131924',16.00,'616.50','1056.03',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1760,'JAMIESON ZINC 25MG 100 S','6',NULL,'5001760','1131944',16.00,'719.10','1240.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1761,'IMMUNACE EXTRA 30S','6',NULL,'5001761','1131955',16.00,'1397.00','2335.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1762,'BIOFREEZE KENYA 59ML TUBE','6',NULL,'5001762','1131957',16.00,'315.00','540.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1763,'SIMILAC GOLD 2 HMO 400G','6',NULL,'5001763','1132091',16.00,'986.21','1482.76',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1764,'APTAMIL BABY MILK 400GM 3','6',NULL,'5001764','1132096',16.00,'967.07','1288.79',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1765,'MENTHODEX VAPOUR RUB 50GMS','6',NULL,'5001765','1132102',16.00,'465.00','795.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1766,'ANDOLEX-C WILD BERRY PASTILLES 20S','6',NULL,'5001766','1132104',16.00,'684.00','1176.72',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1767,'TELMI AM 80/10MG TABS 30S','11',NULL,'5001767','1132137',16.00,'72.27','127.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1768,'WELLBABY MULTIVITAMIN DROPS 30ML','6',NULL,'5001768','1132179',16.00,'898.20','1670.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1769,'LRP LIPIKAR BAUME AP+M 200ml','12',NULL,'5001769','1132181',16.00,'1638.83','2491.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1770,'GLENCEE KIDS VITAMIN C EFFERVESCENT TABS 20S','6',NULL,'5001770','1132189',16.00,'364.99','630.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(1771,'GOODLIFE CLEAR LIQUID SOAP FRAGRANCE FREE 500ML','12',NULL,'5001771','1132325',16.00,'139.00','258.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1772,'GOODLIFE COCONUT LIQUID SOAP 500ML','12',NULL,'5001772','1132326',16.00,'139.00','258.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1773,'GOODLIFE LEMONGRASS SURFACE ALCOHOL DISINFECTANT 500ML','12',NULL,'5001773','1132327',16.00,'265.00','551.72',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1774,'GOODLIFE L/GRASS N& EUCALYPTUS INSECT REPELLENT TUBE 50ML','9',NULL,'5001774','1132329',16.00,'41.65','170.69',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1775,'ACNES MOISTURISING CREAM 75G WITH SPF 27+','9',NULL,'5001775','1132338',16.00,'402.00','663.79',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1776,'N/AID COLLAGEN BEAUTY FORMULA CAPS 90S','6',NULL,'5001776','1132345',16.00,'2835.00','4820.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1777,'NEBICARD 5MG TABLETS 50S','11',NULL,'5001777','1132397',16.00,'29.88','54.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1778,'LAZOPE CAPS 30MG 10S','11',NULL,'5001778','1132422',16.00,'10.50','35.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1779,'SCOTTS HEIGHT CHART','6',NULL,'5001779','1132452',16.00,'0.01','0.01',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1780,'INDERAL 10MG TABS 50S','11',NULL,'5001780','1132454',16.00,'11.14','21.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1781,'MAGIC DROPS HYALURONIC ACID SERUM 30ML','9',NULL,'5001781','1132459',16.00,'1600.00','2659.48',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1782,'SWISS ENERGY OMEGA 3.6.9 OPTIMUM 30S','6',NULL,'5001782','1132485',16.00,'1305.00','2245.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1783,'SWISS NO HANGOVER EFF TABS 20S','6',NULL,'5001783','1132488',16.00,'675.00','1165.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1784,'FLINSTSHINE GUMMIES-VITAMIN C+ZINC 30S','6',NULL,'5001784','1132490',16.00,'710.00','1225.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.72'),(1785,'FLINSTSHINE GUMMIES- MULTI VITAMINS 30S','6',NULL,'5001785','1132491',16.00,'710.00','1225.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1786,'QUEST ZINC CITRATE 30MG + COPPER TABS 30S','6',NULL,'5001786','1132493',16.00,'520.00','895.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1787,'PREDILONE 5MG TABS 100S','11',NULL,'5001787','1132499',16.00,'0.73','2.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1788,'LRP LIPIKAR CLEANSING BAR 150g- Twin Pack','12',NULL,'5001788','1132504',16.00,'459.06','741.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1789,'DICONAZOL 200MG 100S','10',NULL,'5001789','1132584',16.00,'8.74','15.50',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1790,'DYNAMO DELAY MALE DESENSITIZER SPRAY 22.2ML','6',NULL,'5001790','1132621',16.00,'1415.50','2510.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1791,'SURGICAL SPIRIT 500ML','6',NULL,'5001791','1132704',16.00,'90.00','155.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1792,'AZIX 200MG/5ML SUSP 37.5ML','10',NULL,'5001792','1132790',16.00,'425.00','735.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1793,'COEMPAKEN 12.5/1000MG TABS 28S','11',NULL,'5001793','1133117',16.00,'58.02','106.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1794,'COEMPAKEN 5/500MG TABS 28S','11',NULL,'5001794','1133146',16.00,'42.86','78.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1795,'COEMPAKEN 5/1000MG TABS 28S','11',NULL,'5001795','1133147',16.00,'48.21','88.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1796,'EMPAKEN 25MG TABS 14S','11',NULL,'5001796','1133149',16.00,'80.36','147.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1797,'TRICOHIST EXPECTORANT 60ML','6',NULL,'5001797','1133281',16.00,'80.00','140.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1798,'NIVEA SHOWER WATER LILY FEMALE 250ML','12',NULL,'5001798','1133315',16.00,'337.64','469.83',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1799,'CERAVE HYDRATING CLEANSER 236ML','9',NULL,'5001799','1133354',16.00,'772.46','1293.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1800,'CERAVE HYDRATING CLEANSER 473ML','9',NULL,'5001800','1133355',16.00,'1143.23','1909.48',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1801,'CERAVE FOAM CLEANSER 236ML','9',NULL,'5001801','1133356',16.00,'957.84','1603.45',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1802,'CERAVE FOAM CLEANSER 473ML','9',NULL,'5001802','1133357',16.00,'1408.95','2314.66',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1803,'CERAVE DAILY MOISTURIZING LOTION 236ML','9',NULL,'5001803','1133358',16.00,'1081.43','1775.86',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1804,'CERAVE DAILY MOISTURIZING LOTION 473ML','9',NULL,'5001804','1133359',16.00,'1600.52','2612.07',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1805,'CERAVE MOISTURIZING CREAM 340G','9',NULL,'5001805','1133360',16.00,'1415.14','2310.34',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1806,'CERAVE MOISTURIZING CREAM 454G','9',NULL,'5001806','1133361',16.00,'1724.11','2775.86',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1807,'STEROPLAST DRESSING PADS STERILE 5s ( 5cm X 5cm )','6',NULL,'5001807','1133389',16.00,'120.00','205.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1808,'STEROPLAST CLEAR & FABRIC PLASTERS 64s','6',NULL,'5001808','1133390',16.00,'220.00','370.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1809,'STEROPLAST HOT/COLD PACK','6',NULL,'5001809','1133391',16.00,'750.00','1262.93',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1810,'EMEFILM 4MG STRIPS 5S','10',NULL,'5001810','1133403',16.00,'73.08','128.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1811,'FOSFOMAX GRANULES 3GM 1S','10',NULL,'5001811','1133409',16.00,'1250.38','2180.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1812,'HELIOCARE 360º GEL OIL-FREE SPF50 50ML','9',NULL,'5001812','1133411',16.00,'3360.00','5581.90',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1813,'HELIOCARE 360º INVISIBLE SPRAY SPF50+ 200ML','9',NULL,'5001813','1133412',16.00,'3150.00','5232.76',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1814,'HELIOCARE 360º MD AK FLUID SPF100+ 50ML','9',NULL,'5001814','1133413',16.00,'3640.00','6043.10',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1815,'HELIOCARE 360º MINERAL TOLERANCE FLUID SPF50 50ML','9',NULL,'5001815','1133414',16.00,'3360.00','5581.90',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1816,'HELIOCARE 360º PEDIATRICS SPF50 PISTOLA 250ML','12',NULL,'5001816','1133415',16.00,'3570.00','5926.72',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1817,'HELIOCARE 360º PEDIATRICS MINERAL SPF50+ 50ML','12',NULL,'5001817','1133416',16.00,'3360.00','5581.90',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1818,'HELIOCARE 360º GEL SPF50+ 50ML','9',NULL,'5001818','1133417',16.00,'3360.00','5581.90',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1819,'ENDOCARE TENSAGE FIRMING NOURISHING CREAM 50ML','9',NULL,'5001819','1133418',16.00,'3920.00','6508.62',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1820,'ENDOCARE RADIANCE EYE COUNTOUR DARK CIRCLES 15ML','9',NULL,'5001820','1133419',16.00,'3220.00','5349.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1821,'BIRETIX PURIFYING OILY SKIN CLEANSER 200ML','9',NULL,'5001821','1133420',16.00,'1960.00','3254.31',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1822,'BIRETIX DUO GEL ANT-BLEMISH GEL 30ML','9',NULL,'5001822','1133421',16.00,'2100.00','3487.07',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1823,'ACNES SOAP 80G','9',NULL,'5001823','1133450',16.00,'158.50','250.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1824,'DUZELA 30MG CAPS 30S','10',NULL,'5001824','1133536',16.00,'58.33','102.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1825,'HT ONE PLUSFINE PEN G32*4MM NEEDLES 100S','11',NULL,'5001825','1133547',16.00,'16.41','30.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0035.11.00'),(1826,'RECARE HCG PREGNANCY CASSETTE TEST 1S','6',NULL,'5001826','1133562',16.00,'100.00','250.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0119.11.00'),(1827,'RECARE HCG PREGNANCY MID STREAM TEST 1S','6',NULL,'5001827','1133563',16.00,'220.00','420.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0119.11.00'),(1828,'RECARE LH OVULATION CASSETTE TEST 1S','6',NULL,'5001828','1133564',16.00,'225.00','490.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0119.11.00'),(1829,'ACCUFAST HCG PREGNANCY TEST MID STREAM 1S','6',NULL,'5001829','1133565',16.00,'220.00','450.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0119.11.00'),(1830,'ACCUFAST HCG PREGNANCY TEST WEEKLY 1S','6',NULL,'5001830','1133566',16.00,'400.00','690.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0119.11.00'),(1831,'ACCUFAST LH OVULATION TEST MID STREAM 1S','6',NULL,'5001831','1133567',16.00,'220.00','500.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0119.11.00'),(1832,'LRP EFFACLAR DUO(+) 40ML & 15ml Moisturiser Gift','9',NULL,'5001832','1133575',16.00,'1133.58','1827.59',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1833,'LRP EFFACLAR DUO(+) SPF30 40ML & 15ml Moisturiser Gift','9',NULL,'5001833','1133576',16.00,'1468.98','2366.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1834,'MICROLIFE BP MONITOR EASY B2','11',NULL,'5001834','1133577',16.00,'4132.50','7275.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0120.11.00'),(1835,'MOZZISHIELD NO DEET INSECT REPELLENT 100ML','9',NULL,'5001835','1133647',16.00,'310.00','517.24',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1836,'ACTION TABLETS 110S','6',NULL,'5001836','1133880',16.00,'3.19','6.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1837,'ENTERONORM VIALS 10S','6',NULL,'5001837','1133907',16.00,'41.31','70.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1838,'WEBBER NATURALS MELATONIN 3MG QUICK DISSOLVING TABS 90S','6',NULL,'5001838','1133967',16.00,'1350.00','2300.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1839,'WEBBER NATURALS MELATONIN 5MG TIME RELEASE TABS 60S','6',NULL,'5001839','1133968',16.00,'1215.00','2100.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1840,'SWISS HERBAL LOZENGES EUCALYPTUS & MENTHOL 20S','6',NULL,'5001840','1133986',16.00,'297.00','530.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1841,'SWISS HERBAL LOZENGES SAGE 20S','6',NULL,'5001841','1133987',16.00,'297.00','530.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1842,'SWISS HERBAL LOZENGES HONEY 20S','6',NULL,'5001842','1133988',16.00,'297.00','530.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1843,'ACNES CREAMY WASH TRIO ACTIV 50G','9',NULL,'5001843','1133994',16.00,'278.75','465.52',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1844,'ACNES C10 PURE VIT C SERUM 15ML','9',NULL,'5001844','1133997',16.00,'1426.25','2353.45',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1845,'ACNES 3 IN 1 SET -WASH TONE S/GEL','9',NULL,'5001845','1133998',16.00,'995.07','1655.17',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1846,'ACNES VITAMIN BOOST CLEANSER 50G','9',NULL,'5001846','1133999',16.00,'317.50','530.17',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1847,'ACNES SCAR CARE DARK SPOTS 12G','9',NULL,'5001847','1134000',16.00,'296.00','491.38',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1848,'BACTIGRAS 10CM*10CM 1s','6',NULL,'5001848','1134059',16.00,'100.00','200.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.34'),(1849,'KIDDZ MAXXOMEGA3 ORANGE LEMON FLAVOUR 100ML','6',NULL,'5001849','1134060',16.00,'369.75','640.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1850,'KIDDZ MAXXOMEGA3 ORANGE LEMON FLAVOUR 200ML','6',NULL,'5001850','1134061',16.00,'688.50','1185.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1851,'IMODIUM DUAL ACTION RELIEF TABLETS 6s','6',NULL,'5001851','1134063',16.00,'550.00','920.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1852,'IMODIUM DUAL ACTION RELIEF TABLETS 12s','6',NULL,'5001852','1134064',16.00,'900.00','1500.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1853,'HYDROCORTISONE OINTMENT 15G','10',NULL,'5001853','1134579',16.00,'250.00','430.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.24'),(1854,'LRP NIACINAMIDE SERUM FOR DULL AND UNEVEN SKIN 30ML','9',NULL,'5001854','1134900',16.00,'3781.54','6090.52',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1855,'DAKTARIN 2% CREAM 30GM','10',NULL,'5001855','1134924',16.00,'326.40','550.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1856,'ANDOLEX-C ANTIBACTERIAL MOUTHWASH 100ML','6',NULL,'5001856','1134929',16.00,'540.00','931.03',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1857,'ANDOLEX-C ANTIBACTERIAL MOUTHWASH 200ML','6',NULL,'5001857','1134930',16.00,'926.00','1599.14',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1858,'EUGICA COFF HERBAL LOZENGES 8S','6',NULL,'5001858','1134931',16.00,'91.80','155.17',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1861,'SEBAMED CLEAR FACE CLEANSING BAR','9','1','5001859','1109564',16.00,'754','1290.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1862,'UNCOVER ALOE INVISIBLE-180ML','9','1','5001860','1135052',16.00,'1481.32','2390.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1863,'PROPRANOLOL 40MG TABS 100S','11','1','5001861','1108816',16.00,'1.74','4',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1864,'M$Ms CHOCOLATE 45G','12','1','5001862','1127370',16.00,'129.195','200.00024',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(1865,'CLAVULIN 228MG/5ML SUSP - 70ML','12','1','5001863','1102201',16.00,'392.71','660',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.13'),(1866,'DAY NURSE LIQUID 240ML','6','1','5001864','1102706',16.00,'1550','2,635.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(1867,'BENYLIN COLD & FLU MAX STRENGTH DAY & NIGHT CAPSULES 16','6','1','5001865','1101049',16.00,'590','1,015.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.27'),(1868,'OLFEN 75MG/2ML AMPS 5S','10','1','5001866','1107946',16.00,'222','382',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1869,'JAMIESON PRENATAL CHEWABLE TABLETS 60S','6','1','5001867','1131483',16.00,'1311.49','2,260.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1870,'JAMIESON PRENATAL 100% + DHA SOFT GELS 60S','6','1','5001868','1131352',1.00,'1473','2,535.00',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.29'),(1871,'METRONIDAZOLE 400MG TABS 21S','10','1','5001869','1135123',2.00,'20.714','37',NULL,'0',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1872,'LAMISIL 250MG TABS 14S','10','1','5001870','1106245',16.00,'126.6','900',NULL,'',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.07'),(1873,'TRAMAL 50MG TABS 10S','10','1','5001871','1110601',16.00,'135.6','300',NULL,'',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','EXEMPTED','0','0039.11.20'),(1874,'EPIMOL-B BABY & JUNIOR EMOLLIENT CREAM 150G','12','1','5001872','1131326',16.00,'126.6','1000',NULL,'',NULL,NULL,1,0,0,NULL,0,0,0,0.00,'','71','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL); /*!40000 ALTER TABLE `products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `productsgrouping` -- DROP TABLE IF EXISTS `productsgrouping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `productsgrouping` ( `id` int(50) NOT NULL AUTO_INCREMENT, `memberid` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `user` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `updatedat` varchar(50) NOT NULL, `categoryid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `productsgrouping` -- LOCK TABLES `productsgrouping` WRITE; /*!40000 ALTER TABLE `productsgrouping` DISABLE KEYS */; /*!40000 ALTER TABLE `productsgrouping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `projects` -- DROP TABLE IF EXISTS `projects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `projects` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, `category` int(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `projects` -- LOCK TABLES `projects` WRITE; /*!40000 ALTER TABLE `projects` DISABLE KEYS */; /*!40000 ALTER TABLE `projects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `projectsbudget` -- DROP TABLE IF EXISTS `projectsbudget`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `projectsbudget` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `createdate` varchar(20) NOT NULL, `expamount` decimal(10,2) NOT NULL, `usedamount` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `year` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `branch` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `description` text NOT NULL, `todate` varchar(30) DEFAULT NULL, `projectid` int(11) NOT NULL, `qty` varchar(20) NOT NULL, `uom` varchar(20) NOT NULL, `usedqty` varchar(20) DEFAULT NULL, `balanceqty` varchar(20) DEFAULT NULL, `buyingprice` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `projectsbudget` -- LOCK TABLES `projectsbudget` WRITE; /*!40000 ALTER TABLE `projectsbudget` DISABLE KEYS */; /*!40000 ALTER TABLE `projectsbudget` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `projectsbudgettasks` -- DROP TABLE IF EXISTS `projectsbudgettasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `projectsbudgettasks` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `createdate` varchar(20) NOT NULL, `expamount` decimal(10,2) NOT NULL, `usedamount` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `year` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `branch` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `description` text NOT NULL, `todate` varchar(30) DEFAULT NULL, `projectid` int(11) NOT NULL, `qty` varchar(20) NOT NULL, `uom` varchar(20) NOT NULL, `usedqty` varchar(20) DEFAULT NULL, `balanceqty` varchar(20) DEFAULT NULL, `buyingprice` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `projectsbudgettasks` -- LOCK TABLES `projectsbudgettasks` WRITE; /*!40000 ALTER TABLE `projectsbudgettasks` DISABLE KEYS */; /*!40000 ALTER TABLE `projectsbudgettasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `projectstask` -- DROP TABLE IF EXISTS `projectstask`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `projectstask` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `taskid` text NOT NULL, `category` int(20) DEFAULT NULL, `invoice` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `projectstask` -- LOCK TABLES `projectstask` WRITE; /*!40000 ALTER TABLE `projectstask` DISABLE KEYS */; /*!40000 ALTER TABLE `projectstask` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `proposal` -- DROP TABLE IF EXISTS `proposal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `proposal` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) DEFAULT NULL, `companyid` int(11) NOT NULL DEFAULT 1, `description` text NOT NULL, `version` varchar(50) NOT NULL, `package` varchar(50) NOT NULL, `exactdate` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `proposal` -- LOCK TABLES `proposal` WRITE; /*!40000 ALTER TABLE `proposal` DISABLE KEYS */; /*!40000 ALTER TABLE `proposal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `province` -- DROP TABLE IF EXISTS `province`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `province` ( `id` int(20) NOT NULL, `code` varchar(40) NOT NULL, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `province` -- LOCK TABLES `province` WRITE; /*!40000 ALTER TABLE `province` DISABLE KEYS */; INSERT INTO `province` VALUES (1,'1','Central','Central','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'2','Coast','Coast','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'3','Eastern','Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'4','Nairobi','Nairobi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'5','North Eastern','North Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'6','Nyanza','Nyanza','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'7','Rift valley','Rift valley','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'8','Western','Western','0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `province` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `purchaseorder` -- DROP TABLE IF EXISTS `purchaseorder`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `purchaseorder` ( `id` int(11) NOT NULL AUTO_INCREMENT, `supplier` varchar(30) NOT NULL, `invoice` varchar(50) NOT NULL, `orderdate` datetime NOT NULL, `ordernumber` varchar(30) NOT NULL, `description` text NOT NULL, `userid` varchar(30) NOT NULL, `createdate` datetime NOT NULL, `orderedby` text NOT NULL, `shippingto` text NOT NULL, `canceldate` datetime NOT NULL, `deliverymethod` varchar(30) NOT NULL, `fob` text NOT NULL, `terms` text NOT NULL, `deliverydate` varchar(30) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'p.o', `amount` decimal(10,2) NOT NULL, `companyid` varchar(30) NOT NULL, `balance` decimal(10,2) NOT NULL, `fromdate` datetime NOT NULL, `paiddate` datetime NOT NULL, `updateddate` date NOT NULL, `updatedid` varchar(30) NOT NULL, `pin` varchar(30) DEFAULT NULL, `vattype` varchar(10) NOT NULL, `vat` varchar(20) NOT NULL, `taxable` decimal(10,2) NOT NULL DEFAULT 16.00, `vatrate` varchar(20) NOT NULL, `paid` varchar(20) NOT NULL, `transactionstatus` varchar(20) NOT NULL DEFAULT 'open', `remarks` text NOT NULL, `entrydate` date NOT NULL, `branchid` int(11) NOT NULL, `controller` int(11) NOT NULL, `approvalstatus` varchar(30) NOT NULL DEFAULT 'new', `branchto` varchar(30) NOT NULL DEFAULT '', `qty` varchar(20) DEFAULT NULL, `EXEMPTED` decimal(10,0) NOT NULL, `ZERORATED` decimal(10,0) DEFAULT NULL, `agent` int(11) DEFAULT NULL, `paymentmethodes` varchar(20) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `invoice` (`invoice`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `purchaseorder` -- LOCK TABLES `purchaseorder` WRITE; /*!40000 ALTER TABLE `purchaseorder` DISABLE KEYS */; INSERT INTO `purchaseorder` VALUES (2,'116','11685101752','0000-00-00 00:00:00','2','','1','2023-05-26 14:49:24','','','0000-00-00 00:00:00','','','','','purchases',1266.00,'1',0.00,'2023-05-26 14:49:12','2023-06-25 14:49:12','2023-05-26','1','MTC0000021','VATABLE','174.62',1091.38,'16','0.00','closed','','0000-00-00',1,0,'new','1','10',0,NULL,NULL,''),(3,'109','11685101992','0000-00-00 00:00:00','3','','1','2023-05-26 14:53:22','','','0000-00-00 00:00:00','','','','','purchases',1266.00,'1',0.00,'2023-05-26 14:53:12','2023-06-25 14:53:12','2023-05-26','1','MTC0000014','VATABLE','174.62',1091.38,'16','0.00','closed','','0000-00-00',1,0,'new','1','10',0,NULL,NULL,''),(4,'112','11685102047','0000-00-00 00:00:00','389389','','1','2023-05-26 14:55:41','','','0000-00-00 00:00:00','','','','','purchases',1266.00,'1',0.00,'2023-05-26 14:54:07','2023-06-25 14:54:07','2023-05-26','1','MTC0000017','VATABLE','174.62',1091.38,'16','174.62','closed','','0000-00-00',1,0,'new','1','10',0,NULL,NULL,''); /*!40000 ALTER TABLE `purchaseorder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `purchaseorderlist` -- DROP TABLE IF EXISTS `purchaseorderlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `purchaseorderlist` ( `id` int(30) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) DEFAULT 'retail', `sprice` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` varchar(50) NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` varchar(50) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `unit` varchar(10) NOT NULL, `totalweight` varchar(10) NOT NULL, `serial` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `purchaseorderlist` -- LOCK TABLES `purchaseorderlist` WRITE; /*!40000 ALTER TABLE `purchaseorderlist` DISABLE KEYS */; /*!40000 ALTER TABLE `purchaseorderlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `quotation` -- DROP TABLE IF EXISTS `quotation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `quotation` ( `id` int(30) NOT NULL AUTO_INCREMENT, `supplier` text NOT NULL, `invoice` varchar(50) NOT NULL, `orderdate` varchar(30) NOT NULL, `ordernumber` varchar(30) NOT NULL, `description` text NOT NULL, `userid` varchar(30) NOT NULL, `createdate` varchar(30) NOT NULL, `orderedby` text NOT NULL, `shippingto` text NOT NULL, `canceldate` varchar(30) NOT NULL, `deliverymethod` varchar(30) NOT NULL, `fob` text NOT NULL, `terms` text NOT NULL, `deliverydate` varchar(30) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'new', `amount` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `preparedby` varchar(30) NOT NULL, `weight` varchar(10) NOT NULL DEFAULT 'No', `branchid` int(30) NOT NULL DEFAULT 1, `displayvat` varchar(50) DEFAULT NULL, `approvedby` int(11) DEFAULT NULL, `updatedid` int(11) DEFAULT NULL, `updateddate` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `invoice` (`invoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `quotation` -- LOCK TABLES `quotation` WRITE; /*!40000 ALTER TABLE `quotation` DISABLE KEYS */; /*!40000 ALTER TABLE `quotation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reasons` -- DROP TABLE IF EXISTS `reasons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `reasons` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `reasons` -- LOCK TABLES `reasons` WRITE; /*!40000 ALTER TABLE `reasons` DISABLE KEYS */; /*!40000 ALTER TABLE `reasons` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `receipt` -- DROP TABLE IF EXISTS `receipt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `receipt` ( `id` int(40) NOT NULL AUTO_INCREMENT, `plotno` varchar(60) NOT NULL, `houseno` varchar(40) NOT NULL, `tenantid` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `description` varchar(100) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `paymentstatus` varchar(40) NOT NULL, `paymentmode` varchar(40) NOT NULL, `transactioncode` varchar(100) DEFAULT NULL, `approvedby` varchar(60) NOT NULL, `approvaldate` varchar(60) NOT NULL, `overpayment` varchar(40) NOT NULL, `balance` decimal(10,2) NOT NULL DEFAULT 0.00, `companyid` varchar(100) NOT NULL, `paidby` varchar(50) NOT NULL, `exactime` varchar(30) NOT NULL, `paymentcode` varchar(30) NOT NULL, `paid` decimal(10,2) NOT NULL, `branchid` int(2) NOT NULL DEFAULT 1, `tax1` decimal(10,2) NOT NULL, `tax2` decimal(10,2) NOT NULL, `vatable` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `receipt` -- LOCK TABLES `receipt` WRITE; /*!40000 ALTER TABLE `receipt` DISABLE KEYS */; /*!40000 ALTER TABLE `receipt` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recharge` -- DROP TABLE IF EXISTS `recharge`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `recharge` ( `id` int(11) NOT NULL AUTO_INCREMENT, `amount` decimal(10,2) NOT NULL, `userid` int(20) NOT NULL, `companyid` int(5) NOT NULL, `dateposted` varchar(30) NOT NULL, `paymentstatus` varchar(10) NOT NULL, `branch` int(10) NOT NULL, `type` varchar(30) NOT NULL, `description` text NOT NULL, `balance` double(10,2) NOT NULL, `rate` decimal(10,2) NOT NULL, `balancebefore` decimal(10,2) NOT NULL, `units` decimal(10,2) NOT NULL, `code` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `business` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `recharge` -- LOCK TABLES `recharge` WRITE; /*!40000 ALTER TABLE `recharge` DISABLE KEYS */; /*!40000 ALTER TABLE `recharge` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `regions` -- DROP TABLE IF EXISTS `regions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `regions` ( `id` int(20) NOT NULL, `code` varchar(40) NOT NULL, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `regions` -- LOCK TABLES `regions` WRITE; /*!40000 ALTER TABLE `regions` DISABLE KEYS */; INSERT INTO `regions` VALUES (1,'1','Central','Central','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'2','Coast','Coast','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'3','Eastern','Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'4','Nairobi','Nairobi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'5','North Eastern','North Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'6','Nyanza','Nyanza','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'7','Rift valley','Rift valley','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'8','Western','Western','0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `regions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `renewals` -- DROP TABLE IF EXISTS `renewals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `renewals` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, `computerno` text NOT NULL, `fromdate` varchar(30) NOT NULL, `todate` varchar(30) DEFAULT NULL, `receiptno` varchar(50) NOT NULL, `duration` int(11) NOT NULL, `phone` varchar(20) DEFAULT NULL, `extensiontype` varchar(30) NOT NULL, `updatedid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `renewals` -- LOCK TABLES `renewals` WRITE; /*!40000 ALTER TABLE `renewals` DISABLE KEYS */; /*!40000 ALTER TABLE `renewals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rentalpaymentmethodes` -- DROP TABLE IF EXISTS `rentalpaymentmethodes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `rentalpaymentmethodes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `description` text NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'active', `dateposted` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `type` text NOT NULL, `balance` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, `accountno` text DEFAULT NULL, `chargeid` int(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rentalpaymentmethodes` -- LOCK TABLES `rentalpaymentmethodes` WRITE; /*!40000 ALTER TABLE `rentalpaymentmethodes` DISABLE KEYS */; INSERT INTO `rentalpaymentmethodes` VALUES (1,'RENT','','active','2021-09-17 06:53:31','1','1','4161','',1,NULL,1),(2,'DEPOSIT','DEPOSIT','active','2021-09-17 06:53:51','1','1','4162','',1,NULL,2),(3,'WATER/POWER DEPOSIT','','active','2021-09-17 06:56:08','1','1','4163','',1,NULL,3),(4,'PENALTY','','active','2021-09-17 06:56:20','1','1','4164','',1,NULL,4),(5,'WATER','','active','2021-09-17 06:56:41','1','1','4165','',1,NULL,5),(6,'PARTIAL PAYMENT','','active','2021-09-17 06:57:00','1','1','4166','',1,NULL,6),(7,'GARBAGE','','active','2021-09-17 06:57:23','1','1','4167','',1,NULL,7),(8,'DAMAGES','','active','2021-09-17 06:57:35','1','1','4168','',1,NULL,8),(9,'AGREEMENT FORM','','active','2021-09-17 06:58:32','1','1','4169','',1,NULL,9),(10,'POWER','','active','2021-09-17 06:59:00','1','1','4171','',1,NULL,10),(11,'SEWAGE','SEWAGE','active','2021-09-17 06:59:30','1','1','4172','',1,NULL,11),(12,'BED ONLY','','active','2021-09-17 06:59:55','1','1','4173','',1,NULL,12),(13,'BED AND BREAKFAST','','active','2021-09-17 07:00:38','1','1','4174','',1,NULL,13),(14,'POWER','eee','active','2023-04-14 17:13:29','1','1','4167','',1,NULL,10); /*!40000 ALTER TABLE `rentalpaymentmethodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report` -- DROP TABLE IF EXISTS `report`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `report` ( `id` int(50) NOT NULL AUTO_INCREMENT, `country` varchar(60) NOT NULL, `type` varchar(50) NOT NULL, `county` varchar(50) NOT NULL, `school` varchar(50) NOT NULL, `category` varchar(30) NOT NULL, `contact` varchar(60) NOT NULL, `place` varchar(60) NOT NULL, `occurancedate` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `img_id` varchar(60) NOT NULL, `updatedtime` varchar(40) NOT NULL, `status` varchar(40) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `report` -- LOCK TABLES `report` WRITE; /*!40000 ALTER TABLE `report` DISABLE KEYS */; /*!40000 ALTER TABLE `report` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `requisition` -- DROP TABLE IF EXISTS `requisition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `requisition` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `orderdate` varchar(30) NOT NULL, `ordernumber` varchar(30) NOT NULL, `description` text NOT NULL, `userid` varchar(30) NOT NULL, `createdate` varchar(30) NOT NULL, `orderedby` text NOT NULL, `shippingto` text NOT NULL, `canceldate` varchar(30) NOT NULL, `deliverymethod` varchar(30) NOT NULL, `fob` text NOT NULL, `terms` text NOT NULL, `deliverydate` varchar(30) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'new', `amount` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `preparedby` varchar(30) NOT NULL, `taskid` varchar(30) NOT NULL DEFAULT 'No', `branchid` int(30) NOT NULL DEFAULT 1, `subtaskid` varchar(50) DEFAULT NULL, `invoice` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `requisition` -- LOCK TABLES `requisition` WRITE; /*!40000 ALTER TABLE `requisition` DISABLE KEYS */; /*!40000 ALTER TABLE `requisition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `requisitionitems` -- DROP TABLE IF EXISTS `requisitionitems`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `requisitionitems` ( `id` int(30) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) DEFAULT 'retail', `sprice` varchar(100) NOT NULL, `usedamount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `taskid` varchar(50) NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` varchar(50) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `subtaskid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `createdate` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `usedqty` varchar(20) DEFAULT NULL, `balanceqty` varchar(10) NOT NULL, `expamount` varchar(10) NOT NULL, `uom` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `requisitionitems` -- LOCK TABLES `requisitionitems` WRITE; /*!40000 ALTER TABLE `requisitionitems` DISABLE KEYS */; /*!40000 ALTER TABLE `requisitionitems` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rolepermissions` -- DROP TABLE IF EXISTS `rolepermissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `rolepermissions` ( `moduleid` varchar(100) NOT NULL, `userid` int(10) NOT NULL, PRIMARY KEY (`moduleid`,`userid`), KEY `person_id` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rolepermissions` -- LOCK TABLES `rolepermissions` WRITE; /*!40000 ALTER TABLE `rolepermissions` DISABLE KEYS */; INSERT INTO `rolepermissions` VALUES ('accomodation',1),('accounting',1),('accounting',5),('accountingreports',1),('accountingreports',5),('assets',1),('bankdeposits',1),('bankdeposits',5),('banktransfer',1),('banktransfer',5),('branch',1),('callcenter',1),('cashiersales',1),('cashiersales',2),('cashiersales',4),('cashiersales',8),('complain',1),('config',1),('damagedproducts',1),('deals',1),('displayreport',1),('documents',1),('ecommerce',1),('events',1),('grouping',1),('humanresource',1),('income',1),('incomeexpenses',1),('incomeexpenses',5),('incomingstock',1),('incomingstore',1),('journalentry',1),('labourrecords',1),('lowproducts',1),('lowstocklist',1),('members',1),('password',1),('password',2),('password',4),('password',8),('payroll',1),('peoplecategory',1),('productlist',1),('products',1),('productscategory',1),('profile',1),('profile',8),('projectsmanagement',1),('purchases',1),('recorddelivery',1),('reports',1),('sales',1),('sales',2),('sales',4),('sales',8),('sendsms',1),('task',1),('taskscategory',1),('users',1),('viewreturnsales',1),('viewreturnsales',4),('wholesale',1); /*!40000 ALTER TABLE `rolepermissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rolepermissionsactions` -- DROP TABLE IF EXISTS `rolepermissionsactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `rolepermissionsactions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `moduleid` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `actionid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=530 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rolepermissionsactions` -- LOCK TABLES `rolepermissionsactions` WRITE; /*!40000 ALTER TABLE `rolepermissionsactions` DISABLE KEYS */; INSERT INTO `rolepermissionsactions` VALUES (1,'sales','4','add'),(2,'sales','4','suspend'),(3,'sales','4','printreceipt'),(4,'sales','4','update'),(5,'sales','4','cash'),(6,'sales','4','delete'),(7,'sales','4','moresales'),(8,'sales','4','sale'),(9,'sales','4','Logout'),(10,'sales','4','mpesabalance'),(11,'sales','4','discount'),(12,'sales','4','reprint'),(13,'sales','4','select'),(14,'sales','4','printbill'),(15,'sales','4','productdiscount'),(16,'sales','4','mpesa'),(17,'sales','4','order'),(18,'sales','4','closebill'),(19,'sales','4','viewbuyingprice'),(20,'sales','4','editsellingprice'),(21,'sales','4','updatepaymentmode'),(22,'sales','4','card'),(23,'sales','4','clearpayments'),(24,'sales','4','cheque'),(25,'sales','4','creditnote'),(26,'sales','4','voucher'),(27,'sales','4','salesbeyondbprice'),(28,'sales','4','points'),(29,'sales','4','credit'),(30,'sales','4','selectroom'),(31,'sales','4','dontprint'),(32,'sales','4','accountlimit'),(33,'sales','4','backdatesales'),(34,'sales','4','recordcoins'),(35,'sales','4','changetaxstatus'),(36,'sales','4','leaseitems'),(37,'sales','4','giveloyalityponts'),(38,'sales','4','dontshowstock'),(39,'sales','4','splitbill'),(40,'sales','4','changeuomonsales'),(41,'sales','4','selecttable'),(42,'sales','4','printdelivery'),(43,'sales','4','sendsms'),(44,'sales','4','selectcurrency'),(45,'sales','4','salesperson'),(46,'sales','4','usekeyboard'),(47,'sales','4','receiptno'),(48,'sales','4','negativesales'),(49,'cashiersales','4','entermpesacode'),(50,'cashiersales','4','editmpesa'),(51,'cashiersales','4','all'),(52,'cashiersales','4','delete'),(53,'cashiersales','4','cashiersales'),(54,'cashiersales','4','editmpesadate'),(55,'cashiersales','4','dontshowtotal'),(56,'cashiersales','4','adddailycollection'),(57,'cashiersales','4','viewtill'),(58,'cashiersales','4','viewdailycollections'),(59,'cashiersales','4','deletedailycollections'),(60,'cashiersales','4','updatedailycollections'),(61,'cashiersales','4','reversempesa'),(62,'cashiersales','4','clearallsales'),(63,'cashiersales','4','viewallcollections'),(64,'cashiersales','4','viewallcounters'),(65,'cashiersales','4','mpesapendingreport'),(66,'cashiersales','4','mpesaverifiedreport'),(67,'cashiersales','4','viewcommission'),(68,'cashiersales','4','viewmpesamessages'),(69,'cashiersales','4','dailysalesonly'),(70,'viewreturnsales','4','add'),(71,'viewreturnsales','4','update'),(72,'viewreturnsales','4','delete'),(73,'viewreturnsales','4','return'),(74,'viewreturnsales','4','clear'),(75,'viewreturnsales','4','moresales'),(76,'password','4','change'),(77,'sales','8','add'),(78,'sales','8','suspend'),(79,'sales','8','update'),(80,'sales','8','cash'),(81,'sales','8','moresales'),(82,'sales','8','sale'),(83,'sales','8','Logout'),(84,'sales','8','displaycustomers'),(85,'sales','8','select'),(86,'sales','8','printbill'),(87,'sales','8','productdiscount'),(88,'sales','8','mpesa'),(89,'sales','8','order'),(90,'sales','8','closebill'),(91,'sales','8','viewbuyingprice'),(92,'sales','8','editsellingprice'),(93,'sales','8','updatepaymentmode'),(94,'sales','8','card'),(95,'sales','8','clearpayments'),(96,'sales','8','cheque'),(97,'sales','8','creditnote'),(98,'sales','8','voucher'),(99,'sales','8','salesbeyondbprice'),(100,'sales','8','points'),(101,'sales','8','credit'),(102,'sales','8','selectroom'),(103,'sales','8','dontprint'),(104,'sales','8','backdatesales'),(105,'sales','8','recordcoins'),(106,'sales','8','changetaxstatus'),(107,'sales','8','giveloyalityponts'),(108,'sales','8','dontshowstock'),(109,'sales','8','splitbill'),(110,'sales','8','changeuomonsales'),(111,'sales','8','selecttable'),(112,'sales','8','printdelivery'),(113,'sales','8','sendsms'),(114,'sales','8','selectcurrency'),(115,'sales','8','salesperson'),(116,'sales','8','usekeyboard'),(117,'sales','8','receiptno'),(118,'cashiersales','8','entermpesacode'),(119,'cashiersales','8','editmpesa'),(120,'cashiersales','8','all'),(121,'cashiersales','8','cashiersales'),(122,'cashiersales','8','editmpesadate'),(123,'cashiersales','8','dontshowtotal'),(124,'cashiersales','8','viewtill'),(125,'cashiersales','8','viewdailycollections'),(126,'cashiersales','8','updatedailycollections'),(127,'cashiersales','8','viewallcounters'),(128,'cashiersales','8','viewcommission'),(129,'cashiersales','8','viewmpesamessages'),(130,'cashiersales','8','dailysalesonly'),(131,'password','8','change'),(132,'profile','8','update'),(133,'sales','1','add'),(134,'sales','1','suspend'),(135,'sales','1','selectmessage'),(136,'sales','1','printreceipt'),(137,'sales','1','update'),(138,'sales','1','cash'),(139,'sales','1','delete'),(140,'sales','1','moresales'),(141,'sales','1','sale'),(142,'sales','1','Logout'),(143,'sales','1','mpesabalance'),(144,'sales','1','displaycustomers'),(145,'sales','1','discount'),(146,'sales','1','reprint'),(147,'sales','1','select'),(148,'sales','1','printbill'),(149,'sales','1','productdiscount'),(150,'sales','1','mpesa'),(151,'sales','1','order'),(152,'sales','1','closebill'),(153,'sales','1','viewbuyingprice'),(154,'sales','1','editsellingprice'),(155,'sales','1','updatepaymentmode'),(156,'sales','1','card'),(157,'sales','1','clearpayments'),(158,'sales','1','cheque'),(159,'sales','1','creditnote'),(160,'sales','1','voucher'),(161,'sales','1','salesbeyondbprice'),(162,'sales','1','points'),(163,'sales','1','credit'),(164,'sales','1','selectroom'),(165,'sales','1','dontprint'),(166,'sales','1','accountlimit'),(167,'sales','1','backdatesales'),(168,'sales','1','recordcoins'),(169,'sales','1','changetaxstatus'),(170,'sales','1','leaseitems'),(171,'sales','1','giveloyalityponts'),(172,'sales','1','dontshowstock'),(173,'sales','1','splitbill'),(174,'sales','1','changeuomonsales'),(175,'sales','1','selecttable'),(176,'sales','1','printdelivery'),(177,'sales','1','sendsms'),(178,'sales','1','selectcurrency'),(179,'sales','1','salesperson'),(180,'sales','1','usekeyboard'),(181,'sales','1','receiptno'),(182,'sales','1','negativesales'),(183,'wholesale','1','sale'),(184,'wholesale','1','add'),(185,'wholesale','1','delete'),(186,'wholesale','1','update'),(187,'cashiersales','1','entermpesacode'),(188,'cashiersales','1','editmpesa'),(189,'cashiersales','1','all'),(190,'cashiersales','1','delete'),(191,'cashiersales','1','cashiersales'),(192,'cashiersales','1','editmpesadate'),(193,'cashiersales','1','dontshowtotal'),(194,'cashiersales','1','adddailycollection'),(195,'cashiersales','1','viewtill'),(196,'cashiersales','1','viewdailycollections'),(197,'cashiersales','1','deletedailycollections'),(198,'cashiersales','1','updatedailycollections'),(199,'cashiersales','1','reversempesa'),(200,'cashiersales','1','clearallsales'),(201,'cashiersales','1','viewallcollections'),(202,'cashiersales','1','viewallcounters'),(203,'cashiersales','1','mpesapendingreport'),(204,'cashiersales','1','mpesaverifiedreport'),(205,'cashiersales','1','viewcommission'),(206,'cashiersales','1','viewmpesamessages'),(207,'cashiersales','1','dailysalesonly'),(208,'recorddelivery','1','add'),(209,'recorddelivery','1','view'),(210,'recorddelivery','1','update'),(211,'recorddelivery','1','delete'),(212,'recorddelivery','1','changestatus'),(213,'recorddelivery','1','report'),(214,'recorddelivery','1','Dispatched'),(215,'recorddelivery','1','FailedDelivery'),(216,'recorddelivery','1','ReturnedandReceived'),(217,'recorddelivery','1','Delivered'),(218,'recorddelivery','1','Claimraised'),(219,'recorddelivery','1','ClaimOK'),(220,'recorddelivery','1','ClaimDamaged'),(221,'purchases','1','add'),(222,'purchases','1','update'),(223,'purchases','1','delete'),(224,'purchases','1','updatebuyingprice'),(225,'purchases','1','updatesellingprice'),(226,'purchases','1','updateclosedinvoice'),(227,'purchases','1','viewquotation'),(228,'purchases','1','viewserials'),(229,'purchases','1','viewdirectpurchases'),(230,'purchases','1','viewpurchase'),(231,'purchases','1','salesorder'),(232,'purchases','1','budget'),(233,'purchases','1','showdefaultserials'),(234,'purchases','1','viewallcounters'),(235,'purchases','1','approve'),(236,'purchases','1','addbatchno'),(237,'purchases','1','addexpirydate'),(238,'viewreturnsales','1','add'),(239,'viewreturnsales','1','update'),(240,'viewreturnsales','1','delete'),(241,'viewreturnsales','1','return'),(242,'viewreturnsales','1','clear'),(243,'viewreturnsales','1','moresales'),(244,'income','1','View'),(245,'income','1','add'),(246,'income','1','wiewinvoices'),(247,'income','1','detailedvatinvoice'),(248,'incomeexpenses','1','add'),(249,'incomeexpenses','1','closeexpense'),(250,'incomeexpenses','1','update'),(251,'incomeexpenses','1','updateclosedexpenses'),(252,'incomeexpenses','1','wiewinvoices'),(253,'incomeexpenses','1','viewbills'),(254,'incomeexpenses','1','viewexpense'),(255,'incomeexpenses','1','viewdebtors'),(256,'incomeexpenses','1','viewcreditors'),(257,'incomeexpenses','1','postrentalexpenses'),(258,'accomodation','1','viewrooms'),(259,'accomodation','1','addhouse'),(260,'accomodation','1','dailysales'),(261,'accomodation','1','viewhouse'),(262,'accomodation','1','voucher'),(263,'accomodation','1','mpesa'),(264,'accomodation','1','points'),(265,'accomodation','1','credit'),(266,'accomodation','1','card'),(267,'accomodation','1','cash'),(268,'accomodation','1','cheque'),(269,'accomodation','1','checkinroom'),(270,'accomodation','1','checkoutroom'),(271,'accomodation','1','addroom'),(272,'accomodation','1','cancel'),(273,'accomodation','1','checkin'),(274,'accomodation','1','addcharges'),(275,'accomodation','1','givediscount'),(276,'accomodation','1','cleanrooms'),(277,'accomodation','1','updatecharges'),(278,'accomodation','1','updateroom'),(279,'accomodation','1','postexpense'),(280,'accomodation','1','updatehouse'),(281,'accomodation','1','Post Bank Deposits'),(282,'accomodation','1','managehotel'),(283,'accomodation','1','assignrooms'),(284,'accomodation','1','managerental'),(285,'accomodation','1','changepayment'),(286,'accomodation','1','housekeeping'),(287,'accomodation','1','customerregister'),(288,'accomodation','1','dailypayments'),(289,'accomodation','1','advancebooking'),(290,'accomodation','1','checkoutcustomerwithbalance'),(291,'accomodation','1','managecustomer'),(292,'accomodation','1','viewreports'),(293,'accomodation','1','accomodationmanager'),(294,'accomodation','1','accommodationcleaner'),(295,'accomodation','1','accommodationreceiptionist'),(296,'accomodation','1','config'),(297,'accomodation','1','viewroomcleaned'),(298,'accomodation','1','clearsales'),(299,'accomodation','1','dailycollections'),(300,'branch','1','add'),(301,'branch','1','view'),(302,'branch','1','update'),(303,'branch','1','delete'),(304,'members','1','add'),(305,'members','1','update'),(306,'members','1','deletepeople'),(307,'members','1','opencloseshift'),(308,'users','1','add'),(309,'users','1','update'),(310,'users','1','delete'),(311,'users','1','deleteallroles'),(312,'productscategory','1','add'),(313,'productscategory','1','update'),(314,'productscategory','1','delete'),(315,'productlist','1','bulk'),(316,'productlist','1','updatestock'),(317,'productlist','1','move'),(318,'productlist','1','more'),(319,'productlist','1','transfer'),(320,'productlist','1','addstock'),(321,'productlist','1','delete'),(322,'productlist','1','view'),(323,'productlist','1','update'),(324,'productlist','1','add'),(325,'productlist','1','openclosestock'),(326,'productlist','1','stocktaking'),(327,'productlist','1','editstocktaken'),(328,'productlist','1','editopenclosestock'),(329,'productlist','1','changeserialstatus'),(330,'productlist','1','viewserials'),(331,'productlist','1','viewproductsfromallbranches'),(332,'productlist','1','bulkpriceupdate'),(333,'productlist','1','viewbprice'),(334,'products','1','add'),(335,'products','1','update'),(336,'products','1','delete'),(337,'products','1','addstock'),(338,'products','1','more'),(339,'products','1','bulk'),(340,'products','1','deleteorder'),(341,'products','1','dispatch'),(342,'products','1','removestock'),(343,'products','1','price'),(344,'products','1','removeallstock'),(345,'products','1','bulkpriceupdate'),(346,'products','1','viewbprice'),(347,'incomingstock','1','add'),(348,'incomingstock','1','update'),(349,'incomingstock','1','view'),(350,'incomingstock','1','delete'),(351,'incomingstore','1','add'),(352,'incomingstore','1','delete'),(353,'incomingstore','1','view'),(354,'lowstocklist','1','add'),(355,'lowstocklist','1','more'),(356,'lowstocklist','1','view'),(357,'lowproducts','1','add'),(358,'lowproducts','1','update'),(359,'damagedproducts','1','add'),(360,'damagedproducts','1','update'),(361,'damagedproducts','1','delete'),(362,'projectsmanagement','1','view'),(363,'projectsmanagement','1','add'),(364,'projectsmanagement','1','update'),(365,'projectsmanagement','1','delete'),(366,'assets','1','add'),(367,'assets','1','update'),(368,'assets','1','delete'),(369,'accounting','1','deletebank'),(370,'accounting','1','deleteglaccount'),(371,'accounting','1','view'),(372,'bankdeposits','1','add'),(373,'bankdeposits','1','update'),(374,'bankdeposits','1','delete'),(375,'banktransfer','1','add'),(376,'journalentry','1','add'),(377,'accountingreports','1','view'),(378,'peoplecategory','1','add'),(379,'peoplecategory','1','update'),(380,'peoplecategory','1','delete'),(381,'labourrecords','1','add'),(382,'payroll','1','add'),(383,'reports','1','view'),(384,'reports','1','download'),(385,'reports','1','delete'),(386,'reports','1','update'),(387,'reports','1','viewall'),(388,'displayreport','1','view'),(389,'grouping','1','add'),(390,'grouping','1','update'),(391,'grouping','1','delete'),(392,'sendsms','1','add'),(393,'sendsms','1','update'),(394,'sendsms','1','delete'),(395,'sendsms','1','transfersms'),(396,'documents','1','add'),(397,'documents','1','update'),(398,'documents','1','delete'),(399,'documents','1','viewalldocuments'),(400,'humanresource','1','add'),(401,'humanresource','1','approve'),(402,'humanresource','1','update'),(403,'humanresource','1','delete'),(404,'humanresource','1','view'),(405,'humanresource','1','allocate'),(406,'humanresource','1','viewallpayroll'),(407,'humanresource','1','leavesetup'),(408,'humanresource','1','allleaves '),(409,'humanresource','1','bioattendance'),(410,'taskscategory','1','add'),(411,'taskscategory','1','update'),(412,'taskscategory','1','delete'),(413,'task','1','add'),(414,'task','1','update'),(415,'task','1','viewall'),(416,'task','1','delete'),(417,'task','1','postspecifictask'),(418,'task','1','postgeneraltask'),(419,'task','1','viewothersspecifictask'),(420,'task','1','viewothersgeneraltask'),(421,'task','1','assigntask'),(422,'task','1','posttaskforothers'),(423,'callcenter','1','add'),(424,'callcenter','1','upadate'),(425,'callcenter','1','view'),(426,'callcenter','1','download'),(427,'callcenter','1','delete'),(428,'deals','1','add'),(429,'deals','1','update'),(430,'deals','1','delete'),(431,'deals','1','viewall'),(432,'complain','1','add'),(433,'complain','1','view'),(434,'complain','1','update'),(435,'complain','1','allcompalin'),(436,'complain','1','delete'),(437,'events','1','add'),(438,'events','1','update'),(439,'events','1','delete'),(440,'password','1','change'),(441,'profile','1','update'),(442,'ecommerce','1','add'),(443,'ecommerce','1','update'),(444,'ecommerce','1','delete'),(445,'ecommerce','1','vieworders'),(446,'ecommerce','1','setup'),(447,'ecommerce','1','approveorders'),(448,'config','1','delete'),(449,'config','1','add'),(450,'config','1','update'),(483,'sales','2','add'),(484,'sales','2','suspend'),(485,'sales','2','printreceipt'),(486,'sales','2','update'),(487,'sales','2','cash'),(488,'sales','2','moresales'),(489,'sales','2','sale'),(490,'sales','2','mpesa'),(491,'sales','2','updatepaymentmode'),(492,'sales','2','card'),(493,'sales','2','clearpayments'),(494,'sales','2','cheque'),(495,'sales','2','dontprint'),(496,'cashiersales','2','entermpesacode'),(497,'cashiersales','2','editmpesa'),(498,'cashiersales','2','cashiersales'),(499,'cashiersales','2','editmpesadate'),(500,'cashiersales','2','dontshowtotal'),(501,'cashiersales','2','adddailycollection'),(502,'cashiersales','2','viewtill'),(503,'cashiersales','2','viewdailycollections'),(504,'cashiersales','2','updatedailycollections'),(505,'cashiersales','2','viewallcounters'),(506,'cashiersales','2','mpesapendingreport'),(507,'cashiersales','2','mpesaverifiedreport'),(508,'cashiersales','2','viewcommission'),(509,'cashiersales','2','viewmpesamessages'),(510,'cashiersales','2','dailysalesonly'),(511,'password','2','change'),(512,'incomeexpenses','5','add'),(513,'incomeexpenses','5','closeexpense'),(514,'incomeexpenses','5','update'),(515,'incomeexpenses','5','updateclosedexpenses'),(516,'incomeexpenses','5','wiewinvoices'),(517,'incomeexpenses','5','viewbills'),(518,'incomeexpenses','5','viewexpense'),(519,'incomeexpenses','5','viewdebtors'),(520,'incomeexpenses','5','viewcreditors'),(521,'incomeexpenses','5','postrentalexpenses'),(522,'accounting','5','deletebank'),(523,'accounting','5','deleteglaccount'),(524,'accounting','5','view'),(525,'bankdeposits','5','add'),(526,'bankdeposits','5','update'),(527,'bankdeposits','5','delete'),(528,'banktransfer','5','add'),(529,'accountingreports','5','view'); /*!40000 ALTER TABLE `rolepermissionsactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roles` -- DROP TABLE IF EXISTS `roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `roles` ( `id` int(20) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roles` -- LOCK TABLES `roles` WRITE; /*!40000 ALTER TABLE `roles` DISABLE KEYS */; INSERT INTO `roles` VALUES (1,'pms','xxxx','2023-03-27 09:50:23','active','1','','1',''); /*!40000 ALTER TABLE `roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roomcharges` -- DROP TABLE IF EXISTS `roomcharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `roomcharges` ( `id` int(11) NOT NULL AUTO_INCREMENT, `roomid` varchar(40) NOT NULL, `plotno` varchar(100) NOT NULL, `cost` varchar(100) NOT NULL, `status` varchar(40) NOT NULL DEFAULT 'active', `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `name` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `chargeid` varchar(30) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `roomid` (`roomid`,`plotno`,`chargeid`) ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roomcharges` -- LOCK TABLES `roomcharges` WRITE; /*!40000 ALTER TABLE `roomcharges` DISABLE KEYS */; INSERT INTO `roomcharges` VALUES (1,'3','1','1000','active','2023-04-28 08:21:17','','1','','1','12 '),(2,'2','1','1000','active','2023-04-28 08:21:17','','1','','1','12 '),(5,'2','1','2500','active','2023-04-28 08:21:31','','1','','1','13 '),(7,'8','1','8000','active','2023-05-11 11:11:28','2023-05-16 10:56:21am','1','','1','18'),(8,'7','1','0','active','2023-05-11 11:11:28','','1','','1','18 '),(9,'6','1','500','active','2023-05-11 11:11:28','2023-05-17 10:03:59pm','1','','1','18'),(10,'5','1','800','active','2023-05-11 11:11:28','2023-05-17 10:02:53pm','1','','1','18'),(11,'4','1','0','active','2023-05-11 11:11:28','','1','','1','18 '),(12,'3','1','6000','active','2023-05-11 11:11:28','2023-05-17 10:03:18pm','1','','1','18'),(14,'1','1','2000','active','2023-05-11 11:11:28','2023-05-15 03:00:52pm','1','','1','13'),(15,'8','1','600','active','2023-05-11 11:12:02','2023-05-16 10:56:16am','1','','1','17'),(16,'7','1','00','active','2023-05-11 11:12:02','','1','','1','17 '),(17,'6','1','700','active','2023-05-11 11:12:02','2023-05-17 10:03:51pm','1','','1','17'),(18,'5','1','900','active','2023-05-11 11:12:02','2023-05-17 10:02:46pm','1','','1','17'),(19,'4','1','00','active','2023-05-11 11:12:02','','1','','1','17 '),(20,'3','1','900','active','2023-05-11 11:12:02','2023-05-17 10:03:11pm','1','','1','17'),(22,'1','1','5000','active','2023-05-11 11:12:02','2023-05-15 03:00:45pm','1','','1','12'),(23,'10','1','7000','active','2023-05-12 02:26:05pm','2023-05-17 09:49:14pm','1','','1','12'),(25,'10','1','800','active','2023-05-17 09:49:05pm','','1','','1','13 '),(26,'11','1','2000','active','2023-05-18 10:24:24pm','','1','','1','12 '),(27,'11','1','5000','active','2023-05-18 10:24:29pm','','1','','1','13 '),(28,'12','1','5000','active','2023-05-18 10:24:56pm','','1','','1','12 '),(29,'12','1','10000','active','2023-05-18 10:25:00pm','','1','','1','13 '); /*!40000 ALTER TABLE `roomcharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roomcollection` -- DROP TABLE IF EXISTS `roomcollection`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `roomcollection` ( `id` int(11) NOT NULL AUTO_INCREMENT, `paiddate` varchar(100) NOT NULL, `invoice` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `remarks` varchar(100) NOT NULL, `balance` varchar(30) NOT NULL, `userid` varchar(20) NOT NULL, `companyid` varchar(20) NOT NULL, `paymentmethodes` int(10) NOT NULL, `createdate` varchar(50) NOT NULL, `name` varchar(30) NOT NULL DEFAULT 'payment', `transactioncode` varchar(50) NOT NULL, `supplier` int(11) DEFAULT NULL, `branchid` int(11) DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roomcollection` -- LOCK TABLES `roomcollection` WRITE; /*!40000 ALTER TABLE `roomcollection` DISABLE KEYS */; /*!40000 ALTER TABLE `roomcollection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roomsales` -- DROP TABLE IF EXISTS `roomsales`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `roomsales` ( `id` int(11) NOT NULL AUTO_INCREMENT, `plotno` int(11) NOT NULL, `houseno` varchar(20) NOT NULL, `customerid` int(20) DEFAULT NULL, `dateposted` varchar(30) NOT NULL, `total` decimal(10,2) NOT NULL, `userid` int(20) NOT NULL, `companyid` int(10) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'New', `description` text NOT NULL, `updatedat` varchar(30) DEFAULT NULL, `updatedby` int(11) DEFAULT NULL, `branch` int(11) NOT NULL, `invoice` varchar(50) NOT NULL, `transactioncode` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roomsales` -- LOCK TABLES `roomsales` WRITE; /*!40000 ALTER TABLE `roomsales` DISABLE KEYS */; /*!40000 ALTER TABLE `roomsales` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salary` -- DROP TABLE IF EXISTS `salary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `salary` ( `id` int(20) NOT NULL AUTO_INCREMENT, `userid` int(20) NOT NULL, `companyid` int(15) NOT NULL, `salary` decimal(10,2) NOT NULL, `pay` decimal(10,2) NOT NULL, `deductions` decimal(10,2) NOT NULL, `bonus` decimal(10,2) NOT NULL, `bankname` varchar(20) NOT NULL, `bankaccount` varchar(30) NOT NULL, `method` varchar(20) NOT NULL, `payment` varchar(20) NOT NULL, `netsalry` decimal(10,2) NOT NULL, `gross` decimal(10,2) NOT NULL, `memberid` int(11) NOT NULL, `salaryyear` varchar(20) NOT NULL, `paymentmode` varchar(30) NOT NULL, `slarymonth` varchar(20) NOT NULL, `number` varchar(20) NOT NULL, `createdate` varchar(30) NOT NULL, `relief` decimal(10,2) NOT NULL, `salaryid` varchar(100) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `loanbalance` decimal(10,2) NOT NULL, `nhif` int(20) DEFAULT NULL, `nssf` varchar(20) DEFAULT NULL, `paye` varchar(20) DEFAULT NULL, `advance` varchar(20) DEFAULT NULL, `otherdeductions` varchar(20) DEFAULT NULL, `currency` varchar(20) DEFAULT NULL, `transactiontypecode` varchar(20) DEFAULT NULL, `chargetype` varchar(20) DEFAULT NULL, `paymenttype` varchar(20) NOT NULL, `nhifrelief` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salary` -- LOCK TABLES `salary` WRITE; /*!40000 ALTER TABLE `salary` DISABLE KEYS */; /*!40000 ALTER TABLE `salary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salarycharges` -- DROP TABLE IF EXISTS `salarycharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `salarycharges` ( `id` int(20) NOT NULL AUTO_INCREMENT, `code` int(20) NOT NULL, `name` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'Active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(20) NOT NULL DEFAULT 'Minus', `amountmode` varchar(20) NOT NULL, `qtymode` varchar(20) NOT NULL, `quantity` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `unit` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salarycharges` -- LOCK TABLES `salarycharges` WRITE; /*!40000 ALTER TABLE `salarycharges` DISABLE KEYS */; INSERT INTO `salarycharges` VALUES (6,2,'House Allowance','2019-03-28 12:47:59','Active','1','','1','Pay','Fixed','Fixed',1.00,0.00,''),(7,3,'Overtime','2019-03-28 12:48:27','Active','1','','1','Pay','Fixed','Fixed',1.00,0.00,''),(8,4,'Travel Allowance','2019-03-28 12:48:59','Active','1','','1','Pay','Variable','Variable',1.00,0.00,''),(9,5,'Bonus','2019-03-28 12:49:21','Active','1','','1','Pay','Variable','Variable',1.00,0.00,''),(10,6,'Allowance','2019-03-28 12:50:16','Active','1','','1','Pay','Variable','Variable',1.00,0.00,''),(11,7,'Appreciation','2019-03-28 12:50:45','Active','1','','1','Pay','Variable','Variable',1.00,0.00,''),(12,8,'PAYE','2019-03-28 12:51:21','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(13,9,'NSSF','2019-03-28 12:51:38','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(14,10,'NHIF','2019-03-28 12:52:09','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(15,11,'Advances','2019-03-28 13:00:47','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(16,12,'Loan payment','2019-03-28 13:03:14','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(18,14,'destruction','2019-03-28 13:04:59','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(19,15,'Loan','2019-06-11 13:31:04','Active','1','','1','Pay','Variable','Fixed',1.00,0.00,''),(20,26,'staff Uniforms','2023-05-15 08:38:23','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(21,16,'Helb / Sacco Loan ','2019-12-17 04:55:20','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(22,25,'LOST/DAMAGED ITEM','2023-05-15 08:38:05','Active','1','','1','Deduction','Variable','Fixed',1.00,900.00,''),(23,18,'sales cut ','2020-12-15 19:06:21','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(24,19,'UNPAID LEAVE DAYS','2021-04-05 10:49:16','Active','1','','1','Deduction','Variable','Fixed',1.00,0.00,''),(25,20,'DEDUCTION','2021-04-05 10:49:55','Active','1','','1','Deduction','Fixed','Variable',1.00,0.00,''),(26,21,'Insurance cover ','2022-02-04 10:16:25','Active','1','','1','Deduction','Variable','Fixed',1.00,0.00,''),(27,22,'PERFORMANCE PAY CUT','2023-01-23 12:04:28','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(28,23,'SALES COMMISSION','2023-03-02 09:44:12','Active','1','','1','Pay','Variable','Fixed',1.00,0.00,''),(29,24,'staff uniform shirts','2023-04-03 16:29:31','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,'1'); /*!40000 ALTER TABLE `salarycharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales` -- DROP TABLE IF EXISTS `sales`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sales` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cashier` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `due_date` varchar(100) NOT NULL, `name` varchar(100) NOT NULL, `balance` varchar(20) NOT NULL DEFAULT '0', `userid` varchar(50) NOT NULL, `dateposted` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `cash` varchar(50) NOT NULL, `total` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `salestype` varchar(50) NOT NULL, `maindiscount` varchar(20) DEFAULT NULL, `discountedtotal` varchar(20) NOT NULL, `branch` varchar(30) NOT NULL DEFAULT '1', `card` varchar(30) NOT NULL, `voucher` varchar(30) NOT NULL, `credit` varchar(30) NOT NULL, `points` varchar(30) NOT NULL, `mpesa` varchar(50) NOT NULL, `cheque` varchar(50) NOT NULL, `ordersales` varchar(20) DEFAULT 'printed', `description` text NOT NULL, `mytable` varchar(30) NOT NULL, `maincategory` varchar(30) DEFAULT NULL, `creditnote` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `paymentstatus` varchar(10) NOT NULL DEFAULT 'No', `updatedby` varchar(10) NOT NULL, `updatedat` varchar(50) NOT NULL, `plotno` varchar(20) NOT NULL, `houseno` varchar(20) NOT NULL, `baddebt` varchar(30) NOT NULL, `tax1` varchar(30) NOT NULL, `tax2` varchar(30) NOT NULL, `cardnumber` varchar(50) DEFAULT NULL, `savedcoins` decimal(10,2) NOT NULL, `savedpoints` decimal(10,2) NOT NULL, `salesperson` int(11) DEFAULT NULL, `receiptno` varchar(50) DEFAULT NULL, `currency` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales` -- LOCK TABLES `sales` WRITE; /*!40000 ALTER TABLE `sales` DISABLE KEYS */; INSERT INTO `sales` VALUES (1,'','Cash','','2023-05-26 14:41:03','','0','1','2023-05-26 14:41:03','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','11685101258','Cleared','','','','','','','','',0.00,0.00,0,'','Ksh '),(2,'','Cash','','2023-05-26 15:27:14','','0','1','2023-05-26 15:25:11','','2000','6000','1','retail','0','6000','1','2000','0','0','0','2000','0','printed',' ','','1','0','11685103899','Cleared','1','2023-05-26 15:28:31','','','','','','',0.00,0.00,0,'','Ksh '),(3,'','Cash','','2023-05-26 15:30:26','','0','1','2023-05-26 15:30:26','','700','900','1','retail','0','900','1','500','0','0','0','200','0','printed',' ','','1','0','11685104221','Cleared','','','','','','','','',0.00,0.00,0,'','Ksh '),(4,'','Cash','','2023-05-26 15:31:49','','0','1','2023-05-26 15:31:49','','200','900','1','retail','0','900','1','0','0','0','0','700','0','printed',' ','','1','0','11685104304','Cleared','','','','','','','','',0.00,0.00,0,'','Ksh '),(5,'','Cash','','2023-05-26 15:32:24','','0','1','2023-05-26 15:32:24','','700','900','1','retail','0','900','1','500','0','0','0','200','0','printed',' ','','1','0','11685104339','Cleared','','','','','','','','',0.00,0.00,0,'','Ksh '),(6,'vvjvj','Mpesa','','2023-05-26 15:33:22','','0','1','2023-05-26 15:33:22','','700','900','1','retail','0','900','1','500','0','0','0','200','0','printed',' ','','1','0','11685104397','Cleared','','','','','','','','',0.00,0.00,0,'','Ksh '),(7,'djfdj','Mpesa','','2023-05-26 15:34:04','','0','1','2023-05-26 15:34:04','','700','900','1','retail','0','900','1','250','250','0','0','200','0','printed',' ','','1','0','11685104439','Cleared','','','','','','','','',0.00,0.00,0,'','Ksh '),(8,'','Cash','','2023-05-26 15:34:57','','0','1','2023-05-26 15:34:57','','700','900','1','retail','0','900','1','0','500','0','0','200','0','printed',' ','','1','0','11685104493','Cleared','','','','','','','','',0.00,0.00,0,'','Ksh '); /*!40000 ALTER TABLE `sales` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order` -- DROP TABLE IF EXISTS `sales_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order` ( `myinvoice` varchar(50) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` varchar(10) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` text NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` decimal(10,2) NOT NULL, `sprice` varchar(100) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL DEFAULT '16', `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `uom` varchar(30) NOT NULL, `sales` varchar(30) NOT NULL, `updatedat` varchar(50) NOT NULL, `updatedby` varchar(10) NOT NULL, `taxindicator` varchar(10) NOT NULL DEFAULT 'yes', `serial` varchar(50) DEFAULT NULL, `tax2` varchar(20) NOT NULL, `discountype` varchar(20) NOT NULL, `discountvalue` varchar(20) NOT NULL, `vattype` varchar(20) NOT NULL, `taxable` decimal(10,2) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `stockbefore` varchar(30) NOT NULL, `stockafter` varchar(30) NOT NULL, `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `stock` varchar(20) NOT NULL DEFAULT 'branch', `producttype` varchar(30) NOT NULL, `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) DEFAULT NULL, `start` varchar(20) NOT NULL, `close` varchar(20) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `myinvoice` (`myinvoice`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order` -- LOCK TABLES `sales_order` WRITE; /*!40000 ALTER TABLE `sales_order` DISABLE KEYS */; INSERT INTO `sales_order` VALUES ('116851012623112232',1,'11685101258','5001872','1.00','1000','retail','0','2023-05-26 14:41:03','','','','126.6','Cash',137.93,'1000','','','1','16.00','1','2023-05-26 11:41:09','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','','','','',''),('116851039030132313',4,'11685103899','5001870','5.00','4500','retail','0','2023-05-26 15:27:14','','','','126.6','Cash',0.00,'900','','','1','','1','2023-05-26 12:27:29','1','10','new','1','printed','pcs','','','','yes','','0','','','EXEMPTED',0.00,'5','10.00','5','Inclusive','branch','Inventory','','','','',''),('116851039103223003',5,'11685103899','5001871','5.00','1500','retail','0','2023-05-26 15:27:14','','','','135.6','Cash',0.00,'300','','','1','','1','2023-05-26 12:27:29','1','10','new','1','printed','pcs','','','','yes','','0','','','EXEMPTED',0.00,'5','10.00','5','Inclusive','branch','Inventory','','','','',''),('116851042263452034',6,'11685104221','5001870','1.00','900','retail','0','2023-05-26 15:30:26','','','','126.6','Cash',0.00,'900','','','1','16.00','1','2023-05-26 12:30:42','1','10','new','1','new','pcs','','','','yes','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','','','','',''),('116851043085832102',7,'11685104304','5001870','1.00','900','retail','0','2023-05-26 15:31:49','','','','126.6','Cash',0.00,'900','','','1','16.00','1','2023-05-26 12:31:59','1','10','new','1','new','pcs','','','','yes','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','','','','',''),('116851043442003238',8,'11685104339','5001870','1.00','900','retail','0','2023-05-26 15:32:24','','','','126.6','Cash',0.00,'900','','','1','16.00','1','2023-05-26 12:32:35','1','10','new','1','new','pcs','','','','yes','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','','','','',''),('116851044012160110',9,'11685104397','5001870','1.00','900','retail','0','2023-05-26 15:33:22','','','','126.6','Cash',0.00,'900','','','1','16.00','1','2023-05-26 12:33:39','1','10','new','1','new','pcs','','','','yes','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','','','','',''),('116851044434336233',10,'11685104439','5001870','1.00','900','retail','0','2023-05-26 15:34:04','','','','126.6','Cash',0.00,'900','','','1','16.00','1','2023-05-26 12:34:19','1','10','new','1','new','pcs','','','','yes','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','','','','',''),('116851044970260944',11,'11685104493','5001870','1.00','900','retail','0','2023-05-26 15:34:57','','','','126.6','Cash',0.00,'900','','','1','16.00','1','2023-05-26 12:35:07','1','10','new','1','new','pcs','','','','yes','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','','','','',''); /*!40000 ALTER TABLE `sales_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_ordercancelled` -- DROP TABLE IF EXISTS `sales_ordercancelled`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_ordercancelled` ( `myinvoice` varchar(50) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` decimal(10,2) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` text NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` decimal(10,2) NOT NULL, `sprice` varchar(100) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `uom` varchar(30) NOT NULL, `sales` varchar(30) NOT NULL, `updatedat` varchar(50) NOT NULL, `updatedby` varchar(10) NOT NULL, `taxindicator` varchar(10) NOT NULL DEFAULT 'yes', `serial` varchar(50) DEFAULT NULL, `tax2` varchar(20) NOT NULL, `discountype` varchar(20) NOT NULL, `discountvalue` varchar(20) NOT NULL, `vattype` varchar(20) NOT NULL, `taxable` decimal(10,2) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `stockbefore` varchar(30) NOT NULL, `stockafter` varchar(30) NOT NULL, `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `stock` varchar(20) NOT NULL DEFAULT 'branch', `producttype` varchar(30) NOT NULL, `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `myinvoice` (`myinvoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_ordercancelled` -- LOCK TABLES `sales_ordercancelled` WRITE; /*!40000 ALTER TABLE `sales_ordercancelled` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_ordercancelled` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_orderkitchen` -- DROP TABLE IF EXISTS `sales_orderkitchen`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_orderkitchen` ( `myinvoice` varchar(50) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` decimal(10,2) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` varchar(50) NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` decimal(10,2) NOT NULL, `sprice` varchar(100) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `uom` varchar(30) NOT NULL, `sales` varchar(30) NOT NULL, `updatedat` varchar(50) NOT NULL, `updatedby` varchar(10) NOT NULL, `taxindicator` varchar(10) NOT NULL DEFAULT 'yes', `serial` varchar(50) DEFAULT NULL, `tax2` varchar(20) NOT NULL, `discountype` varchar(20) NOT NULL, `discountvalue` varchar(20) NOT NULL, `vattype` varchar(20) NOT NULL, `taxable` varchar(50) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `stockbefore` varchar(30) NOT NULL, `stockafter` varchar(30) NOT NULL, `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `stock` varchar(20) NOT NULL DEFAULT 'branch', `producttype` varchar(30) NOT NULL, `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `myinvoice` (`myinvoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_orderkitchen` -- LOCK TABLES `sales_orderkitchen` WRITE; /*!40000 ALTER TABLE `sales_orderkitchen` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_orderkitchen` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_orderraw` -- DROP TABLE IF EXISTS `sales_orderraw`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_orderraw` ( `myinvoice` varchar(50) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` decimal(10,2) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` text NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` decimal(10,2) NOT NULL, `sprice` varchar(100) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `uom` varchar(30) NOT NULL, `sales` varchar(30) NOT NULL, `updatedat` varchar(50) NOT NULL, `updatedby` varchar(10) NOT NULL, `taxindicator` varchar(10) NOT NULL DEFAULT 'yes', `serial` varchar(50) DEFAULT NULL, `tax2` varchar(20) NOT NULL, `discountype` varchar(20) NOT NULL, `discountvalue` varchar(20) NOT NULL, `vattype` varchar(20) NOT NULL, `taxable` decimal(10,2) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `stockbefore` varchar(30) NOT NULL, `stockafter` varchar(30) NOT NULL, `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `stock` varchar(20) NOT NULL DEFAULT 'branch', `producttype` varchar(30) NOT NULL, `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `myinvoice` (`myinvoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_orderraw` -- LOCK TABLES `sales_orderraw` WRITE; /*!40000 ALTER TABLE `sales_orderraw` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_orderraw` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_reading` -- DROP TABLE IF EXISTS `sales_reading`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_reading` ( `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) NOT NULL, `sprice` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` varchar(50) NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` varchar(50) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `id` int(30) NOT NULL AUTO_INCREMENT, `status` varchar(30) NOT NULL DEFAULT 'new', `category` varchar(30) NOT NULL, `maincategory` varchar(10) NOT NULL, `start` varchar(100) NOT NULL, `close` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_reading` -- LOCK TABLES `sales_reading` WRITE; /*!40000 ALTER TABLE `sales_reading` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_reading` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesreading` -- DROP TABLE IF EXISTS `salesreading`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `salesreading` ( `id` int(11) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `cashier` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `due_date` varchar(100) NOT NULL, `name` varchar(100) NOT NULL, `balance` varchar(20) NOT NULL DEFAULT '0', `userid` varchar(50) NOT NULL, `dateposted` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `cash` varchar(50) NOT NULL, `total` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `salestype` varchar(50) NOT NULL, `maindiscount` varchar(20) DEFAULT NULL, `discountedtotal` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesreading` -- LOCK TABLES `salesreading` WRITE; /*!40000 ALTER TABLE `salesreading` DISABLE KEYS */; /*!40000 ALTER TABLE `salesreading` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesreport` -- DROP TABLE IF EXISTS `salesreport`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `salesreport` ( `id` int(50) NOT NULL, `type` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `title` varchar(50) NOT NULL, `description` text NOT NULL, `dateposted` varchar(50) NOT NULL, `user` varchar(100) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `reportdate` varchar(50) NOT NULL, `recommendation` text NOT NULL, `controller` varchar(40) NOT NULL, `companyid` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesreport` -- LOCK TABLES `salesreport` WRITE; /*!40000 ALTER TABLE `salesreport` DISABLE KEYS */; /*!40000 ALTER TABLE `salesreport` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `serials` -- DROP TABLE IF EXISTS `serials`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `serials` ( `id` int(11) NOT NULL AUTO_INCREMENT, `itemid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'new', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `code` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL, `qty` decimal(10,4) NOT NULL, `buyingprice` decimal(10,2) NOT NULL, `sellingprice` decimal(10,2) NOT NULL, `invoice` varchar(50) DEFAULT NULL, `serial` varchar(50) NOT NULL, `otherserial` varchar(50) NOT NULL, `name` text NOT NULL, `description` text NOT NULL, `batchno` int(11) NOT NULL, `myid` int(50) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `serial` (`serial`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `serials` -- LOCK TABLES `serials` WRITE; /*!40000 ALTER TABLE `serials` DISABLE KEYS */; /*!40000 ALTER TABLE `serials` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `serialstocktaking` -- DROP TABLE IF EXISTS `serialstocktaking`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `serialstocktaking` ( `id` int(10) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `open` decimal(10,2) NOT NULL, `added` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `branchid` int(10) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'open', `userid` int(30) NOT NULL, `companyid` int(30) NOT NULL, `startdate` varchar(30) NOT NULL, `closedate` varchar(10) NOT NULL, `updatedby` int(10) NOT NULL, `postedtime` varchar(30) NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'open', `maincategory` int(11) NOT NULL, `serial` varchar(50) NOT NULL, `sellingprice` varchar(20) NOT NULL, `buyingprice` varchar(20) NOT NULL, `name` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `serialstocktaking` -- LOCK TABLES `serialstocktaking` WRITE; /*!40000 ALTER TABLE `serialstocktaking` DISABLE KEYS */; /*!40000 ALTER TABLE `serialstocktaking` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `setting` -- DROP TABLE IF EXISTS `setting`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `setting` ( `name` varchar(255) NOT NULL, `value` text NOT NULL, PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `setting` -- LOCK TABLES `setting` WRITE; /*!40000 ALTER TABLE `setting` DISABLE KEYS */; /*!40000 ALTER TABLE `setting` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sms` -- DROP TABLE IF EXISTS `sms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sms` ( `id` int(30) NOT NULL AUTO_INCREMENT, `contact` varchar(60) NOT NULL, `postedtime` varchar(40) NOT NULL, `message` text NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `smscount` int(11) NOT NULL, `messageId` int(11) NOT NULL, `response` text NOT NULL, `cost` int(11) NOT NULL, `bulkId` varchar(100) NOT NULL, `qty` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sms` -- LOCK TABLES `sms` WRITE; /*!40000 ALTER TABLE `sms` DISABLE KEYS */; /*!40000 ALTER TABLE `sms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sms_in` -- DROP TABLE IF EXISTS `sms_in`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sms_in` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sms_text` varchar(1600) DEFAULT NULL, `sender_number` varchar(50) DEFAULT NULL, `sent_dt` datetime DEFAULT NULL, `code` varchar(15) NOT NULL, `amount` decimal(10,2) NOT NULL DEFAULT 0.00, `firstname` varchar(15) DEFAULT NULL, `lastname` varchar(15) DEFAULT NULL, `msisdn` int(20) DEFAULT 0, `used` int(5) NOT NULL DEFAULT 0, `exactime` datetime NOT NULL, `txn_time` varchar(50) DEFAULT NULL, `middlename` varchar(50) DEFAULT NULL, `account_number` varchar(50) DEFAULT NULL, `business_shortcode` varchar(50) DEFAULT NULL, `transactionType` varchar(30) DEFAULT NULL, `printed` int(5) NOT NULL DEFAULT 0, `OrgAccountBalance` decimal(10,2) NOT NULL, `branchid` int(11) DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sms_in` -- LOCK TABLES `sms_in` WRITE; /*!40000 ALTER TABLE `sms_in` DISABLE KEYS */; /*!40000 ALTER TABLE `sms_in` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `smsconfig` -- DROP TABLE IF EXISTS `smsconfig`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `smsconfig` ( `id` int(30) NOT NULL, `username` text NOT NULL, `apikey` text NOT NULL, `from` varchar(50) NOT NULL, `link` text NOT NULL, `businessname` text NOT NULL, `contact` varchar(100) NOT NULL, `location` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `code` varchar(50) NOT NULL, `description` text NOT NULL, `contactperson` varchar(100) NOT NULL, `password` varchar(50) NOT NULL, `contact2` varchar(50) NOT NULL, `address` varchar(50) NOT NULL, `currencysymbol` varchar(100) NOT NULL, `tax1` varchar(100) NOT NULL, `tax1rate` varchar(100) NOT NULL, `tax2` varchar(100) NOT NULL, `tax2rate` varchar(100) NOT NULL, `website` varchar(100) NOT NULL, `returnpolicy` text NOT NULL, `logo` text NOT NULL, `paymenttypes` text NOT NULL, `country` varchar(50) NOT NULL, `totalsms` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `display1` varchar(5) NOT NULL, `display2` varchar(5) NOT NULL, `maindiscount` varchar(10) NOT NULL DEFAULT 'no', `receiptdescription` varchar(5) NOT NULL DEFAULT 'yes', `deadline` text NOT NULL, `tillno` text NOT NULL, `invoicedetails` text NOT NULL, `barcode` varchar(3) NOT NULL DEFAULT 'no', `deadlinedetails` text NOT NULL, `businesskey` text NOT NULL, `display` varchar(30) NOT NULL, `fromdate` varchar(30) NOT NULL, `todate` varchar(30) NOT NULL, `starttime` varchar(30) NOT NULL, `duetime` varchar(30) NOT NULL, `view` text NOT NULL, `receipt` varchar(50) NOT NULL, `mode` varchar(30) NOT NULL, `feedback` text NOT NULL, `sendfeedback` varchar(10) NOT NULL, `dublicate` varchar(10) NOT NULL, `smscompany` varchar(30) NOT NULL DEFAULT 'Infobip', `newuser` varchar(30) NOT NULL, `newpassword` varchar(30) NOT NULL, `senderid` varchar(30) NOT NULL, `leftoverview` text NOT NULL, `rightoverview` text NOT NULL, `assetaccount` varchar(50) NOT NULL, `salesaccount` varchar(50) NOT NULL, `expenseaccount` varchar(50) NOT NULL, `starthappyhour` varchar(20) NOT NULL, `endhappyhourse` varchar(20) NOT NULL, `statushappyhour` varchar(20) NOT NULL, `salesmethod` varchar(20) NOT NULL, `plot` int(11) NOT NULL DEFAULT 10, `defautpage` varchar(255) NOT NULL DEFAULT 'user/home', `ecommerce` varchar(10) NOT NULL DEFAULT 'deactivate', `landingpage` varchar(40) NOT NULL DEFAULT 'products', `path` text NOT NULL, `shortcode` text NOT NULL, `confirmationurl` text NOT NULL, `validationurl` text NOT NULL, `responseType` text NOT NULL, `consumer_key` text NOT NULL, `consumer_secret` text NOT NULL, `signature` text DEFAULT NULL, `kitchen` varchar(30) NOT NULL DEFAULT 'no', `kitchenid` int(11) DEFAULT NULL, `receiptlogo` varchar(10) NOT NULL DEFAULT 'no', `bankcode` varchar(20) NOT NULL DEFAULT 'no', `menutype` varchar(50) NOT NULL DEFAULT 'Left', `hscode` varchar(20) NOT NULL DEFAULT 'YES', `smslogin` varchar(50) NOT NULL DEFAULT 'no', `servicecharge` varchar(20) NOT NULL DEFAULT '3', `displayservicecharge` varchar(20) NOT NULL DEFAULT 'no', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `smsconfig` -- LOCK TABLES `smsconfig` WRITE; /*!40000 ALTER TABLE `smsconfig` DISABLE KEYS */; INSERT INTO `smsconfig` VALUES (1,'76','c8d1ec0b9d21d199d6d7514ce002b85fd3022037d31141cecf5ea57902320994f885c92064cc2bee019f87df642212ac30505551','SMSCHAPCHAP','','<H1 style=\"margin:0px;\">MTAANI CHEMISTS</H1>\r\nNAIROBI, KENYA','254738637711','BUMALA','support@robisearch.com','ROBISEARCHPOS','<H1 style=\"margin:0px;\">MTAANI CHEMISTS</H1>\r\nNAIROBI, KENYA\r\n','KJ WINES','e7bd1efe6cee0b56cf3b31d7fb5d01c7','254708325411','','','VAT','16','levy','2','RO0001',' Goods once sold will not be returned ,Prices inclusive of vat where applicable, <br>We appreciate your valuable business','2021-11-021635851850.png','1','1 ','','1','2023-01-13 12:53:27','yes','no','no','no','MAwbcah3uUTRUIywMpsU/IfHBelE8fWp02ou7SNeJlgCjZq+eVcJUiYVEXhxiEAKJm8be+GoUUmDjCv6mNjKQQ==','.','<B> INVOICE TERMS</B></BR>\r\n1. This invoice is payable on demand unless terms specified.<br>\r\n2. Good once sold are not returnable<br>\r\n3. Ownership of the above good will be vested in Dimetrica limited until fully paid\r\n','no','You have not paid your pending balance or you have not paid your annual maintenance fees. Kindly send the payment through our Playbill no:522522 and Acc No:1171211120 for you to continue enjoying our services.','eg+Enemb4F2I80R16t2QMPgz0MOunZ9h1IXXNALGbncvksNJgUWMMVibWYMdJyUJj0W+UWQpefxgIXkuBkeilhYKUFA8Xujd4OGsAyEGi5zUZ5FE/nxIM8LM0xZU54Yx','100','Current','Current','00:00','23:59','Retail','One Without Automatic Logout','After Bill','thank you for shopping with us. ','yes','yes','Advanta','ROBISEARCHLTD','Robisearch@2018','ROBISEARCH','<b>About Robisearch Ltd</b><br>\r\nRobisearch Ltd is an ICT youth based company that begun in 2011 as a result of innovations that transform lives globally. We are innovator behind Biometric lands system and digital birth card system that could help fight terrorisms. We are a member of the Nairobi Chambers (KNCCI) organization and AGPO. We offer attachment /internships opportunity to 60 students on annual basis as a way of creating job opportunity to youths in Kenya. We have great experience in dealing with customers having handled over 500 customers’ country wide. Some of services are:<p class=\"text-center\">\r\n<h3>OUR SERVICES</h3>\r\nBelow are some of our services and solutions:<br>\r\n• Biometric system for schools and business : Price= From Ksh.50,000<br>\r\n• Bulk Sms services(Bulksms ChapChap) : Price= From Ksh.5,000<br>\r\n• Best Erp/Point of Sale/ Inventory Control Software : Price= From Ksh.50,000<br>\r\n• Property Management software that conforms to the Big 4 government agenda. : Price= From Ksh.100,000<br>\r\n\r\nNOTE: You can give discount upto 20% of the above selling price.\r\n</p>\r\n\r\n<p>\r\nOur Vision<br>\r\nTransforming the world through innovation<br>\r\nOur Mission<br>\r\nTo be the best ICT company offering innovate services globally.\r\nBiometric Systems rely mostly on information about a person to identify the person in such a way that specific data about unique biological traits are relied upon to work effectively.\r\nThe biometric School attendance system. This is an innovative system which is used by schools to track student movements. The system sends sms alert to the parents whenever students checks in and out of the schools. The system is also used as digital register to record students and staff attendances instead of manual signing of class register as well as managing payroll based on attendance. The system is also being used by business owners to get sms alert whenever employees checks in and out of the office. There are so many schools using this system and we recommend the same to any school and business. Some of them are JKUAT,Pumwani Hosiptal, Loreto Girls Kiambu,Mandera boys, Kwale boys, Kipsigis girls. Kericho TTC etc.\r\n<br>\r\n\r\n<br>Point of Sale(ROBIPOS) manages sales for any sales related businesses. This system helps business owners to track their daily sales and profit using their phones wherever they are. It has Lipa Na MPESA real time and sms alert. Sms is automatically sends to the computer whenever customer pays through any mobile payment. Also the customer gets automatic thank you message upon payment.\r\nThis system has been integrated with many modules that manages day to day transactions in our client’s business. The system has many functionalities but not limited to the following: Inventory tracking, sales management, customer management, products management, receipting, human resource, accounting module and can real-time Lipa na Mpesa module. \r\nThe sales management system can be used in diverse businesses like wholesales, boutiques, electrical and electronics, minimarts, supermarkets, cosmetic shops, jeweler shops and any retail businesses.\r\nOur POS system helps <br>\r\n? Improve our customer’s experience by serving them in a fast and convenient way<br>\r\n? Management of stock<br>\r\n? Presentable documents such as receipts, orders and reports are issued to customers of our clients.<br>\r\n? Storage and retrieval of documents is made easier<br>\r\n? Accuracy; scanning is more accurate than punching in numbers from a sticker or expecting the cashier to manually remember what each item costs.\r\n? Analysis ;<br>\r\n? POS let our clients manage inventory, flag items for reorder and analyze sales patterns.<br>\r\nBulksms ChapChap is a bulk sms software which can be used to send sms/reminders to customers. It’s the most feasible and essential strategy to target a mass audience as a marketing and communication tool. Whether launching a new product or would like a nationwide announcement, or whether you want to remind people of a certain meeting or deal, our bulk sms manages all the requirements from start to finish. The system can be used by anybody to manage their dairies since you can store all your appointments and activities then system will send you sms whenever that time reaches. \r\nOur bulk sms comes with advantages such as;<br>\r\n? Instant delivery of messages<br>\r\n? Flexible platform that can send over 10,000 sms once<br>\r\n? The systems comes with a reminder to notify one of any pending deals<br>\r\n? Sms can be stored, easily forwarded or tracked using delivery reports<br>\r\n? Lower cost and time to be delivered than a phone call.<br>\r\n? It is more reliable than emailing as the chances of the recipient reading the message is very high<br>\r\n? Limitless market potential<br>\r\nOur clients include;Bulk sms: JKUAT, Elimu TV, Uwezo Fund, Moi forces Academy<br>\r\nBiometric: JKUAT, Orero Boys, Kayole High school<br>\r\nPoint of sale: Luna Park, Victoria Falls, Garrison Teachers College, Ndumia Group<br>\r\nwww.robisearch.com<br>\r\nhttp://www.bulksmschapchap.com/<br>\r\n\r\n\r\n</p>\r\n<p>\r\nFeel free to contact us: <br>\r\n<a href=\"http://www.robisearch.com/\">www.robisearch.com</a> <br>\r\nEmail :info@robisearch.com<br>\r\nPhone: 0780655987<br>\r\nPhone: 0716413386<br>\r\nOur Offices are Nairobi-Nara and Juja town<br>\r\n Experiencing any problem? Send an email to <a href=\"mailto:info@robisearch.com\">info@robisearch.com</a> or <a href=\"mailto:robisearch@gmail.com\">robisearch@gmail.com</a> or follow us on <a href=\"https://www.facebook.com/Robiearch?fref=ts\">Facebook</a> or on <a href=\"https://twitter.com/robisearch\">Twitter.</a> . You can also view more on <a href=\"http://www.robisearch.com/\"> our website</a>\r\n\r\n</p></b>\r\n ','<B> Reseller/Agent Benefits</b>\r\n <br>\r\n1. Earn Commisiions <br>\r\n2. Get best offers <br>\r\n3. Get Incentives <br>\r\n \r\n <B> Reseller/Agent Categories</b>\r\n We pay according to your effort hence it is based on commission.<br>\r\n 1. You will get 10% of what you sell on Monthly basis if you make between 1-5 sales per month.<br>\r\n 2. You will get 20% of what you sell on Monthly basis if you make between 6-20 sales per month.<br>\r\n 3. You will get 30% of what you sell on Monthly basis if you make above 21 sales per month.<br>\r\n','1110','4000','5500','08:00','10:00','no','General',10,'user/viewsales','deactivate','products','D:\\\\xampp\\\\htdocs\\\\ATT2000.mdb','702006','https://pos.wifimatt.com/getpayment','https://pos.wifimatt.com/verifypayment','application/json','UYlkylGuzGjZxpMNz2rmGGYc6N5wslzp','HSGog9FsAchErCLj','From Robisearch LTD','no',2,'no','yes','Both','no','no','3','no'); /*!40000 ALTER TABLE `smsconfig` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `smslogin` -- DROP TABLE IF EXISTS `smslogin`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `smslogin` ( `id` int(10) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `code` varchar(20) NOT NULL, `phone` varchar(20) NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'active', `userid` int(10) NOT NULL, `fromtime` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `totime` datetime NOT NULL, `duration` varchar(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `smslogin` -- LOCK TABLES `smslogin` WRITE; /*!40000 ALTER TABLE `smslogin` DISABLE KEYS */; /*!40000 ALTER TABLE `smslogin` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `smstemplate` -- DROP TABLE IF EXISTS `smstemplate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `smstemplate` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `smstemplate` -- LOCK TABLES `smstemplate` WRITE; /*!40000 ALTER TABLE `smstemplate` DISABLE KEYS */; INSERT INTO `smstemplate` VALUES (1,'Closing Day1','Your daughter has been released for December holiday today.1','2020-04-25 09:20:01am','active','1','','1'),(2,'Opening Day','Your Daughter Has Just Arrived To School ','2019-02-23 10:17:16am','active','1','','1'),(3,'Closing Day','Your daughter has been released for December holiday today.','2018-10-24 05:51:21pm','active','1','','1'),(4,'MIDTERM','Parents/Guardians who came for Thanks Giving day will be allowed to leave with their daughters for half-term, others will leave on 17/02/19.','2019-02-16 02:32:21pm','active','1','','1'),(5,'Opening Day','Almost all the students turned up from April Holiday recess','2019-04-30 04:30:08pm','active','1','','1'),(6,'Board meeting','There will be a board meeting for the directors.','2019-05-18 03:02:06pm','active','1','','1'); /*!40000 ALTER TABLE `smstemplate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `splitbill` -- DROP TABLE IF EXISTS `splitbill`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `splitbill` ( `id` int(30) NOT NULL AUTO_INCREMENT, `type` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `dateposted` varchar(50) NOT NULL, `batchid` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `batchno` int(11) NOT NULL, `description` text NOT NULL, `salesid` int(11) NOT NULL, `qty` decimal(10,2) DEFAULT NULL, `price` decimal(10,2) DEFAULT NULL, `originalinvoice` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `splitbill` -- LOCK TABLES `splitbill` WRITE; /*!40000 ALTER TABLE `splitbill` DISABLE KEYS */; /*!40000 ALTER TABLE `splitbill` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `splitbillmaster` -- DROP TABLE IF EXISTS `splitbillmaster`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `splitbillmaster` ( `id` int(30) NOT NULL AUTO_INCREMENT, `type` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `dateposted` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `branch` int(11) NOT NULL, `batchno` int(11) NOT NULL, `description` text NOT NULL, `originalinvoice` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `splitbillmaster` -- LOCK TABLES `splitbillmaster` WRITE; /*!40000 ALTER TABLE `splitbillmaster` DISABLE KEYS */; /*!40000 ALTER TABLE `splitbillmaster` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `statement` -- DROP TABLE IF EXISTS `statement`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `statement` ( `id` int(30) NOT NULL AUTO_INCREMENT, `account` varchar(50) NOT NULL, `code` varchar(50) NOT NULL, `invoice` varchar(50) NOT NULL, `crateddate` varchar(30) NOT NULL, `debit` decimal(10,2) NOT NULL, `credit` decimal(10,2) NOT NULL, `balance` varchar(20) NOT NULL, `userid` varchar(20) NOT NULL, `companyid` varchar(20) NOT NULL, `paymentmethodes` varchar(10) NOT NULL, `description` text NOT NULL, `amount` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL, `supplier` varchar(30) NOT NULL, `type` varchar(30) NOT NULL, `refno` varchar(30) NOT NULL, `vatable` varchar(30) NOT NULL, `vat` varchar(30) NOT NULL, `tax` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `statement` -- LOCK TABLES `statement` WRITE; /*!40000 ALTER TABLE `statement` DISABLE KEYS */; /*!40000 ALTER TABLE `statement` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `status` -- DROP TABLE IF EXISTS `status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `status` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `status` -- LOCK TABLES `status` WRITE; /*!40000 ALTER TABLE `status` DISABLE KEYS */; INSERT INTO `status` VALUES (1,'New'),(2,'Waiting Approval'),(3,'Approved'),(4,'Rejected'),(5,'Pending'),(6,'Returned'); /*!40000 ALTER TABLE `status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stock` -- DROP TABLE IF EXISTS `stock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `stock` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `open` decimal(10,2) NOT NULL, `added` decimal(10,2) NOT NULL, `total` decimal(10,2) NOT NULL, `sold` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `price` decimal(10,2) NOT NULL, `totalamount` decimal(10,2) NOT NULL, `branchid` varchar(20) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'open', `userid` int(30) NOT NULL, `companyid` int(30) NOT NULL, `startdate` varchar(30) NOT NULL, `closedate` varchar(10) NOT NULL, `updatedby` int(10) NOT NULL, `postedtime` varchar(30) NOT NULL, `unsold` varchar(50) NOT NULL, `returned` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stock` -- LOCK TABLES `stock` WRITE; /*!40000 ALTER TABLE `stock` DISABLE KEYS */; /*!40000 ALTER TABLE `stock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stocktaking` -- DROP TABLE IF EXISTS `stocktaking`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `stocktaking` ( `id` int(10) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `open` decimal(10,2) NOT NULL, `added` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `branchid` int(10) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'open', `userid` int(30) NOT NULL, `companyid` int(30) NOT NULL, `startdate` varchar(30) NOT NULL, `closedate` varchar(10) NOT NULL, `updatedby` int(10) NOT NULL, `postedtime` varchar(30) NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'open', `maincategory` int(11) NOT NULL, `description` text NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`,`branchid`,`startdate`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stocktaking` -- LOCK TABLES `stocktaking` WRITE; /*!40000 ALTER TABLE `stocktaking` DISABLE KEYS */; /*!40000 ALTER TABLE `stocktaking` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stocktakingstatus` -- DROP TABLE IF EXISTS `stocktakingstatus`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `stocktakingstatus` ( `id` int(30) NOT NULL AUTO_INCREMENT, `userid` varchar(30) NOT NULL, `timedone` varchar(50) NOT NULL, `ip` text NOT NULL, `companyid` int(11) NOT NULL, `startdate` date NOT NULL, `closedate` date NOT NULL, `updatedby` int(11) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'open', `maincategory` int(11) NOT NULL, `level` varchar(20) NOT NULL DEFAULT 'one', `type` varchar(20) NOT NULL DEFAULT 'branch', `branchid` int(5) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stocktakingstatus` -- LOCK TABLES `stocktakingstatus` WRITE; /*!40000 ALTER TABLE `stocktakingstatus` DISABLE KEYS */; /*!40000 ALTER TABLE `stocktakingstatus` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store` -- DROP TABLE IF EXISTS `store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `store` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `category` varchar(50) NOT NULL, `supplier` varchar(50) DEFAULT NULL, `code` varchar(255) DEFAULT NULL, `description` varchar(255) NOT NULL, `tax_included` int(1) NOT NULL DEFAULT 0, `buyingprice` varchar(50) NOT NULL, `sellingprice` varchar(50) NOT NULL DEFAULT '0.00', `promoprice` varchar(50) DEFAULT NULL, `wholesaleprice` varchar(50) NOT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `reorderevel` int(50) DEFAULT NULL, `allow_alt_description` tinyint(1) NOT NULL, `is_serialized` tinyint(1) NOT NULL, `imgid` varchar(255) DEFAULT NULL, `override_default_tax` int(1) NOT NULL DEFAULT 0, `is_service` int(1) NOT NULL DEFAULT 0, `deleted` int(1) NOT NULL DEFAULT 0, `qty` varchar(50) NOT NULL, `dateposted` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `store` varchar(50) NOT NULL, `expdate` varchar(50) NOT NULL, `orderamount` text NOT NULL, `shortname` varchar(50) NOT NULL, `status` varchar(30) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `item_number` (`code`), KEY `phppos_items_ibfk_1` (`supplier`), KEY `name` (`name`), KEY `deleted` (`deleted`), KEY `phppos_items_ibfk_2` (`imgid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store` -- LOCK TABLES `store` WRITE; /*!40000 ALTER TABLE `store` DISABLE KEYS */; /*!40000 ALTER TABLE `store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `subcategory` -- DROP TABLE IF EXISTS `subcategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `subcategory` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `maincategory` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `subcategory` -- LOCK TABLES `subcategory` WRITE; /*!40000 ALTER TABLE `subcategory` DISABLE KEYS */; /*!40000 ALTER TABLE `subcategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `suggestions` -- DROP TABLE IF EXISTS `suggestions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `suggestions` ( `id` int(50) NOT NULL AUTO_INCREMENT, `title` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `img_id` varchar(60) NOT NULL, `updatedtime` varchar(40) NOT NULL, `status` varchar(40) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `suggestions` -- LOCK TABLES `suggestions` WRITE; /*!40000 ALTER TABLE `suggestions` DISABLE KEYS */; INSERT INTO `suggestions` VALUES (1,'POS','best','2019-07-12 05:44:51am','1','','','active'); /*!40000 ALTER TABLE `suggestions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `supervisor` -- DROP TABLE IF EXISTS `supervisor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `supervisor` ( `id` int(30) NOT NULL AUTO_INCREMENT, `title` varchar(30) NOT NULL, `department` varchar(50) NOT NULL, `startdate` varchar(30) NOT NULL, `enddate` varchar(30) NOT NULL, `description` text NOT NULL, `employeeno` int(30) NOT NULL, `createdate` varchar(30) NOT NULL, `userid` int(30) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `companyid` int(11) NOT NULL DEFAULT 1, `branchid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `supervisor` -- LOCK TABLES `supervisor` WRITE; /*!40000 ALTER TABLE `supervisor` DISABLE KEYS */; /*!40000 ALTER TABLE `supervisor` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tables` -- DROP TABLE IF EXISTS `tables`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tables` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tables` -- LOCK TABLES `tables` WRITE; /*!40000 ALTER TABLE `tables` DISABLE KEYS */; /*!40000 ALTER TABLE `tables` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tags` -- DROP TABLE IF EXISTS `tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tags` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `slug` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `meta_keyword` text NOT NULL, `meta_description` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tags` -- LOCK TABLES `tags` WRITE; /*!40000 ALTER TABLE `tags` DISABLE KEYS */; /*!40000 ALTER TABLE `tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `taskdata` -- DROP TABLE IF EXISTS `taskdata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `taskdata` ( `id` int(30) NOT NULL AUTO_INCREMENT, `description` text DEFAULT NULL, `date` varchar(50) NOT NULL, `taskid` varchar(50) DEFAULT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'Submitted', `companyid` varchar(100) NOT NULL, `challanges` text NOT NULL, `recommendation` text NOT NULL, `updatedby` int(11) NOT NULL, `comments` text NOT NULL, `updateddate` varchar(30) NOT NULL, `mykey` varchar(50) DEFAULT NULL, `exactdate` varchar(20) NOT NULL, `branchid` int(11) NOT NULL, `achieved` varchar(30) NOT NULL, `updatedat` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `taskdata` -- LOCK TABLES `taskdata` WRITE; /*!40000 ALTER TABLE `taskdata` DISABLE KEYS */; /*!40000 ALTER TABLE `taskdata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tasks` -- DROP TABLE IF EXISTS `tasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tasks` ( `id` int(30) NOT NULL AUTO_INCREMENT, `taskowner` varchar(100) NOT NULL, `subject` text NOT NULL, `fromdate` varchar(100) NOT NULL, `todate` varchar(100) NOT NULL, `contact` text NOT NULL, `status` varchar(100) NOT NULL, `controller` varchar(100) NOT NULL, `priority` text NOT NULL, `notification` varchar(100) NOT NULL DEFAULT 'yes', `repeated` varchar(100) NOT NULL DEFAULT 'no', `comments` text DEFAULT NULL, `dateposted` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `branchid` int(11) NOT NULL, `updatedat` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `measurements` varchar(30) NOT NULL DEFAULT 'Pc', `target` varchar(30) NOT NULL, `achived` varchar(30) NOT NULL, `exactdate` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tasks` -- LOCK TABLES `tasks` WRITE; /*!40000 ALTER TABLE `tasks` DISABLE KEYS */; /*!40000 ALTER TABLE `tasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tasktype` -- DROP TABLE IF EXISTS `tasktype`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tasktype` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `mode` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tasktype` -- LOCK TABLES `tasktype` WRITE; /*!40000 ALTER TABLE `tasktype` DISABLE KEYS */; /*!40000 ALTER TABLE `tasktype` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `taskupdates` -- DROP TABLE IF EXISTS `taskupdates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `taskupdates` ( `id` int(50) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `date` varchar(50) NOT NULL, `nextstep` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'newstock', `type` text NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `taskupdates` -- LOCK TABLES `taskupdates` WRITE; /*!40000 ALTER TABLE `taskupdates` DISABLE KEYS */; /*!40000 ALTER TABLE `taskupdates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tillcollection` -- DROP TABLE IF EXISTS `tillcollection`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tillcollection` ( `id` int(11) NOT NULL AUTO_INCREMENT, `dateposted` varchar(100) NOT NULL, `addedby` int(100) NOT NULL, `approvedby` int(30) NOT NULL, `amount` decimal(10,2) NOT NULL, `description` text NOT NULL, `userid` int(20) NOT NULL, `companyid` int(20) NOT NULL, `branch` int(11) NOT NULL, `collecteddate` varchar(30) NOT NULL, `short` decimal(10,2) NOT NULL, `mode` varchar(20) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'Submitted', `remarks` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tillcollection` -- LOCK TABLES `tillcollection` WRITE; /*!40000 ALTER TABLE `tillcollection` DISABLE KEYS */; /*!40000 ALTER TABLE `tillcollection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tills` -- DROP TABLE IF EXISTS `tills`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tills` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tills` -- LOCK TABLES `tills` WRITE; /*!40000 ALTER TABLE `tills` DISABLE KEYS */; /*!40000 ALTER TABLE `tills` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `timer` -- DROP TABLE IF EXISTS `timer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `timer` ( `id` int(11) NOT NULL AUTO_INCREMENT, `startdate` varchar(30) NOT NULL, `enddate` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `createdat` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `hour` varchar(50) NOT NULL, `station` varchar(20) NOT NULL, `description` text NOT NULL, `product` varchar(50) NOT NULL, `unit` varchar(20) NOT NULL, `duration` varchar(50) DEFAULT NULL, `customer` varchar(50) NOT NULL, `invoice` varchar(50) DEFAULT NULL, `branchid` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `invoice` (`invoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `timer` -- LOCK TABLES `timer` WRITE; /*!40000 ALTER TABLE `timer` DISABLE KEYS */; /*!40000 ALTER TABLE `timer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `towns` -- DROP TABLE IF EXISTS `towns`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `towns` ( `id` int(20) NOT NULL, `code` varchar(40) NOT NULL, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `towns` -- LOCK TABLES `towns` WRITE; /*!40000 ALTER TABLE `towns` DISABLE KEYS */; INSERT INTO `towns` VALUES (1,'1','Central','Central','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'2','Coast','Coast','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'3','Eastern','Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'4','Nairobi','Nairobi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'5','North Eastern','North Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'6','Nyanza','Nyanza','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'7','Rift valley','Rift valley','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'8','Western','Western','0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `towns` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `traffic` -- DROP TABLE IF EXISTS `traffic`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `traffic` ( `id` int(11) NOT NULL AUTO_INCREMENT, `postedtime` varchar(30) NOT NULL, `link` text NOT NULL, `ip` varchar(50) NOT NULL, `description` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `traffic` -- LOCK TABLES `traffic` WRITE; /*!40000 ALTER TABLE `traffic` DISABLE KEYS */; /*!40000 ALTER TABLE `traffic` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `types` -- DROP TABLE IF EXISTS `types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `types` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `types` -- LOCK TABLES `types` WRITE; /*!40000 ALTER TABLE `types` DISABLE KEYS */; /*!40000 ALTER TABLE `types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `uom` -- DROP TABLE IF EXISTS `uom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `uom` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `code` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `uom` -- LOCK TABLES `uom` WRITE; /*!40000 ALTER TABLE `uom` DISABLE KEYS */; INSERT INTO `uom` VALUES (1,'Piece','pc','2020-06-22 06:18:43','active','1','','1','pcs'),(2,'No Units','No Units','2018-03-29 06:40:47am','active','1','','1','NOU'),(3,'Dozen','Dozen','2018-03-29 06:42:29am','active','1','','1','dz'),(4,'Bar','Bar','2018-03-29 06:43:15am','active','1','','1','BR'),(5,'Packets','Packets','2018-03-29 06:36:08am','active','1','','1','pcks'),(6,'Kilograms','Kilograms','2018-03-29 07:14:40am','active','1','','1','Kg'),(7,'Litre','Litre','2018-03-29 07:14:57am','active','1','','1','ltr'),(8,'Half ','hlf','2018-03-30 12:34:29pm','active','1','','1','hlf'),(9,'sheet','','2018-03-30 12:35:21pm','active','1','','1','sht'),(10,'Bale','','2018-03-30 12:40:40pm','active','1','','1','BL'),(11,'Box','','2018-03-30 12:40:58pm','active','1','','1','bx'),(12,'full','','2018-08-04 11:35:29am','active','1','','1','full'),(13,'refill','','2018-08-04 11:36:06am','active','1','','1','ref'),(14,'1/4','','2018-11-20 09:14:48','active','1','','1','16'),(15,'Feet','','2020-06-09 10:21:14','active','1','','1','ft'),(16,'PIPES','','2020-06-09 19:12:05','active','1','','1','PIPES'),(17,'Monthly','','2020-06-26 07:19:19','active','1','','1','Monthly'),(18,'Daily','','2020-06-26 07:19:31','active','1','','1','Daily'),(19,'Weekly','','2020-06-26 07:19:44','active','1','','1','Weekly'),(20,'Yearly','','2020-06-26 07:19:56','active','1','','1','Yearly'); /*!40000 ALTER TABLE `uom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `uomproducts` -- DROP TABLE IF EXISTS `uomproducts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `uomproducts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uom` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `code` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL, `qty` decimal(10,4) NOT NULL, `price` varchar(30) NOT NULL, `brice` varchar(30) NOT NULL, `unitprice` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `uomproducts` -- LOCK TABLES `uomproducts` WRITE; /*!40000 ALTER TABLE `uomproducts` DISABLE KEYS */; /*!40000 ALTER TABLE `uomproducts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `upgrade` -- DROP TABLE IF EXISTS `upgrade`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `upgrade` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) DEFAULT NULL, `companyid` int(11) NOT NULL DEFAULT 1, `description` text NOT NULL, `version` varchar(50) NOT NULL, `package` varchar(50) NOT NULL, `exactdate` varchar(50) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `userid` int(10) DEFAULT NULL, `entrydate` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `upgrade` -- LOCK TABLES `upgrade` WRITE; /*!40000 ALTER TABLE `upgrade` DISABLE KEYS */; /*!40000 ALTER TABLE `upgrade` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `utilityinvoice` -- DROP TABLE IF EXISTS `utilityinvoice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `utilityinvoice` ( `id` int(40) NOT NULL AUTO_INCREMENT, `plotno` varchar(60) NOT NULL, `houseno` varchar(40) NOT NULL, `tenantid` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `description` varchar(100) NOT NULL, `month` varchar(100) NOT NULL, `year` varchar(100) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `duedate` varchar(40) NOT NULL, `paymentstatus` varchar(40) NOT NULL DEFAULT 'receipt', `paymentmode` varchar(40) NOT NULL, `paymentcode` varchar(100) NOT NULL, `transactioncode` varchar(100) NOT NULL, `approval` varchar(30) NOT NULL DEFAULT 'new', `paid` varchar(40) NOT NULL, `balance` varchar(40) NOT NULL DEFAULT '0', `companyid` varchar(100) NOT NULL DEFAULT '1', `commission` decimal(10,2) NOT NULL, `vat` decimal(10,2) NOT NULL, `paymentdate` varchar(30) NOT NULL, `branchid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `utilityinvoice` -- LOCK TABLES `utilityinvoice` WRITE; /*!40000 ALTER TABLE `utilityinvoice` DISABLE KEYS */; /*!40000 ALTER TABLE `utilityinvoice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `voucher` -- DROP TABLE IF EXISTS `voucher`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `voucher` ( `id` int(30) NOT NULL AUTO_INCREMENT, `value` decimal(10,2) NOT NULL, `customer` varchar(100) DEFAULT NULL, `deleted` int(1) NOT NULL DEFAULT 0, `status` varchar(50) NOT NULL, `description` text NOT NULL, `userid` varchar(50) NOT NULL, `dateposted` varchar(50) NOT NULL, `dateupdated` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `cardnumber` varchar(100) NOT NULL, `type` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, `amount` decimal(10,2) NOT NULL, `mode` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `originalamount` decimal(10,2) NOT NULL, `fromdate` varchar(20) DEFAULT NULL, `business` text NOT NULL, `todate` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`), KEY `deleted` (`deleted`), KEY `phppos_giftcards_ibfk_1` (`customer`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `voucher` -- LOCK TABLES `voucher` WRITE; /*!40000 ALTER TABLE `voucher` DISABLE KEYS */; /*!40000 ALTER TABLE `voucher` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-06-30 18:27:50
.
Edit
..
Edit
information_schema.sql
Edit
mysql.sql
Edit
performance_schema.sql
Edit
robisear_017lounge.sql
Edit
robisear_15minutes.sql
Edit
robisear_1865pubcoltd.sql
Edit
robisear_64jos.sql
Edit
robisear_727barandrestaurant.sql
Edit
robisear_ELKTONS.sql
Edit
robisear_Kencityhealth.sql
Edit
robisear_a3autocare.sql
Edit
robisear_abbeyslacewig.sql
Edit
robisear_aberdare.sql
Edit
robisear_abic.sql
Edit
robisear_abnpharmaceuticals.sql
Edit
robisear_accommodation.sql
Edit
robisear_aceliquor.sql
Edit
robisear_adamssupermarket.sql
Edit
robisear_adcentcomputers.sql
Edit
robisear_adval.sql
Edit
robisear_africaexpress.sql
Edit
robisear_africanfabric.sql
Edit
robisear_afrisco.sql
Edit
robisear_afrovision.sql
Edit
robisear_agriassistltd.sql
Edit
robisear_ahel.sql
Edit
robisear_airworks.sql
Edit
robisear_ajanihouse.sql
Edit
robisear_akshar.sql
Edit
robisear_akshar2.sql
Edit
robisear_akshar3.sql
Edit
robisear_alaphamega.sql
Edit
robisear_alasfourcosmetics.sql
Edit
robisear_aldeon.sql
Edit
robisear_alibern.sql
Edit
robisear_alj.sql
Edit
robisear_aljpos.sql
Edit
robisear_allmeds.sql
Edit
robisear_alma.sql
Edit
robisear_amaniangani.sql
Edit
robisear_amat.sql
Edit
robisear_ambalu.sql
Edit
robisear_ambasagrill.sql
Edit
robisear_ambokililimited.sql
Edit
robisear_amsol.sql
Edit
robisear_amzkanzu.sql
Edit
robisear_anandamarga.sql
Edit
robisear_anchorlounge.sql
Edit
robisear_annexchefwest.sql
Edit
robisear_annexm2.sql
Edit
robisear_anujhardware.sql
Edit
robisear_apollostar.sql
Edit
robisear_approtechtech.sql
Edit
robisear_arkam.sql
Edit
robisear_aryelegant.sql
Edit
robisear_arziki.sql
Edit
robisear_asbedpharmaceuticalslimited.sql
Edit
robisear_asterhealth.sql
Edit
robisear_atlas.sql
Edit
robisear_automaxx.sql
Edit
robisear_automotivedoctor.sql
Edit
robisear_avichem.sql
Edit
robisear_baberian.sql
Edit
robisear_babygarden.sql
Edit
robisear_babygarden2.sql
Edit
robisear_babygarden3.sql
Edit
robisear_backazzlounge.sql
Edit
robisear_badi.sql
Edit
robisear_bantuliquor.sql
Edit
robisear_barakastores.sql
Edit
robisear_barbecuexpress.sql
Edit
robisear_barbecuexpress2.sql
Edit
robisear_bargalcollection.sql
Edit
robisear_basdeliveryservices.sql
Edit
robisear_basewines.sql
Edit
robisear_batasportsclub.sql
Edit
robisear_baylandcafe.sql
Edit
robisear_bbcfarm.sql
Edit
robisear_bboutique.sql
Edit
robisear_beautybyimani.sql
Edit
robisear_beautypoint.sql
Edit
robisear_beautypointcollege.sql
Edit
robisear_becap.sql
Edit
robisear_beco.sql
Edit
robisear_benan.sql
Edit
robisear_benan2.sql
Edit
robisear_benjakab.sql
Edit
robisear_bensare.sql
Edit
robisear_beshel.sql
Edit
robisear_bestbudget.sql
Edit
robisear_besterp.sql
Edit
robisear_betafoods.sql
Edit
robisear_beyahbix.sql
Edit
robisear_beyondsweetness.sql
Edit
robisear_bigbox.sql
Edit
robisear_bigtech.sql
Edit
robisear_bijou.sql
Edit
robisear_bijouhotel.sql
Edit
robisear_bikebrigades.sql
Edit
robisear_blackplatinum.sql
Edit
robisear_blixen.sql
Edit
robisear_bluechipaviation.sql
Edit
robisear_boba.sql
Edit
robisear_bodegajamhuri.sql
Edit
robisear_bodegasyokimau.sql
Edit
robisear_bodegathome.sql
Edit
robisear_bostonhousehold.sql
Edit
robisear_bostonhousehold2.sql
Edit
robisear_botanical.sql
Edit
robisear_boxlight.sql
Edit
robisear_bpackagng.sql
Edit
robisear_braeburnclub.sql
Edit
robisear_braeburnclub1.sql
Edit
robisear_brandgate.sql
Edit
robisear_brickmann.sql
Edit
robisear_bridgebarrel.sql
Edit
robisear_brighton.sql
Edit
robisear_brightonpms.sql
Edit
robisear_brimat.sql
Edit
robisear_brimatholdings.sql
Edit
robisear_brimatholdings1.sql
Edit
robisear_brimix.sql
Edit
robisear_brimix2.sql
Edit
robisear_brimix3.sql
Edit
robisear_brownbox.sql
Edit
robisear_bsikenya.sql
Edit
robisear_btl.sql
Edit
robisear_bulwark.sql
Edit
robisear_bumalogisticsk.sql
Edit
robisear_bumanestlimited.sql
Edit
robisear_buneei.sql
Edit
robisear_burgers.sql
Edit
robisear_burgosstreet.sql
Edit
robisear_buydirect.sql
Edit
robisear_bvblounge.sql
Edit
robisear_c7fashion.sql
Edit
robisear_caffebora.sql
Edit
robisear_cambridge.sql
Edit
robisear_camino.sql
Edit
robisear_campzodiakafrica.sql
Edit
robisear_canaan.sql
Edit
robisear_canvasartshopltd.sql
Edit
robisear_canvasshoes.sql
Edit
robisear_carlizpaints.sql
Edit
robisear_casadimoda.sql
Edit
robisear_ccb.sql
Edit
robisear_ceeboylounge.sql
Edit
robisear_cellpro.sql
Edit
robisear_cellpro1.sql
Edit
robisear_celticlounge.sql
Edit
robisear_centurion.sql
Edit
robisear_chanaanafeeds.sql
Edit
robisear_chanaanagrovet.sql
Edit
robisear_chanaanfeeds.sql
Edit
robisear_chazaqsteel.sql
Edit
robisear_chedusystems.sql
Edit
robisear_cheflink.sql
Edit
robisear_chegowagon.sql
Edit
robisear_chemaliquor.sql
Edit
robisear_cherotebistro.sql
Edit
robisear_chesmapauto.sql
Edit
robisear_chibekellimited.sql
Edit
robisear_chickencenter.sql
Edit
robisear_chipsfix.sql
Edit
robisear_chocolatecity.sql
Edit
robisear_chrisapartment.sql
Edit
robisear_chrivebeauty.sql
Edit
robisear_church.sql
Edit
robisear_citadel.sql
Edit
robisear_citamclaycity.sql
Edit
robisear_claritycounseling.sql
Edit
robisear_cliqour.sql
Edit
robisear_cliquor.sql
Edit
robisear_comfortride.sql
Edit
robisear_concepts.sql
Edit
robisear_conceptsmartdecor.sql
Edit
robisear_copticrestaurant.sql
Edit
robisear_copticrestaurantnigeria.sql
Edit
robisear_coseke.sql
Edit
robisear_countyhotels.sql
Edit
robisear_cpk.sql
Edit
robisear_craftnliquor.sql
Edit
robisear_crystalpearl.sql
Edit
robisear_crystalshea.sql
Edit
robisear_dadasiventures.sql
Edit
robisear_dadir.sql
Edit
robisear_dailycharges.sql
Edit
robisear_daisyflower.sql
Edit
robisear_dallad.sql
Edit
robisear_dallad2.sql
Edit
robisear_dallad3.sql
Edit
robisear_damaline.sql
Edit
robisear_danga.sql
Edit
robisear_danga1.sql
Edit
robisear_darirose.sql
Edit
robisear_davetis.sql
Edit
robisear_dawacom.sql
Edit
robisear_dawapay.sql
Edit
robisear_degrasi.sql
Edit
robisear_delaroza.sql
Edit
robisear_demerger.sql
Edit
robisear_dencity.sql
Edit
robisear_dencity1.sql
Edit
robisear_dencity2.sql
Edit
robisear_dencity3.sql
Edit
robisear_denfatechnologies.sql
Edit
robisear_denkar.sql
Edit
robisear_denohenterprises.sql
Edit
robisear_desleyholdings.sql
Edit
robisear_desmanjo.sql
Edit
robisear_destiny.sql
Edit
robisear_desun.sql
Edit
robisear_detoxhealthspa.sql
Edit
robisear_devach.sql
Edit
robisear_devach2.sql
Edit
robisear_devach3.sql
Edit
robisear_diasporadivas.sql
Edit
robisear_digicafess.sql
Edit
robisear_digitalsuggestionbox.sql
Edit
robisear_dimetrica.sql
Edit
robisear_distinctiongardens.sql
Edit
robisear_distinctiongardens1.sql
Edit
robisear_dlliquorstores.sql
Edit
robisear_dndkenya.sql
Edit
robisear_doladen.sql
Edit
robisear_dollarbakers.sql
Edit
robisear_doubleolounge.sql
Edit
robisear_downtowntavern.sql
Edit
robisear_drn.sql
Edit
robisear_duraroof.sql
Edit
robisear_duraxpaints.sql
Edit
robisear_duwanclassic.sql
Edit
robisear_easysmart.sql
Edit
robisear_ebakaltd.sql
Edit
robisear_ecovest.sql
Edit
robisear_education.sql
Edit
robisear_effectivehardware.sql
Edit
robisear_electratech.sql
Edit
robisear_electrika.sql
Edit
robisear_elightpaths.sql
Edit
robisear_elisapowersystems.sql
Edit
robisear_elishammah.sql
Edit
robisear_elishammah2.sql
Edit
robisear_elishammahgarissa.sql
Edit
robisear_elishammahmatu.sql
Edit
robisear_elishammahmotorbike.sql
Edit
robisear_elishammahtaita.sql
Edit
robisear_eluktomhealthcare.sql
Edit
robisear_empower.sql
Edit
robisear_enacoach.sql
Edit
robisear_enacoachltd.sql
Edit
robisear_enjoyessenceltd.sql
Edit
robisear_enterprise.sql
Edit
robisear_enziapartment.sql
Edit
robisear_epicraftstudios.sql
Edit
robisear_erpuganda.sql
Edit
robisear_essentials.sql
Edit
robisear_evana.sql
Edit
robisear_evehilaryson.sql
Edit
robisear_events.sql
Edit
robisear_everbeautycosmetic.sql
Edit
robisear_evertipstop.sql
Edit
robisear_exxochem.sql
Edit
robisear_fabricske.sql
Edit
robisear_fabys.sql
Edit
robisear_fairwayhotel.sql
Edit
robisear_faithbase.sql
Edit
robisear_fajviyafrica.sql
Edit
robisear_fallingmooninvestments.sql
Edit
robisear_famo.sql
Edit
robisear_farmerspice.sql
Edit
robisear_farmerssolution.sql
Edit
robisear_farmlineagencies.sql
Edit
robisear_feast.sql
Edit
robisear_feedandfodder.sql
Edit
robisear_felizplace.sql
Edit
robisear_fermar.sql
Edit
robisear_fifi.sql
Edit
robisear_fishlands.sql
Edit
robisear_fitpharma.sql
Edit
robisear_flamebites.sql
Edit
robisear_flitoz.sql
Edit
robisear_flitozwines.sql
Edit
robisear_foresightmotors.sql
Edit
robisear_formulatorsdepotltd.sql
Edit
robisear_fortyplace.sql
Edit
robisear_franciscanfamily.sql
Edit
robisear_freemark.sql
Edit
robisear_frepego.sql
Edit
robisear_fretap.sql
Edit
robisear_friendssupermarket.sql
Edit
robisear_friendssupermarket1.sql
Edit
robisear_friendssupermarketmaji.sql
Edit
robisear_gabrielrotich.sql
Edit
robisear_gambella.sql
Edit
robisear_gambella2.sql
Edit
robisear_gambella3.sql
Edit
robisear_gathee.sql
Edit
robisear_gecko.sql
Edit
robisear_gemini.sql
Edit
robisear_generations.sql
Edit
robisear_gesa.sql
Edit
robisear_gigstores.sql
Edit
robisear_gilgameshltd.sql
Edit
robisear_githungurifoods.sql
Edit
robisear_githungurinationaloil.sql
Edit
robisear_glasstechandinteriors.sql
Edit
robisear_glowskin.sql
Edit
robisear_goldenspill.sql
Edit
robisear_goldenstandardscafe.sql
Edit
robisear_goldenstandardscafe1.sql
Edit
robisear_goldrock.sql
Edit
robisear_goldrock1.sql
Edit
robisear_goodlife.sql
Edit
robisear_gosavannah.sql
Edit
robisear_goshen.sql
Edit
robisear_grandcrinumltd1.sql
Edit
robisear_grandcrinumltdwestlands.sql
Edit
robisear_grandpa.sql
Edit
robisear_greatplan.sql
Edit
robisear_greekliquor.sql
Edit
robisear_greensavannah.sql
Edit
robisear_hadaelectrical.sql
Edit
robisear_hadassah.sql
Edit
robisear_hagon.sql
Edit
robisear_hairmasters.sql
Edit
robisear_halfmanlounge.sql
Edit
robisear_harmony.sql
Edit
robisear_hawest.sql
Edit
robisear_hawest2.sql
Edit
robisear_hawest3.sql
Edit
robisear_healsandvibes.sql
Edit
robisear_heavenssquare.sql
Edit
robisear_heywoodenterprises.sql
Edit
robisear_heywoodenterprises1.sql
Edit
robisear_hideaway.sql
Edit
robisear_homeessentialschoko.sql
Edit
robisear_homegoods.sql
Edit
robisear_homeland.sql
Edit
robisear_hoodwines.sql
Edit
robisear_hopeuniforms.sql
Edit
robisear_hopewholesalers.sql
Edit
robisear_hotsandbarrel2.sql
Edit
robisear_huyasaminimart.sql
Edit
robisear_iandbent.sql
Edit
robisear_ibiza.sql
Edit
robisear_idealdishes.sql
Edit
robisear_idlhome.sql
Edit
robisear_infamous.sql
Edit
robisear_infill.sql
Edit
robisear_infinitylounge.sql
Edit
robisear_instantdelicacy.sql
Edit
robisear_instinctbar.sql
Edit
robisear_interglobal.sql
Edit
robisear_interlink.sql
Edit
robisear_internationalhc.sql
Edit
robisear_ishmar.sql
Edit
robisear_isoko.sql
Edit
robisear_italycor.sql
Edit
robisear_itecsystemsltd.sql
Edit
robisear_itushbusinesssolutions.sql
Edit
robisear_jacbee.sql
Edit
robisear_jadame.sql
Edit
robisear_jailo.sql
Edit
robisear_jaimari.sql
Edit
robisear_jalasfeedback.sql
Edit
robisear_jamagwartraders.sql
Edit
robisear_jambotech.sql
Edit
robisear_jamwa.sql
Edit
robisear_jamwa1.sql
Edit
robisear_javilla.sql
Edit
robisear_javilla2.sql
Edit
robisear_javilla3.sql
Edit
robisear_jaybright.sql
Edit
robisear_jbfries.sql
Edit
robisear_jbfriesnrb.sql
Edit
robisear_jebmic.sql
Edit
robisear_jengaleo.sql
Edit
robisear_jewelcomputers.sql
Edit
robisear_jijazetavern.sql
Edit
robisear_jimlandagency.sql
Edit
robisear_jimmon.sql
Edit
robisear_jobportal.sql
Edit
robisear_joek.sql
Edit
robisear_johfay.sql
Edit
robisear_johkim.sql
Edit
robisear_jolimillers.sql
Edit
robisear_josmatt.sql
Edit
robisear_joyevech.sql
Edit
robisear_jubileefarmers.sql
Edit
robisear_jue.sql
Edit
robisear_junkybins.sql
Edit
robisear_jymarks.sql
Edit
robisear_kabati.sql
Edit
robisear_kagango.sql
Edit
robisear_kahawaexpresso.sql
Edit
robisear_kairetu.sql
Edit
robisear_kalabash.sql
Edit
robisear_kamson.sql
Edit
robisear_kamuga2.sql
Edit
robisear_kamunga.sql
Edit
robisear_kaperikwekwe.sql
Edit
robisear_kapsam.sql
Edit
robisear_karangi.sql
Edit
robisear_karangi1.sql
Edit
robisear_kasavanna.sql
Edit
robisear_katado.sql
Edit
robisear_kathiani.sql
Edit
robisear_katikatilounge.sql
Edit
robisear_kayolefinest.sql
Edit
robisear_keekys.sql
Edit
robisear_kenanthogoto.sql
Edit
robisear_kentwood.sql
Edit
robisear_kenworks.sql
Edit
robisear_kenyatoner.sql
Edit
robisear_kerutender.sql
Edit
robisear_kevomotors.sql
Edit
robisear_kiamariverresort.sql
Edit
robisear_kicas.sql
Edit
robisear_kidamienterprises.sql
Edit
robisear_kiddyzojunior.sql
Edit
robisear_kijabesacco.sql
Edit
robisear_kijijimojito.sql
Edit
robisear_kikingihub.sql
Edit
robisear_kilantechnologies.sql
Edit
robisear_kilimanibreeze.sql
Edit
robisear_kinca57.sql
Edit
robisear_kingpin.sql
Edit
robisear_kiraimportexport.sql
Edit
robisear_kise.sql
Edit
robisear_kiufresh.sql
Edit
robisear_kjwines.sql
Edit
robisear_kjwinesbumala.sql
Edit
robisear_kliqourline.sql
Edit
robisear_kliqourline2.sql
Edit
robisear_kliqourline3.sql
Edit
robisear_kmamt.sql
Edit
robisear_kombiro.sql
Edit
robisear_komesha.sql
Edit
robisear_komesha2.sql
Edit
robisear_konamart.sql
Edit
robisear_kraftboba.sql
Edit
robisear_kttc.sql
Edit
robisear_kuivaliquorstores.sql
Edit
robisear_kyumbigarden.sql
Edit
robisear_laanpat.sql
Edit
robisear_laareshell.sql
Edit
robisear_lafattoria.sql
Edit
robisear_laibunimart.sql
Edit
robisear_laikipiaeco.sql
Edit
robisear_lakirashades.sql
Edit
robisear_lamatech.sql
Edit
robisear_lamatechkenyalimited.sql
Edit
robisear_lambada.sql
Edit
robisear_lambadas.sql
Edit
robisear_lanxafrica.sql
Edit
robisear_latenight.sql
Edit
robisear_latia.sql
Edit
robisear_laundryhub.sql
Edit
robisear_leave.sql
Edit
robisear_leboo.sql
Edit
robisear_legitimacyspares.sql
Edit
robisear_lerustique.sql
Edit
robisear_lesarra.sql
Edit
robisear_leviticus.sql
Edit
robisear_libanautospareslimited.sql
Edit
robisear_limah.sql
Edit
robisear_linaden.sql
Edit
robisear_linchubstore.sql
Edit
robisear_linknumedical.sql
Edit
robisear_linksgeliwa.sql
Edit
robisear_liquidmania.sql
Edit
robisear_liquorlibrary.sql
Edit
robisear_liquortap.sql
Edit
robisear_litudian.sql
Edit
robisear_liveinproperties.sql
Edit
robisear_livingwaterbcf.sql
Edit
robisear_longliqi.sql
Edit
robisear_longrich.sql
Edit
robisear_longrich1.sql
Edit
robisear_lotus.sql
Edit
robisear_louizesimbahotel.sql
Edit
robisear_louizesimbahotel1.sql
Edit
robisear_louizesimbalounge.sql
Edit
robisear_lti.sql
Edit
robisear_ltigroup.sql
Edit
robisear_lukeshotel.sql
Edit
robisear_lukimpharmaceuticals.sql
Edit
robisear_luminous.sql
Edit
robisear_lunjos.sql
Edit
robisear_luxebistro.sql
Edit
robisear_luxurysuites.sql
Edit
robisear_lydiacollection.sql
Edit
robisear_lyon.sql
Edit
robisear_mafads.sql
Edit
robisear_magman.sql
Edit
robisear_mailer.sql
Edit
robisear_mainerp.sql
Edit
robisear_mainerp1.sql
Edit
robisear_mainerpuganda.sql
Edit
robisear_makinze.sql
Edit
robisear_malibulounge.sql
Edit
robisear_malsonmotors.sql
Edit
robisear_maqaarow.sql
Edit
robisear_maqaarow2.sql
Edit
robisear_maqaarow3.sql
Edit
robisear_maraorganics.sql
Edit
robisear_margo.sql
Edit
robisear_marickholdings.sql
Edit
robisear_marksonic.sql
Edit
robisear_marsdiner.sql
Edit
robisear_marvel.sql
Edit
robisear_marvelfeeds.sql
Edit
robisear_masaicafe.sql
Edit
robisear_masid.sql
Edit
robisear_masterbakers.sql
Edit
robisear_matanaha.sql
Edit
robisear_mavunohub.sql
Edit
robisear_maxy.sql
Edit
robisear_maxy1.sql
Edit
robisear_mbotebeers.sql
Edit
robisear_melagrovet.sql
Edit
robisear_memphisresort.sql
Edit
robisear_metalogistics.sql
Edit
robisear_metropolsecurity.sql
Edit
robisear_mfangano.sql
Edit
robisear_mijimiji.sql
Edit
robisear_mijimiji2.sql
Edit
robisear_mijimiji3.sql
Edit
robisear_milans.sql
Edit
robisear_mingleslounge.sql
Edit
robisear_mirage.sql
Edit
robisear_miuguconclave.sql
Edit
robisear_mizpha.sql
Edit
robisear_mkulimahodariagrovet.sql
Edit
robisear_mkuru.sql
Edit
robisear_mliquor.sql
Edit
robisear_mobicare.sql
Edit
robisear_mochabistro.sql
Edit
robisear_modernfurniture.sql
Edit
robisear_moistureplus.sql
Edit
robisear_mollys.sql
Edit
robisear_mollys1.sql
Edit
robisear_mombasacomputers.sql
Edit
robisear_mommieschoice.sql
Edit
robisear_moodkitchens.sql
Edit
robisear_moonstargeneralagencies.sql
Edit
robisear_moselyminisupermarket.sql
Edit
robisear_msczoneltd.sql
Edit
robisear_mtaanichemist.sql
Edit
robisear_mugisof.sql
Edit
robisear_mugisoft.sql
Edit
robisear_muhsintailor.sql
Edit
robisear_mukielect.sql
Edit
robisear_mukscreation.sql
Edit
robisear_mumbuni.sql
Edit
robisear_mumsgarden.sql
Edit
robisear_muncheezbstr.sql
Edit
robisear_mursons.sql
Edit
robisear_mustafa.sql
Edit
robisear_muturis.sql
Edit
robisear_muyia.sql
Edit
robisear_mwaketa.sql
Edit
robisear_mybulksms.sql
Edit
robisear_mydallas.sql
Edit
robisear_myerp.sql
Edit
robisear_mypos.sql
Edit
robisear_nafuu.sql
Edit
robisear_nairobiclearing.sql
Edit
robisear_nanarestaurants.sql
Edit
robisear_napuuventures.robisearch.com.sql
Edit
robisear_napuuventures.sql
Edit
robisear_natives.sql
Edit
robisear_natives2.sql
Edit
robisear_natives3.sql
Edit
robisear_naturalchill.sql
Edit
robisear_naturalglam.sql
Edit
robisear_ndumia.sql
Edit
robisear_nebacholdings.sql
Edit
robisear_neighbourhoodnook.sql
Edit
robisear_nemwa.sql
Edit
robisear_neokenya.sql
Edit
robisear_netbyteapps.sql
Edit
robisear_new.sql
Edit
robisear_newlamuhaven.sql
Edit
robisear_newpickandpay.sql
Edit
robisear_newrobi.sql
Edit
robisear_nextlevelhardware.sql
Edit
robisear_ngatha.sql
Edit
robisear_nia.sql
Edit
robisear_nithibakers.sql
Edit
robisear_njd.sql
Edit
robisear_njorobeer.sql
Edit
robisear_njoshi.sql
Edit
robisear_nomadcycle.sql
Edit
robisear_noorelectronics.sql
Edit
robisear_nordicparts.sql
Edit
robisear_nordicparts2.sql
Edit
robisear_nordicparts3.sql
Edit
robisear_nordlys.sql
Edit
robisear_norkun.sql
Edit
robisear_nunos.sql
Edit
robisear_nuria.sql
Edit
robisear_nyamiraheights.sql
Edit
robisear_nyamiraheightsspa.sql
Edit
robisear_nysishotel.sql
Edit
robisear_nzimuh.sql
Edit
robisear_nzumbipms.sql
Edit
robisear_oasis.sql
Edit
robisear_oasispremiumfloor.sql
Edit
robisear_obicarautospares.sql
Edit
robisear_obsha.sql
Edit
robisear_obuntu.sql
Edit
robisear_olivehotels.sql
Edit
robisear_omeron.sql
Edit
robisear_onestop.sql
Edit
robisear_online1shop.sql
Edit
robisear_online2shop.sql
Edit
robisear_onlinecompanylimited.sql
Edit
robisear_onlinemobile.sql
Edit
robisear_onlinemobileeastleigh.sql
Edit
robisear_optispeed.sql
Edit
robisear_orangeriver.sql
Edit
robisear_orchards.sql
Edit
robisear_orchardscomm.sql
Edit
robisear_orchardscommltd.sql
Edit
robisear_organella.sql
Edit
robisear_osonayarns.sql
Edit
robisear_osupukoresort.sql
Edit
robisear_otadvocates.sql
Edit
robisear_ouad.sql
Edit
robisear_outsprings.sql
Edit
robisear_outsprings2.sql
Edit
robisear_paintdepo.sql
Edit
robisear_pamojagardens.sql
Edit
robisear_pareetalectrical.sql
Edit
robisear_pareetalectricals.sql
Edit
robisear_parisi.sql
Edit
robisear_parisi2.sql
Edit
robisear_parisi3.sql
Edit
robisear_paritahardware.sql
Edit
robisear_paritahardware2.sql
Edit
robisear_paritahardware3.sql
Edit
robisear_parkside.sql
Edit
robisear_parkside1.sql
Edit
robisear_parminihardware.sql
Edit
robisear_pastoralvet.sql
Edit
robisear_patanyumba.sql
Edit
robisear_patrica.sql
Edit
robisear_pauwil.sql
Edit
robisear_peacemeats.sql
Edit
robisear_pecyuniforms.sql
Edit
robisear_pelicanmetal.sql
Edit
robisear_pendo.sql
Edit
robisear_pendo1.sql
Edit
robisear_pensortium.sql
Edit
robisear_perfectpackaging.sql
Edit
robisear_petrooilkenyaltd.sql
Edit
robisear_pharmaallied.sql
Edit
robisear_phasedesign.sql
Edit
robisear_philbackers.sql
Edit
robisear_phoeniciahotel.sql
Edit
robisear_pilanobookshop.sql
Edit
robisear_pillcare.sql
Edit
robisear_piratesbeachmeatcenter.sql
Edit
robisear_piratesbeachpark.sql
Edit
robisear_pizarrarestaurant.sql
Edit
robisear_pjay.sql
Edit
robisear_placidoinvestment.sql
Edit
robisear_planet.sql
Edit
robisear_platinum.sql
Edit
robisear_platinum2.sql
Edit
robisear_pmcsupermarket.sql
Edit
robisear_poj.sql
Edit
robisear_polished.sql
Edit
robisear_politics.sql
Edit
robisear_popote.sql
Edit
robisear_porche.sql
Edit
robisear_porkysbarbecue.sql
Edit
robisear_pos.sql
Edit
robisear_poshplace.sql
Edit
robisear_powermart.sql
Edit
robisear_pramukh.sql
Edit
robisear_pramukhinvestment.sql
Edit
robisear_premier.sql
Edit
robisear_premierbeauty.sql
Edit
robisear_prestonhardware.sql
Edit
robisear_primevoy.sql
Edit
robisear_promze.sql
Edit
robisear_pronala.sql
Edit
robisear_propertwelveliquor.sql
Edit
robisear_protouch.sql
Edit
robisear_provenance.sql
Edit
robisear_pvtech.sql
Edit
robisear_qcc.sql
Edit
robisear_qiues.sql
Edit
robisear_quench.sql
Edit
robisear_quepasa.sql
Edit
robisear_quepasa1.sql
Edit
robisear_quillslounge.sql
Edit
robisear_quiver.sql
Edit
robisear_rafiki.sql
Edit
robisear_rafikitriple4.sql
Edit
robisear_raphymart.sql
Edit
robisear_rawhew.sql
Edit
robisear_rawhew1.sql
Edit
robisear_redbrickdairyandfood.sql
Edit
robisear_redc.sql
Edit
robisear_redemtar.sql
Edit
robisear_renbridge.sql
Edit
robisear_resellers.sql
Edit
robisear_restopark.sql
Edit
robisear_revaplaceresort.sql
Edit
robisear_riaraminimart.sql
Edit
robisear_ricamosupplies.sql
Edit
robisear_richblend.sql
Edit
robisear_richman.sql
Edit
robisear_richman2.sql
Edit
robisear_richman3.sql
Edit
robisear_rievshop.sql
Edit
robisear_rimatholdings1.sql
Edit
robisear_rira.sql
Edit
robisear_rivermart.sql
Edit
robisear_rivervale.sql
Edit
robisear_riziki.sql
Edit
robisear_robbiefarm.sql
Edit
robisear_robierp.sql
Edit
robisear_robihotel.sql
Edit
robisear_robimalimali.sql
Edit
robisear_robipms.sql
Edit
robisear_robiposhotel.sql
Edit
robisear_robisear_elishammah.sql
Edit
robisear_robisearch.sql
Edit
robisear_robisearchuganda.sql
Edit
robisear_rodi.sql
Edit
robisear_rohima.sql
Edit
robisear_rohima2.sql
Edit
robisear_rohosingo.sql
Edit
robisear_rokeen.sql
Edit
robisear_ronleb.sql
Edit
robisear_ronleb1.sql
Edit
robisear_ronlebtech.sql
Edit
robisear_rooftopbistro.sql
Edit
robisear_root.sql
Edit
robisear_rootscosmestics.sql
Edit
robisear_rootzcosmetics.sql
Edit
robisear_rootzcosmetics2.sql
Edit
robisear_rootzcosmetics3.sql
Edit
robisear_rophinefieldschools.sql
Edit
robisear_rosetex.sql
Edit
robisear_rositainvestment.sql
Edit
robisear_royal.sql
Edit
robisear_royalelectronics.sql
Edit
robisear_royalhardware.sql
Edit
robisear_royalmeals.sql
Edit
robisear_rubicon.sql
Edit
robisear_sabby.sql
Edit
robisear_sabizpizza.sql
Edit
robisear_sacco.sql
Edit
robisear_safetymax.sql
Edit
robisear_sahishapes.sql
Edit
robisear_sales.sql
Edit
robisear_samareeb.sql
Edit
robisear_samoo.sql
Edit
robisear_samtechgroup.sql
Edit
robisear_sanch.sql
Edit
robisear_sarmerk.sql
Edit
robisear_saroz.sql
Edit
robisear_saruk.sql
Edit
robisear_saruk1.sql
Edit
robisear_saruk2.sql
Edit
robisear_sasabone.sql
Edit
robisear_sausen.sql
Edit
robisear_savannah.sql
Edit
robisear_savour.sql
Edit
robisear_saxandviolins.sql
Edit
robisear_sayariagriscience.sql
Edit
robisear_sayaricrafts.sql
Edit
robisear_sbhotel.sql
Edit
robisear_scentskenyaltd.sql
Edit
robisear_schoolmall.sql
Edit
robisear_scodra.sql
Edit
robisear_seasonlogistics.sql
Edit
robisear_seasons.sql
Edit
robisear_selcafe.sql
Edit
robisear_selella.sql
Edit
robisear_serenityforthotel.sql
Edit
robisear_shack.sql
Edit
robisear_shafan.sql
Edit
robisear_shakaz.sql
Edit
robisear_shakesspeare.sql
Edit
robisear_sharjah.sql
Edit
robisear_sherattonbeachvillagio.sql
Edit
robisear_sherattonregency.sql
Edit
robisear_sherattonregencymombasa.sql
Edit
robisear_sherryliquorbar.sql
Edit
robisear_shopearl.sql
Edit
robisear_shopearl2.sql
Edit
robisear_shopwise.sql
Edit
robisear_shotsandbarrel.sql
Edit
robisear_shotsandbarrel1.sql
Edit
robisear_shotsandbarrel2.sql
Edit
robisear_shreeji.sql
Edit
robisear_shreejimerultd.sql
Edit
robisear_shujaa.sql
Edit
robisear_shujaawangu.sql
Edit
robisear_shukri.sql
Edit
robisear_sierracaves.sql
Edit
robisear_silver.sql
Edit
robisear_silverline.sql
Edit
robisear_silverviewhardware.sql
Edit
robisear_sipamaquaticsltd.sql
Edit
robisear_siwamu.sql
Edit
robisear_skysailmabati.sql
Edit
robisear_skyveltd.sql
Edit
robisear_snl.sql
Edit
robisear_snowdessertea.sql
Edit
robisear_sokima.sql
Edit
robisear_sokofreshpoint.sql
Edit
robisear_sokojumla.sql
Edit
robisear_somcityhealth.sql
Edit
robisear_spiceland.sql
Edit
robisear_spicelands.sql
Edit
robisear_spikessanford.sql
Edit
robisear_spotpartystop.sql
Edit
robisear_springs.sql
Edit
robisear_starfox.sql
Edit
robisear_starsngarters.sql
Edit
robisear_stedan.sql
Edit
robisear_sterling.sql
Edit
robisear_stfrancisofassisi.sql
Edit
robisear_stjohn.sql
Edit
robisear_stopajali.sql
Edit
robisear_straitsolar.sql
Edit
robisear_sts.sql
Edit
robisear_stylesandfinishesltd.sql
Edit
robisear_sugarspicebeauty.sql
Edit
robisear_suki.sql
Edit
robisear_sukimart.sql
Edit
robisear_sultanmabi.sql
Edit
robisear_summeroasis.sql
Edit
robisear_summeroasis1.sql
Edit
robisear_summersprings.sql
Edit
robisear_summersprings2.sql
Edit
robisear_sunati.sql
Edit
robisear_sunbreeze.sql
Edit
robisear_sunshine.sql
Edit
robisear_sunshinemobilespares.sql
Edit
robisear_sunuk.sql
Edit
robisear_superb.sql
Edit
robisear_superiorhardware.sql
Edit
robisear_supermarket.sql
Edit
robisear_superp.sql
Edit
robisear_supreme.sql
Edit
robisear_suraj.sql
Edit
robisear_sweeftfleet.sql
Edit
robisear_swisderm.sql
Edit
robisear_swissgrade.sql
Edit
robisear_syano.sql
Edit
robisear_syanotanau.sql
Edit
robisear_symphonylounge.sql
Edit
robisear_synergydealsltd.sql
Edit
robisear_tabarukfoods.sql
Edit
robisear_tamasha.sql
Edit
robisear_tanzaken.sql
Edit
robisear_tawas.sql
Edit
robisear_tayariluxury.sql
Edit
robisear_tazamatt.sql
Edit
robisear_techsquire.sql
Edit
robisear_techsquires.sql
Edit
robisear_techwizardcctvltd.sql
Edit
robisear_tekidi.sql
Edit
robisear_tembuzicultural.sql
Edit
robisear_temic.sql
Edit
robisear_tessara.sql
Edit
robisear_tessymso.sql
Edit
robisear_test.sql
Edit
robisear_test2.sql
Edit
robisear_texas.sql
Edit
robisear_tgm.sql
Edit
robisear_thalloventures.sql
Edit
robisear_thecilantrokitchens.sql
Edit
robisear_thediner.sql
Edit
robisear_theheadquartersportbar.sql
Edit
robisear_theheadquartersportbar2.sql
Edit
robisear_thehubfoodcourt.sql
Edit
robisear_theindulge.sql
Edit
robisear_thejunctionlounge.sql
Edit
robisear_thelab.sql
Edit
robisear_themorningperkcafe.sql
Edit
robisear_theoffice.sql
Edit
robisear_thirsty.sql
Edit
robisear_timboni.sql
Edit
robisear_timiza.sql
Edit
robisear_timizamachakos.sql
Edit
robisear_timushamba.sql
Edit
robisear_tir.sql
Edit
robisear_toasts.sql
Edit
robisear_tolaenergies.sql
Edit
robisear_toplevel.sql
Edit
robisear_toplinesurgicals.sql
Edit
robisear_topmark.sql
Edit
robisear_toshadawa.sql
Edit
robisear_toshenterprises.sql
Edit
robisear_transfordchemist.sql
Edit
robisear_travellamembers.sql
Edit
robisear_trax.sql
Edit
robisear_tripeakbrands.sql
Edit
robisear_triplec.sql
Edit
robisear_tripointpizzeria.sql
Edit
robisear_trivetachemist.sql
Edit
robisear_trivetandundoripos.sql
Edit
robisear_tronlink.sql
Edit
robisear_trueblueliqour.sql
Edit
robisear_truvalue.sql
Edit
robisear_truvalues.sql
Edit
robisear_tsukimino.sql
Edit
robisear_tucasa.sql
Edit
robisear_tucasa1.sql
Edit
robisear_tulimepamojaagrovet.sql
Edit
robisear_tundaville.sql
Edit
robisear_tunubeverage.sql
Edit
robisear_turpean.sql
Edit
robisear_tuutis.sql
Edit
robisear_twiga.sql
Edit
robisear_twinstepsltd.sql
Edit
robisear_typsy.sql
Edit
robisear_ujminimart.sql
Edit
robisear_ulalo.sql
Edit
robisear_uncurbedbeauty.sql
Edit
robisear_undertheswahilitree.sql
Edit
robisear_union.sql
Edit
robisear_upriseminisupa.sql
Edit
robisear_upsaleskeltd.sql
Edit
robisear_uptown.sql
Edit
robisear_uptown2.sql
Edit
robisear_uptownkibali.sql
Edit
robisear_urwani.sql
Edit
robisear_utange.sql
Edit
robisear_vaitamutheisupplies.sql
Edit
robisear_veewmart.sql
Edit
robisear_vezmartexpress.sql
Edit
robisear_viewersparkhotel.sql
Edit
robisear_viewjoint.sql
Edit
robisear_vnd.sql
Edit
robisear_walenisirestaurant.sql
Edit
robisear_walenisirestaurantmain.sql
Edit
robisear_wama.sql
Edit
robisear_wamotech.sql
Edit
robisear_wamweaholdings.sql
Edit
robisear_waqf.sql
Edit
robisear_wasafiarcade.sql
Edit
robisear_watergaspoint.sql
Edit
robisear_waterkiosk.sql
Edit
robisear_waterworld.sql
Edit
robisear_weaverbird.sql
Edit
robisear_westerncosmetics.sql
Edit
robisear_westlightlounge.sql
Edit
robisear_westlitelounge.sql
Edit
robisear_westmill.sql
Edit
robisear_weststands.sql
Edit
robisear_whitehouse.sql
Edit
robisear_whitekitchen.sql
Edit
robisear_wifimatt.sql
Edit
robisear_winter.sql
Edit
robisear_wiresmore.sql
Edit
robisear_wistantechnology.sql
Edit
robisear_wm.sql
Edit
robisear_woodlandgardens.sql
Edit
robisear_woodstock.sql
Edit
robisear_woodstock1.sql
Edit
robisear_wrappedfoods.sql
Edit
robisear_write.sql
Edit
robisear_xtranet.sql
Edit
robisear_ycs.sql
Edit
robisear_zakacapital.sql
Edit
robisear_zgt.sql
Edit
robisear_zishaan.sql
Edit
robisear_zmf.sql
Edit
robisear_zurikarttraders.sql
Edit
sys.sql
Edit