/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_freemark -- ------------------------------------------------------ -- 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','1','Asset'),(2,'Liability','BS','1','1','Liability'),(3,'Equity','BS','1','1','Equity'),(4,'Income','PL','1','1','Income'),(5,'Expense','PL','1','1','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 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 */; /*!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 (32,'admin','admin123','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 `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(50) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `img_id` varchar(50) NOT NULL, `userid` text NOT NULL, `date` varchar(50) DEFAULT NULL, `documentname` text DEFAULT 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 `alldocuments` -- LOCK TABLES `alldocuments` WRITE; /*!40000 ALTER TABLE `alldocuments` DISABLE KEYS */; /*!40000 ALTER TABLE `alldocuments` 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 AUTO_INCREMENT, `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, 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 `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` text 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,'','77000','','2018-10-22 21:08:59','James','1012','1','1','2018-10-22 21:09:12','BANK-11540231739'),(2,'','85000','','2018-10-24 06:44:53','all','1012','1','1','2018-10-24 06:45:01','BANK-11540352693'),(3,'','90000','sales','2018-10-25 09:11:09','james','1011','1','1','2018-10-25 09:11:28','BANK-11540447869'),(4,'','70000','daily sales','2018-10-27 12:27:12','robert','1012','1','1','2018-10-27 12:27:29','BANK-11540632432'); /*!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 `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, 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','','2018-11-17 16:34:19','active','1','','1'); /*!40000 ALTER TABLE `branch` 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, 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 `callcenter` -- LOCK TABLES `callcenter` WRITE; /*!40000 ALTER TABLE `callcenter` DISABLE KEYS */; INSERT INTO `callcenter` VALUES (1,'CALL','ok','2018-11-19','solved','1','','1','Sales','',0,'','robert','tom','2018-11-19','MH41VVFDC9','tv'); /*!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 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 */; /*!40000 ALTER TABLE `category` 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, `name` 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, 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,'2018-11-09 17:52:31','','23234455253','30','n/a','170','1','1',0),(2,'2018-11-09 17:52:48','','23234455253','170','n/a','0','1','1',0); /*!40000 ALTER TABLE `collection` 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) NOT NULL, `type` varchar(30) NOT NULL, `messageid` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `updateddate` varchar(30) 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 `complain` -- LOCK TABLES `complain` WRITE; /*!40000 ALTER TABLE `complain` DISABLE KEYS */; INSERT INTO `complain` VALUES (1,'4666','ok','2018-11-19','New','1','','1','Message','All',0,''); /*!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 AUTO_INCREMENT, `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 AUTO_INCREMENT=7 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 */; INSERT INTO `complaindata` VALUES (1,'WELDONE','2018-10-18 17:41:31','2','1','newstock',''),(2,'DONE','2018-10-18 17:41:39','1','1','newstock',''),(3,'Test1','2018-10-19 08:21:27','2','1','newstock','1'),(4,'Welcome','2018-10-19 08:22:04','2','1','newstock','1'),(5,'Karibu sana','2018-10-19 08:22:31','1','1','newstock','1'),(6,'reply','2018-10-19 09:03:25','3','1','newstock','1'); /*!40000 ALTER TABLE `complaindata` 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, 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 `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'),(2,'URO','','','active','','','1'),(3,'USD','','','active','','','1'); /*!40000 ALTER TABLE `currency` 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, 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 `dailycollections` -- LOCK TABLES `dailycollections` WRITE; /*!40000 ALTER TABLE `dailycollections` DISABLE KEYS */; INSERT INTO `dailycollections` VALUES (1,'','all','1','2018-12-06 04:34:12pm','','1','','robert','','','100','0','0','0','0','0','ROBERT','400','0','','2018-12-06 16:33:15','254718667391','','active',200.00,0.00,300.00,'',1,200.00,40.00,50.00,500.00),(2,'','all','1','2018-12-06 04:34:12pm','','1','','robert','','','100','0','0','0','0','0','ROBERT','400','0','','2018-12-06 16:33:15','254718667391','','active',200.00,0.00,300.00,'',1,200.00,40.00,50.00,500.00),(3,'3344555','n/a','1','2018-12-06 04:36:46pm','','1','','mutai','','','200','0','0','0','0','0','dennis','230','0','','2018-12-06 16:34:13','0701138305','','active',5000.00,0.00,456.00,'',1,20000.00,23000.00,5000.00,4000.00); /*!40000 ALTER TABLE `dailycollections` 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(50) 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, 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` varchar(100) NOT NULL, `todate` varchar(100) 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` varchar(50) 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 AUTO_INCREMENT=7 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 */; INSERT INTO `deals` VALUES (1,'xxx','mrs','254718667391','Tv advert','','JOHN','500','2018-11-02','2018-11-19','High','300','new','active','ok','1','2018-11-19 06:07:05','1','all','2',1),(2,'xxx','mrs','254718667391','Billboard advert','','JOHN','6','2018-11-19','2018-11-19','Medium','0','attended','active','test','1','2018-11-19 12:43:46','1','ok','2',1),(3,'KU','mrs','254718667391','Tv advert','','JOHN','44','2018-11-19','2018-11-19','High','4','pending','active','ok','1','2018-11-19 12:51:03','1','all','2',1),(4,'jkuat','ok','254718667391','Billboard advert','','JOHN','0','2018-11-19','2018-11-19','High','0','old','active','tes','1','2018-11-19 17:12:08','1','ok','2',1),(5,'KU','BULK SMS SOFTWARE','0701138305','Billboard advert','Billboard advert','JOHN','5','2018-11-29','2018-11-29','Low','4','attended','active','all','1','2018-11-29 06:24:58','1','ok.sawa','1',1),(6,'jkuat','DD','254718667391','Banner advert','','JOHN','9','2018-11-29','2018-11-29','High','7','pending','active','all','1','2018-11-29 06:22:44','1','ok','1',1); /*!40000 ALTER TABLE `deals` 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` 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, `description` text NOT NULL, `branch` varchar(30) NOT NULL, `supplier` varchar(30) NOT NULL, `type` varchar(30) NOT NULL, `refno` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=31 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,'4000','11543212298','2018-11-26 09:05:15',0.00,8200.00,'','1','1','Supplier Bill','1','','',''),(2,'1030','11543212298','2018-11-26 09:05:15',8200.00,0.00,'','1','1','Supplier Bill','1','','',''),(3,'4000','11543212316','2018-11-26 09:05:25',0.00,7200.00,'','1','1','Supplier Bill','1','','',''),(4,'1030','11543212316','2018-11-26 09:05:25',7200.00,0.00,'','1','1','Supplier Bill','1','','',''),(5,'4000','11543212326','2018-11-26 09:05:37',0.00,2000.00,'','1','1','Supplier Bill','1','','',''),(6,'1030','11543212326','2018-11-26 09:05:37',2000.00,0.00,'','1','1','Supplier Bill','1','','',''),(7,'4000','11543212337','2018-11-26 09:05:47',0.00,1000.00,'','1','1','Supplier Bill','1','','',''),(8,'1030','11543212337','2018-11-26 09:05:47',1000.00,0.00,'','1','1','Supplier Bill','1','','',''),(9,'4000','11543212352','2018-11-26 09:06:05',0.00,2000.00,'','1','1','Supplier Bill','1','','',''),(10,'1030','11543212352','2018-11-26 09:06:05',2000.00,0.00,'','1','1','Supplier Bill','1','','',''),(11,'4000','11543212619','2018-11-26 09:10:35',0.00,40.00,'','1','1','Supplier Bill','1','','',''),(12,'1030','11543212619','2018-11-26 09:10:35',40.00,0.00,'','1','1','Supplier Bill','1','','',''),(13,'4000','11544076117','2018-12-06 09:02:07',0.00,500.00,'','1','1','Supplier Bill','1','','',''),(14,'1030','11544076117','2018-12-06 09:02:07',500.00,0.00,'','1','1','Supplier Bill','1','','',''),(15,'4000','11544076127','2018-12-06 09:02:23',0.00,600.00,'','1','1','Supplier Bill','1','','',''),(16,'1030','11544076127','2018-12-06 09:02:23',600.00,0.00,'','1','1','Supplier Bill','1','','',''),(17,'4000','11544091527','2018-12-06 13:19:50',0.00,270.00,'','1','1','Supplier Bill','1','','',''),(18,'1030','11544091527','2018-12-06 13:19:50',270.00,0.00,'','1','1','Supplier Bill','1','','',''),(19,'4000','11544091591','2018-12-06 13:21:40',0.00,950.00,'','1','1','Supplier Bill','1','','',''),(20,'1030','11544091591','2018-12-06 13:21:40',950.00,0.00,'','1','1','Supplier Bill','1','','',''),(21,'4000','11544091999','2018-12-06 13:27:01',0.00,2100.00,'','1','1','Supplier Bill','1','','',''),(22,'1030','11544091999','2018-12-06 13:27:01',2100.00,0.00,'','1','1','Supplier Bill','1','','',''),(23,'4000','11544366729','2018-12-09 17:45:54',0.00,220.00,'','1','1','Supplier Bill','1','','',''),(24,'1030','11544366729','2018-12-09 17:45:54',220.00,0.00,'','1','1','Supplier Bill','1','','',''),(25,'4000','11544366849','2018-12-09 17:47:32',0.00,500.00,'','1','1','Supplier Bill','1','','',''),(26,'1030','11544366849','2018-12-09 17:47:32',500.00,0.00,'','1','1','Supplier Bill','1','','',''),(27,'4000','11544366861','2018-12-09 17:47:45',0.00,100.00,'','1','1','Supplier Bill','1','','',''),(28,'1030','11544366861','2018-12-09 17:47:45',100.00,0.00,'','1','1','Supplier Bill','1','','',''),(29,'4000','11544366872','2018-12-09 17:47:56',0.00,50.00,'','1','1','Supplier Bill','1','','',''),(30,'1030','11544366872','2018-12-09 17:47:56',50.00,0.00,'','1','1','Supplier Bill','1','','',''); /*!40000 ALTER TABLE `debitcredit` 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 AUTO_INCREMENT, `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 AUTO_INCREMENT=279 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 */; INSERT INTO `district` VALUES (1,'1','1','Kilindini','Kilindini','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(2,'2','1','Mombasa','Mombasa','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(3,'3','2','Kinango','Kinango','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(4,'4','2','Lungalunga','Lungalunga','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(5,'5','2','Kwale','Kwale','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(6,'6','2','Msabweni','Msabweni','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(7,'7','3','Kaloleni','Kaloleni','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(8,'8','3','Kilifi','Kilifi','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(9,'9','3','Malindi','Malindi','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(10,'10','4','Tana Delta','Tana Delta','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(11,'11','4','Tana River','Tana River','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(12,'12','4','Tana South','Tana South','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(13,'13','5','Lamu East','Lamu East','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(14,'14','5','Lamu West','Lamu West','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(15,'15','6','Taita','Taita','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(16,'16','6','Taveta','Taveta','0000-00-00 00:00:00','0000-00-00 00:00:00',2),(17,'17','7','Fafi','Fafi','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(18,'18','7','Garissa','Garissa','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(19,'19','7','Ijara','Ijara','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(20,'20','7','Dadaab','Dadaab','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(21,'21','7','Hulugho','Hulugho','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(22,'22','7','Lagdera','Lagdera','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(23,'23','8','Wajir East','Wajir East','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(24,'24','8','Wajir North','Wajir North','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(25,'25','8','Waijir South','Waijir South','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(26,'26','8','Eldas','Eldas','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(27,'27','8','Tarbaj','Tarbaj','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(28,'28','8','Wajir West','Wajir West','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(29,'29','9','Mandera central','Mandera central','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(30,'30','9','Mandera East','Mandera East','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(31,'31','9','Mandera North','Mandera North','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(32,'32','9','Mandera West','Mandera West','0000-00-00 00:00:00','0000-00-00 00:00:00',5),(33,'33','10','Marsabit central','Marsabit central','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(34,'34','10','Marsabit North','Marsabit North','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(35,'35','10','Marsabit south','Marsabit south','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(36,'36','10','Moyale','Moyale','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(37,'37','10','Sololo','Sololo','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(38,'38','10','Loiyangalani','Loiyangalani','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(39,'39','10','North Horr','North Horr','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(40,'40','11','Garbatula','Garbatula','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(41,'41','11','Isiolo','Isiolo','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(42,'42','11','Merti','Merti','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(43,'43','12','Igembe North','Igembe North','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(44,'44','12','Igembe South','Igembe South','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(45,'45','12','Imenti North','Imenti North','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(46,'46','12','Imenti South','Imenti South','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(47,'47','12','Meru Central','Meru Central','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(48,'48','12','Tigania East','Tigania East','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(49,'49','12','Tigania West','Tigania West','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(50,'50','12','Buuri','Buuri','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(51,'51','13','Maara','Maara','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(52,'52','13','Meru South','Meru South','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(53,'53','13','Tharaka North','Tharaka North','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(54,'54','13','Tharaka South','Tharaka South','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(55,'55','14','Mbeere North','Mbeere North','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(56,'56','14','Mbeere South','Mbeere South','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(57,'57','14','Embu East','Embu East','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(58,'58','14','Embu North','Embu North','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(59,'59','14','Embu West','Embu West','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(60,'60','15','Mutitu','Mutitu','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(61,'61','15','Lower Yatta','Lower Yatta','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(62,'62','15','Kisasi','Kisasi','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(63,'63','15','Nzambani','Nzambani','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(64,'64','15','Ikutha','Ikutha','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(65,'65','15','Katulani','Katulani','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(66,'66','15','Matinyani','Matinyani','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(67,'67','15','Tseikuru','Tseikuru','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(68,'68','15','Muumoni','Muumoni','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(69,'69','15','Migwani','Migwani','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(70,'70','15','Mwingi East','Mwingi East','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(71,'71','15','Kyuso','Kyuso','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(72,'72','15','Mutomo','Mutomo','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(73,'73','15','Mwingi Central','Mwingi Central','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(74,'74','15','Kitui Central','Kitui Central','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(75,'75','15','Kitui West','Kitui West','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(76,'76','15','Kyuso','Kyuso','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(77,'77','16','Mwala','Mwala','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(78,'78','16','Yatta','Yatta','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(79,'79','16','Kangundo','Kangundo','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(80,'80','16','Kathiani','Kathiani','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(81,'81','16','Machakos','Machakos','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(82,'82','16','Masinga','Masinga','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(83,'83','16','Athi River','Athi River','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(84,'84','16','Matungulu','Matungulu','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(85,'85','17','Makueni','Makueni','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(86,'86','17','Mbooni East','Mbooni East','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(87,'87','17','Mbooni West','Mbooni West','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(88,'88','17','Mukaa ','Mukaa ','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(89,'89','17','Nzaui','Nzaui','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(90,'90','17','Makindu','Makindu','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(91,'91','17','Kathonzweni','Kathonzweni','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(92,'92','17','Kibwezi','Kibwezi','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(93,'93','17','Kilungu','Kilungu','0000-00-00 00:00:00','0000-00-00 00:00:00',3),(94,'94','18','Kipipiri','Kipipiri','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(95,'95','18','Kinangop','Kinangop','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(96,'96','18','Ol`kalou','Ol`kalou','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(97,'97','18','Ol`jorok ','Ol`jorok ','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(98,'98','18','Ndaragwa','Ndaragwa','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(99,'99','19','Nyeri central','Nyeri central','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(100,'100','19','Mathira West','Mathira West','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(101,'101','19','Nyeri South','Nyeri South','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(102,'102','19','Kieni West','Kieni West','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(103,'103','19','Kieni East','Kieni East','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(104,'104','19','Mathira East','Mathira East','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(105,'105','19','Tetu','Tetu','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(106,'106','19','Mukurweini','Mukurweini','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(107,'107','20','Kirinyaga Central','Kirinyaga Central','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(108,'108','20','Kirinyaga East','Kirinyaga East','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(109,'109','20','Mwea East','Mwea East','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(110,'110','20','Mwea West','Mwea West','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(111,'111','20','Kirinyaga west','Kirinyaga west','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(112,'112','21','Murang\'a South','Murang\'a South','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(113,'113','21','Gatanga','Gatanga','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(114,'114','21','Kandara','Kandara','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(115,'115','21','Kigumo','Kigumo','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(116,'116','21','Kiharu','Kiharu','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(117,'117','21','Mathioya','Mathioya','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(118,'118','21','Kangema','Kangema','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(119,'119','22','Ruiru','Ruiru','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(120,'120','22','Thika East','Thika East','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(121,'121','22','Thika West','Thika West','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(122,'122','22','Gatundu North','Gatundu North','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(123,'123','22','Githunguri','Githunguri','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(124,'124','22','Limuru','Limuru','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(125,'125','22','Kikuyu','Kikuyu','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(126,'126','22','Kiambu','Kiambu','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(127,'127','22','Gatundu South','Gatundu South','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(128,'128','22','Lari','Lari','0000-00-00 00:00:00','0000-00-00 00:00:00',1),(129,'129','23','Loima','Loima','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(130,'130','23','Turkana Central','Turkana Central','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(131,'131','23','Turkana East','Turkana East','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(132,'132','23','Turkana North','Turkana North','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(133,'133','23','Turkana South','Turkana South','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(134,'134','23','Turkana West','Turkana West','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(135,'135','24','West pokot','West pokot','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(136,'136','24','North pokot','North pokot','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(137,'137','24','Pokot central','Pokot central','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(138,'138','24','South Pokot','South Pokot','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(139,'139','25','Samburu West','Samburu West','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(140,'140','25','Samburu East','Samburu East','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(141,'141','25','Samburu North','Samburu North','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(142,'142','26','Kwanza','Kwanza','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(143,'143','26','Trans-Nzoia East','Trans-Nzoia East','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(144,'144','26','Trans-Nzoia West','Trans-Nzoia West','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(145,'145','27','Turbo','Turbo','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(146,'146','27','Soy','Soy','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(147,'147','27','Moiben','Moiben','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(148,'148','27','Kessess','Kessess','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(149,'149','27','Kapseret','Kapseret','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(150,'150','27','Ainabkoi','Ainabkoi','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(151,'151','28','Keiyo South','Keiyo South','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(152,'152','28','Marakwet West','Marakwet West','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(153,'153','28','Keiyo','Keiyo','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(154,'154','28','Marakwet East','Marakwet East','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(155,'155','29','Emgwen Chesumei','Emgwen Chesumei','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(156,'156','29','Aldai','Aldai','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(157,'157','29','Mosop','Mosop','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(158,'158','29','Nandi hills','Nandi hills','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(159,'159','29','Tinderet','Tinderet','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(160,'160','30','Baringo central','Baringo central','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(161,'161','30','Baringo North','Baringo North','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(162,'162','30','East Pokot','East Pokot','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(163,'163','30','Koibatek','Koibatek','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(164,'164','30','Marigat','Marigat','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(165,'165','30','Mogotio','Mogotio','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(166,'166','31','Laikipia Central','Laikipia Central','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(167,'167','31','Laikipia East','Laikipia East','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(168,'168','31','Laikipia North','Laikipia North','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(169,'169','31','Laikipia West','Laikipia West','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(170,'170','31','Nyahururu','Nyahururu','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(171,'171','32','Kuresoi','Kuresoi','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(172,'172','32','Rongai','Rongai','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(173,'173','32','Subukia','Subukia','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(174,'174','32','Gilgil','Gilgil','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(175,'175','32','Molo','Molo','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(176,'176','32','Naivasha','Naivasha','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(177,'177','32','Nakuru','Nakuru','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(178,'178','32','Nakuru North','Nakuru North','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(179,'179','32','Njoro','Njoro','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(180,'180','33','Narok North','Narok North','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(181,'181','33','Narok South','Narok South','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(182,'182','33','Trans Mara','Trans Mara','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(183,'183','34','Kajiado North','Kajiado North','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(184,'184','34','Isinya','Isinya','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(185,'185','34','Mashuru','Mashuru','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(186,'186','34','Loitoktok','Loitoktok','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(187,'187','34','Kajiado central','Kajiado central','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(188,'188','35','Bureti','Bureti','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(189,'189','35','Kipkelion West','Kipkelion West','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(190,'190','35','Sigowet','Sigowet','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(191,'191','35','Kericho West','Kericho West','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(192,'192','35','Kericho East','Kericho East','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(193,'193','35','Kipkelion East','Kipkelion East','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(194,'194','36','Bomet Central','Bomet Central','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(195,'195','36',' Bomet East',' Bomet East','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(196,'196','36','Chepalungu','Chepalungu','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(197,'197','36','Sotik','Sotik','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(198,'198','36',' Konoin',' Konoin','0000-00-00 00:00:00','0000-00-00 00:00:00',7),(199,'199','37','Butere','Butere','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(200,'200','37','Kakamega central','Kakamega central','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(201,'201','37','Kakamega East','Kakamega East','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(202,'202','37','Khwisero','Khwisero','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(203,'203','37','Navakholo','Navakholo','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(204,'204','37','Matete','Matete','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(205,'205','37','Likuyani','Likuyani','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(206,'206','37','Matungu','Matungu','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(207,'207','37','Kakamega North','Kakamega North','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(208,'208','37','Kakamega South','Kakamega South','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(209,'209','37','Lugari','Lugari','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(210,'210','37','Mumias','Mumias','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(211,'211','38','Emuhaya','Emuhaya','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(212,'212','38','Hamisi','Hamisi','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(213,'213','38','Sabatia','Sabatia','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(214,'214','38','Luanda','Luanda','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(215,'215','38','Vihiga','Vihiga','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(216,'216','39','Mt.Elgon','Mt.Elgon','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(217,'217','39','Bungoma central','Bungoma central','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(218,'218','39','Webuye East','Webuye East','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(219,'219','39','Webuye west','Webuye west','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(220,'220','39','Bumula','Bumula','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(221,'221','39','Kimilili','Kimilili','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(222,'222','39','Bungoma North','Bungoma North','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(223,'223','39','Bungoma South','Bungoma South','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(224,'224','39','Bungoma West','Bungoma West','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(225,'225','40','Bunyala','Bunyala','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(226,'226','40','Nambale','Nambale','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(227,'227','40','Butula','Butula','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(228,'228','40','Busia','Busia','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(229,'229','40','Samia','Samia','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(230,'230','40','Teso North','Teso North','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(231,'231','40','Teso South','Teso South','0000-00-00 00:00:00','0000-00-00 00:00:00',8),(232,'232','41','Gem','Gem','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(233,'233','41','Ugenya','Ugenya','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(234,'234','41','Ugunja','Ugunja','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(235,'235','41','Bondo','Bondo','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(236,'236','41','Rarienda','Rarienda','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(237,'237','41','Siaya','Siaya','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(238,'238','42','Kisumu East','Kisumu East','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(239,'239','42','Kisumu West','Kisumu West','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(240,'240','42','Kisumu North','Kisumu North','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(241,'241','42','Muhoroni','Muhoroni','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(242,'242','42','Nyakach','Nyakach','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(243,'243','42','Nyando','Nyando','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(244,'244','43','Mbita','Mbita','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(245,'245','43','Ndhiwa','Ndhiwa','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(246,'246','43','Rachuonyo North','Rachuonyo North','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(247,'247','43','Rachuonyo South','Rachuonyo South','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(248,'248','43','Suba','Suba','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(249,'249','43','Homa Bay','Homa Bay','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(250,'250','44','Migori','Migori','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(251,'251','44','Nyatike','Nyatike','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(252,'252','44','Awendo','Awendo','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(253,'253','44','Rongo','Rongo','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(254,'254','44','Uriri','Uriri','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(255,'255','44','Kuria East','Kuria East','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(256,'256','44','Kuria West','Kuria West','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(257,'257','45','Nyamache','Nyamache','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(258,'258','45','South Gucha','South Gucha','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(259,'259','45','Masaba South','Masaba South','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(260,'260','45','Gucha','Gucha','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(261,'261','45','Sameta','Sameta','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(262,'262','45','Kisii central','Kisii central','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(263,'263','45','Kenyenya','Kenyenya','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(264,'264','45','Kisii South','Kisii South','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(265,'265','45','Marani','Marani','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(266,'266','46','Nyamira','Nyamira','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(267,'267','46','Nyamira North','Nyamira North','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(268,'268','46','Borabu','Borabu','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(269,'269','46','Manga','Manga','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(270,'270','46','North Masaba','North Masaba','0000-00-00 00:00:00','0000-00-00 00:00:00',6),(271,'271','47','Embakasi','Embakasi','0000-00-00 00:00:00','0000-00-00 00:00:00',4),(272,'272','47','Dagoretti','Dagoretti','0000-00-00 00:00:00','0000-00-00 00:00:00',4),(273,'273','47','Langata','Langata','0000-00-00 00:00:00','0000-00-00 00:00:00',4),(274,'274','47','Westlands','Westlands','0000-00-00 00:00:00','0000-00-00 00:00:00',4),(275,'275','47','Kamukunji','Kamukunji','0000-00-00 00:00:00','0000-00-00 00:00:00',4),(276,'276','47','Kasarani','Kasarani','0000-00-00 00:00:00','0000-00-00 00:00:00',4),(277,'277','47','Makandara','Makandara','0000-00-00 00:00:00','0000-00-00 00:00:00',4),(278,'278','47','Njiru','Njiru','0000-00-00 00:00:00','0000-00-00 00:00:00',4); /*!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, 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 `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, 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` varchar(50) NOT NULL, `user` varchar(100) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `datespent` 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, `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, 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 `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, `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(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, 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,'2018 Fiscal Year','active','2018-01-01 00:00:00','2018-12-31 23:59:00',1,1,'2018-10-18 16:57:15'); /*!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` varchar(30) NOT NULL, `feedback` text NOT NULL, `recommendation` text NOT NULL, `challanges` text NOT NULL, `level` varchar(50) NOT NULL, `branchid` int(11) 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 `followups` -- LOCK TABLES `followups` WRITE; /*!40000 ALTER TABLE `followups` DISABLE KEYS */; INSERT INTO `followups` VALUES (1,'2018-11-15','3','1','newstock','1','2018-11-30','Send me a proposal','n/a','','Followup 1',1),(2,'2018-11-14','3','1','newstock','1','2018-11-16','Call me in the evening','n/a','','Followup 2',1),(3,'2018-11-19','1','1','newstock','1','2018-11-13','next week','all','','Followup 1',1),(4,'2018-11-19','1','1','newstock','1','2018-11-19','am ready','all','','Followup 2',1),(5,'2018-11-21','1','1','newstock','1','2018-11-06','ok','am','','Followup 3',1); /*!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) NOT 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` text NOT NULL, `currency` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=149 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','PETTY CASH','145','2018-07-20 13:23:56',1,'','238375','2018-10-20 07:29:47','1000','1'),(31,'2','1','1','mpesa','','2018-07-20 13:24:37',1,'','95800','2018-07-20 13:25:06pm','1010','KES'),(33,'1','1','1','Cash','','2018-07-20 13:25:48',1,'','1800','2018-10-27 13:09:33','1030',''),(34,'1','1','6','Accounts receivable','','2018-07-20 13:26:42',1,'','0','2018-10-20 19:08:17','1100',''),(35,'2','1','6','stock assets','','2018-07-20 13:29:27',1,'','0','2018-07-20 14:14:59pm','1110','KES'),(36,'2','1','6','checking account','','2018-07-20 14:14:59',1,'','0','2018-07-20 14:15:36pm','1120','KES'),(37,'2','1','6','tax assets','','2018-07-20 14:15:37',1,'','0','2018-07-20 14:17:00pm','1130','KES'),(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,'2','1','6','allowance for doubtful accounts','','2018-07-20 14:19:50',1,'','0','2018-07-20 14:37:07pm','1160','KES'),(41,'2','1','6','prepaid expenses','','2018-07-20 14:37:09',1,'','0','2018-07-20 14:39:42pm','1170','KES'),(42,'2','1','6','allowance for bad debts','','2018-07-20 14:39:42',1,'','0','2018-07-20 14:40:52pm','1180','KES'),(43,'2','1','6','retainage','','2018-07-20 14:40:54',1,'','0','2018-07-20 14:42:01pm','1190','KES'),(44,'2','1','6','employee cash advances','','2018-07-20 14:42:02',1,'','0','2018-07-20 14:43:05pm','1200','KES'),(45,'2','1','7','land','','2018-07-20 14:43:05',1,'','0','2018-07-20 15:05:46pm','1500','KES'),(46,'2','1','7','vehicle','','2018-07-20 15:05:47',1,'','0','2018-07-20 15:06:35pm','1510','KES'),(47,'2','1','7','softwares','','2018-07-20 15:06:36',1,'','0','2018-07-20 15:07:37pm','1520','KES'),(48,'2','1','7','buildings','','2018-07-20 15:07:38',1,'','0','2018-07-20 15:09:20pm','1530','KES'),(49,'2','1','7','plants & machinery','','2018-07-20 15:09:21',1,'','0','2018-07-20 15:13:54pm','1540','KES'),(50,'2','1','7','office equipments','','2018-07-20 15:13:54',1,'','0','2018-07-20 15:18:16pm','1550','KES'),(51,'2','1','7','furnitures & fixtures','','2018-07-20 15:18:17',1,'','0','2018-07-20 15:20:12pm','1560','KES'),(52,'2','1','7','electronic equipments','','2018-07-20 15:20:15',1,'','0','2018-07-20 15:21:06pm','1570','KES'),(53,'2','1','7','depletable assets','','2018-07-20 15:21:07',1,'','0','2018-07-20 15:22:54pm','1580','KES'),(54,'2','1','7','leasehold improvements','','2018-07-20 15:22:55',1,'','0','2018-07-20 15:23:48pm','1590','KES'),(55,'2','1','7','accumulated depreciation','','2018-07-20 15:23:48',1,'','0','2018-07-20 15:32:37pm','1600','KES'),(56,'2','1','7','accumulated depletion','','2018-07-20 15:32:37',1,'','0','2018-07-20 15:43:54pm','1610','KES'),(57,'2','1','9','capital ','','2018-07-20 15:43:54',1,'','0','2018-07-20 16:02:41pm','1800','KES'),(58,'1','1','8','Inventory','','2018-07-20 16:02:41',1,'','0','2018-10-20 19:10:07','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'),(60,'2','1','8','stocks of work in progress','','2018-07-20 16:07:36',1,'','0','2018-07-20 16:09:03pm','1870','KES'),(61,'2','1','18','investment','','2018-07-20 16:10:02',0,'','0','2018-07-20 16:11:37pm','1900','KES'),(62,'2','1','20','temporary opening','','2018-07-20 16:11:39',0,'','0','2018-07-20 16:13:10pm','1950','KES'),(63,'2','1','14','loan payable','','2018-07-23 12:06:08',2,'','0','2018-07-23 12:33:49pm','2000','KES'),(64,'2','1','14','dividends payable','','2018-07-23 12:33:51',2,'','0','2018-07-23 12:35:15pm','2010','KES'),(65,'2','1','14','Income tax payable','','2018-07-23 12:35:15',2,'','0','2018-07-23 12:36:09pm','2020','KES'),(66,'2','1','14','accrued liabilities','','2018-07-23 12:36:09',2,'','0','2018-07-23 12:37:10pm','2030','KES'),(67,'2','1','14','payroll clearing','','2018-07-23 12:37:11',2,'','0','2018-07-23 12:37:57pm','2040','KES'),(68,'2','1','14','current tax liability','','2018-07-23 12:37:58',2,'','0','2018-07-23 12:38:54pm','2050','KES'),(69,'2','1','14','client trust accounts','','2018-07-23 12:38:55',2,'','0','2018-07-23 12:39:33pm','2060','KES'),(70,'2','1','14','insurance payable','','2018-07-23 12:39:33',2,'','0','2018-07-23 12:40:25pm','2070','KES'),(71,'2','1','14','rent payable','','2018-07-23 12:40:25',2,'','0','2018-07-23 12:40:57pm','2080','KES'),(72,'2','1','14','sales & services tax payable','','2018-07-23 12:40:58',2,'','0','2018-07-23 12:42:31pm','2090','KES'),(73,'2','1','14','prepaid expenses payable','','2018-07-23 12:42:32',2,'','0','2018-07-23 12:43:28pm','2100','KES'),(74,'2','1','14','line of credit','','2018-07-23 12:43:29',2,'','0','2018-07-23 12:44:38pm','2110','KES'),(75,'2','1','14','current portion of obligations under finance leases','','2018-07-23 12:44:39',2,'','0','2018-07-23 12:45:39pm','2120','KES'),(76,'2','1','15','long term debt','','2018-07-23 12:57:42',2,'','0','2018-07-23 12:58:56pm','2500','KES'),(78,'2','1','15','notes payable','','2018-07-23 13:00:31',2,'','0','2018-07-23 13:01:55pm','2510','KES'),(79,'2','1','15','liabilities related to assets held for sale','','2018-07-23 13:01:58',2,'','0','2018-07-23 13:02:45pm','2520','KES'),(80,'2','1','15','shareholder notes payable','','2018-07-23 13:02:46',2,'','0','2018-07-23 13:04:38pm','2530','KES'),(81,'2','1','15','accrued non-current liabilities','','2018-07-23 13:04:38',2,'','0','2018-07-23 13:15:06pm','2540','KES'),(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,'2','1','26','opening balance','','2018-07-23 13:55:37',3,'','0','2018-07-23 13:56:23pm','3010','KES'),(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'),(88,'2','1','26','dividend disbursed','','2018-07-23 14:00:07',3,'','0','2018-07-23 14:01:50pm','3050','KES'),(89,'2','1','26','dividend disbursed','','2018-07-23 14:00:07',3,'','0','2018-07-23 14:05:14pm','3050','KES'),(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,'2','1','27','sales','','2018-07-23 14:09:01',4,'','0','2018-07-23 14:09:37pm','4000','KES'),(95,'2','1','27','services','','2018-07-23 14:09:38',4,'','0','2018-07-23 14:10:07pm','4010','KES'),(96,'2','1','29','cost of goods sold','','2018-07-23 14:10:08',5,'','0','2018-07-23 14:26:19pm','5000','KES'),(97,'2','1','29','expenses included in valuation','','2018-07-23 14:26:28',5,'','0','2018-07-23 14:27:38pm','5010','KES'),(98,'2','1','29','stock adjustment','','2018-07-23 14:27:39',5,'','0','2018-07-23 14:28:38pm','5020','KES'),(99,'1','1','33','Purchases','','2018-07-23 14:28:40',5,'','0','2018-10-27 12:41:59','5500',''),(100,'2','1','30','Transport','','2018-07-23 14:33:31',5,'','0','2018-07-23 14:33:50pm','5510','KES'),(101,'2','1','30','Rent','','2018-07-23 14:33:51',5,'','0','2018-07-23 14:34:22pm','5520','KES'),(102,'2','1','30','Electricity ','','2018-07-23 14:34:24',5,'','0','2018-07-23 14:34:49pm','5530','KES'),(103,'2','1','30','Advertisement','','2018-07-23 14:34:52',5,'','0','2018-07-23 14:35:40pm','5540','KES'),(104,'2','1','30','salary & wages','','2018-07-23 14:35:41',5,'','0','2018-07-23 14:36:41pm','5550','KES'),(105,'2','1','30','tips','','2018-07-23 14:36:42',5,'','0','2018-07-23 14:37:25pm','5560','KES'),(106,'2','1','30','lunch','','2018-07-23 14:37:26',5,'','0','2018-07-23 14:38:49pm','5570','KES'),(107,'2','1','30','Retreat','','2018-07-23 14:38:50',5,'','0','2018-07-23 14:39:29pm','5580','KES'),(108,'2','1','30','hardware','','2018-07-23 14:39:30',5,'','0','2018-07-23 14:41:23pm','5590','KES'),(109,'2','1','30','thermal rolls','','2018-07-23 14:41:24',5,'','0','2018-07-23 14:41:52pm','5600','KES'),(110,'2','1','30','water','','2018-07-23 14:41:52',5,'','0','2018-07-23 14:42:14pm','5610','KES'),(111,'2','1','30','Airtime','','2018-07-23 14:42:15',5,'','0','2018-07-23 14:43:31pm','5620','KES'),(112,'2','1','30','Ream','','2018-07-23 14:43:32',5,'','0','2018-07-23 14:45:51pm','5630','KES'),(113,'2','1','30','Advanta','','2018-07-23 14:45:52',5,'','0','2018-07-23 14:46:17pm','5640','KES'),(114,'2','1','30','Training','','2018-07-23 14:46:18',5,'','0','2018-07-23 14:47:45pm','5650','KES'),(115,'2','1','30','marketing expenses','','2018-07-23 14:47:47',5,'','0','2018-07-23 14:48:18pm','5660','KES'),(116,'2','1','30','sales expenses','','2018-07-23 14:48:21',5,'','0','2018-07-23 14:49:00pm','5670','KES'),(117,'2','1','30','Furniture & fixtures','','2018-07-23 14:49:01',5,'','0','2018-07-23 14:51:10pm','5680','KES'),(118,'2','1','30','Bid bond expenses','','2018-07-23 14:51:10',5,'','0','2018-07-23 14:54:25pm','5690','KES'),(119,'2','1','30','bank statement','','2018-07-23 14:54:26',5,'','0','2018-07-23 14:55:06pm','5700','KES'),(120,'2','1','30','tender expenses','','2018-07-23 14:55:12',5,'','0','2018-07-23 14:55:37pm','5710','KES'),(121,'2','1','30','cyber','','2018-07-23 14:55:39',5,'','0','2018-07-23 15:02:31pm','5720','KES'),(122,'2','1','30','printing & scanning','','2018-07-23 15:02:34',5,'','0','2018-07-23 15:03:40pm','5730','KES'),(123,'2','1','30','commission on sales','','2018-07-23 15:03:42',5,'','0','2018-07-23 15:04:44pm','5740','KES'),(124,'2','1','30','accomodation','','2018-07-23 15:04:46',5,'','0','2018-07-23 15:05:54pm','5750','KES'),(125,'2','1','30','Legal expenses','','2018-07-23 15:05:55',5,'','0','2018-07-23 15:06:58pm','5760','KES'),(126,'2','1','30','freight & forwarding charges','','2018-07-23 15:06:59',5,'','0','2018-07-23 15:07:42pm','5770','KES'),(127,'2','1','30','office maintenance','','2018-07-23 15:07:48',5,'','0','2018-07-23 15:08:19pm','5780','KES'),(128,'2','1','30','Depreciation','','2018-07-23 15:08:24',5,'','0','2018-07-23 15:08:47pm','5790','KES'),(129,'2','1','30','miscellaneous','','2018-07-23 15:09:39',5,'','0','2018-07-23 15:10:10pm','5800','KES'),(130,'2','1','27','point of sale','','2018-07-23 15:10:10',4,'','0','2018-07-23 15:12:24pm','4020','KES'),(131,'2','1','27','bulk sms','','2018-07-23 15:12:25',4,'','0','2018-07-23 15:13:08pm','4030','KES'),(132,'2','1','27','property management','','2018-07-23 15:13:09',4,'','0','2018-07-23 15:13:38pm','4040','KES'),(133,'2','1','27','biometric system','','2018-07-23 15:13:41',4,'','0','2018-07-23 15:14:24pm','4050','KES'),(134,'2','1','27','school management','','2018-07-23 15:14:35',4,'','0','2018-07-23 15:15:12pm','4060','KES'),(135,'2','1','27','hospital management','','2018-07-23 15:15:15',4,'','0','2018-07-23 15:15:59pm','4070','KES'),(136,'2','1','27','website','','2018-07-23 15:16:03',4,'','0','2018-07-23 15:16:37pm','4080','KES'),(137,'2','1','27','pos upgrade','','2018-07-23 15:16:38',4,'','0','2018-07-23 15:17:17pm','4090','KES'),(139,'2','1','27','hardware','','2018-07-23 15:18:10',4,'','0','2018-07-23 15:18:55pm','4110','KES'),(140,'2','1','27','design','','2018-07-23 15:18:56',4,'','0','2018-07-23 15:19:38pm','4120','KES'),(141,'2','1','27','thermal rolls','','2018-07-23 15:19:38',4,'','0','2018-07-23 15:20:21pm','4130','KES'),(142,'2','1','27','bulk sms recharge','','2018-07-23 15:21:22',4,'','0','2018-07-23 15:21:46pm','4100','KES'),(143,'1','1','1','Airtel Money','147','2018-07-26 12:58:21',1,'','28600','2018-10-20 15:13:20','1020',''),(144,'2','1','14','Account payable','','2018-08-02 10:41:16',2,'','0','2018-08-02 10:42:45am','2130',''),(145,'1','1','1','STANBIK bank','','2018-09-21 14:47:55',1,'','2205','2018-10-17 09:30:49','1025',''),(146,'1','1','1','KCB account','','2018-10-04 10:01:06',1,'','125245','2018-10-04 10:01:53','1035','USD'),(147,'1','1','29','Food Expense','','2018-10-04 10:04:51',5,'','0','2018-10-04 10:07:01','5005','KES'),(148,'1','1','1','EQUITY BANK','','2018-10-18 08:45:36',1,'','333400','2018-10-18 08:47:41','1012','1'); /*!40000 ALTER TABLE `glaccounts` 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` varchar(50) NOT NULL, `openingdate` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=34 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','',''),(6,'2','1','1','Current asset','',''),(7,'2','1','1','Fixed assets','',''),(8,'2','1','1','Inventory assets','',''),(9,'2','1','1','Capital asset','',''),(14,'2','1','2','Current liabilities','',''),(15,'2','1','2','Longterm liabilities','',''),(26,'2','1','3','Equity','',''),(27,'2','1','4','Direct income','',''),(28,'2','1','4','Indirect income','',''),(29,'2','1','5','Direct expenses','',''),(30,'2','1','5','Indirect expenses','',''),(31,'2','1','2','Share Capital','',''),(32,'2','1','2','Retained Earnings','',''),(33,'1','1','5','Cost of Sale','',''); /*!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(50) 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 `grouping` -- LOCK TABLES `grouping` WRITE; /*!40000 ALTER TABLE `grouping` DISABLE KEYS */; INSERT INTO `grouping` VALUES (1,'54','1','2018-08-02 06:17:14am','','1','','2','1'); /*!40000 ALTER TABLE `grouping` 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 AUTO_INCREMENT=3 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 */; INSERT INTO `images` VALUES (1,'upload/430466_1459408027.12027543_10153697235844759_2342432607099399883_n.jpg','298',''),(2,'upload/120955_1459408674.1901129_10153697235929759_5008441071069083718_n.jpg','72',''); /*!40000 ALTER TABLE `images` 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 AUTO_INCREMENT=2 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 */; INSERT INTO `journal` VALUES (1,'1','','OPENING BS','2018-11-17 14:13:01','','1','1','2018-11-17 14:13:12','JENTRY-11542453181'); /*!40000 ALTER TABLE `journal` 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(30) 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=28 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','2018-11-26 05:49:54','','','::1','loggedin',1),(2,'admin','1','2018-11-26 08:38:44','','','::1','loggedin',1),(3,'admin','1','2018-11-26 12:38:29','','','::1','loggedin',1),(4,'admin','1','2018-11-27 10:57:12','','','::1','loggedin',1),(5,'admin','1','2018-11-27 18:12:27','','','::1','loggedin',1),(6,'admin','1','2018-11-29 05:23:15','2018-11-29 05:23:21','','::1','loggedin',1),(7,'admin','1','2018-11-29 05:24:16','','','::1','loggedin',1),(8,'admin','1','2018-11-29 05:48:32','','','::1','loggedin',1),(9,'admin','1','2018-11-29 05:52:06','2018-11-29 05:57:50','','::1','loggedin',1),(10,'admin','1','2018-11-29 05:59:02','2018-11-29 06:13:22','','::1','loggedin',1),(11,'user','1','2018-11-29 06:13:29','','','::1','loggedin',1),(12,'user','1','2018-11-29 11:28:44','','','::1','loggedin',1),(13,'user','1','2018-11-30 11:36:39','','','::1','loggedin',1),(14,'user','1','2018-12-03 09:16:21','','','::1','loggedin',1),(15,'user','1','2018-12-06 08:59:20','','','::1','loggedin',1),(16,'user','1','2018-12-06 13:18:08','','','::1','loggedin',1),(17,'user','1','2018-12-07 05:24:39','2018-12-07 06:49:11','','::1','loggedin',1),(18,'admin','1','2018-12-07 06:49:17','','','::1','loggedin',1),(19,'admin','1','2018-12-07 11:02:25','','','::1','loggedin',1),(20,'admin','1','2018-12-09 16:22:47','2018-12-09 16:37:54','','::1','loggedin',1),(21,'admin','1','2018-12-09 17:15:54','2018-12-09 17:41:04','','::1','loggedin',1),(22,'admin','1','2018-12-09 17:41:18','','','::1','loggedin',1),(23,'admin','1','2018-12-09 18:32:26','','','154.76.67.27','loggedin',1),(24,'admin','1','2018-12-09 18:35:58','','','197.237.183.53','loggedin',1),(25,'admin','1','2018-12-27 22:24:58','','','196.104.135.15','loggedin',1),(26,'admin','1','2019-01-17 11:54:40','','','197.248.25.222','loggedin',1),(27,'admin','1','2019-01-17 11:54:44','','','197.248.25.222','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(23,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, 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,'BAR','','2018-12-07 05:27:06','active','1','','1'),(2,'KITCHEN','','2018-12-07 05:27:18','active','1','','1'); /*!40000 ALTER TABLE `maincategory` 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, 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 `message` -- LOCK TABLES `message` WRITE; /*!40000 ALTER TABLE `message` DISABLE KEYS */; INSERT INTO `message` VALUES (1,'2018 Fiscal Year','','2018-10-18 16:54:36','active','1','','1'),(3,'SOUP','SOUP','2018-07-17 08:49:34am','active','1','','1'),(4,'NO SOUP','','2018-07-17 10:04:46am','active','1','','1'); /*!40000 ALTER TABLE `message` 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', 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 ('Accounting',50,'battery-quarter','accounting','1','user/accounting','side'),('Bank Deposits',35,'money','bankdeposits','1','user/viewbanks','side'),('Branch',81,'rss-square','branch','1','user/viewbranch','side'),('Call center',12,'rss-square','callcenter','1','user/callcenter','side'),('Cashier Sales',87,'folder-open','cashiersales','1','user/mysales','side'),('Complains',11,'paw','complain','1','user/complain','side'),('Configuration',5,'home','config','1','user/viewconfiguration','top'),('Damaged products',50,'paw','damagedproducts','1','user/viewdamages','side'),('Deals',11,'calendar-times-o','deals','1','user/viedeals','side'),('Display Counter',6,'rss-square','displaycounter','0','display','side'),('Display Sales Report',24,'folder-open','displayreport','1','user/displayreport','side'),('Documents',14,'folder-open-o','documents','1','user/viewdocuments','side'),('Events',10,'line-chart','events','1','user/viewevents','side'),('Grouping Members',20,'paper-plane','grouping','1','user/viewgrouping','side'),('Expenses/Income',40,'window-close','incomeexpenses','1','user/viewexpenses','side'),('Incoming stocklist/Store',60,'sort-amount-asc','incomingstock','1','user/viewincomingstock','side'),('Issued Store Items',59,'sort-amount-asc','incomingstore','1','user/viewallorder','side'),('Low Store',55,'battery-quarter','lowproducts','1','user/viewwarningproducts','side'),('Low stocklist',57,'battery-quarter','lowstocklist','1','user/viewlowstore','side'),('Loyality Cards',30,'credit-card','loyalitycards','1','user/viewloyality','side'),('People/Contacts',80,'rss-square','members','1','user/viewmember','side'),('Change password',9,'hourglass-start','password','1','user/passwordform','side'),(' Category of people',85,'address-book-o','peoplecategory','1','user/viewcategory','side'),('Print Receipt',1,'recycle','printreceipt','1','user/printreceipts','side'),('Stock List(Counter)',66,'snowflake-o','productlist','1','user/viewproductlist','side'),('Products(Main store)',65,'snowflake-o','products','1','user/viewproducts','side'),('Category of Products',70,'recycle','productscategory','1','user/viewproductcategory','side'),('Update profile',8,'blind','profile','1','user/profileform','side'),('Purchases',45,'automobile','purchases','1','user/viewpurchases','side'),('Manage Report',25,'folder-open','reports','1','user/startsales','side'),('sales',90,'cart-plus','sales','1','user/viewsales','side'),('Select User',1,'rss-square','selectuser','1','login','side'),('Send Sms',15,'paper-plane','sendsms','1','user/viewsms','side'),('Tasks',12,'bullseye','task','1','user/viewtasks','side'),('Tasks Category',13,'birthday-cake','taskscategory','1','user/viewtaskcategory','side'),('Users',75,'rss-square','users','1','user/viewemployee','side'),('Return/RePrint Sales',86,'paw','viewreturnsales','1','user/viewreturnsales','side'),('Whole sale',88,'cart-plus','wholesale','1','user/viewwholesales','side'); /*!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 ('add','bankdeposits','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','documents','add',1),('add','events','add',1),('add','grouping','add',1),('add','incomeexpenses','add',1),('add','incomingstock','add',1),('add','incomingstore','Add incoming',1),('add','lowproducts','add',1),('add','lowstocklist','add',6),('add','loyalitycards','add',1),('add','members','add',1),('add','peoplecategory','add',1),('add','productlist','Add Products',7),('add','products','add',1),('add','productscategory','add',1),('add','purchases','add',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),('adddailycollection','cashiersales','Add Daily Collection',7),('addstock','productlist','Add stock',4),('addstock','products','addstock',4),('all','cashiersales','View all Cashier sales',4),('allcompalin','complain','View Others Complain',11),('bulk','productlist','Upload bulk stock',1),('bulk','products','bulk',5),('card','sales','Card Sales',7),('cashiersales','cashiersales','View Sales',5),('change','password','change',1),('cheque','sales','Cheque/Bank sales',8),('clear','viewreturnsales','Clear Sales',5),('clearallsales','cashiersales','Clear all sales for others',10),('clearpayments','sales','Clear/Add payments',7),('closebill','sales',' Close Bill',6),('credit','sales','Credit sales',10),('creditnote','sales','Credit Note',8),('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','events','delete',3),('delete','grouping','delete',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','purchases','delete',3),('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),('discount','sales','Print Discount',5),('dispatch','products','Dispatch Products',6),('displaycustomers','sales','Display customers using buttons',5),('dontprint','sales','Display Dont Print Button',15),('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),('Logout','sales','Log out After printing',5),('more','lowstocklist','View more',6),('more','productlist','View Added stock',2),('more','products','more',4),('moresales','viewreturnsales','Add more Sales',5),('mpesa','sales','Sale in Mpesa',6),('mpesabalance','sales','View Mpesa Balance',5),('mpesapendingreport','cashiersales','View All Pending Mpesa Report',20),('mpesaverifiedreport','cashiersales','View All Verified Mpesa Report',21),('openclosestock','productlist','Open and Close stock',8),('order','sales','User Order Button',6),('points','sales','Loyality Point sales',9),('price','products','change price',7),('printbill','sales',' Print Bill',6),('productcode','config','Display Product code in receipt',5),('productdiscount','sales','Give discount Product',6),('removeallstock','products','View all outgoing stock',7),('removestock','products','Move consumable stock',6),('reprint','sales','Reprint Receipt',5),('return','viewreturnsales','Return Sales',4),('reversempesa','cashiersales','Reverse Mpesa',9),('sale','sales','sale',4),('sale','wholesale','sale',0),('select','sales','Select Customers',5),('stocktaking','productlist','Do stock Taking',8),('transfer','productlist','Transfer Products',3),('upadate','callcenter','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','events','update',2),('update','grouping','update',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','purchases','update',2),('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),('updateclosedinvoice','purchases','update closed invoice',6),('updatedailycollections','cashiersales','Update Daily Collection',9),('updatepaymentmode','sales','Update Payment Mode',7),('updatesellingprice','purchases','update selling price',5),('view','branch','View Branch',2),('view','callcenter','View Calls',3),('view','complain','View Complain',5),('view','displayreport','Display Report',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','reports','view',1),('View Accounting','accounting','view',1),('viewall','deals','View other people\'s deals',5),('viewall','reports','View all Branches',6),('viewall','task','View other people\'s tasks',2),('viewbuyingprice','sales','view buying price',7),('viewdailycollections','cashiersales','View Daily Collection',8),('voucher','sales','Gift Voucher sales',9); /*!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 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 `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 AUTO_INCREMENT=5 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 */; INSERT INTO `mpesasales` VALUES (1,1000.00,1,1,'2018-11-03 17:24:28','1',1,'1','MH43VVASBH'),(2,200.00,1,1,'2018-11-03 17:27:27','1',1,'1','MH48VUSXFG'),(3,400.00,1,1,'2018-11-03 17:28:40','1',1,'1','MH46VV5YZU'),(4,2100.00,1,1,'2018-12-06 13:27:01','1',1,'1','MH44VP7HR2'); /*!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=244 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'); /*!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(30) NOT NULL, `item_id` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `discount` varchar(10) NOT NULL, `tax` varchar(30) NOT NULL, `qty` decimal(10,2) 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 `newstock` -- LOCK TABLES `newstock` WRITE; /*!40000 ALTER TABLE `newstock` DISABLE KEYS */; INSERT INTO `newstock` VALUES (1,'MINERAL WATER 1LITRE','',20.00,'2018-12-06 09:01:51','','1','newstock','1','','',0.00,'','1','','supplier','Branch','670221791737','','','',0.00); /*!40000 ALTER TABLE `newstock` 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 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 */; /*!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, 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 `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 */; INSERT INTO `password_resets` VALUES ('rmanyala@jkuat.ac.ke','55addf31b644939f3e4e858a70d3fe997eeef74149f54eca8e593f9c077becea','2016-07-02 02:47:19'); /*!40000 ALTER TABLE `password_resets` 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, 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 `paymentmethodes` -- LOCK TABLES `paymentmethodes` WRITE; /*!40000 ALTER TABLE `paymentmethodes` DISABLE KEYS */; INSERT INTO `paymentmethodes` VALUES (1,'MOBILE MONEY','','active','2018-03-24 04:57:04am','1','1','',''),(2,'MPESA','MPESA','active','2018-03-24 04:57:18am','1','1','1',''),(3,'CASH','','active','2018-03-24 04:59:50am','1','1','',''),(4,'BANK','BANK','active','2018-03-24 05:00:12am','1','1','',''),(5,'card','','active','2018-03-26 14:34:44pm','1','1','',''); /*!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 `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(100) NOT NULL AUTO_INCREMENT, `firstname` varchar(255) NOT NULL, `lastname` varchar(255) NOT NULL, `phone` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `address_1` varchar(255) NOT NULL, `gender` varchar(255) NOT 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, `status` varchar(50) NOT NULL DEFAULT 'active', `company` varchar(50) NOT 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, 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=8 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,'DEFAULT','','DEFAULT','','','female','','','1','',NULL,'supplier','1','DEFAULT','','','',799.00,'1','2018-09-07 12:40:25pm','','1',''),(2,'Moses','','718667391','','385','male','rongo','254','1','UON<BR>\r\nPO.O BOX 2312312 NAIROBI',NULL,'supplier','1','UON','','','',0.00,'1','2018-09-11 10:42:51am','','1',''),(3,'Peter','','254726207313','','666','female','','','1','',NULL,'member','1','','','','',0.00,'1','2018-09-19 15:44:34','','1',''),(4,'JAMES','','ouko','','22342','female','','','1 ','',NULL,'member','1','JAMES','','','',0.00,'1','2018-09-28 16:20:23','','1',''),(5,'OPONDO','','254726207313','','22342','female','','','1 ','',NULL,'member','1','AAA','','','',0.00,'1','2018-09-19 16:12:47','','1',''),(6,'Moses','','718667391','','385','male','rongo','254','1','',NULL,'supplier','1','jkuat','','','',0.00,'1','2018-10-13 11:40:48','','1',''),(7,'JULIANA','','254718667391','','','female','','','16','',NULL,'member','1','jkuat','','','',0.00,'1','2018-10-24 15:12:38','','1',''); /*!40000 ALTER TABLE `people` 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 ('accounting',1),('bankdeposits',1),('branch',1),('callcenter',1),('cashiersales',1),('complain',1),('config',1),('damagedproducts',1),('deals',1),('displayreport',1),('documents',1),('events',1),('grouping',1),('incomeexpenses',1),('incomingstock',1),('incomingstore',1),('lowproducts',1),('lowstocklist',1),('loyalitycards',1),('members',1),('password',1),('peoplecategory',1),('productlist',1),('products',1),('productscategory',1),('profile',1),('purchases',1),('reports',1),('sales',1),('sendsms',1),('task',1),('taskscategory',1),('users',1),('viewreturnsales',1),('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=1835 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 (1679,'sales','1','add'),(1680,'sales','1','update'),(1681,'sales','1','delete'),(1682,'sales','1','sale'),(1683,'sales','1','mpesabalance'),(1684,'sales','1','discount'),(1685,'sales','1','Logout'),(1686,'sales','1','reprint'),(1687,'sales','1','select'),(1688,'sales','1','productdiscount'),(1689,'sales','1','order'),(1690,'sales','1','printbill'),(1691,'sales','1','mpesa'),(1692,'sales','1','closebill'),(1693,'sales','1','editsellingprice'),(1694,'sales','1','viewbuyingprice'),(1695,'sales','1','updatepaymentmode'),(1696,'sales','1','card'),(1697,'sales','1','clearpayments'),(1698,'sales','1','cheque'),(1699,'sales','1','creditnote'),(1700,'sales','1','points'),(1701,'sales','1','voucher'),(1702,'sales','1','credit'),(1703,'sales','1','dontprint'),(1704,'wholesale','1','sale'),(1705,'wholesale','1','add'),(1706,'wholesale','1','delete'),(1707,'wholesale','1','update'),(1708,'cashiersales','1','entermpesacode'),(1709,'cashiersales','1','editmpesa'),(1710,'cashiersales','1','all'),(1711,'cashiersales','1','delete'),(1712,'cashiersales','1','editmpesadate'),(1713,'cashiersales','1','cashiersales'),(1714,'cashiersales','1','adddailycollection'),(1715,'cashiersales','1','viewdailycollections'),(1716,'cashiersales','1','reversempesa'),(1717,'cashiersales','1','clearallsales'),(1718,'cashiersales','1','mpesapendingreport'),(1719,'cashiersales','1','mpesaverifiedreport'),(1720,'viewreturnsales','1','add'),(1721,'viewreturnsales','1','update'),(1722,'viewreturnsales','1','delete'),(1723,'viewreturnsales','1','return'),(1724,'viewreturnsales','1','clear'),(1725,'viewreturnsales','1','moresales'),(1726,'peoplecategory','1','add'),(1727,'peoplecategory','1','update'),(1728,'peoplecategory','1','delete'),(1729,'branch','1','add'),(1730,'branch','1','view'),(1731,'branch','1','update'),(1732,'branch','1','delete'),(1733,'members','1','add'),(1734,'members','1','update'),(1735,'users','1','add'),(1736,'users','1','update'),(1737,'users','1','delete'),(1738,'users','1','deleteallroles'),(1739,'productscategory','1','add'),(1740,'productscategory','1','update'),(1741,'productscategory','1','delete'),(1742,'productlist','1','bulk'),(1743,'productlist','1','more'),(1744,'productlist','1','transfer'),(1745,'productlist','1','addstock'),(1746,'productlist','1','delete'),(1747,'productlist','1','view'),(1748,'productlist','1','update'),(1749,'productlist','1','add'),(1750,'productlist','1','openclosestock'),(1751,'productlist','1','stocktaking'),(1752,'products','1','add'),(1753,'products','1','update'),(1754,'products','1','delete'),(1755,'products','1','addstock'),(1756,'products','1','more'),(1757,'products','1','bulk'),(1758,'products','1','deleteorder'),(1759,'products','1','removestock'),(1760,'products','1','dispatch'),(1761,'products','1','price'),(1762,'products','1','removeallstock'),(1763,'incomingstock','1','add'),(1764,'incomingstock','1','update'),(1765,'incomingstock','1','view'),(1766,'incomingstock','1','delete'),(1767,'incomingstore','1','add'),(1768,'incomingstore','1','delete'),(1769,'incomingstore','1','view'),(1770,'lowstocklist','1','add'),(1771,'lowstocklist','1','more'),(1772,'lowstocklist','1','view'),(1773,'lowproducts','1','add'),(1774,'lowproducts','1','update'),(1775,'accounting','1','View Accounting'),(1776,'accounting','1','deletebank'),(1777,'accounting','1','deleteglaccount'),(1778,'damagedproducts','1','add'),(1779,'damagedproducts','1','update'),(1780,'damagedproducts','1','delete'),(1781,'purchases','1','add'),(1782,'purchases','1','update'),(1783,'purchases','1','delete'),(1784,'purchases','1','updatebuyingprice'),(1785,'purchases','1','updatesellingprice'),(1786,'incomeexpenses','1','add'),(1787,'incomeexpenses','1','update'),(1788,'bankdeposits','1','add'),(1789,'bankdeposits','1','update'),(1790,'bankdeposits','1','delete'),(1791,'loyalitycards','1','add'),(1792,'loyalitycards','1','update'),(1793,'reports','1','view'),(1794,'reports','1','download'),(1795,'reports','1','update'),(1796,'reports','1','viewall'),(1797,'displayreport','1','view'),(1798,'grouping','1','add'),(1799,'grouping','1','update'),(1800,'grouping','1','delete'),(1801,'sendsms','1','add'),(1802,'sendsms','1','update'),(1803,'sendsms','1','delete'),(1804,'documents','1','add'),(1805,'documents','1','update'),(1806,'documents','1','delete'),(1807,'taskscategory','1','add'),(1808,'taskscategory','1','update'),(1809,'taskscategory','1','delete'),(1810,'task','1','add'),(1811,'task','1','update'),(1812,'task','1','viewall'),(1813,'task','1','delete'),(1814,'callcenter','1','add'),(1815,'callcenter','1','upadate'),(1816,'callcenter','1','view'),(1817,'callcenter','1','delete'),(1818,'deals','1','add'),(1819,'deals','1','update'),(1820,'deals','1','delete'),(1821,'deals','1','viewall'),(1822,'complain','1','add'),(1823,'complain','1','view'),(1824,'complain','1','update'),(1825,'complain','1','allcompalin'),(1826,'complain','1','delete'),(1827,'events','1','add'),(1828,'events','1','update'),(1829,'events','1','delete'),(1830,'password','1','change'),(1831,'profile','1','update'),(1832,'config','1','delete'),(1833,'config','1','add'),(1834,'config','1','update'); /*!40000 ALTER TABLE `permissionsactions` 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` 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, `maincategory` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=27 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,'WINES','n/a','','active','1','','1','1'),(2,'BEER','n/a','','active','1','','1','1'),(3,'CANS','n/a','','active','1','','1','1'),(4,'WHISKEY','n/a','','active','1','','1','1'),(5,'SOFTDRINKS','n/a','','active','1','','1','1'),(6,'ALL CIGARETTE','n/a','','active','1','','1','1'),(7,'SPIRITS','n/a','','active','1','','1','1'),(8,'TOTS','n/a','','active','1','','1','1'),(9,'VODKA','n/a','','active','1','','1','1'),(10,'GIN','n/a','','active','1','','1','1'),(11,'BRANDY','n/a','','active','1','','1','1'),(12,'RUM','n/a','','active','1','','1','1'),(13,'SAMBUCA','n/a','','active','1','','1','1'),(14,'MEDICINE','n/a','','active','1','','1','1'),(15,'CONDOMS','n/a','','active','1','','1','1'),(16,'MATCHBOX','n/a','','active','1','','1','1'),(18,'CREAM','n/a','','active','1','','1','1'),(19,'VEGETABLES','n/a','','active','1','','1','2'),(20,'SIDE MEALS','n/a','','active','1','','1','2'),(21,'SNACKS','n/a','','active','1','','1','2'),(22,'SALADS','n/a','','active','1','','1','2'),(23,'MEALS','','','active','1','','1','2'),(24,'MAIN MEALS','','','active','1','','1','2'),(25,'BEVERAGES','','','active','1','','1','2'),(26,'Accomodations','','','active','1','','1','3'); /*!40000 ALTER TABLE `productcategory` 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(50) DEFAULT NULL, `description` varchar(255) NOT NULL, `tax_included` int(10) NOT NULL DEFAULT 16, `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` text NOT NULL, `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', PRIMARY KEY (`id`), KEY `phppos_items_ibfk_1` (`supplier`), KEY `name` (`name`), KEY `deleted` (`deleted`), KEY `phppos_items_ibfk_2` (`imgid`) ) ENGINE=InnoDB AUTO_INCREMENT=242 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,'name','category','supplier','description',16,'buyingprice','sellingprice','wholesaleprice','wholesaleprice',NULL,NULL,'reorderevel',0,0,NULL,0,0,0,0.00,'','1','1','branch','0000-00-00','','','active','','code','pcs','Inventory'),(2,'TUSKER Lager','2','1','n/a',16,'126.6','170','170','170',NULL,NULL,'5',0,0,NULL,0,0,0,340.00,'','1','1','1','0000-00-00','','','active','','6161101600125','pcs','Inventory'),(3,'TUSKER CIDER','2','1','n/a',16,'135.6','170','170','170',NULL,NULL,'5',0,0,NULL,0,0,0,128.00,'','1','1','1','0000-00-00','','','active','','6161101604246','pcs','Inventory'),(4,'PILSNER Lager','2','1','n/a',16,'126.6','170','170','170',NULL,NULL,'5',0,0,NULL,0,0,0,100.00,'','1','1','1','0000-00-00','','','active','','6161101600026','pcs','Inventory'),(5,'WHITECAP Lager','2','1','n/a',16,'135.6','180','180','180',NULL,NULL,'5',0,0,NULL,0,0,0,168.00,'','1','1','1','0000-00-00','','','active','','6161101600095','pcs','Inventory'),(6,'WHITECAP LIGHT','2','1','',16,'126.6','180','180','180',NULL,NULL,'5',0,0,NULL,0,0,0,80.00,'','1','1','1','0000-00-00','','','active','','6161101600002','pcs','Inventory'),(7,'GUINNESS Stout','2','1','',16,'144.6','190','190','190',NULL,NULL,'5',0,0,NULL,0,0,0,257.00,'','1','1','1','0000-00-00','','','active','','6161101600101','pcs','Inventory'),(8,'BALOZI 500ML','2','1','',16,'117.6','170','170','170',NULL,NULL,'5',0,0,NULL,0,0,0,267.00,'','1','1','1','0000-00-00','','','active','','6161101603256','pcs','Inventory'),(9,'Tusker malt','2','1','',16,'122.72','180','180','180',NULL,NULL,'5',0,0,NULL,0,0,0,82.00,'','1','1','1','0000-00-00','','','active','','6009603340555','pcs','Inventory'),(10,'TUSKER LITE','2','1','',16,'122.72','180','180','180',NULL,NULL,'5',0,0,NULL,0,0,0,87.00,'','1','1','1','0000-00-00','','','active','','6161101602389','pcs','Inventory'),(11,'SUMMIT LAGER','2','1','',16,'116','160','160','160',NULL,NULL,'5',0,0,NULL,0,0,0,43.00,'','1','1','1','0000-00-00','','','active','','6161100240858','pcs','Inventory'),(12,'SUMMIT MALT','2','1','',16,'116','160','160','160',NULL,NULL,'5',0,0,NULL,0,0,0,16.00,'','1','1','1','0000-00-00','','','active','','6161100240841','pcs','Inventory'),(13,'S/PLATINUM','2','1','',16,'117.2','180','180','180',NULL,NULL,'5',0,0,NULL,0,0,0,25.00,'','1','1','1','0000-00-00','','','active','','6164000840067','pcs','Inventory'),(14,'SMIRNOFF BLACK ICE','2','1','',16,'108.8','180','180','180',NULL,NULL,'5',0,0,NULL,0,0,0,91.00,'','1','1','1','0000-00-00','','','active','','6161101600163','pcs','Inventory'),(15,'SNAPPS','2','1','',16,'108.8','180','180','180',NULL,NULL,'5',0,0,NULL,0,0,0,92.00,'','1','1','1','0000-00-00','','','active','','6161101602426','pcs','Inventory'),(16,'HEINKEIN','2','1','',16,'170','220','220','220',NULL,NULL,'5',0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','','','active','','8712000900663','pcs','Inventory'),(17,'KINGFISHER','2','1','',16,'140','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,37.00,'','1','1','1','0000-00-00','','','active','','6161100420021','pcs','Inventory'),(18,'TURBOG','2','1','',16,'150','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,37.00,'','1','1','1','0000-00-00','','','active','','4600682000501','pcs','Inventory'),(19,'CASTLE LITE','2','1','',16,'122.75','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,13.00,'','1','1','1','0000-00-00','','','active','','6201100061500','pcs','Inventory'),(20,'GUARANA','3','1','',16,'117.17','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,70.00,'','1','1','1','0000-00-00','','','active','','6161101603324','pcs','Inventory'),(21,'GUARANA ELECTRIC','3','1','',16,'116.7','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,55.00,'','1','1','1','0000-00-00','','','active','','6161101604192','pcs','Inventory'),(22,'TUSKER CAN','3','1','',16,'113.9','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,26.00,'','1','1','1','0000-00-00','','','active','','6161101601979','pcs','Inventory'),(23,'GUINESS CAN','3','1','',16,'164.33','220','220','220',NULL,NULL,'5',0,0,NULL,0,0,0,32.00,'','1','1','1','0000-00-00','','','active','','6161101602372','pcs','Inventory'),(24,'PILSNER CAN','3','1','',16,'135.6','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,11.00,'','1','1','1','0000-00-00','','','active','','6161101602600','pcs','Inventory'),(25,'WHITECAP CAN','3','1','',16,'155.66','220','220','220',NULL,NULL,'5',0,0,NULL,0,0,0,18.00,'','1','1','1','0000-00-00','','','active','','6161101603379','pcs','Inventory'),(26,'CIDER CAN','3','1','',16,'155.66','220','220','220',NULL,NULL,'5',0,0,NULL,0,0,0,42.00,'','1','1','1','0000-00-00','','','active','','6161101604406','pcs','Inventory'),(27,'SNAPPS CAN','3','1','',16,'116.67','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,20.00,'','1','1','1','0000-00-00','','','active','','6161101602433','pcs','Inventory'),(28,'MINERAL WATER 500ML','5','1','',16,'18.75','50','50','50',NULL,NULL,'5',0,0,NULL,0,0,0,37.00,'','1','1','1','0000-00-00','','','active','','670221791720','pcs','Inventory'),(29,'DASANI 500ML','5','1','',16,'27.92','70','70','70',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','30','pcs','Inventory'),(30,'DASANI 1LTR','5','1','',16,'48.3','120','120','120',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','31','pcs','Inventory'),(31,'EXECUTIVE 500ML','5','1','',16,'40','70','70','70',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','32','pcs','Inventory'),(32,'EXECUTIVE 1LTR','5','1','',16,'70','120','120','120',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','33','pcs','Inventory'),(33,'LIME JUICE 700ML','5','1','',16,'150','300','300','300',NULL,NULL,'5',0,0,NULL,0,0,0,2.00,'','1','1','1','0000-00-00','','','active','','6008835000930','pcs','Inventory'),(34,'DELMONTE 1 Ltr','5','1','',16,'190','300','300','300',NULL,NULL,'5',0,0,NULL,0,0,0,32.00,'','1','1','1','0000-00-00','','','active','','24000150152','pcs','Inventory'),(35,'SODA 300ML','5','1','',16,'23.75','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,40.00,'','1','1','1','0000-00-00','','','active','','87126037','pcs','Inventory'),(36,'SODA WATER 300ML','5','1','',16,'23.75','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','37','pcs','Inventory'),(37,'TONIC WATER 300ML','5','1','',16,'23.75','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','54492677','pcs','Inventory'),(38,'ALVARO','5','1','',16,'52.2','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,8.00,'','1','1','1','0000-00-00','','','active','','6161101601382','pcs','Inventory'),(39,'REDBULL','5','1','',16,'130','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,31.00,'','1','1','1','0000-00-00','','','active','','4090162602','pcs','Inventory'),(40,'MONSTER','5','1','',16,'140','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,25.00,'','1','1','1','0000-00-00','','','active','','5060335632715','pcs','Inventory'),(41,'SMIRNOFF VODKA 250ML','9','1','',16,'335','500','500','500',NULL,NULL,'5',0,0,NULL,0,0,0,12.00,'','1','1','1','0000-00-00','','','active','','6161101602051','pcs','Inventory'),(42,'SMIRNOFF VODKA 350ML','9','1','',16,'460','750','750','750',NULL,NULL,'5',0,0,NULL,0,0,0,6.00,'','1','1','1','0000-00-00','','','active','','6161101600941','pcs','Inventory'),(43,'SMIRNOFF VODKA 750ML','9','1','',16,'1004','1500','1500','1500',NULL,NULL,'5',0,0,NULL,0,0,0,6.00,'','1','1','1','0000-00-00','','','active','','6161101600934','pcs','Inventory'),(44,'FLIRT VODKA 200ML','9','1','',16,'250','400','400','400',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','45','pcs','Inventory'),(45,'FLIRT VODKA 375ML','9','1','',16,'500','800','800','800',NULL,NULL,'5',0,0,NULL,0,0,0,3.00,'','1','1','1','0000-00-00','','','active','','3800032035219','pcs','Inventory'),(46,'FLIRT VODKA 750ML','9','1','',16,'750','1300','1300','1300',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','47','pcs','Inventory'),(47,'KENYA CANE 250ML','9','1','',16,'201','350','350','350',NULL,NULL,'5',0,0,NULL,0,0,0,34.00,'','1','1','1','0000-00-00','','','active','','6161101602211','pcs','Inventory'),(48,'KENYA CANE 350ML','9','1','',16,'285','600','600','600',NULL,NULL,'5',0,0,NULL,0,0,0,11.00,'','1','1','1','0000-00-00','','','active','','5010103930840','pcs','Inventory'),(49,'KENYA CANE 750ML','9','1','',16,'544','1000','1000','1000',NULL,NULL,'5',0,0,NULL,0,0,0,6.00,'','1','1','1','0000-00-00','','','active','','5010103930833','pcs','Inventory'),(50,'V & A 750ML','9','1','',16,'560','1000','1000','1000',NULL,NULL,'5',0,0,NULL,0,0,0,3.00,'','1','1','1','0000-00-00','','','active','','6161101130424','pcs','Inventory'),(51,'GILBEYS 250ML','10','1','',16,'327','500','500','500',NULL,NULL,'5',0,0,NULL,0,0,0,20.00,'','1','1','1','0000-00-00','','','active','','6161101602167','pcs','Inventory'),(52,'GILBEYS 350ML','10','1','',16,'460','750','750','750',NULL,NULL,'5',0,0,NULL,0,0,0,10.00,'','1','1','1','0000-00-00','','','active','','535010103930666','pcs','Inventory'),(53,'GILBEYS 750ML','10','1','',16,'963','1500','1500','1500',NULL,NULL,'5',0,0,NULL,0,0,0,6.00,'','1','1','1','0000-00-00','','','active','','5010103930628','pcs','Inventory'),(54,'RICHOT 250ML','11','1','',16,'327','500','500','500',NULL,NULL,'5',0,0,NULL,0,0,0,10.00,'','1','1','1','0000-00-00','','','active','','6161101602181','pcs','Inventory'),(55,'RICHOT 350ML','11','1','',16,'460','700','700','700',NULL,NULL,'5',0,0,NULL,0,0,0,11.00,'','1','1','1','0000-00-00','','','active','','5010103930871','pcs','Inventory'),(56,'RICHOT 750ML','11','1','',16,'950','1500','1500','1500',NULL,NULL,'5',0,0,NULL,0,0,0,4.00,'','1','1','1','0000-00-00','','','active','','5010103930864','pcs','Inventory'),(57,'VICEROY 250ML','11','1','',16,'320','500','500','500',NULL,NULL,'5',0,0,NULL,0,0,0,19.00,'','1','1','1','0000-00-00','','','active','','6001108016034','pcs','Inventory'),(58,'VICEROY 375ML','11','1','',16,'525','750','750','750',NULL,NULL,'5',0,0,NULL,0,0,0,19.00,'','1','1','1','0000-00-00','','','active','','6001496011772','pcs','Inventory'),(59,'VICEROY 750ML','11','1','',16,'1090','1600','1600','1600',NULL,NULL,'5',0,0,NULL,0,0,0,9.00,'','1','1','1','0000-00-00','','','active','','6001496011796','pcs','Inventory'),(60,'VAT 350ML','4','1','',16,'683','900','900','900',NULL,NULL,'5',0,0,NULL,0,0,0,19.00,'','1','1','1','0000-00-00','','','active','','6161101601115','pcs','Inventory'),(61,'VAT 750ML','4','1','',16,'1150','1800','1800','1800',NULL,NULL,'5',0,0,NULL,0,0,0,4.00,'','1','1','1','0000-00-00','','','active','','5000292001001','pcs','Inventory'),(62,'BOND 7 250ML','4','1','',16,'308','500','500','500',NULL,NULL,'5',0,0,NULL,0,0,0,6.00,'','1','1','1','0000-00-00','','','active','','6161101602143','pcs','Inventory'),(63,'BOND 7 350ML','4','1','',16,'460','750','750','750',NULL,NULL,'5',0,0,NULL,0,0,0,9.00,'','1','1','1','0000-00-00','','','active','','5010103930970','pcs','Inventory'),(64,'BOND 7 750ML','4','1','',16,'0','1500','1500','1500',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','65','pcs','Inventory'),(65,'WILLIAM LAWSN 375ML','4','1','',16,'510','900','900','900',NULL,NULL,'5',0,0,NULL,0,0,0,11.00,'','1','1','1','0000-00-00','','','active','','5010752000420','pcs','Inventory'),(66,'WILLIAM LAWSN 750ML','4','1','',16,'1050','1600','1600','1600',NULL,NULL,'5',0,0,NULL,0,0,0,4.00,'','1','1','1','0000-00-00','','','active','','5010752000321','pcs','Inventory'),(67,'BLACK & WHITE 350ML','4','1','',16,'410','750','750','750',NULL,NULL,'5',0,0,NULL,0,0,0,10.00,'','1','1','1','0000-00-00','','','active','','50196166','pcs','Inventory'),(68,'BLACK & WHITE 750ML','4','1','',16,'795','1300','1300','1300',NULL,NULL,'5',0,0,NULL,0,0,0,1.00,'','1','1','1','0000-00-00','','','active','','50196111','pcs','Inventory'),(69,'CAPTAIN MORGAN 250ML','4','1','',16,'238','400','400','400',NULL,NULL,'5',0,0,NULL,0,0,0,17.00,'','1','1','1','0000-00-00','','','active','','6161101604550','pcs','Inventory'),(70,'CAPTAIN MORGAN 750ML','4','1','',16,'1600','2200','2200','2200',NULL,NULL,'5',0,0,NULL,0,0,0,7.00,'','1','1','1','0000-00-00','','','active','','5000299223031','pcs','Inventory'),(71,'BEST WHISKY 250ML','4','1','',16,'260','400','400','400',NULL,NULL,'5',0,0,NULL,0,0,0,13.00,'','1','1','1','0000-00-00','','','active','','6009675695225','pcs','Inventory'),(72,'BEST WHISKY 375ML','4','1','',16,'350','650','650','650',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','73','pcs','Inventory'),(73,'BEST WHISKY 750ML','4','1','',16,'750','1200','1200','1200',NULL,NULL,'5',0,0,NULL,0,0,0,10.00,'','1','1','1','0000-00-00','','','active','','6009675692576','pcs','Inventory'),(74,'JAMESON 350ML','4','1','',16,'1050','1700','1700','1700',NULL,NULL,'5',0,0,NULL,0,0,0,6.00,'','1','1','1','0000-00-00','','','active','','5011007003654','pcs','Inventory'),(75,'JAMESON 750ML','4','1','',16,'1950','3300','3300','3300',NULL,NULL,'5',0,0,NULL,0,0,0,3.00,'','1','1','1','0000-00-00','','','active','','5011007003029','pcs','Inventory'),(76,'JAMESON 1LTR','4','1','',16,'2400','3500','3500','3500',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','77','pcs','Inventory'),(77,'JW RED LABEL 200ML','4','1','',16,'500','900','900','900',NULL,NULL,'5',0,0,NULL,0,0,0,8.00,'','1','1','1','0000-00-00','','','active','','5000267015200','pcs','Inventory'),(78,'JW RED LABEL 375ML','4','1','',16,'1025','1500','1500','1500',NULL,NULL,'5',0,0,NULL,0,0,0,5.00,'','1','1','1','0000-00-00','','','active','','5000267014609','pcs','Inventory'),(79,'JW RED LABEL 750ML','4','1','',16,'1650','2500','2500','2500',NULL,NULL,'5',0,0,NULL,0,0,0,3.00,'','1','1','1','0000-00-00','','','active','','5000267014005','pcs','Inventory'),(80,'JW BLCK LABEL 375ML','4','1','',16,'1583','2500','2500','2500',NULL,NULL,'5',0,0,NULL,0,0,0,6.00,'','1','1','1','0000-00-00','','','active','','5000267024608','pcs','Inventory'),(81,'JW BLCK LABEL 750ML','4','1','',16,'3200','4800','4800','4800',NULL,NULL,'5',0,0,NULL,0,0,0,7.00,'','1','1','1','0000-00-00','','','active','','5000267024011','pcs','Inventory'),(82,'JW D.BLCK LABEL 750ML','4','1','',16,'4800','7000','7000','7000',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','5000267112077','pcs','Inventory'),(83,'FMOUS GROUS 375ML','4','1','',16,'1000','1500','1500','1500',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','84','pcs','Inventory'),(84,'FMOUS GROUS 750ML','4','1','',16,'1293','2500','2500','2500',NULL,NULL,'5',0,0,NULL,0,0,0,3.00,'','1','1','1','0000-00-00','','','active','','5010314750008','pcs','Inventory'),(85,'GRANTS 350ML','4','1','',16,'580','900','900','900',NULL,NULL,'5',0,0,NULL,0,0,0,9.00,'','1','1','1','0000-00-00','','','active','','5010327207117','pcs','Inventory'),(86,'GRANTS 750ML','4','1','',16,'1150','1800','1800','1800',NULL,NULL,'5',0,0,NULL,0,0,0,7.00,'','1','1','1','0000-00-00','','','active','','5010327000046','pcs','Inventory'),(87,'SOUTHERN COMFORT 750ML','4','1','',16,'1750','2500','2500','2500',NULL,NULL,'5',0,0,NULL,0,0,0,3.00,'','1','1','1','0000-00-00','','','active','','5099873015506','pcs','Inventory'),(88,'JCK DANIELS 500ML','4','1','',16,'1600','2500','1800','1800',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','89','pcs','Inventory'),(89,'JCK DANIELS 750ML','4','1','',16,'2950','4200','4200','4200',NULL,NULL,'5',0,0,NULL,0,0,0,6.00,'','1','1','1','0000-00-00','','','active','','82184090473','pcs','Inventory'),(90,'SINGLETON 750ML','4','1','',16,'4000','6500','6500','6500',NULL,NULL,'5',0,0,NULL,0,0,0,2.00,'','1','1','1','0000-00-00','','','active','','5000281023212','pcs','Inventory'),(91,'GLENFIDICH 750ML','4','1','',16,'3650','6500','6500','6500',NULL,NULL,'5',0,0,NULL,0,0,0,1.00,'','1','1','1','0000-00-00','','','active','','5010327324128','pcs','Inventory'),(92,'MALIBU 750ML','12','1','',16,'1500','2500','2500','2500',NULL,NULL,'5',0,0,NULL,0,0,0,2.00,'','1','1','1','0000-00-00','','','active','','5010284100001','pcs','Inventory'),(93,'CHIVAS 750ML','4','1','',16,'2500','3500','3500','3500',NULL,NULL,'5',0,0,NULL,0,0,0,1.00,'','1','1','1','0000-00-00','','','active','','80432400395','pcs','Inventory'),(94,'CIROC 750ML','9','1','',16,'2960','3800','3800','3800',NULL,NULL,'5',0,0,NULL,0,0,0,1.00,'','1','1','1','0000-00-00','','','active','','5010103937160','pcs','Inventory'),(95,'GORDONS 750ML','10','1','',16,'1120','1500','1500','1500',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','5000289020701','pcs','Inventory'),(96,'BACARDI 750ML','12','1','',16,'0','4200','4200','4200',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','5010677015615','pcs','Inventory'),(97,'MOLLY 750ML','4','1','',16,'1500','2000','2000','2000',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','98','pcs','Inventory'),(98,'BLACK TOWER 750ML','4','1','',16,'1000','1500','1500','1500',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','99','pcs','Inventory'),(99,'SCOTISH 750ML','4','1','',16,'1490','2000','2000','2000',NULL,NULL,'5',0,0,NULL,0,0,0,2.00,'','1','1','1','0000-00-00','','','active','','5029704217830','pcs','Inventory'),(100,'BAILEYS 200ML','18','1','',16,'600','900','900','900',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','50','pcs','Inventory'),(101,'BAILEYS 375ML','18','1','',16,'917','1300','1300','1300',NULL,NULL,'5',0,0,NULL,0,0,0,3.00,'','1','1','1','0000-00-00','','','active','','5011013100194','pcs','Inventory'),(102,'BAILEY 750ML','18','1','',16,'1792','2500','2500','2500',NULL,NULL,'5',0,0,NULL,0,0,0,5.00,'','1','1','1','0000-00-00','','','active','','5011013100132','pcs','Inventory'),(103,'AMARULA 375ML','18','1','',16,'950','1200','1200','1200',NULL,NULL,'5',0,0,NULL,0,0,0,5.00,'','1','1','1','0000-00-00','','','active','','6001495062478','pcs','Inventory'),(104,'AMARULA 750ML','18','1','',16,'1590','2500','2500','2500',NULL,NULL,'5',0,0,NULL,0,0,0,5.00,'','1','1','1','0000-00-00','','','active','','6001495062508','pcs','Inventory'),(105,'BEST CREAM 375ML','18','1','',16,'410','600','600','600',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','106','pcs','Inventory'),(106,'BEST CREAM 750ML','18','1','',16,'1000','1400','1400','1400',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','107','pcs','Inventory'),(107,'ZAPPA RED 750ML','13','1','',16,'1050','2500','2500','2500',NULL,NULL,'5',0,0,NULL,0,0,0,1.00,'','1','1','1','0000-00-00','','','active','','108','pcs','Inventory'),(108,'ZAPPA BLUE 750ML','13','1','',16,'1050','2500','2500','2500',NULL,NULL,'5',0,0,NULL,0,0,0,1.00,'','1','1','1','0000-00-00','','','active','','109','pcs','Inventory'),(109,'ZAPPA CLEAR 750ML','13','1','',16,'1050','2500','2500','2500',NULL,NULL,'5',0,0,NULL,0,0,0,1.00,'','1','1','1','0000-00-00','','','active','','6001812500041','pcs','Inventory'),(110,'CAMINO 750ML','13','1','',16,'1750','2500','2500','2500',NULL,NULL,'5',0,0,NULL,0,0,0,1.00,'','1','1','1','0000-00-00','','','active','','7501012916127','pcs','Inventory'),(111,'CELLAR RED 750ML','1','1','',16,'750','1000','1000','1000',NULL,NULL,'5',0,0,NULL,0,0,0,7.00,'','1','1','1','0000-00-00','','','active','','6001496301804','pcs','Inventory'),(112,'CELLAR WHITE 750ML','1','1','',16,'750','1000','1000','1000',NULL,NULL,'5',0,0,NULL,0,0,0,4.00,'','1','1','1','0000-00-00','','','active','','6001496301705','pcs','Inventory'),(113,'4TH STREET Red 750ML','1','1','',16,'750','1000','1000','1000',NULL,NULL,'5',0,0,NULL,0,0,0,1.00,'','1','1','1','0000-00-00','','','active','','6001108049582','pcs','Inventory'),(114,'4TH STREET WHT 750ML','1','1','',16,'750','1000','1000','1000',NULL,NULL,'5',0,0,NULL,0,0,0,4.00,'','1','1','1','0000-00-00','','','active','','6001108049599','pcs','Inventory'),(115,'4 COUSINS RED 750 ML','1','1','',16,'750','1000','1000','1000',NULL,NULL,'5',0,0,NULL,0,0,0,6.00,'','1','1','1','0000-00-00','','','active','','6002269000566','pcs','Inventory'),(116,'4 COUSINS WHTE 750ML','1','1','',16,'750','1000','1000','1000',NULL,NULL,'5',0,0,NULL,0,0,0,5.00,'','1','1','1','0000-00-00','','','active','','6002269000559','pcs','Inventory'),(117,'DRSTHOFF RED 750ML','1','1','',16,'700','1000','1000','1000',NULL,NULL,'5',0,0,NULL,0,0,0,7.00,'','1','1','1','0000-00-00','','','active','','6001495201501','pcs','Inventory'),(118,'DRSTHOFF WHTE 750ML','1','1','',16,'700','1000','1000','1000',NULL,NULL,'5',0,0,NULL,0,0,0,9.00,'','1','1','1','0000-00-00','','','active','','6001495203055','pcs','Inventory'),(119,'CAPRICE RED 1LTR','1','1','',16,'550','800','800','800',NULL,NULL,'5',0,0,NULL,0,0,0,11.00,'','1','1','1','0000-00-00','','','active','','6161100421271','pcs','Inventory'),(120,'CAPRICE WHITE 1LTR','1','1','',16,'550','800','800','800',NULL,NULL,'5',0,0,NULL,0,0,0,21.00,'','1','1','1','0000-00-00','','','active','','121','pcs','Inventory'),(121,'PENASOL RED 1 LTR','1','1','',16,'435','800','800','800',NULL,NULL,'5',0,0,NULL,0,0,0,6.00,'','1','1','1','0000-00-00','','','active','','8410702006545','pcs','Inventory'),(122,'PENASOL WHITE 1LTR','1','1','',16,'435','800','800','800',NULL,NULL,'5',0,0,NULL,0,0,0,4.00,'','1','1','1','0000-00-00','','','active','','8410702015271','pcs','Inventory'),(123,'SANGRIA WHITE 1LTR','1','1','',16,'800','1200','1200','1200',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','124','pcs','Inventory'),(124,'4TH STREET RED 5LTRS','1','1','',16,'','6200','6200','6200',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','125','pcs','Inventory'),(125,'4TH STREET WHITE5LTRS','1','1','',16,'','6200','6200','6200',NULL,NULL,'5',0,0,NULL,0,0,0,1.00,'','1','1','1','0000-00-00','','','active','','126','pcs','Inventory'),(126,'CELLAR CASK RED 5LTRS','1','1','',16,'3200','6200','6200','6200',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','127','pcs','Inventory'),(127,'CELLAR CASK WHT 5LTRS','1','1','',16,'3200','6200','6200','6200',NULL,NULL,'5',0,0,NULL,0,0,0,1.00,'','1','1','1','0000-00-00','','','active','','128','pcs','Inventory'),(128,'DRSTHOFF RED 5LTRS','1','1','',16,'','6200','6200','6200',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','129','pcs','Inventory'),(129,'DRSTHOFF WHTE 5LTRS','1','1','',16,'','6200','6200','6200',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','130','pcs','Inventory'),(130,'4TH STREET RED GLASS','1','1','',16,'93.5','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','131','pcs','Inventory'),(131,'4TH STREET WHITE GLASS','1','1','',16,'93.5','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,5.00,'','1','1','1','0000-00-00','','','active','','132','pcs','Inventory'),(132,'CELLAR CASK RED GLASS','1','1','',16,'93.5','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,16.00,'','1','1','1','0000-00-00','','','active','','133','pcs','Inventory'),(133,'CELLAR CASK WHTGLASS','1','1','',16,'93.5','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,8.00,'','1','1','1','0000-00-00','','','active','','134','pcs','Inventory'),(134,'DRSTYHOFF RED GLASS','1','1','',16,'93.5','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,32.00,'','1','1','1','0000-00-00','','','active','','135','pcs','Inventory'),(135,'DRSTYHOFF WHT GLASS','1','1','',16,'93.5','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','136','pcs','Inventory'),(136,'CAMINO TOT','8','1','',16,'70','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,3.00,'','1','1','1','0000-00-00','','','active','','137','pcs','Inventory'),(137,'MALIBU TOT','8','1','',16,'60','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,9.00,'','1','1','1','0000-00-00','','','active','','138','pcs','Inventory'),(138,'KC TOT','8','1','',16,'21.84','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,18.00,'','1','1','1','0000-00-00','','','active','','139','pcs','Inventory'),(139,'BAILEYS TOT','8','1','',16,'72','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,1.00,'','1','1','1','0000-00-00','','','active','','140','pcs','Inventory'),(140,'AMARULA TOT','8','1','',16,'63.9','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,17.00,'','1','1','1','0000-00-00','','','active','','141','pcs','Inventory'),(141,'SMIRNOFF TOT','8','1','',16,'40.2','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,5.00,'','1','1','1','0000-00-00','','','active','','142','pcs','Inventory'),(142,'GILBEYS TOT','8','1','',16,'38','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,10.00,'','1','1','1','0000-00-00','','','active','','143','pcs','Inventory'),(143,'ZAPPA CLEAR TOT','8','1','',16,'50','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,21.00,'','1','1','1','0000-00-00','','','active','','144','pcs','Inventory'),(144,'ZAPPA BLUE TOT','8','1','',16,'50','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','145','pcs','Inventory'),(145,'ZAPPA RED TOT','8','1','',16,'50','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','146','pcs','Inventory'),(146,'BACARDI TOT','8','1','',16,'50','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,20.00,'','1','1','1','0000-00-00','','','active','','147','pcs','Inventory'),(147,'RICHOT TOT','8','1','',16,'40','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,17.00,'','1','1','1','0000-00-00','','','active','','148','pcs','Inventory'),(148,'VICEROY TOT','8','1','',16,'42','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,13.00,'','1','1','1','0000-00-00','','','active','','149','pcs','Inventory'),(149,'VAT 69 TOT','8','1','',16,'45','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,20.00,'','1','1','1','0000-00-00','','','active','','150','pcs','Inventory'),(150,'JAMESON TOT','8','1','',16,'72','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,11.00,'','1','1','1','0000-00-00','','','active','','151','pcs','Inventory'),(151,'JW RED LABEL TOT','8','1','',16,'66.69','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,10.00,'','1','1','1','0000-00-00','','','active','','152','pcs','Inventory'),(152,'JW BLACK LABEL TOT','8','1','',16,'128','250','250','250',NULL,NULL,'5',0,0,NULL,0,0,0,7.00,'','1','1','1','0000-00-00','','','active','','153','pcs','Inventory'),(153,'JW D.BLACK TOT','8','1','',16,'111.6','300','300','300',NULL,NULL,'5',0,0,NULL,0,0,0,26.00,'','1','1','1','0000-00-00','','','active','','154','pcs','Inventory'),(154,'FAMOUS GROUSE TOT','8','1','',16,'60','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','155','pcs','Inventory'),(155,'FLIRT VODKA TOT','8','1','',16,'40','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','156','pcs','Inventory'),(156,'JD TOT','8','1','',16,'91','250','250','250',NULL,NULL,'5',0,0,NULL,0,0,0,3.00,'','1','1','1','0000-00-00','','','active','','157','pcs','Inventory'),(157,'SOUTHERN COMFT TOT','8','1','',16,'70','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,20.00,'','1','1','1','0000-00-00','','','active','','158','pcs','Inventory'),(158,'GORDONS TOT','8','1','',16,'44.8','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,20.00,'','1','1','1','0000-00-00','','','active','','159','pcs','Inventory'),(159,'SINGLETON TOT','8','1','',16,'134.4','300','300','300',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','160','pcs','Inventory'),(160,'BULLEIT TOT','8','1','',16,'102.4','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','161','pcs','Inventory'),(161,'KETEL ONE TOT','8','1','',16,'75','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','162','pcs','Inventory'),(162,'CIROC TOT','8','1','',16,'128','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','163','pcs','Inventory'),(163,'CPT BLACK TOT','8','1','',16,'55','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,12.00,'','1','1','1','0000-00-00','','','active','','164','pcs','Inventory'),(164,'CPT SPICED TOT','8','1','',16,'62','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,19.00,'','1','1','1','0000-00-00','','','active','','165','pcs','Inventory'),(165,'LAWSONS TOT','8','1','',16,'42','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,25.00,'','1','1','1','0000-00-00','','','active','','166','pcs','Inventory'),(166,'LIME TOT','8','1','',16,'3.03','30','30','30',NULL,NULL,'5',0,0,NULL,0,0,0,42.00,'','1','1','1','0000-00-00','','','active','','167','pcs','Inventory'),(167,'SPORTS /SWITCH(PCKT)','6','1','',16,'123','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','','','active','','6008165265931','pcs','Inventory'),(168,'S.M (PCKT)','6','1','',16,'125','150','150','150',NULL,NULL,'5',0,0,NULL,0,0,0,24.00,'','1','1','1','0000-00-00','','','active','','61600171','pcs','Inventory'),(169,'EMBASSY (PCKT)','6','1','',16,'167','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,18.00,'','1','1','1','0000-00-00','','','active','','61600041','pcs','Inventory'),(170,'DUNHILL (PCKT)','6','1','',16,'181','250','250','250',NULL,NULL,'5',0,0,NULL,0,0,0,14.00,'','1','1','1','0000-00-00','','','active','','6008165263425','pcs','Inventory'),(171,'MARA MOJA (PAIR)','14','1','',16,'7.6','20','20','20',NULL,NULL,'5',0,0,NULL,0,0,0,38.00,'','1','1','1','0000-00-00','','','active','','6009611170274','pcs','Inventory'),(172,'HEDEX (PAIR)','14','1','',16,'9','20','20','20',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','','','active','','173','pcs','Inventory'),(173,'PANADOL (PAIR)','14','1','',16,'9','20','20','20',NULL,NULL,'5',0,0,NULL,0,0,0,46.00,'','1','1','1','0000-00-00','','','active','','174','pcs','Inventory'),(174,'CONDOMS CLASSIC','15','1','',16,'16.67','50','50','50',NULL,NULL,'5',0,0,NULL,0,0,0,13.00,'','1','1','1','0000-00-00','','','active','','6161102960204','pcs','Inventory'),(175,'ACTAL','14','1','',16,'10','20','20','20',NULL,NULL,'5',0,0,NULL,0,0,0,99.00,'','1','1','1','0000-00-00','','','active','','6008686400415','pcs','Inventory'),(176,'DULEX CONDOM','15','1','',16,'40','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,14.00,'','1','1','1','0000-00-00','','','active','','8906005280695','pcs','Inventory'),(177,'CONDOM FLAVOURED','15','1','',16,'35','100','100','100',NULL,NULL,'5',0,0,NULL,0,0,0,22.00,'','1','1','1','0000-00-00','','','active','','6161102960181','pcs','Inventory'),(178,'MATCHBOX','16','1','',16,'3','10','10','10',NULL,NULL,'5',0,0,NULL,0,0,0,26.00,'','1','1','1','0000-00-00','','','active','','6009607673345','pcs','Inventory'),(179,'JW Double BLACK 1l','4','1','',16,'5083','7000','7000','7000',NULL,NULL,'3',0,0,NULL,0,0,0,1.00,'','1','1','1','0000-00-00','','','active','','180','pcs','Inventory'),(180,'Black Tea','25','1','',16,'0','50','','',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','181','pcs','Inventory'),(181,'White Coffee','25','1','',16,'0','80','80','80',NULL,NULL,'0',0,0,NULL,0,0,0,999997.00,'','1','1','1','0000-00-00','','','active','','182','pcs','Inventory'),(182,'Lylone','25','1','',16,'0','40','70','70',NULL,NULL,'0',0,0,NULL,0,0,0,9999.00,'','1','1','1','0000-00-00','','','active','','183','pcs','Inventory'),(183,'African Tea','25','1','',16,'0','50','50','50',NULL,NULL,'0',0,0,NULL,0,0,0,99999866.99,'','1','1','1','0000-00-00','','','active','','184','pcs','Inventory'),(184,'Hot Chocolate','25','1','',16,'0','70','70','70',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','185','pcs','Inventory'),(185,'Lemon Tea','25','1','',16,'0','40','40','40',NULL,NULL,'0',0,0,NULL,0,0,0,999999.00,'','1','1','1','0000-00-00','','','active','','186','pcs','Inventory'),(186,'True Tea','25','1','',16,'0','30','30','30',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','187','pcs','Inventory'),(187,'Dawa ( Ginger & Honey)','25','1','',16,'0','70','70','70',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','188','pcs','Inventory'),(188,'Special tea','25','1','',16,'0','80','80','80',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','189','pcs','Inventory'),(189,'Milk','25','1','',16,'0','80','80','80',NULL,NULL,'0',0,0,NULL,0,0,0,999999.00,'','1','1','1','0000-00-00','','','active','','190','pcs','Inventory'),(190,'Chapati Ndengu','24','1','',16,'0','100','100','100',NULL,NULL,'0',0,0,NULL,0,0,0,999995.00,'','1','1','1','0000-00-00','','','active','','191','pcs','Inventory'),(191,'Chapati Peas','24','1','',16,'0','130','160','160',NULL,NULL,'0',0,0,NULL,0,0,0,999997.00,'','1','1','1','0000-00-00','','','active','','192','pcs','Inventory'),(192,'Chapati Beans','24','1','',16,'0','100','100','100',NULL,NULL,'0',0,0,NULL,0,0,0,999999.00,'','1','1','1','0000-00-00','','','active','','193','pcs','Inventory'),(193,'Rice Ndengu','24','1','',16,'0','170','170','170',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','194','pcs','Inventory'),(194,'Rice beans','24','1','',16,'0','170','170','170',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','195','pcs','Inventory'),(195,'Rice Peas','24','1','',16,'0','200','200','200',NULL,NULL,'0',0,0,NULL,0,0,0,999999.00,'','1','1','1','0000-00-00','','','active','','196','pcs','Inventory'),(196,'Beef Stew Rice','24','1','',16,'0','250','250','250',NULL,NULL,'0',0,0,NULL,0,0,0,999990.00,'','1','1','1','0000-00-00','','','active','','197','pcs','Inventory'),(197,'Beef Stew Chapati','24','1','',16,'0','180','180','180',NULL,NULL,'0',0,0,NULL,0,0,0,999998.00,'','1','1','1','0000-00-00','','','active','','198','pcs','Inventory'),(198,'Beef Stew Mukimo','24','1','',16,'0','250','250','250',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','199','pcs','Inventory'),(199,'Kuku Mutungo (Bahati)','24','1','',16,'0','1300','1300','1300',NULL,NULL,'0',0,0,NULL,0,0,0,999996.00,'','1','1','1','0000-00-00','','','active','','200','pcs','Inventory'),(200,'1/2 Kuku Mutungo ( Bahati)','24','1','',16,'0','750','750','750',NULL,NULL,'0',0,0,NULL,0,0,0,999996.00,'','1','1','1','0000-00-00','','','active','','201','pcs','Inventory'),(201,'Githeri','23','1','',16,'0','100','100','100',NULL,NULL,'0',0,0,NULL,0,0,0,999989.00,'','1','1','1','0000-00-00','','','active','','202','pcs','Inventory'),(202,'Beans','23','1','',16,'0','70','70','70',NULL,NULL,'0',0,0,NULL,0,0,0,999997.00,'','1','1','1','0000-00-00','','','active','','203','pcs','Inventory'),(203,'Ndengu','23','1','',16,'0','70','70','70',NULL,NULL,'0',0,0,NULL,0,0,0,999999.00,'','1','1','1','0000-00-00','','','active','','204','pcs','Inventory'),(204,'Peas','23','1','',16,'0','100','100','100',NULL,NULL,'0',0,0,NULL,0,0,0,999993.00,'','1','1','1','0000-00-00','','','active','','205','pcs','Inventory'),(205,'Special Peas','23','1','',16,'0','140','140','140',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','206','pcs','Inventory'),(206,'Special Githeri','23','1','',16,'0','110','110','110',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','207','pcs','Inventory'),(207,'Special Beans','23','1','',16,'0','110','110','110',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','208','pcs','Inventory'),(208,'Special Ndengu','23','1','',16,'0','110','110','110',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','209','pcs','Inventory'),(209,'Beef Stew Plain','23','1','',16,'0','150','150','150',NULL,NULL,'0',0,0,NULL,0,0,0,999994.00,'','1','1','1','0000-00-00','','','active','','210','pcs','Inventory'),(210,'1/4 Chicken','23','1','',16,'0','200','200','200',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','211','pcs','Inventory'),(211,'1/4 Chicken Chips','23','1','',16,'0','300','300','300',NULL,NULL,'0',0,0,NULL,0,0,0,999993.00,'','1','1','1','0000-00-00','','','active','','212','pcs','Inventory'),(212,'1/2 Chicken','23','1','',16,'0','400','400','400',NULL,NULL,'0',0,0,NULL,0,0,0,100.00,'','1','1','1','0000-00-00','','','active','','213','pcs','Inventory'),(213,'Full Chicken','23','1','',16,'380','750','750','750',NULL,NULL,'0',0,0,NULL,0,0,0,100.00,'','1','1','1','0000-00-00','','','active','','214','pcs','Inventory'),(214,'1/2 Chicken Fried','23','1','',16,'190','700','700','700',NULL,NULL,'0',0,0,NULL,0,0,0,100.00,'','1','1','1','0000-00-00','','','active','','215','pcs','Inventory'),(215,'Mukimo','20','1','',16,'0','100','100','100',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','216','pcs','Inventory'),(216,'Rice','20','1','',16,'0','100','100','100',NULL,NULL,'0',0,0,NULL,0,0,0,999996.00,'','1','1','1','0000-00-00','','','active','','217','pcs','Inventory'),(217,'Chips','20','1','',16,'0','100','100','100',NULL,NULL,'0',0,0,NULL,0,0,0,999818.00,'','1','1','1','0000-00-00','','','active','','218','pcs','Inventory'),(218,'Sausages','21','1','',16,'0','40','40','40',NULL,NULL,'0',0,0,NULL,0,0,0,716.00,'','1','1','1','0000-00-00','','','active','','219','pcs','Inventory'),(219,'Smokie','21','1','',16,'0','30','30','30',NULL,NULL,'0',0,0,NULL,0,0,0,36.00,'','1','1','1','0000-00-00','','','active','','220','pcs','Inventory'),(220,'Kebab','21','1','',16,'0','70','70','70',NULL,NULL,'0',0,0,NULL,0,0,0,999990.00,'','1','1','1','0000-00-00','','','active','','221','pcs','Inventory'),(221,'Samosa','21','1','',16,'0','40','40','40',NULL,NULL,'0',0,0,NULL,0,0,0,999996.00,'','1','1','1','0000-00-00','','','active','','222','pcs','Inventory'),(222,'Andazi','21','1','',16,'0','20','20','20',NULL,NULL,'0',0,0,NULL,0,0,0,999990.00,'','1','1','1','0000-00-00','','','active','','223','pcs','Inventory'),(223,'Chapati','21','1','',16,'0','30','30','30',NULL,NULL,'0',0,0,NULL,0,0,0,999928.00,'','1','1','1','0000-00-00','','','active','','224','pcs','Inventory'),(224,'Fried Eggs','21','1','',16,'22','60','60','60',NULL,NULL,'0',0,0,NULL,0,0,0,999987.00,'','1','1','1','0000-00-00','','','active','','225','pcs','Inventory'),(225,'Spanish Omellette','21','1','',16,'0','80','80','80',NULL,NULL,'0',0,0,NULL,0,0,0,999997.00,'','1','1','1','0000-00-00','','','active','','226','pcs','Inventory'),(226,'Toast','21','1','',16,'0','30','30','30',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','227','pcs','Inventory'),(227,'Fried Cabbage','19','1','',16,'0','50','50','50',NULL,NULL,'0',0,0,NULL,0,0,0,999998.00,'','1','1','1','0000-00-00','','','active','','228','pcs','Inventory'),(228,'Fried Sukuma ','19','1','',16,'0','50','50','50',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','229','pcs','Inventory'),(229,'Fried Spinach','19','1','',16,'0','50','50','50',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','230','pcs','Inventory'),(230,'Kachumbari','22','1','',16,'0','50','50','50',NULL,NULL,'0',0,0,NULL,0,0,0,999998.00,'','1','1','1','0000-00-00','','','active','','231','pcs','Inventory'),(231,'Accomodations','26','1','',16,'0','1500','1500','1500',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','232','pcs','Inventory'),(232,'S.Ice Black Can','3','2','',16,'117.17','200','200','200',NULL,NULL,'5',0,0,NULL,0,0,0,10.00,'','1','1','1','0000-00-00','','','active','','233','pcs','Inventory'),(233,'Famous Grouse 350ML','4','4','',16,'920','1500','1500','1500',NULL,NULL,'2',0,0,NULL,0,0,0,4.00,'','1','1','1','0000-00-00','','','active','','234','pcs','Inventory'),(234,'Famous Grouse 750ML','4','4','',16,'1600','2500','2500','2500',NULL,NULL,'2',0,0,NULL,0,0,0,3.00,'','1','1','1','0000-00-00','','','active','','235','pcs','Inventory'),(235,'Black Coffee','25','1','',16,'30','50','50','50',NULL,NULL,'0',0,0,NULL,0,0,0,41105.00,'','1','1','1','0000-00-00','','','active','','236','pcs','Inventory'),(236,'Beef Stew Rice','24','1','',16,'0','250','250','250',NULL,NULL,'0',0,0,NULL,0,0,0,41110.00,'','1','1','1','0000-00-00','','','active','','237','pcs','Inventory'),(237,'MINERAL WATER 1LITRE','5','1','',16,'37.5','100','100','100',NULL,NULL,'-1',0,0,NULL,0,0,0,48.00,'','1','1','1','0000-00-00','','','active','','670221791737','pcs','Inventory'),(238,'Container','21','1','',16,'0','10','10','10',NULL,NULL,'0',0,0,NULL,0,0,0,999999.00,'','1','1','1','0000-00-00','','','active','','238','pcs','Inventory'),(239,'Honey','21','1','',16,'0','50','50','50',NULL,NULL,'0',0,0,NULL,0,0,0,1000000.00,'','1','1','1','0000-00-00','','','active','','239','pcs','Inventory'),(240,'Special chips','21','1','',16,'0','100','100','100',NULL,NULL,'0',0,0,NULL,0,0,0,999984.00,'','1','1','1','0000-00-00','','','active','','240','pcs','Inventory'),(241,'BOILED EGG','21','1','',16,'0','25','25','25',NULL,NULL,'0',0,0,NULL,0,0,0,1.00,'','1','1','1','0000-00-00','','','active','','241','pcs','Inventory'); /*!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` int(10) NOT NULL DEFAULT 16, `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` 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, 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=242 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,'name','category','supplier','code','description',16,'buyingprice','sellingprice','wholesaleprice','wholesaleprice',NULL,NULL,0,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(2,'TUSKER Lager','2','1','6161101600125','n/a',16,'126.6','170','170','170',NULL,NULL,5,0,0,NULL,0,0,0,347.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(3,'TUSKER CIDER','2','1','6161101604246','n/a',16,'135.6','170','170','170',NULL,NULL,5,0,0,NULL,0,0,0,130.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(4,'PILSNER Lager','2','1','6161101600026','n/a',16,'126.6','170','170','170',NULL,NULL,5,0,0,NULL,0,0,0,105.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(5,'WHITECAP Lager','2','1','6161101600095','n/a',16,'135.6','180','180','180',NULL,NULL,5,0,0,NULL,0,0,0,168.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(6,'WHITECAP LIGHT','2','1','6161101600002','',16,'126.6','180','180','180',NULL,NULL,5,0,0,NULL,0,0,0,71.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(7,'GUINNESS Stout','2','1','6161101600101','',16,'144.6','190','190','190',NULL,NULL,5,0,0,NULL,0,0,0,257.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(8,'BALOZI 500ML','2','1','6161101603256','',16,'117.6','170','170','170',NULL,NULL,5,0,0,NULL,0,0,0,267.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(9,'Tusker malt','2','1','6009603340555','',16,'122.72','180','180','180',NULL,NULL,5,0,0,NULL,0,0,0,82.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(10,'TUSKER LITE','2','1','6161101602389','',16,'122.72','180','180','180',NULL,NULL,5,0,0,NULL,0,0,0,87.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(11,'SUMMIT LAGER','2','1','6161100240858','',16,'116','160','160','160',NULL,NULL,5,0,0,NULL,0,0,0,43.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(12,'SUMMIT MALT','2','1','6161100240841','',16,'116','160','160','160',NULL,NULL,5,0,0,NULL,0,0,0,16.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(13,'S/PLATINUM','2','1','6164000840067','',16,'117.2','180','180','180',NULL,NULL,5,0,0,NULL,0,0,0,25.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(14,'SMIRNOFF BLACK ICE','2','1','6161101600163','',16,'108.8','180','180','180',NULL,NULL,5,0,0,NULL,0,0,0,91.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(15,'SNAPPS','2','1','6161101602426','',16,'108.8','180','180','180',NULL,NULL,5,0,0,NULL,0,0,0,92.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(16,'HEINKEIN','2','1','8712000900663','',16,'170','220','220','220',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(17,'KINGFISHER','2','1','6161100420021','',16,'140','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,37.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(18,'TURBOG','2','1','4600682000501','',16,'150','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,37.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(19,'CASTLE LITE','2','1','6201100061500','',16,'122.75','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,13.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(20,'GUARANA','3','1','6161101603324','',16,'117.17','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,70.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(21,'GUARANA ELECTRIC','3','1','6161101604192','',16,'116.7','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,55.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(22,'TUSKER CAN','3','1','6161101601979','',16,'113.9','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,31.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(23,'GUINESS CAN','3','1','6161101602372','',16,'164.33','220','220','220',NULL,NULL,5,0,0,NULL,0,0,0,32.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(24,'PILSNER CAN','3','1','6161101602600','',16,'135.6','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,11.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(25,'WHITECAP CAN','3','1','6161101603379','',16,'155.66','220','220','220',NULL,NULL,5,0,0,NULL,0,0,0,18.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(26,'CIDER CAN','3','1','6161101604406','',16,'155.66','220','220','220',NULL,NULL,5,0,0,NULL,0,0,0,42.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(27,'SNAPPS CAN','3','1','6161101602433','',16,'116.67','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,20.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(28,'MINERAL WATER 500ML','5','1','670221791720','',16,'18.75','50','50','50',NULL,NULL,5,0,0,NULL,0,0,0,37.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(29,'DASANI 500ML','5','1','30','',16,'27.92','70','70','70',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(30,'DASANI 1LTR','5','1','31','',16,'48.3','120','120','120',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(31,'EXECUTIVE 500ML','5','1','32','',16,'40','70','70','70',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(32,'EXECUTIVE 1LTR','5','1','33','',16,'70','120','120','120',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(33,'LIME JUICE 700ML','5','1','6008835000930','',16,'150','300','300','300',NULL,NULL,5,0,0,NULL,0,0,0,2.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(34,'DELMONTE 1 Ltr','5','1','24000150152','',16,'190','300','300','300',NULL,NULL,5,0,0,NULL,0,0,0,32.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(35,'SODA 300ML','5','1','87126037','',16,'23.75','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,41.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(36,'SODA WATER 300ML','5','1','37','',16,'23.75','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(37,'TONIC WATER 300ML','5','1','54492677','',16,'23.75','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(38,'ALVARO','5','1','6161101601382','',16,'52.2','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,8.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(39,'REDBULL','5','1','4090162602','',16,'130','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,31.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(40,'MONSTER','5','1','5060335632715','',16,'140','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,25.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(41,'SMIRNOFF VODKA 250ML','9','1','6161101602051','',16,'335','500','500','500',NULL,NULL,5,0,0,NULL,0,0,0,12.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(42,'SMIRNOFF VODKA 350ML','9','1','6161101600941','',16,'460','750','750','750',NULL,NULL,5,0,0,NULL,0,0,0,6.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(43,'SMIRNOFF VODKA 750ML','9','1','6161101600934','',16,'1004','1500','1500','1500',NULL,NULL,5,0,0,NULL,0,0,0,6.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(44,'FLIRT VODKA 200ML','9','1','45','',16,'250','400','400','400',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(45,'FLIRT VODKA 375ML','9','1','3800032035219','',16,'500','800','800','800',NULL,NULL,5,0,0,NULL,0,0,0,3.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(46,'FLIRT VODKA 750ML','9','1','47','',16,'750','1300','1300','1300',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(47,'KENYA CANE 250ML','9','1','6161101602211','',16,'201','350','350','350',NULL,NULL,5,0,0,NULL,0,0,0,34.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(48,'KENYA CANE 350ML','9','1','5010103930840','',16,'285','600','600','600',NULL,NULL,5,0,0,NULL,0,0,0,11.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(49,'KENYA CANE 750ML','9','1','5010103930833','',16,'544','1000','1000','1000',NULL,NULL,5,0,0,NULL,0,0,0,6.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(50,'V & A 750ML','9','1','6161101130424','',16,'560','1000','1000','1000',NULL,NULL,5,0,0,NULL,0,0,0,3.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(51,'GILBEYS 250ML','10','1','6161101602167','',16,'327','500','500','500',NULL,NULL,5,0,0,NULL,0,0,0,21.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(52,'GILBEYS 350ML','10','1','535010103930666','',16,'460','750','750','750',NULL,NULL,5,0,0,NULL,0,0,0,10.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(53,'GILBEYS 750ML','10','1','5010103930628','',16,'963','1500','1500','1500',NULL,NULL,5,0,0,NULL,0,0,0,6.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(54,'RICHOT 250ML','11','1','6161101602181','',16,'327','500','500','500',NULL,NULL,5,0,0,NULL,0,0,0,10.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(55,'RICHOT 350ML','11','1','5010103930871','',16,'460','700','700','700',NULL,NULL,5,0,0,NULL,0,0,0,11.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(56,'RICHOT 750ML','11','1','5010103930864','',16,'950','1500','1500','1500',NULL,NULL,5,0,0,NULL,0,0,0,4.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(57,'VICEROY 250ML','11','1','6001108016034','',16,'320','500','500','500',NULL,NULL,5,0,0,NULL,0,0,0,19.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(58,'VICEROY 375ML','11','1','6001496011772','',16,'525','750','750','750',NULL,NULL,5,0,0,NULL,0,0,0,19.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(59,'VICEROY 750ML','11','1','6001496011796','',16,'1090','1600','1600','1600',NULL,NULL,5,0,0,NULL,0,0,0,9.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(60,'VAT 350ML','4','1','6161101601115','',16,'683','900','900','900',NULL,NULL,5,0,0,NULL,0,0,0,19.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(61,'VAT 750ML','4','1','5000292001001','',16,'1150','1800','1800','1800',NULL,NULL,5,0,0,NULL,0,0,0,4.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(62,'BOND 7 250ML','4','1','6161101602143','',16,'308','500','500','500',NULL,NULL,5,0,0,NULL,0,0,0,6.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(63,'BOND 7 350ML','4','1','5010103930970','',16,'460','750','750','750',NULL,NULL,5,0,0,NULL,0,0,0,9.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(64,'BOND 7 750ML','4','1','65','',16,'0','1500','1500','1500',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(65,'WILLIAM LAWSN 375ML','4','1','5010752000420','',16,'510','900','900','900',NULL,NULL,5,0,0,NULL,0,0,0,11.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(66,'WILLIAM LAWSN 750ML','4','1','5010752000321','',16,'1050','1600','1600','1600',NULL,NULL,5,0,0,NULL,0,0,0,4.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(67,'BLACK & WHITE 350ML','4','1','50196166','',16,'410','750','750','750',NULL,NULL,5,0,0,NULL,0,0,0,10.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(68,'BLACK & WHITE 750ML','4','1','50196111','',16,'795','1300','1300','1300',NULL,NULL,5,0,0,NULL,0,0,0,1.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(69,'CAPTAIN MORGAN 250ML','4','1','6161101604550','',16,'238','400','400','400',NULL,NULL,5,0,0,NULL,0,0,0,17.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(70,'CAPTAIN MORGAN 750ML','4','1','5000299223031','',16,'1600','2200','2200','2200',NULL,NULL,5,0,0,NULL,0,0,0,7.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(71,'BEST WHISKY 250ML','4','1','6009675695225','',16,'260','400','400','400',NULL,NULL,5,0,0,NULL,0,0,0,13.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(72,'BEST WHISKY 375ML','4','1','73','',16,'350','650','650','650',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(73,'BEST WHISKY 750ML','4','1','6009675692576','',16,'750','1200','1200','1200',NULL,NULL,5,0,0,NULL,0,0,0,10.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(74,'JAMESON 350ML','4','1','5011007003654','',16,'1050','1700','1700','1700',NULL,NULL,5,0,0,NULL,0,0,0,6.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(75,'JAMESON 750ML','4','1','5011007003029','',16,'1950','3300','3300','3300',NULL,NULL,5,0,0,NULL,0,0,0,3.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(76,'JAMESON 1LTR','4','1','77','',16,'2400','3500','3500','3500',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(77,'JW RED LABEL 200ML','4','1','5000267015200','',16,'500','900','900','900',NULL,NULL,5,0,0,NULL,0,0,0,8.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(78,'JW RED LABEL 375ML','4','1','5000267014609','',16,'1025','1500','1500','1500',NULL,NULL,5,0,0,NULL,0,0,0,5.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(79,'JW RED LABEL 750ML','4','1','5000267014005','',16,'1650','2500','2500','2500',NULL,NULL,5,0,0,NULL,0,0,0,3.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(80,'JW BLCK LABEL 375ML','4','1','5000267024608','',16,'1583','2500','2500','2500',NULL,NULL,5,0,0,NULL,0,0,0,6.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(81,'JW BLCK LABEL 750ML','4','1','5000267024011','',16,'3200','4800','4800','4800',NULL,NULL,5,0,0,NULL,0,0,0,7.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(82,'JW D.BLCK LABEL 750ML','4','1','5000267112077','',16,'4800','7000','7000','7000',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(83,'FMOUS GROUS 375ML','4','1','84','',16,'1000','1500','1500','1500',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(84,'FMOUS GROUS 750ML','4','1','5010314750008','',16,'1293','2500','2500','2500',NULL,NULL,5,0,0,NULL,0,0,0,3.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(85,'GRANTS 350ML','4','1','5010327207117','',16,'580','900','900','900',NULL,NULL,5,0,0,NULL,0,0,0,9.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(86,'GRANTS 750ML','4','1','5010327000046','',16,'1150','1800','1800','1800',NULL,NULL,5,0,0,NULL,0,0,0,7.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(87,'SOUTHERN COMFORT 750ML','4','1','5099873015506','',16,'1750','2500','2500','2500',NULL,NULL,5,0,0,NULL,0,0,0,3.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(88,'JCK DANIELS 500ML','4','1','89','',16,'1600','2500','1800','1800',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(89,'JCK DANIELS 750ML','4','1','82184090473','',16,'2950','4200','4200','4200',NULL,NULL,5,0,0,NULL,0,0,0,6.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(90,'SINGLETON 750ML','4','1','5000281023212','',16,'4000','6500','6500','6500',NULL,NULL,5,0,0,NULL,0,0,0,2.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(91,'GLENFIDICH 750ML','4','1','5010327324128','',16,'3650','6500','6500','6500',NULL,NULL,5,0,0,NULL,0,0,0,1.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(92,'MALIBU 750ML','12','1','5010284100001','',16,'1500','2500','2500','2500',NULL,NULL,5,0,0,NULL,0,0,0,2.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(93,'CHIVAS 750ML','4','1','80432400395','',16,'2500','3500','3500','3500',NULL,NULL,5,0,0,NULL,0,0,0,1.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(94,'CIROC 750ML','9','1','5010103937160','',16,'2960','3800','3800','3800',NULL,NULL,5,0,0,NULL,0,0,0,1.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(95,'GORDONS 750ML','10','1','5000289020701','',16,'1120','1500','1500','1500',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(96,'BACARDI 750ML','12','1','5010677015615','',16,'0','4200','4200','4200',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(97,'MOLLY 750ML','4','1','98','',16,'1500','2000','2000','2000',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(98,'BLACK TOWER 750ML','4','1','99','',16,'1000','1500','1500','1500',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(99,'SCOTISH 750ML','4','1','5029704217830','',16,'1490','2000','2000','2000',NULL,NULL,5,0,0,NULL,0,0,0,2.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(100,'BAILEYS 200ML','18','1','50','',16,'600','900','900','900',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(101,'BAILEYS 375ML','18','1','5011013100194','',16,'917','1300','1300','1300',NULL,NULL,5,0,0,NULL,0,0,0,3.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(102,'BAILEY 750ML','18','1','5011013100132','',16,'1792','2500','2500','2500',NULL,NULL,5,0,0,NULL,0,0,0,5.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(103,'AMARULA 375ML','18','1','6001495062478','',16,'950','1200','1200','1200',NULL,NULL,5,0,0,NULL,0,0,0,5.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(104,'AMARULA 750ML','18','1','6001495062508','',16,'1590','2500','2500','2500',NULL,NULL,5,0,0,NULL,0,0,0,5.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(105,'BEST CREAM 375ML','18','1','106','',16,'410','600','600','600',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(106,'BEST CREAM 750ML','18','1','107','',16,'1000','1400','1400','1400',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(107,'ZAPPA RED 750ML','13','1','108','',16,'1050','2500','2500','2500',NULL,NULL,5,0,0,NULL,0,0,0,1.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(108,'ZAPPA BLUE 750ML','13','1','109','',16,'1050','2500','2500','2500',NULL,NULL,5,0,0,NULL,0,0,0,1.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(109,'ZAPPA CLEAR 750ML','13','1','6001812500041','',16,'1050','2500','2500','2500',NULL,NULL,5,0,0,NULL,0,0,0,1.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(110,'CAMINO 750ML','13','1','7501012916127','',16,'1750','2500','2500','2500',NULL,NULL,5,0,0,NULL,0,0,0,1.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(111,'CELLAR RED 750ML','1','1','6001496301804','',16,'750','1000','1000','1000',NULL,NULL,5,0,0,NULL,0,0,0,7.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(112,'CELLAR WHITE 750ML','1','1','6001496301705','',16,'750','1000','1000','1000',NULL,NULL,5,0,0,NULL,0,0,0,4.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(113,'4TH STREET Red 750ML','1','1','6001108049582','',16,'750','1000','1000','1000',NULL,NULL,5,0,0,NULL,0,0,0,5.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(114,'4TH STREET WHT 750ML','1','1','6001108049599','',16,'750','1000','1000','1000',NULL,NULL,5,0,0,NULL,0,0,0,5.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(115,'4 COUSINS RED 750 ML','1','1','6002269000566','',16,'750','1000','1000','1000',NULL,NULL,5,0,0,NULL,0,0,0,7.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(116,'4 COUSINS WHTE 750ML','1','1','6002269000559','',16,'750','1000','1000','1000',NULL,NULL,5,0,0,NULL,0,0,0,7.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(117,'DRSTHOFF RED 750ML','1','1','6001495201501','',16,'700','1000','1000','1000',NULL,NULL,5,0,0,NULL,0,0,0,7.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(118,'DRSTHOFF WHTE 750ML','1','1','6001495203055','',16,'700','1000','1000','1000',NULL,NULL,5,0,0,NULL,0,0,0,9.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(119,'CAPRICE RED 1LTR','1','1','6161100421271','',16,'550','800','800','800',NULL,NULL,5,0,0,NULL,0,0,0,11.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(120,'CAPRICE WHITE 1LTR','1','1','121','',16,'550','800','800','800',NULL,NULL,5,0,0,NULL,0,0,0,21.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(121,'PENASOL RED 1 LTR','1','1','8410702006545','',16,'435','800','800','800',NULL,NULL,5,0,0,NULL,0,0,0,6.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(122,'PENASOL WHITE 1LTR','1','1','8410702015271','',16,'435','800','800','800',NULL,NULL,5,0,0,NULL,0,0,0,4.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(123,'SANGRIA WHITE 1LTR','1','1','124','',16,'800','1200','1200','1200',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(124,'4TH STREET RED 5LTRS','1','1','125','',16,'','6200','6200','6200',NULL,NULL,5,0,0,NULL,0,0,0,2.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(125,'4TH STREET WHITE5LTRS','1','1','126','',16,'','6200','6200','6200',NULL,NULL,5,0,0,NULL,0,0,0,1.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(126,'CELLAR CASK RED 5LTRS','1','1','127','',16,'3200','6200','6200','6200',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(127,'CELLAR CASK WHT 5LTRS','1','1','128','',16,'3200','6200','6200','6200',NULL,NULL,5,0,0,NULL,0,0,0,1.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(128,'DRSTHOFF RED 5LTRS','1','1','129','',16,'','6200','6200','6200',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(129,'DRSTHOFF WHTE 5LTRS','1','1','130','',16,'','6200','6200','6200',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(130,'4TH STREET RED GLASS','1','1','131','',16,'93.5','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(131,'4TH STREET WHITE GLASS','1','1','132','',16,'93.5','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,5.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(132,'CELLAR CASK RED GLASS','1','1','133','',16,'93.5','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,16.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(133,'CELLAR CASK WHTGLASS','1','1','134','',16,'93.5','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,8.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(134,'DRSTYHOFF RED GLASS','1','1','135','',16,'93.5','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,32.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(135,'DRSTYHOFF WHT GLASS','1','1','136','',16,'93.5','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(136,'CAMINO TOT','8','1','137','',16,'70','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,3.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(137,'MALIBU TOT','8','1','138','',16,'60','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,9.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(138,'KC TOT','8','1','139','',16,'21.84','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,18.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(139,'BAILEYS TOT','8','1','140','',16,'72','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,1.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(140,'AMARULA TOT','8','1','141','',16,'63.9','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,17.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(141,'SMIRNOFF TOT','8','1','142','',16,'40.2','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,5.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(142,'GILBEYS TOT','8','1','143','',16,'38','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,10.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(143,'ZAPPA CLEAR TOT','8','1','144','',16,'50','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,21.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(144,'ZAPPA BLUE TOT','8','1','145','',16,'50','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(145,'ZAPPA RED TOT','8','1','146','',16,'50','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(146,'BACARDI TOT','8','1','147','',16,'50','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,20.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(147,'RICHOT TOT','8','1','148','',16,'40','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,17.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(148,'VICEROY TOT','8','1','149','',16,'42','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,13.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(149,'VAT 69 TOT','8','1','150','',16,'45','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,20.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(150,'JAMESON TOT','8','1','151','',16,'72','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,11.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(151,'JW RED LABEL TOT','8','1','152','',16,'66.69','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,10.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(152,'JW BLACK LABEL TOT','8','1','153','',16,'128','250','250','250',NULL,NULL,5,0,0,NULL,0,0,0,7.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(153,'JW D.BLACK TOT','8','1','154','',16,'111.6','300','300','300',NULL,NULL,5,0,0,NULL,0,0,0,26.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(154,'FAMOUS GROUSE TOT','8','1','155','',16,'60','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(155,'FLIRT VODKA TOT','8','1','156','',16,'40','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(156,'JD TOT','8','1','157','',16,'91','250','250','250',NULL,NULL,5,0,0,NULL,0,0,0,3.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(157,'SOUTHERN COMFT TOT','8','1','158','',16,'70','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,20.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(158,'GORDONS TOT','8','1','159','',16,'44.8','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,20.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(159,'SINGLETON TOT','8','1','160','',16,'134.4','300','300','300',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(160,'BULLEIT TOT','8','1','161','',16,'102.4','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(161,'KETEL ONE TOT','8','1','162','',16,'75','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(162,'CIROC TOT','8','1','163','',16,'128','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(163,'CPT BLACK TOT','8','1','164','',16,'55','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,12.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(164,'CPT SPICED TOT','8','1','165','',16,'62','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,19.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(165,'LAWSONS TOT','8','1','166','',16,'42','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,25.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(166,'LIME TOT','8','1','167','',16,'3.03','30','30','30',NULL,NULL,5,0,0,NULL,0,0,0,42.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(167,'SPORTS /SWITCH(PCKT)','6','1','6008165265931','',16,'123','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(168,'S.M (PCKT)','6','1','61600171','',16,'125','150','150','150',NULL,NULL,5,0,0,NULL,0,0,0,24.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(169,'EMBASSY (PCKT)','6','1','61600041','',16,'167','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,18.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(170,'DUNHILL (PCKT)','6','1','6008165263425','',16,'181','250','250','250',NULL,NULL,5,0,0,NULL,0,0,0,14.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(171,'MARA MOJA (PAIR)','14','1','6009611170274','',16,'7.6','20','20','20',NULL,NULL,5,0,0,NULL,0,0,0,38.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(172,'HEDEX (PAIR)','14','1','173','',16,'9','20','20','20',NULL,NULL,5,0,0,NULL,0,0,0,0.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(173,'PANADOL (PAIR)','14','1','174','',16,'9','20','20','20',NULL,NULL,5,0,0,NULL,0,0,0,46.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(174,'CONDOMS CLASSIC','15','1','6161102960204','',16,'16.67','50','50','50',NULL,NULL,5,0,0,NULL,0,0,0,13.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(175,'ACTAL','14','1','6008686400415','',16,'10','20','20','20',NULL,NULL,5,0,0,NULL,0,0,0,99.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(176,'DULEX CONDOM','15','1','8906005280695','',16,'40','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,14.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(177,'CONDOM FLAVOURED','15','1','6161102960181','',16,'35','100','100','100',NULL,NULL,5,0,0,NULL,0,0,0,23.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(178,'MATCHBOX','16','1','6009607673345','',16,'3','10','10','10',NULL,NULL,5,0,0,NULL,0,0,0,26.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(179,'JW Double BLACK 1l','4','1','180','',16,'5083','7000','7000','7000',NULL,NULL,3,0,0,NULL,0,0,0,1.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(180,'Black Tea','25','1','181','',16,'0','50','','',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(181,'White Coffee','25','1','182','',16,'0','80','80','80',NULL,NULL,0,0,0,NULL,0,0,0,999997.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(182,'Lylone','25','1','183','',16,'0','40','70','70',NULL,NULL,0,0,0,NULL,0,0,0,10000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(183,'African Tea','25','1','184','',16,'0','50','50','50',NULL,NULL,0,0,0,NULL,0,0,0,99999866.99,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(184,'Hot Chocolate','25','1','185','',16,'0','70','70','70',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(185,'Lemon Tea','25','1','186','',16,'0','40','40','40',NULL,NULL,0,0,0,NULL,0,0,0,999999.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(186,'True Tea','25','1','187','',16,'0','30','30','30',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(187,'Dawa ( Ginger & Honey)','25','1','188','',16,'0','70','70','70',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(188,'Special tea','25','1','189','',16,'0','80','80','80',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(189,'Milk','25','1','190','',16,'0','80','80','80',NULL,NULL,0,0,0,NULL,0,0,0,999999.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(190,'Chapati Ndengu','24','1','191','',16,'0','100','100','100',NULL,NULL,0,0,0,NULL,0,0,0,999995.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(191,'Chapati Peas','24','1','192','',16,'0','130','160','160',NULL,NULL,0,0,0,NULL,0,0,0,999997.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(192,'Chapati Beans','24','1','193','',16,'0','100','100','100',NULL,NULL,0,0,0,NULL,0,0,0,999999.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(193,'Rice Ndengu','24','1','194','',16,'0','170','170','170',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(194,'Rice beans','24','1','195','',16,'0','170','170','170',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(195,'Rice Peas','24','1','196','',16,'0','200','200','200',NULL,NULL,0,0,0,NULL,0,0,0,999999.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(196,'Beef Stew Rice','24','1','197','',16,'0','250','250','250',NULL,NULL,0,0,0,NULL,0,0,0,999990.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(197,'Beef Stew Chapati','24','1','198','',16,'0','180','180','180',NULL,NULL,0,0,0,NULL,0,0,0,999998.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(198,'Beef Stew Mukimo','24','1','199','',16,'0','250','250','250',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(199,'Kuku Mutungo (Bahati)','24','1','200','',16,'0','1300','1300','1300',NULL,NULL,0,0,0,NULL,0,0,0,999996.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(200,'1/2 Kuku Mutungo ( Bahati)','24','1','201','',16,'0','750','750','750',NULL,NULL,0,0,0,NULL,0,0,0,999996.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(201,'Githeri','23','1','202','',16,'0','100','100','100',NULL,NULL,0,0,0,NULL,0,0,0,999989.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(202,'Beans','23','1','203','',16,'0','70','70','70',NULL,NULL,0,0,0,NULL,0,0,0,999997.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(203,'Ndengu','23','1','204','',16,'0','70','70','70',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(204,'Peas','23','1','205','',16,'0','100','100','100',NULL,NULL,0,0,0,NULL,0,0,0,999993.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(205,'Special Peas','23','1','206','',16,'0','140','140','140',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(206,'Special Githeri','23','1','207','',16,'0','110','110','110',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(207,'Special Beans','23','1','208','',16,'0','110','110','110',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(208,'Special Ndengu','23','1','209','',16,'0','110','110','110',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(209,'Beef Stew Plain','23','1','210','',16,'0','150','150','150',NULL,NULL,0,0,0,NULL,0,0,0,999995.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(210,'1/4 Chicken','23','1','211','',16,'0','200','200','200',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(211,'1/4 Chicken Chips','23','1','212','',16,'0','300','300','300',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(212,'1/2 Chicken','23','1','213','',16,'0','400','400','400',NULL,NULL,0,0,0,NULL,0,0,0,100.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(213,'Full Chicken','23','1','214','',16,'380','750','750','750',NULL,NULL,0,0,0,NULL,0,0,0,100.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(214,'1/2 Chicken Fried','23','1','215','',16,'190','700','700','700',NULL,NULL,0,0,0,NULL,0,0,0,100.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(215,'Mukimo','20','1','216','',16,'0','100','100','100',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(216,'Rice','20','1','217','',16,'0','100','100','100',NULL,NULL,0,0,0,NULL,0,0,0,999997.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(217,'Chips','20','1','218','',16,'0','100','100','100',NULL,NULL,0,0,0,NULL,0,0,0,999818.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(218,'Sausages','21','1','219','',16,'0','40','40','40',NULL,NULL,0,0,0,NULL,0,0,0,716.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(219,'Smokie','21','1','220','',16,'0','30','30','30',NULL,NULL,0,0,0,NULL,0,0,0,36.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(220,'Kebab','21','1','221','',16,'0','70','70','70',NULL,NULL,0,0,0,NULL,0,0,0,999990.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(221,'Samosa','21','1','222','',16,'0','40','40','40',NULL,NULL,0,0,0,NULL,0,0,0,999996.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(222,'Andazi','21','1','223','',16,'0','20','20','20',NULL,NULL,0,0,0,NULL,0,0,0,999990.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(223,'Chapati','21','1','224','',16,'0','30','30','30',NULL,NULL,0,0,0,NULL,0,0,0,999928.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(224,'Fried Eggs','21','1','225','',16,'22','60','60','60',NULL,NULL,0,0,0,NULL,0,0,0,999987.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(225,'Spanish Omellette','21','1','226','',16,'0','80','80','80',NULL,NULL,0,0,0,NULL,0,0,0,999997.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(226,'Toast','21','1','227','',16,'0','30','30','30',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(227,'Fried Cabbage','19','1','228','',16,'0','50','50','50',NULL,NULL,0,0,0,NULL,0,0,0,999998.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(228,'Fried Sukuma ','19','1','229','',16,'0','50','50','50',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(229,'Fried Spinach','19','1','230','',16,'0','50','50','50',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(230,'Kachumbari','22','1','231','',16,'0','50','50','50',NULL,NULL,0,0,0,NULL,0,0,0,999999.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(231,'Accomodations','26','1','232','',16,'0','1500','1500','1500',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(232,'S.Ice Black Can','3','2','233','',16,'117.17','200','200','200',NULL,NULL,5,0,0,NULL,0,0,0,10.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(233,'Famous Grouse 350ML','4','4','234','',16,'920','1500','1500','1500',NULL,NULL,2,0,0,NULL,0,0,0,4.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(234,'Famous Grouse 750ML','4','4','235','',16,'1600','2500','2500','2500',NULL,NULL,2,0,0,NULL,0,0,0,3.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(235,'Black Coffee','25','1','236','',16,'30','50','50','50',NULL,NULL,0,0,0,NULL,0,0,0,41105.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(236,'Beef Stew Rice','24','1','237','',16,'0','250','250','250',NULL,NULL,0,0,0,NULL,0,0,0,41110.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(237,'MINERAL WATER 1LITRE','5','1','670221791737','',16,'37.5','100','100','100',NULL,NULL,-1,0,0,NULL,0,0,0,38.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(238,'Container','21','1','238','',16,'0','10','10','10',NULL,NULL,0,0,0,NULL,0,0,0,999999.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(239,'Honey','21','1','239','',16,'0','50','50','50',NULL,NULL,0,0,0,NULL,0,0,0,1000000.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(240,'Special chips','21','1','240','',16,'0','100','100','100',NULL,NULL,0,0,0,NULL,0,0,0,999984.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''),(241,'BOILED EGG','21','1','241','',16,'0','25','25','25',NULL,NULL,0,0,0,NULL,0,0,0,1.00,'','1','1','','0000-00-00','','','active','pcs','Inventory','','',''); /*!40000 ALTER TABLE `products` 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 AUTO_INCREMENT, `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 AUTO_INCREMENT=9 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(30) NOT NULL AUTO_INCREMENT, `supplier` varchar(30) 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 'p.o', `amount` varchar(30) NOT NULL, `companyid` varchar(30) 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 `purchaseorder` -- LOCK TABLES `purchaseorder` WRITE; /*!40000 ALTER TABLE `purchaseorder` DISABLE KEYS */; /*!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) 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(), `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', 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 `purchases` -- DROP TABLE IF EXISTS `purchases`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `purchases` ( `id` int(11) NOT NULL AUTO_INCREMENT, `invoice_number` varchar(100) NOT NULL, `fromdate` varchar(100) NOT NULL, `supplier` varchar(100) NOT NULL, `remarks` text NOT NULL, `paiddate` varchar(40) NOT NULL, `amount` varchar(40) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `entrydate` varchar(50) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'open', `updateddate` varchar(30) NOT NULL, `updatedid` varchar(30) NOT NULL, `pin` varchar(30) NOT NULL, `vattype` varchar(10) NOT NULL, `vat` decimal(10,2) NOT NULL, `taxable` decimal(10,2) NOT NULL, `vatrate` decimal(10,2) NOT NULL, `paid` decimal(10,2) NOT NULL, `balance` decimal(10,2) 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 `purchases` -- LOCK TABLES `purchases` WRITE; /*!40000 ALTER TABLE `purchases` DISABLE KEYS */; INSERT INTO `purchases` VALUES (1,'23234455253','2018-11-09 17:51:41','6','','2018-11-09 17:51:41','200','1','1','2018-11-09 17:51:56','closed','2018-11-09 17:52:48','1','34344234232','VATABLE',27.59,172.41,16.00,200.00,0.00),(2,'345767878','2018-11-21 18:05:43','2','n/a','2018-11-21 18:05:43','50000','1','1','2018-11-21 18:06:36','closed','2018-11-21 18:07:35','1','452e36366','VATABLE',6896.55,43103.45,16.00,0.00,0.00); /*!40000 ALTER TABLE `purchases` 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, 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 `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, `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 `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(30) 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) NOT 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, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=20 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','','2018-11-19','','0','1','2018-11-19 15:49:35','','2000','2000','1','retail',NULL,'2000','1','0','0','0','0','0','0','printed',' ','','','','11542631762','No','',''),(2,'','Cash','','2018-11-20','','0','1','2018-11-20 09:10:45','','1324.981','1324.981','1','retail',NULL,'1324.981','1','0','0','0','0','0','0','printed',' ','','1','','11542693939','No','',''),(3,'','Cash','','2018-11-20','','0','1','2018-11-20 11:31:03','','415','415','1','retail',NULL,'415','1','0','0','0','0','0','0','printed',' ','','','','11542694493','No','1','2018-11-20 11:31:43'),(4,'','Cash','','2018-11-20','','0','1','2018-11-20 11:38:17','','550','550','1','retail',NULL,'550','1','0','0','0','0','0','0','printed',' ','','','','11542703071','No','',''),(5,'','Cash','','2018-11-26','','0','1','2018-11-26 09:05:15','','8200','8200','1','retail',NULL,'8200','1','0','0','0','0','0','0','printed',' ','','1','','11543212298','No','',''),(6,'','Cash','','2018-11-26','','0','1','2018-11-26 09:05:25','','7200','7200','1','retail',NULL,'7200','1','0','0','0','0','0','0','printed',' ','','1','','11543212316','No','',''),(7,'','Cash','','2018-11-26','','0','1','2018-11-26 09:05:37','','2000','2000','1','retail',NULL,'2000','1','0','0','0','0','0','0','printed',' ','','1','','11543212326','No','',''),(8,'','Cash','','2018-11-26','','0','1','2018-11-26 09:05:47','','1000','1000','1','retail',NULL,'1000','1','0','0','0','0','0','0','printed',' ','','1','','11543212337','No','',''),(9,'','Cash','','2018-11-26','','0','1','2018-11-26 09:06:05','','2000','2000','1','retail',NULL,'2000','1','0','0','0','0','0','0','printed',' ','','1','','11543212352','No','',''),(10,'','Cash','','2018-11-26','','0','1','2018-11-26 09:10:35','6','40','40','1','retail',NULL,'40','1','0','0','0','0','0','0','printed',' ','','2','','11543212619','No','',''),(11,'','Cash','','2018-12-06','','0','1','2018-12-06 09:02:07','','500','500','1','retail',NULL,'500','1','0','0','0','0','0','0','printed',' ','','1','','11544076117','No','',''),(12,'','Cash','','2018-12-06','','0','1','2018-12-06 09:02:23','','600','600','1','retail',NULL,'600','1','0','0','0','0','0','0','printed',' ','','1','','11544076127','No','',''),(13,'','Cash','','2018-12-06','','0','1','2018-12-06 13:19:50','','100','270','1','retail',NULL,'270','1','0','0','0','0','170','0','printed',' ','','1','','11544091527','No','',''),(14,'','Cash','','2018-12-06','','-950','1','2018-12-06 13:21:40','5','0','950','1','retail',NULL,'950','1','0','0','950','0','0','0','printed',' ','','1','','11544091591','No','',''),(15,'MH44VP7HR2','Cash','','2018-12-06','','0','1','2018-12-06 13:27:01','','0','2100','1','retail',NULL,'2100','1','0','0','0','0','2100.00','0','printed',' ','','2','','11544091999','Cleared','',''),(16,'','Cash','','2018-12-09','','0','1','2018-12-09 17:45:54','','220','220','1','retail',NULL,'220','1','0','0','0','0','0','0','printed',' ','','2','','11544366729','No','',''),(17,'','Cash','','2018-12-09','','0','1','2018-12-09 17:47:32','','500','500','1','retail',NULL,'500','1','0','0','0','0','0','0','printed',' ','','1','','11544366849','Cleared','1','2018-12-09 05:50:18pm'),(18,'','Cash','','2018-12-09','','0','1','2018-12-09 17:47:45','','100','100','1','retail',NULL,'100','1','0','0','0','0','0','0','printed',' ','','2','','11544366861','Cleared','1','2018-12-09 05:50:18pm'),(19,'','Cash','','2018-12-09','','0','1','2018-12-09 17:47:56','','50','50','1','retail',NULL,'50','1','0','0','0','0','0','0','printed',' ','','2','','11544366872','No','',''); /*!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` ( `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, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=37 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 (7,'11543212298','6002269000559',1.00,'1000','retail','0','2018-11-26 09:05:04','','','','750','Cash',137.93,'1000','','','1','','1','2018-11-26 06:05:16','1','1','printed','1','new','pcs','','',''),(8,'11543212298','6002269000559',1.00,'1000','retail','0','2018-11-26 09:05:08','','','','750','Cash',137.93,'1000','','','1','','1','2018-11-26 06:05:16','1','1','printed','1','new','pcs','','',''),(9,'11543212298','125',1.00,'6200','retail','0','2018-11-26 09:05:13','','','','','Cash',855.17,'6200','','','1','','1','2018-11-26 06:05:16','1','1','printed','1','new','pcs','','',''),(10,'11543212316','6001108049582',1.00,'1000','retail','0','2018-11-26 09:05:19','','','','750','Cash',137.93,'1000','','','1','','1','2018-11-26 06:05:25','1','1','printed','1','new','pcs','','',''),(11,'11543212316','125',1.00,'6200','retail','0','2018-11-26 09:05:23','','','','','Cash',855.17,'6200','','','1','','1','2018-11-26 06:05:25','1','1','printed','1','new','pcs','','',''),(12,'11543212326','6001108049582',1.00,'1000','retail','0','2018-11-26 09:05:29','','','','750','Cash',137.93,'1000','','','1','','1','2018-11-26 06:05:37','1','1','printed','1','new','pcs','','',''),(13,'11543212326','6001108049582',1.00,'1000','retail','0','2018-11-26 09:05:33','','','','750','Cash',137.93,'1000','','','1','','1','2018-11-26 06:05:37','1','1','printed','1','new','pcs','','',''),(14,'11543212337','6001108049582',1.00,'1000','retail','0','2018-11-26 09:05:41','','','','750','Cash',137.93,'1000','','','1','','1','2018-11-26 06:05:47','1','1','printed','1','new','pcs','','',''),(15,'11543212352','6002269000566',1.00,'1000','retail','0','2018-11-26 09:05:58','','','','750','Cash',137.93,'1000','','','1','','1','2018-11-26 06:06:05','1','1','printed','1','new','pcs','','',''),(16,'11543212352','6001108049599',1.00,'1000','retail','0','2018-11-26 09:06:02','','','','750','Cash',137.93,'1000','','','1','','1','2018-11-26 06:06:05','1','1','printed','1','new','pcs','','',''),(18,'11543212619','183',1.00,'40','retail','0','2018-11-26 09:10:26','','','','0','Cash',5.52,'40','','','1','','1','2018-11-26 06:10:35','2','25','printed','1','new','pcs','','',''),(25,'11544076117','670221791737',5.00,'500','retail','0','2018-12-06 09:02:03','','','','37.5','Cash',68.97,'100','','','1','','1','2018-12-06 06:02:07','1','5','printed','1','new','pcs','','',''),(26,'11544076127','6161102960181',1.00,'100','retail','0','2018-12-06 09:02:12','','','','35','Cash',13.79,'100','','','1','','1','2018-12-06 06:02:23','1','15','printed','1','new','pcs','','',''),(27,'11544076127','670221791737',5.00,'500','retail','0','2018-12-06 09:02:20','','','','37.5','Cash',68.97,'100','','','1','','1','2018-12-06 06:02:23','1','5','printed','1','new','pcs','','',''),(28,'11544091527','6161101600026',1.00,'170','retail','0','2018-12-06 13:19:05','','','','126.6','Cash',23.45,'170','','','1','','1','2018-12-06 10:19:50','1','2','printed','1','new','pcs','','',''),(29,'11544091527','87126037',1.00,'100','retail','0','2018-12-06 13:19:31','','','','23.75','Cash',13.79,'100','','','1','','1','2018-12-06 10:19:50','1','5','printed','1','new','pcs','','',''),(30,'11544091591','6161101601979',5.00,'950','retail','0','2018-12-06 13:20:26','','','','113.9','Cash',137.93,'190','','','1','','1','2018-12-06 10:21:40','1','3','printed','1','new','pcs','','',''),(31,'11544091999','212',7.00,'2100','retail','0','2018-12-06 13:26:42','','','','0','Cash',41.38,'300','','','1','','1','2018-12-06 10:27:02','2','23','printed','1','new','pcs','','',''),(32,'11544366729','210',1.00,'150','retail','0','2018-12-09 17:45:29','','','','0','Cash',20.69,'150','','','1','','1','2018-12-09 14:45:54','2','23','printed','1','new','pcs','','',''),(33,'11544366729','204',1.00,'70','retail','0','2018-12-09 17:45:32','','','','0','Cash',9.66,'70','','','1','','1','2018-12-09 14:45:54','2','23','printed','1','new','pcs','','',''),(34,'11544366849','6161101602167',1.00,'500','retail','0','2018-12-09 17:47:29','','','','327','Cash',68.97,'500','','','1','','1','2018-12-09 14:47:32','1','10','printed','1','new','pcs','','',''),(35,'11544366861','217',1.00,'100','retail','0','2018-12-09 17:47:42','','','','0','Cash',13.79,'100','','','1','','1','2018-12-09 14:47:46','2','20','printed','1','new','pcs','','',''),(36,'11544366872','231',1.00,'50','retail','0','2018-12-09 17:47:52','','','','0','Cash',6.90,'50','','','1','','1','2018-12-09 14:47:56','2','22','printed','1','new','pcs','','',''); /*!40000 ALTER TABLE `sales_order` 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 AUTO_INCREMENT, `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 `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 */; INSERT INTO `setting` VALUES ('additional_payment_types','Cash, Credit, Mpesa,Bank'),('automatically_email_receipt','0'),('averaging_method','moving_average'),('barcode_price_include_tax','0'),('calculate_average_cost_price_from_receivings','0'),('change_sale_date_when_completing_suspended_sale','1'),('change_sale_date_when_suspending','0'),('company','Robisearch Limited'),('company_logo','1'),('currency_symbol','Ksh'),('customers_store_accounts','1'),('date_format','little_endian'),('default_payment_type','0'),('default_tax_1_name','Vat'),('default_tax_1_rate','16'),('default_tax_2_cumulative','0'),('default_tax_2_name','Sales Tax 2'),('default_tax_2_rate','0.15'),('default_tax_3_name',''),('default_tax_3_rate',''),('default_tax_4_name',''),('default_tax_4_rate',''),('default_tax_5_name',''),('default_tax_5_rate',''),('default_tax_rate','8'),('disable_confirmation_sale','0'),('display1','yes'),('display2','no'),('hide_dashboard_statistics','0'),('hide_signature','0'),('hide_store_account_payments_in_reports','0'),('hide_suspended_sales_in_reports','1'),('language','english'),('number_of_items_per_page','20'),('prices_include_tax','1'),('print_after_sale','1'),('return_policy','All return policy and any other store terms and conditions.'),('round_cash_on_sales','0'),('sale_prefix','POS'),('show_receipt_after_suspending_sale','1'),('time_format','12_hour'),('track_cash','1'),('version','14.0'),('website','www.robisearch.com'); /*!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(11) 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(50) 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 `sms` -- LOCK TABLES `sms` WRITE; /*!40000 ALTER TABLE `sms` DISABLE KEYS */; INSERT INTO `sms` VALUES (1,'254718667391','2018-10-29 10:42:36am','ok','active','1','1'),(2,'254718667391','2018-10-29 10:51:57am','ok','active','1','1'),(3,'254718667391','2018-11-02 10:59:45','hi','active','1','1'),(4,'254721150817,254722284978','2018-11-02 17:01:51','welcome to www.bulksmschapchap.com','active','1','1'),(5,'254721150817,254722284978','2018-11-02 17:01:51','welcome to www.bulksmschapchap.com','active','1','1'); /*!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) NOT NULL, `lastname` varchar(15) NOT NULL, `msisdn` varchar(20) NOT NULL, `used` int(5) NOT NULL DEFAULT 0, `exactime` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=22 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 */; INSERT INTO `sms_in` VALUES (1,'MH41VN93SH Confirmed. on 4/8/18 at 5:46 PM Ksh10.00 received from OUKO MANYALA 254718667391. Account Number 10 New Utility balance is Ksh199,535.00','received','2018-11-03 17:46:38','MH41VN93SH',10.00,'from','OUKO','10',2,'2018-11-03 17:46:38'),(2,'MH44VO8FZQ Confirmed. on 4/8/18 at 6:18 PM Ksh15.00 received from OUKO MANYALA 254718667391. Account Number ROBERT New Utility balance is Ksh199,550.00','254718667391','2018-11-03 17:46:38','MH44VO8FZQ',15.00,'OUKO','MANYALA','ROBERT',2,'2018-11-03 17:46:38'),(3,'MH43VOO3YH Confirmed. on 4/8/18 at 6:31 PM Ksh10.00 received from MAUREEN KIRUI 254722225286. Account Number quorum New Utility balance is Ksh199,560.00','254722225286','2018-11-03 17:46:38','MH43VOO3YH',10.00,'MAUREEN','KIRUI','quorum',2,'2018-11-03 17:46:38'),(4,'MH44VP7HR2 Confirmed. on 4/8/18 at 6:48 PM Ksh2,100.00 received from ALFRED AWENDO OPIYO 254721721933. Account Number quorum New Utility balance is Ksh201,660.00','254721721933','2018-11-03 17:46:38','MH44VP7HR2',2100.00,'ALFRED','AWENDO','quorum',1,'2018-11-03 17:46:38'),(5,'MH42VQ5REY Confirmed. on 4/8/18 at 7:14 PM Ksh1,000.00 received from OGA OKAL 254718266882. Account Number quorum New Utility balance is Ksh202,660.00','254718266882','2018-11-03 17:46:38','MH42VQ5REY',1000.00,'OGA','OKAL','quorum',2,'2018-11-03 17:46:38'),(6,'MH44VQCZZK Confirmed. on 4/8/18 at 7:19 PM Ksh1,100.00 received from PHOEBE AKOTH ODERO 254701273620. Account Number QUORUM New Utility balance is Ksh203,760.00','254701273620','2018-11-03 17:46:38','MH44VQCZZK',1100.00,'PHOEBE','AKOTH','QUORUM',2,'2018-11-03 17:46:38'),(7,'MH45VR44UT Confirmed. on 4/8/18 at 7:40 PM Ksh1,000.00 received from KEVIN OCHIENG 254708053635. Account Number quorum New Utility balance is Ksh204,760.00','254708053635','2018-11-03 17:46:38','MH45VR44UT',1000.00,'KEVIN','OCHIENG','quorum',2,'2018-11-03 17:46:38'),(8,'MH40VS7YRS Confirmed. on 4/8/18 at 8:12 PM Ksh500.00 received from MILTON OBOTE 254722778673. Account Number QUORUM New Utility balance is Ksh205,260.00','254722778673','2018-11-03 17:46:38','MH40VS7YRS',500.00,'MILTON','OBOTE','QUORUM',2,'2018-11-03 17:46:38'),(9,'MH43VTGINV Confirmed. on 4/8/18 at 8:56 PM Ksh2,100.00 received from TONNY OCHIENG TAKAHASHI RAO 254723107065. Account Number Quorum New Utility balance is Ksh207,360.00','','2018-11-03 17:46:38','MH43VTGINV',2100.00,'TONNY','OCHIENG','Account',2,'2018-11-03 17:46:38'),(10,'MH41VTR621 Confirmed. on 4/8/18 at 9:08 PM Ksh1,600.00 received from DAVID OKELLO 254708469713. Account Number AC New Utility balance is Ksh208,960.00','254708469713','2018-11-03 17:46:38','MH41VTR621',1600.00,'DAVID','OKELLO','AC',2,'2018-11-03 17:46:38'),(11,'MH46VUA03W Confirmed. on 4/8/18 at 9:33 PM Ksh1,400.00 received from EUNICE MUGENYA 254720987487. Account Number quorum New Utility balance is Ksh210,360.00','254720987487','2018-11-03 17:46:38','MH46VUA03W',1400.00,'EUNICE','MUGENYA','quorum',2,'2018-11-03 17:46:38'),(12,'MH45VUKO9B Confirmed. on 4/8/18 at 9:49 PM Ksh2,100.00 received from BENARD BUYU 254724376236. Account Number quorum New Utility balance is Ksh212,460.00','254724376236','2018-11-03 17:46:38','MH45VUKO9B',2100.00,'BENARD','BUYU','quorum',2,'2018-11-03 17:46:38'),(13,'MH45VUQNB9 Confirmed. on 4/8/18 at 9:59 PM Ksh1,150.00 received from ISAAC AMOS 254721439488. Account Number Quorum New Utility balance is Ksh213,610.00','254721439488','2018-11-03 17:46:38','MH45VUQNB9',1150.00,'ISAAC','AMOS','Quorum',2,'2018-11-03 17:46:38'),(14,'MH48VUSXFG Confirmed. on 4/8/18 at 10:03 PM Ksh200.00 received from THOMAS OWITI 254721926331. Account Number quorum New Utility balance is Ksh213,810.00','254721926331','2018-11-03 17:46:38','MH48VUSXFG',200.00,'THOMAS','OWITI','quorum',1,'2018-11-03 17:46:38'),(15,'MH46VV5YZU Confirmed. on 4/8/18 at 10:32 PM Ksh400.00 received from JACKSON OPONDO OGWINDI 254707712947. Account Number quorum New Utility balance is Ksh214,210.00','254707712947','2018-11-03 17:46:38','MH46VV5YZU',400.00,'JACKSON','OPONDO','quorum',1,'2018-11-03 17:46:38'),(16,'MH43VVASBH Confirmed. on 4/8/18 at 10:45 PM Ksh1,000.00 received from SILAS MWALO 254721966050. Account Number Quoram New Utility balance is Ksh215,210.00','254721966050','2018-11-03 17:46:38','MH43VVASBH',1000.00,'SILAS','MWALO','Quoram',1,'2018-11-03 17:46:38'),(17,'MH45VVAXKF Confirmed. on 4/8/18 at 10:45 PM Ksh600.00 received from KENNETH OTIENO 254729623810. Account Number quorum New Utility balance is Ksh215,810.00','254729623810','2018-11-03 17:46:38','MH45VVAXKF',600.00,'KENNETH','OTIENO','quorum',1,'2018-11-03 17:46:38'),(18,'MH40VVD3A2 Confirmed. on 4/8/18 at 10:52 PM Ksh1,200.00 received from SILA MULELA 254721932190. Account Number QUORUM New Utility balance is Ksh217,010.00','254721932190','2018-11-03 17:46:38','MH40VVD3A2',1200.00,'SILA','MULELA','QUORUM',1,'2018-11-03 17:46:38'),(19,'MH42VVEBFK Confirmed. on 4/8/18 at 10:56 PM Ksh200.00 received from FELIX OPONDO 254713112310. Account Number quorum New Utility balance is Ksh217,210.00','254713112310','2018-11-03 17:46:38','MH42VVEBFK',200.00,'FELIX','OPONDO','quorum',1,'2018-11-03 17:46:38'),(20,'MH41VVFDC9 Confirmed. on 4/8/18 at 11:00 PM Ksh1,100.00 received from BERNARD KARIUKI 254725253074. Account Number quorum New Utility balance is Ksh218,310.00','received','2018-11-03 17:46:38','MH41VVFDC9',1100.00,'from','BERNARD','quorum',1,'2018-11-03 17:46:38'),(21,'MH47VVHH5B Confirmed. on 4/8/18 at 11:08 PM Ksh400.00 received from MERLICE OULO 254724833079. Account Number Quorum New Utility balance is Ksh218,710.00','received','2018-11-03 17:46:38','MH47VVHH5B',400.00,'from','MERLICE','Quorum',1,'2018-11-03 17:46:38'); /*!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 AUTO_INCREMENT, `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` varchar(50) 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, 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 `smsconfig` -- LOCK TABLES `smsconfig` WRITE; /*!40000 ALTER TABLE `smsconfig` DISABLE KEYS */; INSERT INTO `smsconfig` VALUES (1,'robisearch','ea67f98c303d01fa799ceecce2cac06b22bf82a7729b73f0417052b5a8c659a2','ROBISEARCH','','<h1>MEL\'s Flame Grilled Chicken</h1>\r\n\r\nTELEPHONE:0702942883/0727518881\r\n','0727518881','JUJA','1680africa@protonmail.com','ROBISEARCHPOS-201701','1680 BAR & GRILL<BR> \r\n254746297242 <BR> \r\n1680africa@protonmail.com<BR> \r\nrobisearch@gmail.com www.robisearch.com<BR> \r\nwww.shujaawangu.com KCB CAPITAL HILL <BR> \r\nACC NO, 1171211120 <BR> \r\nPAY BILL NO, 717475<BR> \r\n','JOHNKINGSLY','r54321','0702942883','49318-00100 Nairobi','KSH','VAT','16','16','10','http://www.gitobuimanyara.com1/','GOODS ONCE SOLD ARE NOT RETURNABLE ','2018-10-221540220928.png','CASH','1 ','','1','2018-12-07 05:27:48','yes','yes','no','no','2019-12-04','<center>TILL NO:940689</center>','TERMS OF SERVICE<br>\r\n1. Grand total of Ksh.25, 000is payable once (One off payment).<br>\r\n2. The cost per SMS is KSH.1<br>\r\n3. The annual maintenance cost is Ksh.5000<br>\r\n4. Price for Integration with any other ROCKY existing system is negotiable.<br>\r\n5. We will offer you 1000 free SMS to help you kick off with the system.<br>\r\n','no','You were to renew your account by 5/1/2019 and you have not yet paid. Kindly send your money to our paybil no:717475 then system will continue working correctly','zvhEndvB+q80Qnmb9KJtU1OX39XcfCoylhYtYq/Bs5agar9AapK0cME18gyQxw+jULXbkw4HISwshX7Bae78wQ==','','Current','Current','00:00','23:59','Restaurant','Two Without Automatic Logout','Before Receipt'); /*!40000 ALTER TABLE `smsconfig` 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, 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 `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` 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, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=241 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 */; INSERT INTO `stock` VALUES (1,'241',1.00,0.00,1.00,0.00,1.00,25.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(2,'240',999984.00,0.00,999984.00,0.00,999984.00,100.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(3,'239',1000000.00,0.00,1000000.00,0.00,1000000.00,50.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(4,'238',999999.00,0.00,999999.00,0.00,999999.00,10.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(5,'670221791737',48.00,0.00,48.00,0.00,48.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(6,'237',41110.00,0.00,41110.00,0.00,41110.00,250.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(7,'236',41105.00,0.00,41105.00,0.00,41105.00,50.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(8,'235',3.00,0.00,3.00,0.00,3.00,2500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(9,'234',4.00,0.00,4.00,0.00,4.00,1500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(10,'233',10.00,0.00,10.00,0.00,10.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(11,'232',1000000.00,0.00,1000000.00,0.00,1000000.00,1500.00,0.00,1,'3',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(12,'231',999999.00,0.00,999999.00,0.00,999999.00,50.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(13,'230',1000000.00,0.00,1000000.00,0.00,1000000.00,50.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(14,'229',1000000.00,0.00,1000000.00,0.00,1000000.00,50.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(15,'228',999998.00,0.00,999998.00,0.00,999998.00,50.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(16,'227',1000000.00,0.00,1000000.00,0.00,1000000.00,30.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(17,'226',999997.00,0.00,999997.00,0.00,999997.00,80.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(18,'225',999987.00,0.00,999987.00,0.00,999987.00,60.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(19,'224',999928.00,0.00,999928.00,0.00,999928.00,30.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(20,'223',999990.00,0.00,999990.00,0.00,999990.00,20.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(21,'222',999996.00,0.00,999996.00,0.00,999996.00,40.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(22,'221',999990.00,0.00,999990.00,0.00,999990.00,70.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(23,'220',36.00,0.00,36.00,0.00,36.00,30.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(24,'219',716.00,0.00,716.00,0.00,716.00,40.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(25,'218',999818.00,0.00,999818.00,0.00,999818.00,100.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(26,'217',999997.00,0.00,999997.00,0.00,999997.00,100.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(27,'216',1000000.00,0.00,1000000.00,0.00,1000000.00,100.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(28,'215',100.00,0.00,100.00,0.00,100.00,700.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(29,'214',100.00,0.00,100.00,0.00,100.00,750.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(30,'213',100.00,0.00,100.00,0.00,100.00,400.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(31,'212',999993.00,0.00,999993.00,0.00,999993.00,300.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(32,'211',1000000.00,0.00,1000000.00,0.00,1000000.00,200.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(33,'210',999995.00,0.00,999995.00,0.00,999995.00,150.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(34,'209',1000000.00,0.00,1000000.00,0.00,1000000.00,110.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(35,'208',1000000.00,0.00,1000000.00,0.00,1000000.00,110.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(36,'207',1000000.00,0.00,1000000.00,0.00,1000000.00,110.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(37,'206',1000000.00,0.00,1000000.00,0.00,1000000.00,140.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(38,'205',999993.00,0.00,999993.00,0.00,999993.00,100.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(39,'204',1000000.00,0.00,1000000.00,0.00,1000000.00,70.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(40,'203',999997.00,0.00,999997.00,0.00,999997.00,70.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(41,'202',999989.00,0.00,999989.00,0.00,999989.00,100.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(42,'201',999996.00,0.00,999996.00,0.00,999996.00,750.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(43,'200',999996.00,0.00,999996.00,0.00,999996.00,1300.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(44,'199',1000000.00,0.00,1000000.00,0.00,1000000.00,250.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(45,'198',999998.00,0.00,999998.00,0.00,999998.00,180.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(46,'197',999990.00,0.00,999990.00,0.00,999990.00,250.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(47,'196',999999.00,0.00,999999.00,0.00,999999.00,200.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(48,'195',1000000.00,0.00,1000000.00,0.00,1000000.00,170.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(49,'194',1000000.00,0.00,1000000.00,0.00,1000000.00,170.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(50,'193',999999.00,0.00,999999.00,0.00,999999.00,100.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(51,'192',999997.00,0.00,999997.00,0.00,999997.00,130.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(52,'191',999995.00,0.00,999995.00,0.00,999995.00,100.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(53,'190',999999.00,0.00,999999.00,0.00,999999.00,80.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(54,'189',1000000.00,0.00,1000000.00,0.00,1000000.00,80.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(55,'188',1000000.00,0.00,1000000.00,0.00,1000000.00,70.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(56,'187',1000000.00,0.00,1000000.00,0.00,1000000.00,30.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(57,'186',999999.00,0.00,999999.00,0.00,999999.00,40.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(58,'185',1000000.00,0.00,1000000.00,0.00,1000000.00,70.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(59,'184',99999866.99,0.00,99999866.99,0.00,99999866.99,50.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(60,'183',9999.00,0.00,9999.00,0.00,9999.00,40.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(61,'182',999997.00,0.00,999997.00,0.00,999997.00,80.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(62,'181',1000000.00,0.00,1000000.00,0.00,1000000.00,50.00,0.00,1,'2',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(63,'180',1.00,0.00,1.00,0.00,1.00,7000.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(64,'6009607673345',26.00,0.00,26.00,0.00,26.00,10.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(65,'6161102960181',22.00,0.00,22.00,0.00,22.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(66,'8906005280695',14.00,0.00,14.00,0.00,14.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(67,'6008686400415',99.00,0.00,99.00,0.00,99.00,20.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(68,'6161102960204',13.00,0.00,13.00,0.00,13.00,50.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(69,'174',46.00,0.00,46.00,0.00,46.00,20.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(70,'173',0.00,0.00,0.00,0.00,0.00,20.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(71,'6009611170274',38.00,0.00,38.00,0.00,38.00,20.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(72,'6008165263425',14.00,0.00,14.00,0.00,14.00,250.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(73,'61600041',18.00,0.00,18.00,0.00,18.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(74,'61600171',24.00,0.00,24.00,0.00,24.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(75,'6008165265931',30.00,0.00,30.00,0.00,30.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(76,'167',42.00,0.00,42.00,0.00,42.00,30.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(77,'166',25.00,0.00,25.00,0.00,25.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(78,'165',19.00,0.00,19.00,0.00,19.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(79,'164',12.00,0.00,12.00,0.00,12.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(80,'163',0.00,0.00,0.00,0.00,0.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(81,'162',0.00,0.00,0.00,0.00,0.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(82,'161',0.00,0.00,0.00,0.00,0.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(83,'160',0.00,0.00,0.00,0.00,0.00,300.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(84,'159',20.00,0.00,20.00,0.00,20.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(85,'158',20.00,0.00,20.00,0.00,20.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(86,'157',3.00,0.00,3.00,0.00,3.00,250.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(87,'156',0.00,0.00,0.00,0.00,0.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(88,'155',0.00,0.00,0.00,0.00,0.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(89,'154',26.00,0.00,26.00,0.00,26.00,300.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(90,'153',7.00,0.00,7.00,0.00,7.00,250.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(91,'152',10.00,0.00,10.00,0.00,10.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(92,'151',11.00,0.00,11.00,0.00,11.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(93,'150',20.00,0.00,20.00,0.00,20.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(94,'149',13.00,0.00,13.00,0.00,13.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(95,'148',17.00,0.00,17.00,0.00,17.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(96,'147',20.00,0.00,20.00,0.00,20.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(97,'146',0.00,0.00,0.00,0.00,0.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(98,'145',0.00,0.00,0.00,0.00,0.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(99,'144',21.00,0.00,21.00,0.00,21.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(100,'143',10.00,0.00,10.00,0.00,10.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(101,'142',5.00,0.00,5.00,0.00,5.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(102,'141',17.00,0.00,17.00,0.00,17.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(103,'140',1.00,0.00,1.00,0.00,1.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(104,'139',18.00,0.00,18.00,0.00,18.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(105,'138',9.00,0.00,9.00,0.00,9.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(106,'137',3.00,0.00,3.00,0.00,3.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(107,'136',0.00,0.00,0.00,0.00,0.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(108,'135',32.00,0.00,32.00,0.00,32.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(109,'134',8.00,0.00,8.00,0.00,8.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(110,'133',16.00,0.00,16.00,0.00,16.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(111,'132',5.00,0.00,5.00,0.00,5.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(112,'131',0.00,0.00,0.00,0.00,0.00,150.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(113,'130',0.00,0.00,0.00,0.00,0.00,6200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(114,'129',0.00,0.00,0.00,0.00,0.00,6200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(115,'128',1.00,0.00,1.00,0.00,1.00,6200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(116,'127',0.00,0.00,0.00,0.00,0.00,6200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(117,'126',1.00,0.00,1.00,0.00,1.00,6200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(118,'125',0.00,0.00,0.00,0.00,0.00,6200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(119,'124',0.00,0.00,0.00,0.00,0.00,1200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(120,'8410702015271',4.00,0.00,4.00,0.00,4.00,800.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(121,'8410702006545',6.00,0.00,6.00,0.00,6.00,800.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(122,'121',21.00,0.00,21.00,0.00,21.00,800.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(123,'6161100421271',11.00,0.00,11.00,0.00,11.00,800.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(124,'6001495203055',9.00,0.00,9.00,0.00,9.00,1000.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(125,'6001495201501',7.00,0.00,7.00,0.00,7.00,1000.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(126,'6002269000559',5.00,0.00,5.00,0.00,5.00,1000.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(127,'6002269000566',6.00,0.00,6.00,0.00,6.00,1000.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(128,'6001108049599',4.00,0.00,4.00,0.00,4.00,1000.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(129,'6001108049582',1.00,0.00,1.00,0.00,1.00,1000.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(130,'6001496301705',4.00,0.00,4.00,0.00,4.00,1000.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(131,'6001496301804',7.00,0.00,7.00,0.00,7.00,1000.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(132,'7501012916127',1.00,0.00,1.00,0.00,1.00,2500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(133,'6001812500041',1.00,0.00,1.00,0.00,1.00,2500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(134,'109',1.00,0.00,1.00,0.00,1.00,2500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(135,'108',1.00,0.00,1.00,0.00,1.00,2500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(136,'107',0.00,0.00,0.00,0.00,0.00,1400.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(137,'106',0.00,0.00,0.00,0.00,0.00,600.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(138,'6001495062508',5.00,0.00,5.00,0.00,5.00,2500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(139,'6001495062478',5.00,0.00,5.00,0.00,5.00,1200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(140,'5011013100132',5.00,0.00,5.00,0.00,5.00,2500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(141,'5011013100194',3.00,0.00,3.00,0.00,3.00,1300.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(142,'50',0.00,0.00,0.00,0.00,0.00,900.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(143,'5029704217830',2.00,0.00,2.00,0.00,2.00,2000.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(144,'99',0.00,0.00,0.00,0.00,0.00,1500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(145,'98',0.00,0.00,0.00,0.00,0.00,2000.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(146,'5010677015615',0.00,0.00,0.00,0.00,0.00,4200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(147,'5000289020701',0.00,0.00,0.00,0.00,0.00,1500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(148,'5010103937160',1.00,0.00,1.00,0.00,1.00,3800.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(149,'80432400395',1.00,0.00,1.00,0.00,1.00,3500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(150,'5010284100001',2.00,0.00,2.00,0.00,2.00,2500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(151,'5010327324128',1.00,0.00,1.00,0.00,1.00,6500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(152,'5000281023212',2.00,0.00,2.00,0.00,2.00,6500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(153,'82184090473',6.00,0.00,6.00,0.00,6.00,4200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(154,'89',0.00,0.00,0.00,0.00,0.00,2500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(155,'5099873015506',3.00,0.00,3.00,0.00,3.00,2500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(156,'5010327000046',7.00,0.00,7.00,0.00,7.00,1800.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(157,'5010327207117',9.00,0.00,9.00,0.00,9.00,900.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(158,'5010314750008',3.00,0.00,3.00,0.00,3.00,2500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(159,'84',0.00,0.00,0.00,0.00,0.00,1500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(160,'5000267112077',0.00,0.00,0.00,0.00,0.00,7000.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(161,'5000267024011',7.00,0.00,7.00,0.00,7.00,4800.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(162,'5000267024608',6.00,0.00,6.00,0.00,6.00,2500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(163,'5000267014005',3.00,0.00,3.00,0.00,3.00,2500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(164,'5000267014609',5.00,0.00,5.00,0.00,5.00,1500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(165,'5000267015200',8.00,0.00,8.00,0.00,8.00,900.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(166,'77',0.00,0.00,0.00,0.00,0.00,3500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(167,'5011007003029',3.00,0.00,3.00,0.00,3.00,3300.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(168,'5011007003654',6.00,0.00,6.00,0.00,6.00,1700.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(169,'6009675692576',10.00,0.00,10.00,0.00,10.00,1200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(170,'73',0.00,0.00,0.00,0.00,0.00,650.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(171,'6009675695225',13.00,0.00,13.00,0.00,13.00,400.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(172,'5000299223031',7.00,0.00,7.00,0.00,7.00,2200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(173,'6161101604550',17.00,0.00,17.00,0.00,17.00,400.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(174,'50196111',1.00,0.00,1.00,0.00,1.00,1300.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(175,'50196166',10.00,0.00,10.00,0.00,10.00,750.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(176,'5010752000321',4.00,0.00,4.00,0.00,4.00,1600.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(177,'5010752000420',11.00,0.00,11.00,0.00,11.00,900.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(178,'65',0.00,0.00,0.00,0.00,0.00,1500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(179,'5010103930970',9.00,0.00,9.00,0.00,9.00,750.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(180,'6161101602143',6.00,0.00,6.00,0.00,6.00,500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(181,'5000292001001',4.00,0.00,4.00,0.00,4.00,1800.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(182,'6161101601115',19.00,0.00,19.00,0.00,19.00,900.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(183,'6001496011796',9.00,0.00,9.00,0.00,9.00,1600.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(184,'6001496011772',19.00,0.00,19.00,0.00,19.00,750.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(185,'6001108016034',19.00,0.00,19.00,0.00,19.00,500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(186,'5010103930864',4.00,0.00,4.00,0.00,4.00,1500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(187,'5010103930871',11.00,0.00,11.00,0.00,11.00,700.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(188,'6161101602181',10.00,0.00,10.00,0.00,10.00,500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(189,'5010103930628',6.00,0.00,6.00,0.00,6.00,1500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(190,'535010103930666',10.00,0.00,10.00,0.00,10.00,750.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(191,'6161101602167',21.00,0.00,21.00,0.00,21.00,500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(192,'6161101130424',3.00,0.00,3.00,0.00,3.00,1000.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(193,'5010103930833',6.00,0.00,6.00,0.00,6.00,1000.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(194,'5010103930840',11.00,0.00,11.00,0.00,11.00,600.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(195,'6161101602211',34.00,0.00,34.00,0.00,34.00,350.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(196,'47',0.00,0.00,0.00,0.00,0.00,1300.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(197,'3800032035219',3.00,0.00,3.00,0.00,3.00,800.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(198,'45',0.00,0.00,0.00,0.00,0.00,400.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(199,'6161101600934',6.00,0.00,6.00,0.00,6.00,1500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(200,'6161101600941',6.00,0.00,6.00,0.00,6.00,750.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(201,'6161101602051',12.00,0.00,12.00,0.00,12.00,500.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(202,'5060335632715',25.00,0.00,25.00,0.00,25.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(203,'4090162602',31.00,0.00,31.00,0.00,31.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(204,'6161101601382',8.00,0.00,8.00,0.00,8.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(205,'54492677',0.00,0.00,0.00,0.00,0.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(206,'37',0.00,0.00,0.00,0.00,0.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(207,'87126037',40.00,0.00,40.00,0.00,40.00,100.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(208,'24000150152',32.00,0.00,32.00,0.00,32.00,300.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(209,'6008835000930',2.00,0.00,2.00,0.00,2.00,300.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(210,'33',0.00,0.00,0.00,0.00,0.00,120.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(211,'32',0.00,0.00,0.00,0.00,0.00,70.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(212,'31',0.00,0.00,0.00,0.00,0.00,120.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(213,'30',0.00,0.00,0.00,0.00,0.00,70.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(214,'670221791720',37.00,0.00,37.00,0.00,37.00,50.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(215,'6161101602433',20.00,0.00,20.00,0.00,20.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(216,'6161101604406',42.00,0.00,42.00,0.00,42.00,220.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(217,'6161101603379',18.00,0.00,18.00,0.00,18.00,220.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(218,'6161101602600',11.00,0.00,11.00,0.00,11.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(219,'6161101602372',32.00,0.00,32.00,0.00,32.00,220.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(220,'6161101601979',26.00,0.00,26.00,0.00,26.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(221,'6161101604192',55.00,0.00,55.00,0.00,55.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(222,'6161101603324',70.00,0.00,70.00,0.00,70.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(223,'6201100061500',13.00,0.00,13.00,0.00,13.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(224,'4600682000501',37.00,0.00,37.00,0.00,37.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(225,'6161100420021',37.00,0.00,37.00,0.00,37.00,200.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(226,'8712000900663',50.00,0.00,50.00,0.00,50.00,220.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(227,'6161101602426',92.00,0.00,92.00,0.00,92.00,180.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(228,'6161101600163',91.00,0.00,91.00,0.00,91.00,180.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(229,'6164000840067',25.00,0.00,25.00,0.00,25.00,180.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(230,'6161100240841',16.00,0.00,16.00,0.00,16.00,160.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(231,'6161100240858',43.00,0.00,43.00,0.00,43.00,160.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(232,'6161101602389',87.00,0.00,87.00,0.00,87.00,180.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(233,'6009603340555',82.00,0.00,82.00,0.00,82.00,180.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(234,'6161101603256',267.00,0.00,267.00,0.00,267.00,170.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(235,'6161101600101',257.00,0.00,257.00,0.00,257.00,190.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(236,'6161101600002',80.00,0.00,80.00,0.00,80.00,180.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(237,'6161101600095',168.00,0.00,168.00,0.00,168.00,180.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(238,'6161101600026',100.00,0.00,100.00,0.00,100.00,170.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(239,'6161101604246',128.00,0.00,128.00,0.00,128.00,170.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'),(240,'6161101600125',340.00,0.00,340.00,0.00,340.00,170.00,0.00,1,'1',1,1,'2018-12-07','2018-12-07',1,'05:45:44'); /*!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, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=482 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 */; INSERT INTO `stocktaking` VALUES (1,'241',1.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(2,'240',999984.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(3,'239',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(4,'238',999999.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(5,'670221791737',48.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(6,'237',41110.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(7,'236',41105.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(8,'235',3.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(9,'234',4.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(10,'233',10.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(11,'232',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',3),(12,'231',999999.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(13,'230',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(14,'229',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(15,'228',999998.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(16,'227',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(17,'226',999997.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(18,'225',999987.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(19,'224',999928.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(20,'223',999990.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(21,'222',999996.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(22,'221',999990.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(23,'220',36.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(24,'219',716.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(25,'218',999818.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(26,'217',999997.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(27,'216',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(28,'215',100.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(29,'214',100.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(30,'213',100.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(31,'212',999993.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(32,'211',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(33,'210',999995.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(34,'209',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(35,'208',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(36,'207',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(37,'206',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(38,'205',999993.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(39,'204',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(40,'203',999997.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(41,'202',999989.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(42,'201',999996.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(43,'200',999996.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(44,'199',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(45,'198',999998.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(46,'197',999990.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(47,'196',999999.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(48,'195',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(49,'194',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(50,'193',999999.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(51,'192',999997.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(52,'191',999995.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(53,'190',999999.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(54,'189',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(55,'188',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(56,'187',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(57,'186',999999.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(58,'185',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(59,'184',99999866.99,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(60,'183',9999.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(61,'182',999997.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(62,'181',1000000.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',2),(63,'180',1.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(64,'6009607673345',26.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(65,'6161102960181',22.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(66,'8906005280695',14.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(67,'6008686400415',99.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(68,'6161102960204',13.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(69,'174',46.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(70,'173',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(71,'6009611170274',38.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(72,'6008165263425',14.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(73,'61600041',18.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(74,'61600171',24.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(75,'6008165265931',30.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(76,'167',42.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(77,'166',25.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(78,'165',19.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(79,'164',12.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(80,'163',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(81,'162',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(82,'161',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(83,'160',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(84,'159',20.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(85,'158',20.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(86,'157',3.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(87,'156',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(88,'155',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(89,'154',26.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(90,'153',7.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(91,'152',10.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(92,'151',11.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(93,'150',20.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(94,'149',13.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(95,'148',17.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(96,'147',20.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(97,'146',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(98,'145',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(99,'144',21.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(100,'143',10.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(101,'142',5.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(102,'141',17.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(103,'140',1.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(104,'139',18.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(105,'138',9.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(106,'137',3.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(107,'136',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(108,'135',32.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(109,'134',8.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(110,'133',16.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(111,'132',5.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(112,'131',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(113,'130',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(114,'129',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(115,'128',1.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(116,'127',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(117,'126',1.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(118,'125',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(119,'124',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(120,'8410702015271',4.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(121,'8410702006545',6.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(122,'121',21.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(123,'6161100421271',11.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(124,'6001495203055',9.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(125,'6001495201501',7.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(126,'6002269000559',5.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(127,'6002269000566',6.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(128,'6001108049599',4.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(129,'6001108049582',1.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(130,'6001496301705',4.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(131,'6001496301804',7.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(132,'7501012916127',1.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(133,'6001812500041',1.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(134,'109',1.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(135,'108',1.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(136,'107',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(137,'106',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(138,'6001495062508',5.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(139,'6001495062478',5.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(140,'5011013100132',5.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(141,'5011013100194',3.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(142,'50',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(143,'5029704217830',2.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(144,'99',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(145,'98',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(146,'5010677015615',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(147,'5000289020701',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(148,'5010103937160',1.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(149,'80432400395',1.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(150,'5010284100001',2.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(151,'5010327324128',1.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(152,'5000281023212',2.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(153,'82184090473',6.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(154,'89',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(155,'5099873015506',3.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(156,'5010327000046',7.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(157,'5010327207117',9.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(158,'5010314750008',3.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(159,'84',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(160,'5000267112077',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(161,'5000267024011',7.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(162,'5000267024608',6.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(163,'5000267014005',3.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(164,'5000267014609',5.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(165,'5000267015200',8.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(166,'77',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(167,'5011007003029',3.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(168,'5011007003654',6.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(169,'6009675692576',10.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(170,'73',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(171,'6009675695225',13.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(172,'5000299223031',7.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(173,'6161101604550',17.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(174,'50196111',1.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(175,'50196166',10.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(176,'5010752000321',4.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(177,'5010752000420',11.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(178,'65',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(179,'5010103930970',9.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(180,'6161101602143',6.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(181,'5000292001001',4.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(182,'6161101601115',19.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(183,'6001496011796',9.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(184,'6001496011772',19.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(185,'6001108016034',19.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(186,'5010103930864',4.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(187,'5010103930871',11.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(188,'6161101602181',10.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(189,'5010103930628',6.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(190,'535010103930666',10.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(191,'6161101602167',21.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(192,'6161101130424',3.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(193,'5010103930833',6.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(194,'5010103930840',11.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(195,'6161101602211',34.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(196,'47',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(197,'3800032035219',3.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(198,'45',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(199,'6161101600934',6.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(200,'6161101600941',6.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(201,'6161101602051',12.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(202,'5060335632715',25.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(203,'4090162602',31.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(204,'6161101601382',8.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(205,'54492677',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(206,'37',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(207,'87126037',40.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(208,'24000150152',32.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(209,'6008835000930',2.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(210,'33',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(211,'32',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(212,'31',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(213,'30',0.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(214,'670221791720',37.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(215,'6161101602433',20.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(216,'6161101604406',42.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(217,'6161101603379',18.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(218,'6161101602600',11.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(219,'6161101602372',32.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(220,'6161101601979',26.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(221,'6161101604192',55.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(222,'6161101603324',70.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(223,'6201100061500',13.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(224,'4600682000501',37.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(225,'6161100420021',37.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(226,'8712000900663',50.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(227,'6161101602426',92.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(228,'6161101600163',91.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(229,'6164000840067',25.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(230,'6161100240841',16.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(231,'6161100240858',43.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(232,'6161101602389',87.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(233,'6009603340555',82.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(234,'6161101603256',267.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(235,'6161101600101',257.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(236,'6161101600002',80.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(237,'6161101600095',168.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(238,'6161101600026',100.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(239,'6161101604246',128.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(240,'6161101600125',340.00,0.00,0.00,1,'branch',1,1,'2018-12-07','',0,'06:16:25','open',1),(241,'241',1.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(242,'240',999984.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(243,'239',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(244,'238',999999.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(245,'670221791737',38.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(246,'237',41110.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(247,'236',41105.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(248,'235',3.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(249,'234',4.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(250,'233',10.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(251,'232',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',3),(252,'231',999999.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(253,'230',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(254,'229',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(255,'228',999998.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(256,'227',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(257,'226',999997.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(258,'225',999987.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(259,'224',999928.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(260,'223',999990.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(261,'222',999996.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(262,'221',999990.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(263,'220',36.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(264,'219',716.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(265,'218',999818.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(266,'217',999997.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(267,'216',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(268,'215',100.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(269,'214',100.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(270,'213',100.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(271,'212',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(272,'211',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(273,'210',999995.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(274,'209',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(275,'208',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(276,'207',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(277,'206',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(278,'205',999993.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(279,'204',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(280,'203',999997.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(281,'202',999989.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(282,'201',999996.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(283,'200',999996.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(284,'199',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(285,'198',999998.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(286,'197',999990.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(287,'196',999999.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(288,'195',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(289,'194',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(290,'193',999999.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(291,'192',999997.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(292,'191',999995.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(293,'190',999999.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(294,'189',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(295,'188',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(296,'187',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(297,'186',999999.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(298,'185',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(299,'184',99999866.99,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(300,'183',10000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(301,'182',999997.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(302,'181',1000000.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',2),(303,'180',1.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(304,'6009607673345',26.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(305,'6161102960181',23.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(306,'8906005280695',14.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(307,'6008686400415',99.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(308,'6161102960204',13.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(309,'174',46.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(310,'173',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(311,'6009611170274',38.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(312,'6008165263425',14.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(313,'61600041',18.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(314,'61600171',24.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(315,'6008165265931',30.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(316,'167',42.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(317,'166',25.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(318,'165',19.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(319,'164',12.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(320,'163',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(321,'162',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(322,'161',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(323,'160',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(324,'159',20.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(325,'158',20.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(326,'157',3.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(327,'156',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(328,'155',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(329,'154',26.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(330,'153',7.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(331,'152',10.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(332,'151',11.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(333,'150',20.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(334,'149',13.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(335,'148',17.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(336,'147',20.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(337,'146',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(338,'145',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(339,'144',21.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(340,'143',10.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(341,'142',5.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(342,'141',17.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(343,'140',1.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(344,'139',18.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(345,'138',9.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(346,'137',3.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(347,'136',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(348,'135',32.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(349,'134',8.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(350,'133',16.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(351,'132',5.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(352,'131',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(353,'130',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(354,'129',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(355,'128',1.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(356,'127',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(357,'126',1.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(358,'125',2.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(359,'124',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(360,'8410702015271',4.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(361,'8410702006545',6.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(362,'121',21.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(363,'6161100421271',11.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(364,'6001495203055',9.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(365,'6001495201501',7.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(366,'6002269000559',7.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(367,'6002269000566',7.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(368,'6001108049599',5.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(369,'6001108049582',5.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(370,'6001496301705',4.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(371,'6001496301804',7.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(372,'7501012916127',1.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(373,'6001812500041',1.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(374,'109',1.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(375,'108',1.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(376,'107',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(377,'106',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(378,'6001495062508',5.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(379,'6001495062478',5.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(380,'5011013100132',5.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(381,'5011013100194',3.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(382,'50',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(383,'5029704217830',2.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(384,'99',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(385,'98',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(386,'5010677015615',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(387,'5000289020701',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(388,'5010103937160',1.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(389,'80432400395',1.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(390,'5010284100001',2.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(391,'5010327324128',1.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(392,'5000281023212',2.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(393,'82184090473',6.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(394,'89',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(395,'5099873015506',3.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(396,'5010327000046',7.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(397,'5010327207117',9.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(398,'5010314750008',3.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(399,'84',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(400,'5000267112077',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(401,'5000267024011',7.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(402,'5000267024608',6.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(403,'5000267014005',3.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(404,'5000267014609',5.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(405,'5000267015200',8.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(406,'77',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(407,'5011007003029',3.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(408,'5011007003654',6.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(409,'6009675692576',10.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(410,'73',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(411,'6009675695225',13.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(412,'5000299223031',7.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(413,'6161101604550',17.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(414,'50196111',1.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(415,'50196166',10.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(416,'5010752000321',4.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(417,'5010752000420',11.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(418,'65',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(419,'5010103930970',9.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(420,'6161101602143',6.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(421,'5000292001001',4.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(422,'6161101601115',19.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(423,'6001496011796',9.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(424,'6001496011772',19.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(425,'6001108016034',19.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(426,'5010103930864',4.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(427,'5010103930871',11.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(428,'6161101602181',10.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(429,'5010103930628',6.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(430,'535010103930666',10.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(431,'6161101602167',21.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(432,'6161101130424',3.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(433,'5010103930833',6.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(434,'5010103930840',11.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(435,'6161101602211',34.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(436,'47',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(437,'3800032035219',3.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(438,'45',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(439,'6161101600934',6.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(440,'6161101600941',6.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(441,'6161101602051',12.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(442,'5060335632715',25.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(443,'4090162602',31.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(444,'6161101601382',8.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(445,'54492677',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(446,'37',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(447,'87126037',41.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(448,'24000150152',32.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(449,'6008835000930',2.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(450,'33',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(451,'32',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(452,'31',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(453,'30',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(454,'670221791720',37.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(455,'6161101602433',20.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(456,'6161101604406',42.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(457,'6161101603379',18.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(458,'6161101602600',11.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(459,'6161101602372',32.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(460,'6161101601979',31.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(461,'6161101604192',55.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(462,'6161101603324',70.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(463,'6201100061500',13.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(464,'4600682000501',37.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(465,'6161100420021',37.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(466,'8712000900663',50.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(467,'6161101602426',92.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(468,'6161101600163',91.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(469,'6164000840067',25.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(470,'6161100240841',16.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(471,'6161100240858',43.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(472,'6161101602389',87.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(473,'6009603340555',82.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(474,'6161101603256',267.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(475,'6161101600101',257.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(476,'6161101600002',71.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(477,'6161101600095',168.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(478,'6161101600026',105.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(479,'6161101604246',130.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(480,'6161101600125',347.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',1),(481,'code',0.00,0.00,0.00,0,'Main Store',1,1,'2018-12-07','',0,'06:46:35','open',0); /*!40000 ALTER TABLE `stocktaking` 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, `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, `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, `theme` 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 `suggestions` -- LOCK TABLES `suggestions` WRITE; /*!40000 ALTER TABLE `suggestions` DISABLE KEYS */; /*!40000 ALTER TABLE `suggestions` 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 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, `challanges` text NOT NULL, `recommendation` 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 `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` varchar(100) NOT NULL, `fromdate` varchar(100) NOT NULL, `todate` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `status` varchar(100) NOT NULL, `controller` varchar(100) NOT NULL, `priority` varchar(100) NOT NULL, `notification` varchar(100) NOT NULL DEFAULT 'yes', `repeated` varchar(100) NOT NULL DEFAULT 'no', `comments` text NOT 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, 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 `tasks` -- LOCK TABLES `tasks` WRITE; /*!40000 ALTER TABLE `tasks` DISABLE KEYS */; INSERT INTO `tasks` VALUES (1,'2','CALL','2018-11-29','2018-11-29','0701138305','pending','2','High','Yes','Yes','ok','2018-11-29 05:25:38','1','1','1',1),(2,'1','CALL','2018-11-29','2018-11-29','0738032299','ongoing','2','High','Yes','Yes','ok','2018-11-29 06:32:40','1','1','1',1); /*!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, `description` text NOT NULL, `name` 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, 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 `tasktype` -- LOCK TABLES `tasktype` WRITE; /*!40000 ALTER TABLE `tasktype` DISABLE KEYS */; INSERT INTO `tasktype` VALUES (1,'','TECHNICAL','2018-10-18 17:40:27','active','1','','1'); /*!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, `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 `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, `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=15 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,'Half','','2018-11-20 09:12:47','active','1','','1','hlf'),(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,'piece','PCS','2018-03-30 12:34:29pm','active','1','','1','pcs'),(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'); /*!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` int(30) NOT NULL, `price` 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 `uomproducts` -- LOCK TABLES `uomproducts` WRITE; /*!40000 ALTER TABLE `uomproducts` DISABLE KEYS */; INSERT INTO `uomproducts` VALUES (2,'16','2018-11-20 09:15:34','active','1','','1','300000','1',1,'175'),(3,'hlf','2018-11-20 09:15:46','active','1','','1','300000','1',2,'350'),(4,'Kg','2018-11-20 09:16:03','active','1','','1','300000','1',4,'700'); /*!40000 ALTER TABLE `uomproducts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `user` ( `id` int(30) NOT NULL AUTO_INCREMENT, `firstname` varchar(30) NOT NULL, `surname` varchar(50) NOT NULL, `username` varchar(100) NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(100) NOT NULL, `gender` varchar(50) NOT NULL, `county` varchar(50) NOT NULL, `createddate` varchar(50) NOT NULL, `password` varchar(30) NOT NULL, `province` varchar(50) NOT NULL, `dob` varchar(50) NOT NULL, `idno` varchar(50) NOT NULL, `photo` text NOT NULL, `box` varchar(50) NOT NULL, `code` varchar(50) NOT NULL, `town` varchar(50) NOT NULL, `country` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `totalsms` varchar(40) NOT NULL DEFAULT '10', `apiaccount_id` varchar(30) NOT NULL DEFAULT '1', `recoverpassword` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT '1', `service` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `usertype` varchar(100) NOT NULL DEFAULT 'user', `smstype` varchar(50) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), UNIQUE KEY `idno` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user` -- LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; INSERT INTO `user` VALUES (1,'Admin','Robisearch','','robisearch@gmail.com','0738032299','female','','2018-12-07','12345678','','','22759726','201710011506859554logo.png','','','','','2017-02-26','6','1','','1','','1','admin','1'),(2,'Lilian','Ndungu','','ndungulilian89@gmail.com','0701138305','female','','2018-03-14','0234','','','24038718','','','','','','','10','1','','1','no','1','user','1'); /*!40000 ALTER TABLE `user` 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:13:23
.
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