-- MySQL dump 10.13  Distrib 5.7.44, for Linux (x86_64)
--
-- Host: localhost    Database: mhubasia_ninj416
-- ------------------------------------------------------
-- Server version	5.7.44-cll-lve

/*!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 */;

--
-- Current Database: `mhubasia_ninj416`
--


--
-- Table structure for table `account_email_settings`
--

DROP TABLE IF EXISTS `account_email_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_email_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `reply_to_email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `bcc_email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `email_subject_invoice` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `email_subject_quote` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `email_subject_payment` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `email_template_invoice` text COLLATE utf8_unicode_ci NOT NULL,
  `email_template_quote` text COLLATE utf8_unicode_ci NOT NULL,
  `email_template_payment` text COLLATE utf8_unicode_ci NOT NULL,
  `email_subject_reminder1` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `email_subject_reminder2` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `email_subject_reminder3` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `email_template_reminder1` text COLLATE utf8_unicode_ci NOT NULL,
  `email_template_reminder2` text COLLATE utf8_unicode_ci NOT NULL,
  `email_template_reminder3` text COLLATE utf8_unicode_ci NOT NULL,
  `late_fee1_amount` decimal(13,2) DEFAULT NULL,
  `late_fee1_percent` decimal(13,3) DEFAULT NULL,
  `late_fee2_amount` decimal(13,2) DEFAULT NULL,
  `late_fee2_percent` decimal(13,3) DEFAULT NULL,
  `late_fee3_amount` decimal(13,2) DEFAULT NULL,
  `late_fee3_percent` decimal(13,3) DEFAULT NULL,
  `email_subject_reminder4` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `email_template_reminder4` text COLLATE utf8_unicode_ci,
  `frequency_id_reminder4` int(10) unsigned DEFAULT NULL,
  `email_subject_proposal` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `email_template_proposal` text COLLATE utf8_unicode_ci,
  `forward_url_for_v5` text COLLATE utf8_unicode_ci NOT NULL,
  `is_disabled` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `account_email_settings_account_id_index` (`account_id`),
  CONSTRAINT `account_email_settings_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `account_email_settings`
--

LOCK TABLES `account_email_settings` WRITE;
/*!40000 ALTER TABLE `account_email_settings` DISABLE KEYS */;
INSERT INTO `account_email_settings` (`id`, `account_id`, `created_at`, `updated_at`, `reply_to_email`, `bcc_email`, `email_subject_invoice`, `email_subject_quote`, `email_subject_payment`, `email_template_invoice`, `email_template_quote`, `email_template_payment`, `email_subject_reminder1`, `email_subject_reminder2`, `email_subject_reminder3`, `email_template_reminder1`, `email_template_reminder2`, `email_template_reminder3`, `late_fee1_amount`, `late_fee1_percent`, `late_fee2_amount`, `late_fee2_percent`, `late_fee3_amount`, `late_fee3_percent`, `email_subject_reminder4`, `email_template_reminder4`, `frequency_id_reminder4`, `email_subject_proposal`, `email_template_proposal`, `forward_url_for_v5`, `is_disabled`) VALUES (1,1,'2018-04-15 19:25:16','2025-08-21 20:51:07','sales@m-hub.asia','admin@m-hub.asia','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://inv.m-hub.asia/login',1);
/*!40000 ALTER TABLE `account_email_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `account_gateway_settings`
--

DROP TABLE IF EXISTS `account_gateway_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_gateway_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `gateway_type_id` int(10) unsigned DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `min_limit` int(10) unsigned DEFAULT NULL,
  `max_limit` int(10) unsigned DEFAULT NULL,
  `fee_amount` decimal(13,2) DEFAULT NULL,
  `fee_percent` decimal(13,3) DEFAULT NULL,
  `fee_tax_name1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `fee_tax_name2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `fee_tax_rate1` decimal(13,3) DEFAULT NULL,
  `fee_tax_rate2` decimal(13,3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `account_gateway_settings_account_id_foreign` (`account_id`),
  KEY `account_gateway_settings_user_id_foreign` (`user_id`),
  KEY `account_gateway_settings_gateway_type_id_foreign` (`gateway_type_id`),
  CONSTRAINT `account_gateway_settings_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `account_gateway_settings_gateway_type_id_foreign` FOREIGN KEY (`gateway_type_id`) REFERENCES `gateway_types` (`id`) ON DELETE CASCADE,
  CONSTRAINT `account_gateway_settings_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `account_gateway_settings`
--

LOCK TABLES `account_gateway_settings` WRITE;
/*!40000 ALTER TABLE `account_gateway_settings` DISABLE KEYS */;
INSERT INTO `account_gateway_settings` (`id`, `account_id`, `user_id`, `gateway_type_id`, `updated_at`, `min_limit`, `max_limit`, `fee_amount`, `fee_percent`, `fee_tax_name1`, `fee_tax_name2`, `fee_tax_rate1`, `fee_tax_rate2`) VALUES (1,1,1,1,'2022-08-27 19:15:32',NULL,NULL,2.21,3.400,'','',0.000,0.000),(2,1,1,11,'2022-08-27 19:16:46',NULL,NULL,2.00,3.400,'','',0.000,0.000),(3,1,1,4,'2024-09-19 11:55:51',100000,100000,0.00,0.000,'','',0.000,0.000),(4,1,1,3,'2022-08-27 19:29:17',NULL,NULL,2.08,3.900,'','',0.000,0.000),(5,1,1,6,'2021-09-02 19:43:08',100000,100000,0.00,0.000,'','',0.000,0.000),(6,1,1,12,'2021-09-02 19:43:26',100000,100000,0.00,0.000,'','',0.000,0.000),(7,1,1,13,'2021-09-02 19:43:42',100000,100000,0.00,0.000,'','',0.000,0.000);
/*!40000 ALTER TABLE `account_gateway_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `account_gateway_tokens`
--

DROP TABLE IF EXISTS `account_gateway_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_gateway_tokens` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `contact_id` int(10) unsigned NOT NULL,
  `account_gateway_id` int(10) unsigned NOT NULL,
  `client_id` int(10) unsigned NOT NULL,
  `token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `default_payment_method_id` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `account_gateway_tokens_account_id_foreign` (`account_id`),
  KEY `account_gateway_tokens_contact_id_foreign` (`contact_id`),
  KEY `account_gateway_tokens_account_gateway_id_foreign` (`account_gateway_id`),
  KEY `account_gateway_tokens_client_id_foreign` (`client_id`),
  KEY `account_gateway_tokens_default_payment_method_id_foreign` (`default_payment_method_id`),
  CONSTRAINT `account_gateway_tokens_account_gateway_id_foreign` FOREIGN KEY (`account_gateway_id`) REFERENCES `account_gateways` (`id`) ON DELETE CASCADE,
  CONSTRAINT `account_gateway_tokens_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `account_gateway_tokens_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
  CONSTRAINT `account_gateway_tokens_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `account_gateway_tokens_default_payment_method_id_foreign` FOREIGN KEY (`default_payment_method_id`) REFERENCES `payment_methods` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `account_gateway_tokens`
--

LOCK TABLES `account_gateway_tokens` WRITE;
/*!40000 ALTER TABLE `account_gateway_tokens` DISABLE KEYS */;
INSERT INTO `account_gateway_tokens` (`id`, `account_id`, `contact_id`, `account_gateway_id`, `client_id`, `token`, `created_at`, `updated_at`, `deleted_at`, `default_payment_method_id`) VALUES (1,1,9,2,4,'cus_MK7A71qxfnIOui','2022-08-27 17:38:02','2024-08-21 17:46:14',NULL,2);
/*!40000 ALTER TABLE `account_gateway_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `account_gateways`
--

DROP TABLE IF EXISTS `account_gateways`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_gateways` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `gateway_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `config` text COLLATE utf8_unicode_ci NOT NULL,
  `public_id` int(10) unsigned NOT NULL,
  `accepted_credit_cards` int(10) unsigned DEFAULT NULL,
  `show_address` tinyint(1) DEFAULT '1',
  `update_address` tinyint(1) DEFAULT '1',
  `require_cvv` tinyint(1) DEFAULT '1',
  `show_shipping_address` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `account_gateways_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `account_gateways_gateway_id_foreign` (`gateway_id`),
  KEY `account_gateways_user_id_foreign` (`user_id`),
  KEY `account_gateways_public_id_index` (`public_id`),
  CONSTRAINT `account_gateways_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `account_gateways_gateway_id_foreign` FOREIGN KEY (`gateway_id`) REFERENCES `gateways` (`id`),
  CONSTRAINT `account_gateways_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `account_gateways`
--

LOCK TABLES `account_gateways` WRITE;
/*!40000 ALTER TABLE `account_gateways` DISABLE KEYS */;
INSERT INTO `account_gateways` (`id`, `account_id`, `user_id`, `gateway_id`, `created_at`, `updated_at`, `deleted_at`, `config`, `public_id`, `accepted_credit_cards`, `show_address`, `update_address`, `require_cvv`, `show_shipping_address`) VALUES (1,1,1,17,'2018-04-15 04:11:21','2019-07-14 10:11:45','2019-07-14 10:11:45','eyJpdiI6ImQzUjQ2cmFlS2xXSTVjR3ROVmw3T2c9PSIsInZhbHVlIjoiaDFLNWRBeE8yTm4rSHdPWHN3Y1wvNnNLNUxGMWs1ZklxQnl5dU9VXC9MaFZnSks2VWNXQnc5eW0xNCtZWGZKdzVCRkN6czliZWc5QmN4aFU1Y3hGdU9CMDd6aGJreXJsOFlUQ0JXMTFsdnFtdEdiaU8yOEJscFwvTXdcL1ZmVXB2cjdFM2hiSzMyQXlWTTVOT0huckxsUk0rajhRUUpNVlU0WXpIQTV5amhKbEoxeGtnaUVsajR4ck1EaUMyRmtsWFNvdkhNMkJ6ajRwbmIwUWxqZzFtbXRGcVdmRW5UaWRNdGoxMERDQkhyOERjVjNhZUdYNHJzSng2SGd5dVFIaTdSTnlJYitFbHh6anhpV1wvckZ4TzNHQkI4b3oxNVdSN3dtYTU4cWFGNGNBNkwzREFmMnE2ODlCUUxTSWc5U1hNVFlnbEhwMjE3eVd0Y240MTR0Q2lwWE5mek1PQisrZzFHaFZ2TDQwTVZMM1czUFwvWWhqMFd3V1pOMlBkN051aEdUVHlXNVNcL2E1WXBKdFFDbVRndFRjQ0VLcUFKUlh5QmhzTmdwTDhYbTNYY0VLSnM9IiwibWFjIjoiZmYxOTk0MTE4NzE0N2YyZDc5Zjk5NjkxNWYxNjE0ZjZkZDg0ZDEwZmFiYTIxNWM0YjljMjkyNGYwNTUwMzJhZiJ9',1,0,1,1,1,0),(2,1,1,23,'2019-07-14 09:34:05','2022-08-27 19:27:23',NULL,'eyJpdiI6ImY2SjhEOUpRWThEY0VaK3ZmVWZnM3c9PSIsInZhbHVlIjoieHhiV0VITkJMbDV3bzRXaXNaOXV1aDVPRlNFTWNueGZuUGVFMlJkY1VXTm9xY0dnRXBTMzhmaDBwUlNuM1ZlaFdoelNCRlI0MTljU1FEQlFocldOTW82czNEM1wvckNIYWlSWXJiXC83OHJDeVdreDFMNm1rMnJCTGJmZkRhZEZiZWhYT0xheGQrdENPbEM2VlwvaEUzeFZCSEwxa0hBYk1aZGx1NFV1dTd0T3BYMFwvR1d4T29DMnI2WjJSM2RGYnRnN2Y3Um9NZDdjdVhhbno4TUxya3VBTTZLSnlcL2xKNkxSNG9kOHRiOWwxUXRBUVRYdkUrVzI5d0RDWGluWkJVS0YrZGNtd2NJakw4NThxcW1pN0lNQXVVQXFwUlwvamRyWFM0eUg3cjk2UzJhS2g2THptbDZQNmU5V3ZadktNeGh1ZlEyTDAzQ1FQMm9OOWhPaDhtb01PMGFITnFGdU5RVjR0c3R1MVRQamFtYTR2V25jeEVpNFA4VUltaW13YlwveVBSWmZZTmlUc2RqVVJ0YUZ3MUJTUjFIdlwvRlVNdjZTbE04M29acGZ3ck1BbWFVPSIsIm1hYyI6IjU4NDM2OTQ0ZmQ0ODI3YWNmZGU3OTUwY2MxYjE1ZDQ1ZGUxYTQzMmRhNGJlMGRkOWE0MGVjNTNlOGY2NDVjZjAifQ==',2,31,0,0,1,0),(3,1,1,42,'2019-07-14 11:21:28','2019-07-18 12:28:56','2019-07-18 12:28:56','eyJpdiI6IjMrZUUyVGFsQ1ExVWdFUm82TzBZVmc9PSIsInZhbHVlIjoiMm9TU1NqMmVlVHBKWE8wSmNQTmRwaUpKdnFsYUJIbVg5N3d0UFJvWFczbFwvZktvV1NOZFZGMFdCRUl6K2xKK0ZjZmgrZEdsY2tMNDhyeG1nZjNITXFIXC9hemg3blJObE92MGRIUXdwczZWdFlOUU80eWg0TmFzbjRkT0ZDNms1RnFRNlFjOGpUKzlPRDlPTWVRcXQ2WnVkZmlcL3NJd1lwMFJmc2pQSGE1WmVBPSIsIm1hYyI6IjQ5YWIwMTFjNTM1OGEyYThhZmY2MDQ5NjUyMmM4ZDZmNzNmNjgwZTI1NmMyZDlhODQ2Y2U2MzNkNmJmMDVlMGEifQ==',3,0,1,1,1,0),(4,1,1,17,'2019-07-14 11:39:28','2019-07-14 11:41:49',NULL,'eyJpdiI6IkVNaTVzK0pKZmRSejBNZGZ6UEZNMmc9PSIsInZhbHVlIjoidGhrMkpta1JlUm5BNE44UHVLVDVkbVdwajhmZHRuc3R0c3ZhbU55b2FjMlY5aVFcL0RWbGdLY3NNM3Z5WFBDelg4S3p1R2loRlMxTDRodFBUOXlTejdtZzViU1wvajBJWVQ0Vm1la3BNVE5YK3IzdlJLMHJTeVNNN0ZjSWl3Y1VQVHVzK2ZXWkVzUm8yTzdhaWl1WVJzaWR4WW9RRFQzYlVQUUpya2l0Vm8zNllwYzNXczMrb0FsWmpVQWZzZlNMQ1VvVnZQRTVHZUc5ZGplK1VhSTJoZHU5YWw1NXRwcGRTSmxYSVMyQm1oQWViK2ZtdFwvb3RGRllvbVZRbkk0UDhMTFhCdjhSTzNYR1o0Z0NVY1J2M2JGb2MrMnNFVTFxb1JRamxWODNCaVpUVm40VlliVVR2QXVicjV5citzcnVGdWJCVmdzVjY1THNodG9IKzBzd201OXlXb01GeGx4Y0pGekJDemY0WUZ0YnBLd3UrdDVQTTVqRG5kdjJoMUlNdHc5VUtOK2RIVnF6OUNNS1RkVXg0bDl6TTdmNk5iMmZjYTBaRDdFbHZkejNrVT0iLCJtYWMiOiJjNjFmMWQ2N2E2YTgyMzY0M2UzNWMwOGM0MmNkOTdlZDg1YjQ2MDQxMjJmNzg5ZjdiNzBhYmIyYzBjZTFiNmNjIn0=',4,0,1,1,1,0),(5,1,1,62,'2019-07-14 12:27:18','2022-08-27 19:25:25','2022-08-27 19:25:25','eyJpdiI6ImJVWExsWUFNcGlIN0hBUXNpRDlHaXc9PSIsInZhbHVlIjoiNVg1eVFnMG8wejBcL3NNVkl4Z3FiSlJMWTh5K2NXeU05YzFRUUJMY1I4VTNVZTNhVStVbWpHVkNvblpBOEUwYTZRbWpscUhoY1VFNnFzQkhlbngwTHRQd0EwYzExOTJVM2xtbWpWRkJEcXp5XC9TQ292NVJjT2xIaXNHcDVrajhnYnNPaHFuZU50Ym9OUnNSaTFkb2JmNGw1Z201RjRvXC9sZnNCOThMajI0ZzRTa0NPTGtLelwvamlzZllYNUFNV3Z5YlZvSElKR0FVSmJHckVIbkNqQ0w4aXhuQTBOQXJWMXBFakc0WEt5bW9PQm9vbGNzQjB3RUtXTDRcL3R6TGFhUEVEbTZ0NEE0YUU2RTJpQjJBTFVzVWpwNEJpV09ueXZDWjk1Rk9VTWNmRERiN3BOWVZLXC9laENQcjBXZmw4dkUxdVwveWx4TXNPNlhYRUdsalhmVlpqWDhSU1F0UURLdm5ndGJMekNuZlYxQjQ2MHI3TDdcL3VCczJZN1NYVlZvaVpQSHZnOTdOVnJaSkV4ZWhVXC9DT3pPTWhTXC9Vcmw2bEVjYUtpbUF3enlcL0FPYlZxRlBNR1hsN1VCdlV4UGF3K01yMHhWK1hVcjUwb0t4SW0wbWZVMWw0NUcweTJydHZlQUdicnBqV25ObVNlN0czZTZmd0YwSWF4OEdNeTU0dXJKWFN5SHZWbUxWWElSMUlycmwxVnQxbkNmK0ZGQzlYRjZuRFdObkNvQWFiSVRQNzZ0MFNGcllqbXFnV015N29hNzVUbnh1Nk9uZlVPS3c5NnVmeXNzQzM0Q0pDZ1ArZFFIOFV4ZCtnVktUOEZNQjBFNmxRVzFMTmoxanlmYkdOa2ZnRlJibk1UYlVKc2dvY3o3S0dwVFVmcVpPMjlIakFBY2ZTeUNqZWJ0dmordXEzV0FPVERvV2wzTzJnMFoyXC95SHpHeVdtXC82aCtmWEhxa0thRFZNZk5TSWNwdz09IiwibWFjIjoiZDJkMDViNWI5NzQ2YWQ4MmIxNzBmOTFjZmJkMTcxN2MxNGM0M2FiY2VlNGIwYTc3YWZlYjZkMmVjMTk0MDMxNiJ9',5,0,1,1,1,0),(6,1,1,67,'2019-07-15 04:25:04','2025-06-10 03:30:02',NULL,'eyJpdiI6IkUxb2lXVFBGM0lxZFVBOGZhSUdrQWc9PSIsInZhbHVlIjoiOThnXC9Ya3hyRFlPd2FGTVwvS3FFQ3BrdGRIamhRM1cydWFMTDFTSkVcL2NDb3oxOXY1a0tNMU1ZTENjY0tnVElQZmRhRVByZ0c2WXRlN0ZpN093aUM3N2paVlhsV2hCclRYOWZhVStJSXdBQ3Vyc3R4dU5qakNVYnY0WHpSZk5IekxTd25HQ05ORFYrQVg0cVdKUCt4aldXbmpBcDBsblpKZE1DSW5weURmS01kdmlUbG9RdWhPYXpib1NKK1hwS2c5VnJURTl5bHJaMUo2aXpiWVwvVlhzbng2Sk4xejg2M255dEg4K2FReWdqNWpQTEVJcGJHYk5qeVVpMER1a3NRQ1FWZWkzSmpDMXNxa0YwUUNPSHdGVTBwaElNVklRbVVhRW5CNUJqemd2Y0VRM2lwVldqNmZMd2xPNEVHUVdOVjZ3YzFBY3p0Y0p6Nm9lVk96NTV5MFljZkhmWCtpUW5qMGtRSmJoSGM1MzVLRlFYb3lUM09LeWRIUDNmRThxODQ5T2srbEtqbWp3amExc1FYeGN6VEJhMnhBTTZFYWNHc2x3dHNtbmFGRW4zUlZjSFpFcCttakRPejZkNDM3QVRpTGVwTFpsYU1MUUxqS251WWNBS3pSOXdvYTNFUSt2NEE0YWRTc3lNOGM0bGJUMlJydTZnRHZ4TWwxdDdhMVZveVBUXC9YcG0yWWpRXC9LdytTU3pQT0lvcFV3NnQ1UmUyTlc3ZFl1SHhLdVwvd2NWdExGeUdiTVZ0WnlqZUhJTFlBdm5CMkZaYnRSM3Q0WFh0bmpMOEdNY2JWZ0pEQldxM0d3ZEhpWWRKdG4rXC9HTjJHNUNKNTZ1KzB1NlhTQW16QVg5OHIwTDhoaExVb1FpcDlYUVl3RHZncExcL3Q1K000VTBmUWN4ejVnUVcyVlFKd1JVRVl2NHF3ZXlVblhLSGNDNStVQlBCQlBSUVRseU5OWk5SYTVXbzROUmlcL2VwM0VPcGpDTWphYnduVFo3UDJsVzNaOG5YUEJvUFJZNEt5KzNHQnhPTWJhTXc5cEdJU1BZYjJpMGZwdlZHXC9mMmpcL29TNnZTdU1BMFdqeFVUUkpaNEdTYjhFMUZsbEtkRjl6OVpzd2FzaVJQbGlvNFpFZmxQRmEwOUlIUkhVV0xlak94SWlqdmZyV0JoXC83SHU4SXA2eXpqR3l1N1ZUSUloTUtoQllrOU5HaTZYaGl5NWZEWXFnTU41SVRaaWZvY3RKU1hNM3ZWUys5ZE5HbjliNVVyWWxHMUI0bE5ueWljUWZYV0UyVXJHN1NHZythSTBHNWVzSFwvYW1MYVwvcDVnSE9GellcL3JmaGhrRU4rV1lvb1o1RDJaNVZEWTk2MXczTm5NdEtXRWd3WWp2dWhpbVJtZGRIZlFCOUVXaHNXTEFOa3BNczQybFBkdFJ1RGRBVm5FU2ZRPSIsIm1hYyI6IjljM2RlNDIwYmEwNTYzY2JmM2FmMGVkZmQwY2Q0MjljNzhiNTZjMDYxOTgyNDA5NWFjNzViZTQ3M2NhNDVkZGEifQ==',6,0,1,1,1,0),(7,1,1,68,'2019-07-15 04:26:16','2022-08-27 19:25:50','2022-08-27 19:25:50','eyJpdiI6ImNBYXA4blZXa3FOcDJTSXozUjd5UVE9PSIsInZhbHVlIjoiT0hsRjh5Z05GMktqNkh6N0JLSzlGNHJuR3RzREs3RzNiM1NwMEtuNmxxbXNtdzI5b3lKeXAwS0w3NHY4SlkzbTdIXC9Wd1EyNjFWcjM3c2NHTXZMWnhweDI5U0FFY2k2TlVYZ1ZQaUd0U2JETjFUNHg3OW9oc0lHSEYzQUNVOGhWbFdSMEJsOEk1Wm1HSjNOK3VUamlBYXpRVk53NTVLMWRSQ3RWc3pmWGZ3ZDhYazYzV0p5MEhHYkZyektVbmVLSVhTbkxYMTUrSkRqOWhFc0c0NUs2cGMrbmp0S1ZvREhOYk9EWmFORGNxS1FRd0lCSTVXNStKaFIxU1BJNWt6bkc1R1JiY0ZQNUhkUXFqNVZNR2V0WUdFbEJ6alRQYWRabDFNVXpCdFgwdlBtUVkwYzEzcHJFTTNDSk85RzAzNzhGRFlSRVhhNUNJNDZuNXBXOWVja0JJMk5ITWc1XC8zVEV4R0l3NE5vY1NpUnpMQVMrSFNOWFwvK0VQZnZEWG9XR1krZ2k1VHQyZ2pVc1lrUmFhV1h5RGFHTjIzdEU1czNPaG9WMlVyUG9OOWNFNFNRb2haM0t0S1MwQ203SzNjWmdwdUpjVDY2bk5tQzBxbERuVEdXajVHZnl5VjQ5eXZvSWhqOHd0Mk9XaTlUTXNqXC8yZ01FZURKaWpRNkNybHVpaWhDTW9LRm5RRnYwM3JHQmxrYlwvUVwvNXgzemRLWEk3bGRXXC8rcm5lamxId3BsS3BBd1doK3lqM3B5WWJEUHdPTXBzanBVUk5PU3NjVHEyM2txakxxcHI5V1B6SE0wU09YMlhDMWpvSkhHY1h2b1hveVp4UE5KOUpGTXpnQmgyYVdWSmxKcDBzZXAzUGUrak5Yb3lyS1ZZVzNcLythYW1nV2lVQ2hONUNwYzJlWW5aN0ZPVkVVU0tKbkVLUFhkdG1JOVM2WjdvUHBYQURQeUVZWXVLczQ2SHNnVnc9PSIsIm1hYyI6IjA4ZTE2ZDU0N2ExNTZjM2UxMTVjZWY0YmYwNWRhOTYwMmU2YTFjNTBjZTc5NTUwYzI5ZGMyZGEyNGU3NGFhZmYifQ==',7,0,1,1,1,0),(8,1,1,42,'2019-07-18 12:31:35','2019-07-18 12:50:27',NULL,'eyJpdiI6InM0Ulo5Zk9MT3c3ZTBXZ1pubmtSZEE9PSIsInZhbHVlIjoiSWNWbXA5QkxWOWQ4d0dzSEFxdndRQ3Q3NmUxQUNiMHFqU1AraGs4dTJCQlZcL1FTVUZrUHV0c3FRUVh0QVcwWmJXMEsya2ZkajNJN2pybDQ1Q2pCMVZOMkI1cFBQWjlaQ2tVUWt5eWkwak1aWTg5S3BFWmRuK2MzdUZSa2pUNDRIcHhiVmQ3UXUxNG5vOUJ3VTZBWFJDUHRWUVhLSHlOMEhKZDd1NWhVSURXdz0iLCJtYWMiOiJiMGY1ZTMwZjQzZmJjNmI5NmNkNTQ1M2Y4ZDY4MWE2YmQzN2JiMmY0YzdjMTU4YjQ3OTkwNTBiYWI0NTJhMmJjIn0=',8,0,1,1,1,0);
/*!40000 ALTER TABLE `account_gateways` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `account_tokens`
--

DROP TABLE IF EXISTS `account_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_tokens` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `public_id` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `account_tokens_token_unique` (`token`),
  UNIQUE KEY `account_tokens_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `account_tokens_user_id_foreign` (`user_id`),
  KEY `account_tokens_account_id_index` (`account_id`),
  CONSTRAINT `account_tokens_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `account_tokens_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `account_tokens`
--

LOCK TABLES `account_tokens` WRITE;
/*!40000 ALTER TABLE `account_tokens` DISABLE KEYS */;
INSERT INTO `account_tokens` (`id`, `account_id`, `user_id`, `created_at`, `updated_at`, `deleted_at`, `name`, `token`, `public_id`) VALUES (1,1,1,'2018-04-15 07:41:39','2018-04-15 07:58:53','2018-04-15 07:58:53','API','sud0xjwz745d0slehfqry7v4k9ngbube',1),(2,1,1,'2018-04-15 08:19:57','2018-04-15 08:21:18','2018-04-15 08:21:18','Gmail','r8uhm5s0fcik9wq4kp5jabckwj30jjdf',2),(3,1,1,'2018-04-15 08:35:12','2018-04-15 08:35:12',NULL,'ios_api_token','5o4vzib9zpz4azomp2hm5f2sobuju7fk',3),(4,1,2,'2018-04-16 04:19:24','2018-04-16 04:19:24',NULL,'ios_api_token','sbnwmoekykqodougssd3syqal1lhfm6i',4),(5,1,1,'2025-08-16 02:35:22','2025-08-16 02:35:22',NULL,'n8n','sblwuxcvyodradeonaoimlajjek6ckmo',5);
/*!40000 ALTER TABLE `account_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `accounts`
--

DROP TABLE IF EXISTS `accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `accounts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `timezone_id` int(10) unsigned DEFAULT NULL,
  `date_format_id` int(10) unsigned DEFAULT NULL,
  `datetime_format_id` int(10) unsigned DEFAULT NULL,
  `currency_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `ip` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `account_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `last_login` timestamp NULL DEFAULT NULL,
  `address1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `city` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `state` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `postal_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `country_id` int(10) unsigned DEFAULT NULL,
  `invoice_terms` text COLLATE utf8_unicode_ci,
  `email_footer` text COLLATE utf8_unicode_ci,
  `industry_id` int(10) unsigned DEFAULT NULL,
  `size_id` int(10) unsigned DEFAULT NULL,
  `invoice_taxes` tinyint(1) NOT NULL DEFAULT '1',
  `invoice_item_taxes` tinyint(1) NOT NULL DEFAULT '0',
  `invoice_design_id` int(10) unsigned NOT NULL DEFAULT '1',
  `work_phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `work_email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `language_id` int(10) unsigned NOT NULL DEFAULT '1',
  `custom_value1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `custom_value2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `fill_products` tinyint(1) NOT NULL DEFAULT '1',
  `update_products` tinyint(1) NOT NULL DEFAULT '1',
  `primary_color` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `secondary_color` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `hide_quantity` tinyint(1) NOT NULL DEFAULT '0',
  `hide_paid_to_date` tinyint(1) NOT NULL DEFAULT '0',
  `custom_invoice_taxes1` tinyint(1) DEFAULT NULL,
  `custom_invoice_taxes2` tinyint(1) DEFAULT NULL,
  `vat_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `invoice_number_prefix` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `invoice_number_counter` int(11) DEFAULT '1',
  `quote_number_prefix` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `quote_number_counter` int(11) DEFAULT '1',
  `share_counter` tinyint(1) NOT NULL DEFAULT '1',
  `id_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `token_billing_type_id` smallint(6) NOT NULL DEFAULT '4',
  `invoice_footer` text COLLATE utf8_unicode_ci,
  `pdf_email_attachment` smallint(6) NOT NULL DEFAULT '0',
  `subdomain` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `font_size` smallint(6) NOT NULL DEFAULT '9',
  `invoice_labels` text COLLATE utf8_unicode_ci,
  `custom_design1` mediumtext COLLATE utf8_unicode_ci,
  `show_item_taxes` tinyint(1) NOT NULL DEFAULT '0',
  `iframe_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `military_time` tinyint(1) NOT NULL DEFAULT '0',
  `enable_reminder1` tinyint(1) NOT NULL DEFAULT '0',
  `enable_reminder2` tinyint(1) NOT NULL DEFAULT '0',
  `enable_reminder3` tinyint(1) NOT NULL DEFAULT '0',
  `num_days_reminder1` smallint(6) NOT NULL DEFAULT '7',
  `num_days_reminder2` smallint(6) NOT NULL DEFAULT '14',
  `num_days_reminder3` smallint(6) NOT NULL DEFAULT '30',
  `recurring_hour` smallint(6) NOT NULL DEFAULT '8',
  `invoice_number_pattern` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `quote_number_pattern` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `quote_terms` text COLLATE utf8_unicode_ci,
  `email_design_id` smallint(6) NOT NULL DEFAULT '1',
  `enable_email_markup` tinyint(1) NOT NULL DEFAULT '0',
  `website` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `direction_reminder1` smallint(6) NOT NULL DEFAULT '1',
  `direction_reminder2` smallint(6) NOT NULL DEFAULT '1',
  `direction_reminder3` smallint(6) NOT NULL DEFAULT '1',
  `field_reminder1` smallint(6) NOT NULL DEFAULT '1',
  `field_reminder2` smallint(6) NOT NULL DEFAULT '1',
  `field_reminder3` smallint(6) NOT NULL DEFAULT '1',
  `client_view_css` text COLLATE utf8_unicode_ci,
  `header_font_id` int(10) unsigned NOT NULL DEFAULT '1',
  `body_font_id` int(10) unsigned NOT NULL DEFAULT '1',
  `auto_convert_quote` tinyint(1) NOT NULL DEFAULT '1',
  `all_pages_footer` tinyint(1) NOT NULL,
  `all_pages_header` tinyint(1) NOT NULL,
  `show_currency_code` tinyint(1) NOT NULL,
  `enable_portal_password` tinyint(1) NOT NULL DEFAULT '0',
  `send_portal_password` tinyint(1) NOT NULL DEFAULT '0',
  `recurring_invoice_number_prefix` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'R',
  `enable_client_portal` tinyint(1) NOT NULL DEFAULT '1',
  `invoice_fields` text COLLATE utf8_unicode_ci,
  `devices` text COLLATE utf8_unicode_ci,
  `logo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `logo_width` int(10) unsigned NOT NULL,
  `logo_height` int(10) unsigned NOT NULL,
  `logo_size` int(10) unsigned NOT NULL,
  `invoice_embed_documents` tinyint(1) NOT NULL DEFAULT '0',
  `document_email_attachment` tinyint(1) NOT NULL DEFAULT '0',
  `enable_client_portal_dashboard` tinyint(1) NOT NULL DEFAULT '1',
  `company_id` int(10) unsigned DEFAULT NULL,
  `page_size` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'A4',
  `live_preview` tinyint(1) NOT NULL DEFAULT '1',
  `invoice_number_padding` smallint(6) NOT NULL DEFAULT '4',
  `enable_second_tax_rate` tinyint(1) NOT NULL DEFAULT '0',
  `auto_bill_on_due_date` tinyint(1) NOT NULL DEFAULT '0',
  `start_of_week` int(11) NOT NULL,
  `enable_buy_now_buttons` tinyint(1) NOT NULL DEFAULT '0',
  `include_item_taxes_inline` tinyint(1) NOT NULL DEFAULT '0',
  `financial_year_start` date DEFAULT NULL,
  `enabled_modules` smallint(6) NOT NULL DEFAULT '63',
  `enabled_dashboard_sections` smallint(6) NOT NULL DEFAULT '7',
  `show_accept_invoice_terms` tinyint(1) NOT NULL DEFAULT '0',
  `show_accept_quote_terms` tinyint(1) NOT NULL DEFAULT '0',
  `require_invoice_signature` tinyint(1) NOT NULL DEFAULT '0',
  `require_quote_signature` tinyint(1) NOT NULL DEFAULT '0',
  `client_number_prefix` text COLLATE utf8_unicode_ci,
  `client_number_counter` int(11) DEFAULT '0',
  `client_number_pattern` text COLLATE utf8_unicode_ci,
  `domain_id` tinyint(3) unsigned DEFAULT '1',
  `payment_terms` tinyint(4) DEFAULT NULL,
  `reset_counter_frequency_id` smallint(6) DEFAULT NULL,
  `payment_type_id` smallint(6) DEFAULT NULL,
  `gateway_fee_enabled` tinyint(1) NOT NULL DEFAULT '0',
  `reset_counter_date` date DEFAULT NULL,
  `tax_name1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `tax_rate1` decimal(13,3) NOT NULL,
  `tax_name2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `tax_rate2` decimal(13,3) NOT NULL,
  `quote_design_id` int(10) unsigned NOT NULL DEFAULT '1',
  `custom_design2` mediumtext COLLATE utf8_unicode_ci,
  `custom_design3` mediumtext COLLATE utf8_unicode_ci,
  `analytics_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `credit_number_counter` int(11) DEFAULT '0',
  `credit_number_prefix` text COLLATE utf8_unicode_ci,
  `credit_number_pattern` text COLLATE utf8_unicode_ci,
  `task_rate` decimal(12,4) NOT NULL DEFAULT '0.0000',
  `inclusive_taxes` tinyint(1) NOT NULL DEFAULT '0',
  `convert_products` tinyint(1) NOT NULL DEFAULT '0',
  `enable_reminder4` tinyint(1) NOT NULL DEFAULT '0',
  `signature_on_pdf` tinyint(1) NOT NULL DEFAULT '0',
  `ubl_email_attachment` tinyint(1) NOT NULL DEFAULT '0',
  `auto_archive_invoice` tinyint(1) DEFAULT '0',
  `auto_archive_quote` tinyint(1) DEFAULT '0',
  `auto_email_invoice` tinyint(1) DEFAULT '1',
  `send_item_details` tinyint(1) DEFAULT '0',
  `custom_fields` mediumtext COLLATE utf8_unicode_ci,
  `background_image_id` int(10) unsigned DEFAULT NULL,
  `custom_messages` mediumtext COLLATE utf8_unicode_ci,
  `is_custom_domain` tinyint(1) NOT NULL DEFAULT '0',
  `show_product_notes` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `accounts_account_key_unique` (`account_key`),
  KEY `accounts_timezone_id_foreign` (`timezone_id`),
  KEY `accounts_date_format_id_foreign` (`date_format_id`),
  KEY `accounts_datetime_format_id_foreign` (`datetime_format_id`),
  KEY `accounts_country_id_foreign` (`country_id`),
  KEY `accounts_currency_id_foreign` (`currency_id`),
  KEY `accounts_industry_id_foreign` (`industry_id`),
  KEY `accounts_size_id_foreign` (`size_id`),
  KEY `accounts_invoice_design_id_foreign` (`invoice_design_id`),
  KEY `accounts_language_id_foreign` (`language_id`),
  KEY `accounts_company_id_foreign` (`company_id`),
  CONSTRAINT `accounts_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE,
  CONSTRAINT `accounts_country_id_foreign` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`),
  CONSTRAINT `accounts_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `currencies` (`id`),
  CONSTRAINT `accounts_date_format_id_foreign` FOREIGN KEY (`date_format_id`) REFERENCES `date_formats` (`id`),
  CONSTRAINT `accounts_datetime_format_id_foreign` FOREIGN KEY (`datetime_format_id`) REFERENCES `datetime_formats` (`id`),
  CONSTRAINT `accounts_industry_id_foreign` FOREIGN KEY (`industry_id`) REFERENCES `industries` (`id`),
  CONSTRAINT `accounts_invoice_design_id_foreign` FOREIGN KEY (`invoice_design_id`) REFERENCES `invoice_designs` (`id`),
  CONSTRAINT `accounts_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`),
  CONSTRAINT `accounts_size_id_foreign` FOREIGN KEY (`size_id`) REFERENCES `sizes` (`id`),
  CONSTRAINT `accounts_timezone_id_foreign` FOREIGN KEY (`timezone_id`) REFERENCES `timezones` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `accounts`
--

LOCK TABLES `accounts` WRITE;
/*!40000 ALTER TABLE `accounts` DISABLE KEYS */;
INSERT INTO `accounts` (`id`, `timezone_id`, `date_format_id`, `datetime_format_id`, `currency_id`, `created_at`, `updated_at`, `deleted_at`, `name`, `ip`, `account_key`, `last_login`, `address1`, `address2`, `city`, `state`, `postal_code`, `country_id`, `invoice_terms`, `email_footer`, `industry_id`, `size_id`, `invoice_taxes`, `invoice_item_taxes`, `invoice_design_id`, `work_phone`, `work_email`, `language_id`, `custom_value1`, `custom_value2`, `fill_products`, `update_products`, `primary_color`, `secondary_color`, `hide_quantity`, `hide_paid_to_date`, `custom_invoice_taxes1`, `custom_invoice_taxes2`, `vat_number`, `invoice_number_prefix`, `invoice_number_counter`, `quote_number_prefix`, `quote_number_counter`, `share_counter`, `id_number`, `token_billing_type_id`, `invoice_footer`, `pdf_email_attachment`, `subdomain`, `font_size`, `invoice_labels`, `custom_design1`, `show_item_taxes`, `iframe_url`, `military_time`, `enable_reminder1`, `enable_reminder2`, `enable_reminder3`, `num_days_reminder1`, `num_days_reminder2`, `num_days_reminder3`, `recurring_hour`, `invoice_number_pattern`, `quote_number_pattern`, `quote_terms`, `email_design_id`, `enable_email_markup`, `website`, `direction_reminder1`, `direction_reminder2`, `direction_reminder3`, `field_reminder1`, `field_reminder2`, `field_reminder3`, `client_view_css`, `header_font_id`, `body_font_id`, `auto_convert_quote`, `all_pages_footer`, `all_pages_header`, `show_currency_code`, `enable_portal_password`, `send_portal_password`, `recurring_invoice_number_prefix`, `enable_client_portal`, `invoice_fields`, `devices`, `logo`, `logo_width`, `logo_height`, `logo_size`, `invoice_embed_documents`, `document_email_attachment`, `enable_client_portal_dashboard`, `company_id`, `page_size`, `live_preview`, `invoice_number_padding`, `enable_second_tax_rate`, `auto_bill_on_due_date`, `start_of_week`, `enable_buy_now_buttons`, `include_item_taxes_inline`, `financial_year_start`, `enabled_modules`, `enabled_dashboard_sections`, `show_accept_invoice_terms`, `show_accept_quote_terms`, `require_invoice_signature`, `require_quote_signature`, `client_number_prefix`, `client_number_counter`, `client_number_pattern`, `domain_id`, `payment_terms`, `reset_counter_frequency_id`, `payment_type_id`, `gateway_fee_enabled`, `reset_counter_date`, `tax_name1`, `tax_rate1`, `tax_name2`, `tax_rate2`, `quote_design_id`, `custom_design2`, `custom_design3`, `analytics_key`, `credit_number_counter`, `credit_number_prefix`, `credit_number_pattern`, `task_rate`, `inclusive_taxes`, `convert_products`, `enable_reminder4`, `signature_on_pdf`, `ubl_email_attachment`, `auto_archive_invoice`, `auto_archive_quote`, `auto_email_invoice`, `send_item_details`, `custom_fields`, `background_image_id`, `custom_messages`, `is_custom_domain`, `show_product_notes`) VALUES (1,91,2,2,1,'2018-04-15 19:25:16','2025-09-24 03:28:48',NULL,'MOBTEL HUB','61.6.125.136','xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA','2025-09-24 03:28:48','No.9, Jalan Bullion Mewah 3','Taman Bullion','Batu Cave','Selangor','68100',458,'- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at khediryaakub@mobtelhub.com','',12,6,0,0,5,'+60178283608','khediryaakub@mobtelhub.com',1,'','',1,1,'','',0,1,0,0,'','25354I-',873614,'25354Q-',1,1,'202303322139 (TR0295457-D)',4,'This is a computer generated document. No signature is required.',1,NULL,9,'{\"address1\":\"\",\"address2\":\"\",\"amount\":\"\",\"amount_paid\":\"\",\"balance\":\"\",\"balance_due\":\"\",\"blank\":\"\",\"city_state_postal\":\"\",\"client_name\":\"\",\"company_name\":\"\",\"contact_name\":\"\",\"country\":\"\",\"credit_card\":\"\",\"credit_date\":\"\",\"credit_issued_to\":\"\",\"credit_note\":\"\",\"credit_number\":\"\",\"credit_to\":\"\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"date\":\"\",\"delivery_note\":\"\",\"description\":\"\",\"details\":\"\",\"discount\":\"\",\"due_date\":\"\",\"email\":\"\",\"from\":\"\",\"gateway_fee_description\":\"\",\"gateway_fee_discount_description\":\"\",\"gateway_fee_item\":\"\",\"hours\":\"\",\"id_number\":\"\",\"invoice\":\"\",\"invoice_date\":\"\",\"invoice_due_date\":\"\",\"invoice_issued_to\":\"\",\"invoice_no\":\"\",\"invoice_number\":\"\",\"invoice_to\":\"\",\"invoice_total\":\"\",\"item\":\"\",\"line_total\":\"\",\"method\":\"\",\"outstanding\":\"\",\"paid_to_date\":\"\",\"partial_due\":\"\",\"payment_date\":\"\",\"phone\":\"\",\"po_number\":\"\",\"postal_city_state\":\"\",\"product_key\":\"\",\"quantity\":\"\",\"quote\":\"\",\"quote_date\":\"\",\"quote_due_date\":\"\",\"quote_issued_to\":\"\",\"quote_no\":\"\",\"quote_number\":\"\",\"quote_to\":\"\",\"rate\":\"\",\"reference\":\"\",\"service\":\"\",\"statement\":\"\",\"statement_date\":\"\",\"statement_issued_to\":\"\",\"statement_to\":\"\",\"subtotal\":\"\",\"surcharge\":\"\",\"tax\":\"\",\"tax_invoice\":\"\",\"tax_quote\":\"\",\"taxes\":\"\",\"terms\":\"\",\"to\":\"\",\"total\":\"\",\"unit_cost\":\"\",\"valid_until\":\"\",\"vat_number\":\"\",\"website\":\"\",\"work_phone\":\"\",\"your_credit\":\"\",\"your_invoice\":\"\",\"your_quote\":\"\",\"your_statement\":\"\"}',NULL,0,'',1,0,0,0,7,14,30,8,NULL,NULL,'- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia',3,0,'https://www.mobtelhub.com',1,1,1,1,1,1,'',1,1,1,0,0,1,1,1,'R',1,'{\"invoice_fields\":[\"invoice.invoice_number\",\"invoice.po_number\",\"invoice.invoice_date\",\"invoice.due_date\",\"invoice.balance_due\",\"invoice.partial_due\"],\"client_fields\":[\"client.client_name\",\"client.id_number\",\"client.address1\",\"client.address2\",\"client.city_state_postal\",\"client.country\",\"client.email\"],\"account_fields1\":[\"account.company_name\",\"account.id_number\",\"account.website\",\"account.email\",\"account.phone\"],\"account_fields2\":[\"account.address1\",\"account.address2\",\"account.city_state_postal\",\"account.country\"],\"product_fields\":[\"product.item\",\"product.description\",\"product.custom_value1\",\"product.quantity\",\"product.unit_cost\",\"product.line_total\",\"product.discount\"],\"task_fields\":[\"product.service\",\"product.description\",\"product.custom_value1\",\"product.custom_value2\",\"product.rate\",\"product.hours\",\"product.tax\",\"product.line_total\"]}','[{\"token\":\"e9-zXqKWD6c:APA91bH9Y2bysAYTxFMwFjOA32VE_FWfdoIaVSEHXITuYfJGmF33O82E-ccYojR-0I3gmxmV0kJiHvx3F32Cwvdhderw37-CYjhUMV0umvjD5FCSD9CKLUDVtTKZLQ0busb_wlCmcDzs\",\"email\":\"karl.qing@m-hub.asia\",\"device\":\"fcm\",\"account_key\":\"xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA\",\"notify_sent\":true,\"notify_viewed\":true,\"notify_approved\":true,\"notify_paid\":true}]','xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA.png',303,303,60731,0,1,1,1,'A4',1,4,0,0,0,0,0,NULL,17,7,1,1,0,0,'',0,NULL,1,30,0,14,0,NULL,'',0.000,'',0.000,5,NULL,NULL,'',0,'','',0.0000,1,1,0,0,0,0,0,1,1,NULL,NULL,NULL,0,0);
/*!40000 ALTER TABLE `accounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `activities`
--

DROP TABLE IF EXISTS `activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `activities` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `client_id` int(10) unsigned DEFAULT NULL,
  `contact_id` int(10) unsigned DEFAULT NULL,
  `payment_id` int(10) unsigned DEFAULT NULL,
  `invoice_id` int(10) unsigned DEFAULT NULL,
  `credit_id` int(10) unsigned DEFAULT NULL,
  `invitation_id` int(10) unsigned DEFAULT NULL,
  `task_id` int(10) unsigned DEFAULT NULL,
  `json_backup` text COLLATE utf8_unicode_ci,
  `activity_type_id` int(11) NOT NULL,
  `adjustment` decimal(13,2) DEFAULT NULL,
  `balance` decimal(13,2) DEFAULT NULL,
  `token_id` int(10) unsigned DEFAULT NULL,
  `ip` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `is_system` tinyint(1) NOT NULL DEFAULT '0',
  `expense_id` int(10) unsigned DEFAULT NULL,
  `notes` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `activities_account_id_foreign` (`account_id`),
  KEY `activities_user_id_index` (`user_id`),
  KEY `activities_client_id_foreign` (`client_id`),
  KEY `activities_payment_id_index` (`payment_id`),
  CONSTRAINT `activities_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `activities_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=699 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `activities`
--

LOCK TABLES `activities` WRITE;
/*!40000 ALTER TABLE `activities` DISABLE KEYS */;
INSERT INTO `activities` (`id`, `created_at`, `updated_at`, `account_id`, `user_id`, `client_id`, `contact_id`, `payment_id`, `invoice_id`, `credit_id`, `invitation_id`, `task_id`, `json_backup`, `activity_type_id`, `adjustment`, `balance`, `token_id`, `ip`, `is_system`, `expense_id`, `notes`) VALUES (1,'2018-04-15 05:02:48','2018-04-15 05:02:48',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'61.6.125.136',0,NULL,''),(2,'2018-04-15 05:12:59','2018-04-15 05:12:59',1,1,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'61.6.125.136',0,NULL,''),(3,'2018-04-15 05:19:44','2018-04-15 05:19:44',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'61.6.125.136',0,1,''),(4,'2018-04-15 05:21:20','2018-04-15 05:21:20',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'61.6.125.136',0,2,''),(5,'2018-04-15 05:27:25','2018-04-15 05:27:25',1,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'61.6.125.136',0,NULL,''),(6,'2018-04-15 05:40:50','2018-04-15 05:40:50',1,1,1,NULL,NULL,1,NULL,NULL,NULL,'{\"invoice_number\":\"0001\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2018-04-14\",\"due_date\":\"2018-04-30\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1700.00\",\"balance\":\"1700.00\",\"invoice_design_id\":9,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Laptop Purchasing\",\"notes\":\"\",\"cost\":\"1700.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"GST\",\"tax_rate1\":\"6.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"MRI Technologies (M) Sdn. Bhd\",\"address1\":\"No.11C, Jalan Suarasa 8\\/5\",\"address2\":\"Bandar Tun Hussein Onn\",\"city\":\"Cheras\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"43200\",\"country_id\":458,\"work_phone\":\"+603-90819885\",\"balance\":null,\"website\":\"https:\\/\\/www.mri-tech.com.my\",\"payment_terms\":16,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"001806622720\",\"id_number\":\"499224-T\",\"contacts\":[{\"first_name\":\"\",\"last_name\":\"\",\"email\":\"\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"A-3A-3, Panorama Condominium Sentul,\",\"address2\":\"NO:9, Jalan Bullion Mewah 3, Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_label1\":null,\"custom_value1\":null,\"custom_label2\":null,\"custom_value2\":null,\"custom_client_label1\":null,\"custom_client_label2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"custom_invoice_label1\":null,\"custom_invoice_label2\":null,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":0,\"show_item_taxes\":0,\"custom_invoice_text_label1\":null,\"custom_invoice_text_label2\":null,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"custom_invoice_item_label1\":null,\"custom_invoice_item_label2\":null,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":1,\"custom_contact_label1\":null,\"custom_contact_label2\":null,\"inclusive_taxes\":1,\"signature_on_pdf\":1},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'61.6.125.136',0,NULL,''),(7,'2018-04-15 05:40:50','2018-04-15 05:40:50',1,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'61.6.125.136',0,NULL,''),(8,'2018-04-15 05:45:34','2018-04-15 05:45:34',1,1,1,NULL,NULL,2,NULL,NULL,NULL,NULL,4,3000.00,3000.00,NULL,'61.6.125.136',0,NULL,''),(9,'2018-04-15 05:56:51','2018-04-15 05:56:51',1,1,1,NULL,1,2,NULL,NULL,NULL,'{\"invoice_number\":\"0002\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2018-04-14\",\"due_date\":\"2018-04-30\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"GST\",\"tax_rate1\":\"6.000\",\"amount\":\"3000.00\",\"balance\":0,\"invoice_design_id\":9,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"MRI Technologies (M) Sdn. Bhd\",\"address1\":\"No.11C, Jalan Suarasa 8\\/5\",\"address2\":\"Bandar Tun Hussein Onn\",\"city\":\"Cheras\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"43200\",\"country_id\":458,\"work_phone\":\"+603-90819885\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.mri-tech.com.my\",\"payment_terms\":16,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"001806622720\",\"id_number\":\"499224-T\",\"contacts\":[{\"first_name\":\"\",\"last_name\":\"\",\"email\":\"\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"A-3A-3, Panorama Condominium Sentul,\",\"address2\":\"NO:9, Jalan Bullion Mewah 3, Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_label1\":null,\"custom_value1\":null,\"custom_label2\":null,\"custom_value2\":null,\"custom_client_label1\":null,\"custom_client_label2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"custom_invoice_label1\":null,\"custom_invoice_label2\":null,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":0,\"show_item_taxes\":0,\"custom_invoice_text_label1\":null,\"custom_invoice_text_label2\":null,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"custom_invoice_item_label1\":null,\"custom_invoice_item_label2\":null,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":1,\"custom_contact_label1\":null,\"custom_contact_label2\":null,\"inclusive_taxes\":1,\"signature_on_pdf\":1},\"invoice_items\":[{\"product_key\":\"Laptop Purchasing\",\"notes\":\"ACER SP513-52N-856T NOTEBOOK, INTEL CORE-I7, 8GB RAM, 256GB SSD, W10, GREY WITH BEG\\r\\nSN#:NXGR7SM00474602DCD66600\",\"cost\":\"3000.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTg1IiBoZWlnaHQ9IjU2Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSAxMiBjIDAuMDUgLTAuMDQgMS45MyAtMS42MiAzIC0yIGMgNC4zMyAtMS41MyA5LjIyIC0zLjIzIDE0IC00IGMgMTMuODcgLTIuMjMgMjcuNzcgLTQuNDUgNDIgLTUgYyAyOS42MiAtMS4xNCA1OS4xNSAtMC44NCA4OCAwIGMgNS4wMiAwLjE1IDEwLjU5IDEuMyAxNSAzIGMgMy43NiAxLjQ1IDcuNjMgNC40MiAxMSA3IGMgMi4xOSAxLjY4IDQuMzMgMy45MiA2IDYgYyAwLjg4IDEuMSAxLjQ0IDIuNjEgMiA0IGMgMC43OCAxLjk2IDEuNjQgNC4wNSAyIDYgYyAwLjI4IDEuNTUgMC43OCAzLjk4IDAgNSBjIC0yLjc3IDMuNjMgLTguMjQgMTAuNDcgLTEzIDEyIGMgLTExLjY3IDMuNzUgLTI4LjI4IDMuNjIgLTQzIDYgYyAtOC42NCAxLjQgLTE2LjY1IDQuNTggLTI1IDUgYyAtMjQuMjQgMS4yMiAtNzEuNzEgMC4wNyAtNzQgMCBjIC0wLjIzIC0wLjAxIDQuNjMgLTEuNzcgNyAtMiBjIDIxLjU3IC0yLjA3IDQzLjQxIC00LjEgNjYgLTUgYyAyMC40OCAtMC44MSA2MCAtMS4wNSA2MCAwIGMgMCAxLjA1IC0zOS4zMiAyLjM4IC02MCAzIGMgLTEzLjc3IDAuNDEgLTM2LjM3IDEuNzUgLTQwIDAgYyAtMS42MiAtMC43OCA2LjYgLTExLjQ0IDExIC0xNCBjIDguMzcgLTQuODcgMzMuMTYgLTEwLjM3IDMyIC0xMSBjIC0xLjg1IC0xLjAxIC01MS45NiAtMC44MiAtNTQgLTEgbCA5IC0zIi8+PC9zdmc+\",\"signature_date\":\"2018-04-14 13:50:57\"}],\"documents\":[],\"expenses\":[]}',10,-3000.00,0.00,NULL,'61.6.125.136',0,NULL,''),(10,'2018-04-15 05:56:51','2018-04-15 05:56:51',1,1,1,NULL,NULL,2,NULL,NULL,NULL,'{\"invoice_number\":\"0002\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2018-04-14\",\"due_date\":\"2018-04-30\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"GST\",\"tax_rate1\":\"6.000\",\"amount\":\"3000.00\",\"balance\":\"3000.00\",\"invoice_design_id\":9,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Laptop Purchasing\",\"notes\":\"ACER SP513-52N-856T NOTEBOOK, INTEL CORE-I7, 8GB RAM, 256GB SSD, W10, GREY WITH BEG\\r\\nSN#:NXGR7SM00474602DCD66600\",\"cost\":\"3000.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"MRI Technologies (M) Sdn. Bhd\",\"address1\":\"No.11C, Jalan Suarasa 8\\/5\",\"address2\":\"Bandar Tun Hussein Onn\",\"city\":\"Cheras\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"43200\",\"country_id\":458,\"work_phone\":\"+603-90819885\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.mri-tech.com.my\",\"payment_terms\":16,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"001806622720\",\"id_number\":\"499224-T\",\"contacts\":[{\"first_name\":\"\",\"last_name\":\"\",\"email\":\"\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"A-3A-3, Panorama Condominium Sentul,\",\"address2\":\"NO:9, Jalan Bullion Mewah 3, Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_label1\":null,\"custom_value1\":null,\"custom_label2\":null,\"custom_value2\":null,\"custom_client_label1\":null,\"custom_client_label2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"custom_invoice_label1\":null,\"custom_invoice_label2\":null,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":0,\"show_item_taxes\":0,\"custom_invoice_text_label1\":null,\"custom_invoice_text_label2\":null,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"custom_invoice_item_label1\":null,\"custom_invoice_item_label2\":null,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":1,\"custom_contact_label1\":null,\"custom_contact_label2\":null,\"inclusive_taxes\":1,\"signature_on_pdf\":1},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTg1IiBoZWlnaHQ9IjU2Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSAxMiBjIDAuMDUgLTAuMDQgMS45MyAtMS42MiAzIC0yIGMgNC4zMyAtMS41MyA5LjIyIC0zLjIzIDE0IC00IGMgMTMuODcgLTIuMjMgMjcuNzcgLTQuNDUgNDIgLTUgYyAyOS42MiAtMS4xNCA1OS4xNSAtMC44NCA4OCAwIGMgNS4wMiAwLjE1IDEwLjU5IDEuMyAxNSAzIGMgMy43NiAxLjQ1IDcuNjMgNC40MiAxMSA3IGMgMi4xOSAxLjY4IDQuMzMgMy45MiA2IDYgYyAwLjg4IDEuMSAxLjQ0IDIuNjEgMiA0IGMgMC43OCAxLjk2IDEuNjQgNC4wNSAyIDYgYyAwLjI4IDEuNTUgMC43OCAzLjk4IDAgNSBjIC0yLjc3IDMuNjMgLTguMjQgMTAuNDcgLTEzIDEyIGMgLTExLjY3IDMuNzUgLTI4LjI4IDMuNjIgLTQzIDYgYyAtOC42NCAxLjQgLTE2LjY1IDQuNTggLTI1IDUgYyAtMjQuMjQgMS4yMiAtNzEuNzEgMC4wNyAtNzQgMCBjIC0wLjIzIC0wLjAxIDQuNjMgLTEuNzcgNyAtMiBjIDIxLjU3IC0yLjA3IDQzLjQxIC00LjEgNjYgLTUgYyAyMC40OCAtMC44MSA2MCAtMS4wNSA2MCAwIGMgMCAxLjA1IC0zOS4zMiAyLjM4IC02MCAzIGMgLTEzLjc3IDAuNDEgLTM2LjM3IDEuNzUgLTQwIDAgYyAtMS42MiAtMC43OCA2LjYgLTExLjQ0IDExIC0xNCBjIDguMzcgLTQuODcgMzMuMTYgLTEwLjM3IDMyIC0xMSBjIC0xLjg1IC0xLjAxIC01MS45NiAtMC44MiAtNTQgLTEgbCA5IC0zIi8+PC9zdmc+\",\"signature_date\":\"2018-04-14 13:50:57\"}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'61.6.125.136',0,NULL,''),(11,'2018-04-15 05:57:56','2018-04-15 05:57:56',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36,0.00,0.00,NULL,'61.6.125.136',0,1,''),(12,'2018-04-15 05:58:04','2018-04-15 05:58:04',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36,0.00,0.00,NULL,'61.6.125.136',0,2,''),(13,'2018-05-14 16:19:27','2018-05-14 16:19:27',1,1,1,NULL,NULL,3,NULL,NULL,NULL,NULL,18,0.00,0.00,3,'183.171.86.20',0,NULL,''),(14,'2018-05-14 18:38:05','2018-05-14 18:38:05',1,1,1,NULL,NULL,3,NULL,NULL,NULL,'{\"invoice_number\":\"0003\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2018-05-14\",\"due_date\":null,\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3825.00\",\"balance\":\"3825.00\",\"invoice_design_id\":5,\"invoice_type_id\":2,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":\"\",\"custom_text_value2\":\"\",\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Hosting Renewal MRI\",\"notes\":\"Domain & Hosting Renewal 19th May 2018 - 19th May 2019\\n\\nRemote Support For PC\\n\\nRemote Support For Mobile\\n\\nOn-site visit 19th May 2018 - 19th May 2019\",\"cost\":\"4500.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"15.00\"}],\"client\":{\"currency_id\":null,\"name\":\"MRI Technologies (M) Sdn. Bhd\",\"address1\":\"No.11C, Jalan Suarasa 8\\/5\",\"address2\":\"Bandar Tun Hussein Onn\",\"city\":\"Cheras\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"43200\",\"country_id\":458,\"work_phone\":\"+603-90819885\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.mri-tech.com.my\",\"payment_terms\":16,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"001806622720\",\"id_number\":\"499224-T\",\"contacts\":[{\"first_name\":\"\",\"last_name\":\"\",\"email\":\"\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":null,\"custom_value2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":0,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":1,\"inclusive_taxes\":1,\"signature_on_pdf\":1,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',19,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(15,'2018-05-14 18:39:34','2018-05-14 18:39:34',1,1,1,NULL,NULL,3,NULL,NULL,NULL,'{\"invoice_number\":\"0003\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2018-05-14\",\"due_date\":\"2018-05-31\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3825.00\",\"balance\":\"3825.00\",\"invoice_design_id\":5,\"invoice_type_id\":2,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":\"\",\"custom_text_value2\":\"\",\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Hosting Renewal MRI\",\"notes\":\"Domain & Hosting Renewal 19th May 2018 - 19th May 2019\\r\\n\\r\\nRemote Support For PC\\r\\n\\r\\nRemote Support For Mobile\\r\\n\\r\\nOn-site visit 19th May 2018 - 19th May 2019\",\"cost\":\"4500.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"15.00\"}],\"client\":{\"currency_id\":null,\"name\":\"MRI Technologies (M) Sdn. Bhd\",\"address1\":\"No.11C, Jalan Suarasa 8\\/5\",\"address2\":\"Bandar Tun Hussein Onn\",\"city\":\"Cheras\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"43200\",\"country_id\":458,\"work_phone\":\"+603-90819885\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.mri-tech.com.my\",\"payment_terms\":16,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"001806622720\",\"id_number\":\"499224-T\",\"contacts\":[{\"first_name\":\"\",\"last_name\":\"\",\"email\":\"\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":null,\"custom_value2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":0,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":1,\"inclusive_taxes\":1,\"signature_on_pdf\":1,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',19,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(16,'2018-05-14 18:39:34','2018-05-14 18:39:34',1,1,1,NULL,NULL,3,NULL,NULL,NULL,NULL,23,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(17,'2018-05-14 18:39:46','2018-05-14 18:39:46',1,1,1,NULL,NULL,2,NULL,NULL,NULL,'{\"invoice_number\":\"0002\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2018-04-14\",\"due_date\":\"2018-04-30\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"GST\",\"tax_rate1\":\"6.000\",\"amount\":\"3000.00\",\"balance\":\"0.00\",\"invoice_design_id\":9,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Laptop Purchasing\",\"notes\":\"ACER SP513-52N-856T NOTEBOOK, INTEL CORE-I7, 8GB RAM, 256GB SSD, W10, GREY WITH BEG\\r\\nSN#:NXGR7SM00474602DCD66600\",\"cost\":\"3000.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"MRI Technologies (M) Sdn. Bhd\",\"address1\":\"No.11C, Jalan Suarasa 8\\/5\",\"address2\":\"Bandar Tun Hussein Onn\",\"city\":\"Cheras\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"43200\",\"country_id\":458,\"work_phone\":\"+603-90819885\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.mri-tech.com.my\",\"payment_terms\":16,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"001806622720\",\"id_number\":\"499224-T\",\"contacts\":[{\"first_name\":\"\",\"last_name\":\"\",\"email\":\"\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":null,\"custom_value2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":0,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":1,\"inclusive_taxes\":1,\"signature_on_pdf\":1,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTg1IiBoZWlnaHQ9IjU2Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSAxMiBjIDAuMDUgLTAuMDQgMS45MyAtMS42MiAzIC0yIGMgNC4zMyAtMS41MyA5LjIyIC0zLjIzIDE0IC00IGMgMTMuODcgLTIuMjMgMjcuNzcgLTQuNDUgNDIgLTUgYyAyOS42MiAtMS4xNCA1OS4xNSAtMC44NCA4OCAwIGMgNS4wMiAwLjE1IDEwLjU5IDEuMyAxNSAzIGMgMy43NiAxLjQ1IDcuNjMgNC40MiAxMSA3IGMgMi4xOSAxLjY4IDQuMzMgMy45MiA2IDYgYyAwLjg4IDEuMSAxLjQ0IDIuNjEgMiA0IGMgMC43OCAxLjk2IDEuNjQgNC4wNSAyIDYgYyAwLjI4IDEuNTUgMC43OCAzLjk4IDAgNSBjIC0yLjc3IDMuNjMgLTguMjQgMTAuNDcgLTEzIDEyIGMgLTExLjY3IDMuNzUgLTI4LjI4IDMuNjIgLTQzIDYgYyAtOC42NCAxLjQgLTE2LjY1IDQuNTggLTI1IDUgYyAtMjQuMjQgMS4yMiAtNzEuNzEgMC4wNyAtNzQgMCBjIC0wLjIzIC0wLjAxIDQuNjMgLTEuNzcgNyAtMiBjIDIxLjU3IC0yLjA3IDQzLjQxIC00LjEgNjYgLTUgYyAyMC40OCAtMC44MSA2MCAtMS4wNSA2MCAwIGMgMCAxLjA1IC0zOS4zMiAyLjM4IC02MCAzIGMgLTEzLjc3IDAuNDEgLTM2LjM3IDEuNzUgLTQwIDAgYyAtMS42MiAtMC43OCA2LjYgLTExLjQ0IDExIC0xNCBjIDguMzcgLTQuODcgMzMuMTYgLTEwLjM3IDMyIC0xMSBjIC0xLjg1IC0xLjAxIC01MS45NiAtMC44MiAtNTQgLTEgbCA5IC0zIi8+PC9zdmc+\",\"signature_date\":\"2018-04-14 13:50:57\"}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(18,'2018-05-14 18:39:46','2018-05-14 18:39:46',1,1,1,NULL,NULL,2,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(19,'2018-05-14 19:40:05','2018-05-14 19:40:05',1,1,1,NULL,NULL,4,NULL,NULL,NULL,NULL,18,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(20,'2018-05-14 19:42:05','2018-05-14 19:42:05',1,1,1,NULL,NULL,4,NULL,NULL,NULL,'{\"invoice_number\":\"2125\",\"discount\":\"10.00\",\"po_number\":\"\",\"invoice_date\":\"2018-05-14\",\"due_date\":\"2018-05-31\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3600.00\",\"balance\":\"3600.00\",\"invoice_design_id\":5,\"invoice_type_id\":2,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Hosting Renewal MRI\",\"notes\":\"Domain & Hosting Renewal 19th May 2018 - 19th May 2019\\r\\n\\r\\nRemote Support For PC\\r\\n\\r\\nRemote Support For Mobile\\r\\n\\r\\nOn-site visit 19th May 2018 - 19th May 2019\",\"cost\":\"4000.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"MRI Technologies (M) Sdn. Bhd\",\"address1\":\"No.11C, Jalan Suarasa 8\\/5\",\"address2\":\"Bandar Tun Hussein Onn\",\"city\":\"Cheras\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"43200\",\"country_id\":458,\"work_phone\":\"+603-90819885\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.mri-tech.com.my\",\"payment_terms\":16,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"001806622720\",\"id_number\":\"499224-T\",\"contacts\":[{\"first_name\":\"\",\"last_name\":\"\",\"email\":\"\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":null,\"custom_value2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":0,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":1,\"inclusive_taxes\":1,\"signature_on_pdf\":1,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',19,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(21,'2018-05-14 19:42:05','2018-05-14 19:42:05',1,1,1,NULL,NULL,5,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(22,'2018-05-14 20:14:25','2018-05-14 20:14:25',1,1,1,NULL,NULL,5,NULL,NULL,NULL,'{\"invoice_number\":\"0005\",\"discount\":\"10.00\",\"po_number\":\"\",\"invoice_date\":\"2018-05-14\",\"due_date\":\"2018-05-30\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3600.00\",\"balance\":\"3600.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Hosting Renewal MRI\",\"notes\":\"Domain & Hosting Renewal 19th May 2018 - 19th May 2019\\r\\n\\r\\nRemote Support For PC\\r\\n\\r\\nRemote Support For Mobile\\r\\n\\r\\nOn-site visit 19th May 2018 - 19th May 2019\",\"cost\":\"4000.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"MRI Technologies (M) Sdn. Bhd\",\"address1\":\"No.11C, Jalan Suarasa 8\\/5\",\"address2\":\"Bandar Tun Hussein Onn\",\"city\":\"Cheras\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"43200\",\"country_id\":458,\"work_phone\":\"+603-90819885\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.mri-tech.com.my\",\"payment_terms\":16,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"001806622720\",\"id_number\":\"499224-T\",\"contacts\":[{\"first_name\":\"\",\"last_name\":\"\",\"email\":\"\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":null,\"custom_value2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":0,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":1,\"inclusive_taxes\":1,\"signature_on_pdf\":1,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTI5IiBoZWlnaHQ9IjcxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gNTAgMSBjIC0wLjAyIDAuMDcgLTAuMzQgMy4wMSAtMSA0IGMgLTEuMTQgMS43IC0zLjU4IDMuMTMgLTUgNSBjIC01Ljg5IDcuNzYgLTExLjc5IDE1LjkzIC0xNyAyNCBjIC0xLjM1IDIuMDkgLTEuNyA0Ljg0IC0zIDcgYyAtNC42NyA3Ljc5IC0xMC42MiAxNS42MSAtMTUgMjMgYyAtMC42NiAxLjExIC0wLjkyIDQuMDggLTEgNCBjIC0wLjEgLTAuMSAtMC4yNSAtMy40MSAwIC01IGMgMC40IC0yLjYzIDAuOTcgLTUuNTIgMiAtOCBjIDIuMjQgLTUuMzggNC45MSAtMTAuODQgOCAtMTYgYyA0Ljk5IC04LjMxIDEwLjY0IC0xNi43NiAxNiAtMjQgYyAwLjkzIC0xLjI1IDMuMDMgLTEuODcgNCAtMyBjIDAuODcgLTEuMDEgMS4xIC0yLjk4IDIgLTQgYyAxLjU4IC0xLjc3IDQuOTUgLTUuNDIgNiAtNSBjIDEuMzIgMC41MyAzLjQ3IDUuOTcgNCA5IGMgMS4zNiA3LjcxIDEuNzEgMTYuNDUgMiAyNSBjIDAuMzkgMTEuMjUgLTAuMDcgMzIuNDMgMCAzMyBjIDAuMDMgMC4yOCAwLjcyIC0xMC44OSAyIC0xNiBjIDEuNjggLTYuNzEgNS4zOSAtMTMuNTggNyAtMjAgYyAwLjYxIC0yLjQzIC0wLjQ3IC01LjQ3IDAgLTggYyAxLjE1IC02LjIxIDQuNjEgLTE4LjA5IDUgLTE5IGMgMC4xIC0wLjI0IDAuOTYgMy4zMyAxIDUgYyAwLjI5IDEzLjEyIDAuNDcgMjYuNTMgMCA0MCBjIC0wLjIgNS43NiAtMi4wNSAxNi42MSAtMiAxNyBjIDAuMDMgMC4yMSAyLjM4IC02LjA5IDMgLTkgYyAwLjMzIC0xLjU0IC0wLjMyIC0zLjU0IDAgLTUgYyAwLjI5IC0xLjMgMS40NCAtNC4wOSAyIC00IGMgMC44IDAuMTMgMy4yIDMuMiA0IDUgYyAxLjcgMy44MyAzLjA2IDExLjY1IDQgMTMgYyAwLjI5IDAuNDIgMi41MiAtMS45MSAzIC0zIGMgMC42OSAtMS41NiAwLjQzIC00LjA2IDEgLTYgYyAxLjc3IC02LjA2IDQuOSAtMTIuMDMgNiAtMTggYyAxLjE2IC02LjMgLTAuMTcgLTEzLjk0IDEgLTIwIGMgMC43MSAtMy42NSAyLjkgLTkuMDYgNSAtMTEgYyAxLjQgLTEuMjkgNS4yOSAtMC45IDggLTEgbCAxOSAwIi8+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDEyOCA0MCBjIC0wLjkzIC0wLjAyIC0zNS41NSAwLjY3IC01MyAtMSBjIC0xMy43NSAtMS4zMiAtMjcuMDkgLTUuNjQgLTQxIC04IGMgLTQuMDEgLTAuNjggLTcuOTcgLTAuMzkgLTEyIC0xIGMgLTcuMTUgLTEuMDggLTIxIC00IC0yMSAtNCIvPjxwYXRoIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9InJnYig1MSwgNTEsIDUxKSIgZmlsbD0ibm9uZSIgZD0iTSA3NyAxNSBsIDEgMSIvPjwvc3ZnPg==\",\"signature_date\":\"2018-05-14 03:43:32\"}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(23,'2018-05-14 20:14:25','2018-05-14 20:14:25',1,1,1,NULL,NULL,5,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(24,'2018-05-14 20:14:33','2018-05-14 20:14:33',1,1,1,NULL,NULL,4,NULL,NULL,NULL,'{\"invoice_number\":\"2125\",\"discount\":\"10.00\",\"po_number\":\"\",\"invoice_date\":\"2018-05-14\",\"due_date\":\"2018-05-31\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3600.00\",\"balance\":\"3600.00\",\"invoice_design_id\":5,\"invoice_type_id\":2,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Hosting Renewal MRI\",\"notes\":\"Domain & Hosting Renewal 19th May 2018 - 19th May 2019\\r\\n\\r\\nRemote Support For PC\\r\\n\\r\\nRemote Support For Mobile\\r\\n\\r\\nOn-site visit 19th May 2018 - 19th May 2019\",\"cost\":\"4000.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"MRI Technologies (M) Sdn. Bhd\",\"address1\":\"No.11C, Jalan Suarasa 8\\/5\",\"address2\":\"Bandar Tun Hussein Onn\",\"city\":\"Cheras\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"43200\",\"country_id\":458,\"work_phone\":\"+603-90819885\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.mri-tech.com.my\",\"payment_terms\":16,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"001806622720\",\"id_number\":\"499224-T\",\"contacts\":[{\"first_name\":\"\",\"last_name\":\"\",\"email\":\"\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":null,\"custom_value2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":0,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":1,\"inclusive_taxes\":1,\"signature_on_pdf\":1,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',19,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(25,'2018-05-14 20:14:33','2018-05-14 20:14:33',1,1,1,NULL,NULL,4,NULL,NULL,NULL,NULL,23,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(26,'2018-05-14 20:16:22','2018-05-14 20:16:22',1,1,1,NULL,NULL,6,NULL,NULL,NULL,NULL,18,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(27,'2018-05-14 20:16:43','2018-05-14 20:16:43',1,1,1,NULL,NULL,6,NULL,NULL,NULL,'{\"invoice_number\":\"2521\",\"discount\":\"10.00\",\"po_number\":\"\",\"invoice_date\":\"2018-05-14\",\"due_date\":\"2018-05-31\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3600.00\",\"balance\":\"3600.00\",\"invoice_design_id\":5,\"invoice_type_id\":2,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Hosting Renewal MRI\",\"notes\":\"Domain & Hosting Renewal 19th May 2018 - 19th May 2019\\r\\n\\r\\nRemote Support For PC\\r\\n\\r\\nRemote Support For Mobile\\r\\n\\r\\nOn-site visit 19th May 2018 - 19th May 2019\",\"cost\":\"4000.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"MRI Technologies (M) Sdn. Bhd\",\"address1\":\"No.11C, Jalan Suarasa 8\\/5\",\"address2\":\"Bandar Tun Hussein Onn\",\"city\":\"Cheras\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"43200\",\"country_id\":458,\"work_phone\":\"+603-90819885\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.mri-tech.com.my\",\"payment_terms\":16,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"001806622720\",\"id_number\":\"499224-T\",\"contacts\":[{\"first_name\":\"\",\"last_name\":\"\",\"email\":\"\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":null,\"custom_value2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":0,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":1,\"inclusive_taxes\":1,\"signature_on_pdf\":1,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',19,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(28,'2018-05-14 20:16:44','2018-05-14 20:16:44',1,1,1,NULL,NULL,7,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(29,'2018-05-14 20:18:25','2018-05-14 20:18:25',1,1,1,NULL,NULL,7,NULL,NULL,NULL,'{\"invoice_number\":\"0007\",\"discount\":\"10.00\",\"po_number\":\"\",\"invoice_date\":\"2018-05-14\",\"due_date\":\"2018-05-30\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3600.00\",\"balance\":\"3600.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Hosting Renewal MRI\",\"notes\":\"Domain & Hosting Renewal 19th May 2018 - 19th May 2019\\r\\n\\r\\nRemote Support For PC\\r\\n\\r\\nRemote Support For Mobile\\r\\n\\r\\nOn-site visit 19th May 2018 - 19th May 2019\",\"cost\":\"4000.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"MRI Technologies (M) Sdn. Bhd\",\"address1\":\"No.11C, Jalan Suarasa 8\\/5\",\"address2\":\"Bandar Tun Hussein Onn\",\"city\":\"Cheras\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"43200\",\"country_id\":458,\"work_phone\":\"+603-90819885\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.mri-tech.com.my\",\"payment_terms\":16,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"001806622720\",\"id_number\":\"499224-T\",\"contacts\":[{\"first_name\":\"\",\"last_name\":\"\",\"email\":\"\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":null,\"custom_value2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":0,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":1,\"inclusive_taxes\":1,\"signature_on_pdf\":1,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'61.6.18.62',0,NULL,''),(30,'2019-05-18 02:49:15','2019-05-18 02:49:15',1,1,2,NULL,NULL,8,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'183.171.83.97',0,NULL,''),(31,'2019-05-18 02:56:36','2019-05-18 02:56:36',1,1,2,NULL,NULL,8,NULL,NULL,NULL,'{\"invoice_number\":\"1558090155.876185\",\"discount\":\"30.00\",\"po_number\":\"37718\",\"invoice_date\":\"2019-05-17\",\"due_date\":\"1998-01-23\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"270.00\",\"balance\":\"270.00\",\"invoice_design_id\":\"9\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"1\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal TepatConsult.com\",\"notes\":\"Renewal For 1 Year\",\"cost\":\"300.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":null,\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"16\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"\",\"email\":\"millarw@gmail.com\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":null,\"custom_value2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"0\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"1\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.83.97',0,NULL,''),(32,'2019-05-18 03:08:27','2019-05-18 03:08:27',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,0.00,0.00,NULL,'183.171.83.97',0,NULL,''),(33,'2019-07-12 23:23:11','2019-07-12 23:23:11',1,1,3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'183.171.68.196',0,NULL,''),(34,'2019-07-12 23:30:29','2019-07-12 23:30:29',1,1,3,NULL,NULL,9,NULL,NULL,NULL,NULL,18,0.00,0.00,NULL,'183.171.68.196',0,NULL,''),(35,'2019-07-12 23:32:27','2019-07-12 23:32:27',1,1,3,NULL,NULL,9,NULL,NULL,NULL,'{\"invoice_number\":\"5021\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-12\",\"due_date\":null,\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash or cheque. Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"Unpaid Quotation - 25354A 864046 (MYR 625)\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"500.00\",\"balance\":\"500.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"2\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Website Development (Enhance From Old Website)\",\"notes\":\"Enhancement Previous Website From 2 Language To Single Language\",\"cost\":\"500.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"Jalan Sentosa 3\\/57\",\"address2\":\"No.29\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"6016261233\",\"balance\":null,\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"90\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":null,\"custom_value2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"1\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',19,0.00,0.00,NULL,'183.171.68.196',0,NULL,''),(36,'2019-07-12 23:33:42','2019-07-12 23:33:42',1,1,3,NULL,NULL,9,NULL,NULL,NULL,'{\"invoice_number\":\"5021\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-12\",\"due_date\":null,\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"Unpaid Quotation - 25354A 864046 (MYR 625)\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"500.00\",\"balance\":\"500.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"2\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Website Development (Enhance From Old Website)\",\"notes\":\"Enhancement Previous Website From 2 Language To Single Language\",\"cost\":\"500.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"Jalan Sentosa 3\\/57\",\"address2\":\"No.29\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"6016261233\",\"balance\":null,\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"90\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":null,\"custom_value2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"1\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',19,0.00,0.00,NULL,'183.171.68.196',0,NULL,''),(37,'2019-07-12 23:34:12','2019-07-12 23:34:12',1,1,3,NULL,NULL,9,NULL,NULL,NULL,'{\"invoice_number\":\"5021\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-12\",\"due_date\":null,\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"Unpaid Quotation - 25354A 864046 (MYR 625)\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"500.00\",\"balance\":\"500.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"2\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Website Development (Enhance From Old Website)\",\"notes\":\"Enhancement Previous Website From 2 Language To Single Language\",\"cost\":\"500.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"Jalan Sentosa 3\\/57\",\"address2\":\"No.29\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"6016261233\",\"balance\":null,\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"90\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":null,\"custom_value2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"1\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',19,0.00,0.00,NULL,'183.171.68.196',0,NULL,''),(38,'2019-07-12 23:36:13','2019-07-12 23:36:13',1,1,3,NULL,NULL,9,NULL,NULL,NULL,'{\"invoice_number\":\"5021\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-12\",\"due_date\":null,\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"Unpaid Quotation - 25354A 864046 (MYR 625)\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"500.00\",\"balance\":\"500.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"2\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Website Development (Enhance From Old Website)\",\"notes\":\"Enhancement Previous Website From 2 Language To Single Language\",\"cost\":\"500.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"Jalan Sentosa 3\\/57\",\"address2\":\"No.29\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"6016261233\",\"balance\":null,\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"90\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":null,\"custom_value2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"1\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',19,0.00,0.00,NULL,'183.171.68.196',0,NULL,''),(39,'2019-07-12 23:36:35','2019-07-12 23:36:35',1,1,3,6,NULL,9,NULL,NULL,NULL,NULL,20,0.00,0.00,NULL,'183.171.68.196',0,NULL,''),(40,'2019-07-12 23:36:35','2019-07-12 23:36:36',1,1,3,NULL,NULL,9,NULL,NULL,NULL,'{\"invoice_number\":\"5021\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-12\",\"due_date\":null,\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"Unpaid Quotation - 25354A 864046 (MYR 625)\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"500.00\",\"balance\":\"500.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"2\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Website Development (Enhance From Old Website)\",\"notes\":\"Enhancement Previous Website From 2 Language To Single Language\",\"cost\":\"500.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"Jalan Sentosa 3\\/57\",\"address2\":\"No.29\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"6016261233\",\"balance\":null,\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"90\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":null,\"custom_value2\":null,\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"1\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',19,0.00,0.00,NULL,'183.171.68.196',0,NULL,''),(41,'2019-07-12 23:38:08','2019-07-12 23:38:08',1,1,3,6,NULL,9,NULL,NULL,NULL,NULL,21,0.00,0.00,NULL,'183.171.105.2',0,NULL,''),(42,'2019-07-13 03:04:24','2019-07-13 03:04:24',1,1,3,6,NULL,9,NULL,NULL,NULL,NULL,21,0.00,0.00,NULL,'183.171.105.2',0,NULL,''),(43,'2019-07-13 03:21:55','2019-07-13 03:21:55',1,1,2,NULL,NULL,8,NULL,NULL,NULL,'{\"invoice_number\":\"1558090155.876185\",\"discount\":\"30.00\",\"po_number\":\"37718\",\"invoice_date\":\"2019-05-17\",\"due_date\":\"1998-01-23\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"270.00\",\"balance\":\"270.00\",\"invoice_design_id\":\"9\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"1\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal TepatConsult.com\",\"notes\":\"Renewal For 1 Year\",\"cost\":\"300.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":null,\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"16\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'80.154.98.131',0,NULL,''),(44,'2019-07-13 03:50:18','2019-07-13 03:50:18',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,3,''),(45,'2019-07-13 03:52:13','2019-07-13 03:52:13',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,4,''),(46,'2019-07-13 03:54:30','2019-07-13 03:54:30',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,5,''),(47,'2019-07-13 04:27:13','2019-07-13 04:27:13',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,6,''),(48,'2019-07-13 04:49:10','2019-07-13 04:49:10',1,1,3,NULL,NULL,10,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'80.154.98.131',0,NULL,''),(49,'2019-07-13 04:49:33','2019-07-13 04:49:33',1,1,3,NULL,NULL,10,NULL,NULL,NULL,'{\"invoice_number\":\"864556\",\"discount\":\"0.00\",\"po_number\":\"864046\",\"invoice_date\":\"2018-10-02\",\"due_date\":\"2019-10-10\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1650.00\",\"balance\":\"1650.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"330.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Website Development - 2 Languages\",\"notes\":\"Translate 2 Language\",\"cost\":\"1150.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Domain & Hosting  (Linux Platform)\",\"notes\":\"1 Year Fee\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50GB\\r\\nMultiple Domain Hosting - Up To 5 Domains\\r\\nDisk Space 10GB\",\"cost\":\"500.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Website & Hosting Maintenance \\/ Support\",\"notes\":\"Optional\\r\\nRM100 \\/ Request\\r\\nRM1200 \\/ Yearly\",\"cost\":\"0.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"Jalan Sentosa 3\\/57\",\"address2\":\"No.29\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"6016261233\",\"balance\":null,\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"90\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,1650.00,1650.00,NULL,'80.154.98.131',0,NULL,''),(50,'2019-07-13 04:50:15','2019-07-13 04:50:15',1,1,3,NULL,2,10,NULL,NULL,NULL,'{\"invoice_number\":\"864556\",\"discount\":\"0.00\",\"po_number\":\"864046\",\"invoice_date\":\"2018-10-02\",\"due_date\":\"2019-10-10\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1650.00\",\"balance\":1450,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":130,\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"Jalan Sentosa 3\\/57\",\"address2\":\"No.29\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"6016261233\",\"balance\":\"1450.00\",\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"90\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invoice_items\":[{\"product_key\":\"Website Development - 2 Languages\",\"notes\":\"Translate 2 Language\",\"cost\":\"1150.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Domain & Hosting  (Linux Platform)\",\"notes\":\"1 Year Fee\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50GB\\r\\nMultiple Domain Hosting - Up To 5 Domains\\r\\nDisk Space 10GB\",\"cost\":\"500.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Website & Hosting Maintenance \\/ Support\",\"notes\":\"Optional\\r\\nRM100 \\/ Request\\r\\nRM1200 \\/ Yearly\",\"cost\":\"0.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',10,-200.00,1450.00,NULL,'80.154.98.131',0,NULL,''),(51,'2019-07-13 04:50:15','2019-07-13 04:50:15',1,1,3,NULL,NULL,10,NULL,NULL,NULL,'{\"invoice_number\":\"864556\",\"discount\":\"0.00\",\"po_number\":\"864046\",\"invoice_date\":\"2018-10-02\",\"due_date\":\"2019-10-10\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1650.00\",\"balance\":\"1650.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"330.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Website Development - 2 Languages\",\"notes\":\"Translate 2 Language\",\"cost\":\"1150.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Domain & Hosting  (Linux Platform)\",\"notes\":\"1 Year Fee\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50GB\\r\\nMultiple Domain Hosting - Up To 5 Domains\\r\\nDisk Space 10GB\",\"cost\":\"500.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Website & Hosting Maintenance \\/ Support\",\"notes\":\"Optional\\r\\nRM100 \\/ Request\\r\\nRM1200 \\/ Yearly\",\"cost\":\"0.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"Jalan Sentosa 3\\/57\",\"address2\":\"No.29\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"6016261233\",\"balance\":\"1450.00\",\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"90\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,1450.00,NULL,'80.154.98.131',0,NULL,''),(52,'2019-07-13 07:21:59','2019-07-13 07:21:59',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.106.31',0,7,''),(53,'2019-07-13 07:22:13','2019-07-13 07:22:13',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.106.31',0,7,''),(54,'2019-07-13 07:27:47','2019-07-13 07:27:47',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'183.171.106.31',0,NULL,''),(55,'2019-07-13 07:31:59','2019-07-13 07:31:59',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.106.31',0,7,''),(56,'2019-07-13 07:35:30','2019-07-13 07:35:30',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.106.31',0,8,''),(57,'2019-07-13 07:36:39','2019-07-13 07:36:39',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.106.31',0,6,''),(58,'2019-07-13 07:36:57','2019-07-13 07:36:57',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.106.31',0,4,''),(59,'2019-07-13 07:37:20','2019-07-13 07:37:20',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.106.31',0,3,''),(60,'2019-07-13 07:37:38','2019-07-13 07:37:38',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.106.31',0,5,''),(61,'2019-07-13 07:43:11','2019-07-13 07:43:11',1,1,4,NULL,NULL,11,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'183.171.106.31',0,NULL,''),(62,'2019-07-13 07:43:20','2019-07-13 07:43:20',1,1,4,NULL,NULL,11,NULL,NULL,NULL,'{\"invoice_number\":\"1001150\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-06-26\",\"due_date\":\"2019-07-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"588.95\",\"balance\":\"588.95\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":true,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Land Transportation\",\"notes\":\"Grab Expenses May 2019\",\"cost\":\"588.9500\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"A-3a-3, Panorama Condominium Sentul,\",\"address2\":\"No:9, Jln Bullion Mewah, Tmn Bull\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":null,\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[{\"public_id\":\"1\",\"name\":\"1001150_MOBTEL HUB_20190626-100601.pdf\"},{\"public_id\":\"2\",\"name\":\"Rides Listing - MOBTEL HUB May 2019.xlsx\"}],\"expenses\":[{\"documents\":[]}]}',5,588.95,588.95,NULL,'183.171.106.31',0,NULL,''),(63,'2019-07-13 07:45:02','2019-07-13 07:45:04',1,1,4,NULL,3,11,NULL,NULL,NULL,'{\"invoice_number\":\"1001150\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-06-26\",\"due_date\":\"2019-07-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"588.95\",\"balance\":293.950000000000045474735088646411895751953125,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":true,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"A-3a-3, Panorama Condominium Sentul,\",\"address2\":\"No:9, Jln Bullion Mewah, Tmn Bull\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"293.95\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invoice_items\":[{\"product_key\":\"Land Transportation\",\"notes\":\"Grab Expenses May 2019\",\"cost\":\"588.9500\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[{\"public_id\":\"1\",\"name\":\"1001150_MOBTEL HUB_20190626-100601.pdf\"},{\"public_id\":\"2\",\"name\":\"Rides Listing - MOBTEL HUB May 2019.xlsx\"}],\"expenses\":[{\"documents\":[]}]}',10,-295.00,293.95,NULL,'183.171.106.31',0,NULL,''),(64,'2019-07-13 07:45:03','2019-07-13 07:45:04',1,1,4,NULL,NULL,11,NULL,NULL,NULL,'{\"invoice_number\":\"1001150\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-06-26\",\"due_date\":\"2019-07-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"588.95\",\"balance\":\"588.95\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":true,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Land Transportation\",\"notes\":\"Grab Expenses May 2019\",\"cost\":\"588.9500\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"A-3a-3, Panorama Condominium Sentul,\",\"address2\":\"No:9, Jln Bullion Mewah, Tmn Bull\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"293.95\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[{\"public_id\":\"1\",\"name\":\"1001150_MOBTEL HUB_20190626-100601.pdf\"},{\"public_id\":\"2\",\"name\":\"Rides Listing - MOBTEL HUB May 2019.xlsx\"}],\"expenses\":[{\"documents\":[]}]}',5,0.00,293.95,NULL,'183.171.106.31',0,NULL,''),(65,'2019-07-13 08:02:56','2019-07-13 08:02:56',1,1,4,NULL,NULL,12,NULL,NULL,NULL,NULL,4,0.00,293.95,NULL,'183.171.106.31',0,NULL,''),(66,'2019-07-13 08:03:14','2019-07-13 08:03:14',1,1,4,NULL,NULL,12,NULL,NULL,NULL,'{\"invoice_number\":\"35300000733\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-06-30\",\"due_date\":\"2019-07-22\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"963.34\",\"balance\":\"963.34\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":true,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Fuel\",\"notes\":\"Shell Expenses Jun 2019\",\"cost\":\"963.3400\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"A-3A-3, Panorama Condominium Sentul,\",\"address2\":\"No:9, Jln Bullion Mewah, Tmn Bull\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"293.95\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[{\"public_id\":\"3\",\"name\":\"INV_2337919380001_296230_190630.pdf\"}],\"expenses\":[{\"documents\":[]}]}',5,963.34,1257.29,NULL,'183.171.106.31',0,NULL,''),(67,'2019-07-13 08:04:49','2019-07-13 08:04:49',1,1,4,NULL,3,11,NULL,NULL,NULL,NULL,13,295.00,1552.29,NULL,'183.171.106.31',0,NULL,''),(68,'2019-07-13 08:04:49','2019-07-13 08:04:49',1,1,4,NULL,NULL,11,NULL,NULL,NULL,'{\"invoice_number\":\"1001150\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-06-26\",\"due_date\":\"2019-07-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"588.95\",\"balance\":\"293.95\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":true,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Land Transportation\",\"notes\":\"Grab Expenses May 2019\",\"cost\":\"588.9500\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"A-3A-3, Panorama Condominium Sentul,\",\"address2\":\"No:9, Jln Bullion Mewah, Tmn Bull\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1552.29\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[{\"public_id\":\"1\",\"name\":\"1001150_MOBTEL HUB_20190626-100601.pdf\"},{\"public_id\":\"2\",\"name\":\"Rides Listing - MOBTEL HUB May 2019.xlsx\"}],\"expenses\":[{\"documents\":[]}]}',5,0.00,1552.29,NULL,'183.171.106.31',0,NULL,''),(69,'2019-07-13 08:05:13','2019-07-13 08:05:13',1,1,4,NULL,NULL,12,NULL,NULL,NULL,'{\"invoice_number\":\"35300000733\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-06-30\",\"due_date\":\"2019-07-22\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"963.34\",\"balance\":\"963.34\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":true,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Fuel\",\"notes\":\"Shell Expenses Jun 2019\",\"cost\":\"963.3400\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"A-3A-3, Panorama Condominium Sentul,\",\"address2\":\"No:9, Jln Bullion Mewah, Tmn Bull\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1552.29\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[{\"public_id\":\"3\",\"name\":\"INV_2337919380001_296230_190630.pdf\"}],\"expenses\":[{\"documents\":[]}]}',5,0.00,1552.29,NULL,'183.171.106.31',0,NULL,''),(70,'2019-07-13 08:05:13','2019-07-13 08:05:13',1,1,4,NULL,NULL,12,NULL,NULL,NULL,NULL,9,-963.34,588.95,NULL,'183.171.106.31',0,NULL,''),(71,'2019-07-13 08:05:18','2019-07-13 08:05:18',1,1,4,NULL,NULL,11,NULL,NULL,NULL,'{\"invoice_number\":\"1001150\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-06-26\",\"due_date\":\"2019-07-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"588.95\",\"balance\":\"588.95\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":true,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Land Transportation\",\"notes\":\"Grab Expenses May 2019\",\"cost\":\"588.9500\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"A-3A-3, Panorama Condominium Sentul,\",\"address2\":\"No:9, Jln Bullion Mewah, Tmn Bull\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"588.95\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[{\"public_id\":\"1\",\"name\":\"1001150_MOBTEL HUB_20190626-100601.pdf\"},{\"public_id\":\"2\",\"name\":\"Rides Listing - MOBTEL HUB May 2019.xlsx\"}],\"expenses\":[{\"documents\":[]}]}',5,0.00,588.95,NULL,'183.171.106.31',0,NULL,''),(72,'2019-07-13 08:05:18','2019-07-13 08:05:18',1,1,4,NULL,NULL,11,NULL,NULL,NULL,NULL,9,-588.95,0.00,NULL,'183.171.106.31',0,NULL,''),(73,'2019-07-13 08:10:04','2019-07-13 08:10:04',1,1,3,NULL,NULL,10,NULL,NULL,NULL,'{\"invoice_number\":\"864556\",\"discount\":\"0.00\",\"po_number\":\"864046\",\"invoice_date\":\"2018-10-02\",\"due_date\":\"2019-10-10\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1650.00\",\"balance\":\"1450.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"130.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Website Development - 2 Languages\",\"notes\":\"Translate 2 Language\",\"cost\":\"1150.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Domain & Hosting  (Linux Platform)\",\"notes\":\"1 Year Fee\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50GB\\r\\nMultiple Domain Hosting - Up To 5 Domains\\r\\nDisk Space 10GB\",\"cost\":\"500.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Website & Hosting Maintenance \\/ Support\",\"notes\":\"Optional\\r\\nRM100 \\/ Request\\r\\nRM1200 \\/ Yearly\",\"cost\":\"0.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"Jalan Sentosa 3\\/57\",\"address2\":\"No.29\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"6016261233\",\"balance\":\"1450.00\",\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,1450.00,NULL,'183.171.106.31',0,NULL,''),(74,'2019-07-13 08:37:58','2019-07-13 08:37:58',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.97.189',0,9,''),(75,'2019-07-13 08:40:51','2019-07-13 08:40:51',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.97.189',0,10,''),(76,'2019-07-13 08:44:10','2019-07-13 08:44:10',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.97.189',0,11,''),(77,'2019-07-13 08:47:22','2019-07-13 08:47:22',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.97.189',0,12,''),(78,'2019-07-13 08:49:57','2019-07-13 08:49:57',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.97.189',0,6,''),(79,'2019-07-13 08:53:01','2019-07-13 08:53:01',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.97.189',0,13,''),(80,'2019-07-13 08:55:13','2019-07-13 08:55:13',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.97.189',0,14,''),(81,'2019-07-13 08:56:00','2019-07-13 08:56:00',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.97.189',0,14,''),(82,'2019-07-13 08:58:07','2019-07-13 08:58:07',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.97.189',0,15,''),(83,'2019-07-13 09:01:01','2019-07-13 09:01:01',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.97.189',0,16,''),(84,'2019-07-13 09:03:01','2019-07-13 09:03:01',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.97.189',0,17,''),(85,'2019-07-13 09:05:25','2019-07-13 09:05:25',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.97.189',0,18,''),(86,'2019-07-13 09:11:05','2019-07-13 09:11:05',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.97.189',0,19,''),(87,'2019-07-13 09:13:57','2019-07-13 09:13:57',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.97.189',0,8,''),(88,'2019-07-13 09:31:44','2019-07-13 09:31:44',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.97.189',0,20,''),(89,'2019-07-13 09:35:08','2019-07-13 09:35:08',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.97.189',0,21,''),(90,'2019-07-13 09:36:34','2019-07-13 09:36:34',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.97.189',0,22,''),(91,'2019-07-13 09:37:41','2019-07-13 09:37:41',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36,0.00,0.00,NULL,'183.171.97.189',0,22,''),(92,'2019-07-13 10:20:24','2019-07-13 10:20:24',1,1,2,NULL,NULL,13,NULL,NULL,NULL,NULL,18,0.00,0.00,NULL,'183.171.97.189',0,NULL,''),(93,'2019-07-13 10:20:39','2019-07-13 10:20:41',1,1,2,NULL,NULL,13,NULL,NULL,NULL,'{\"invoice_number\":\"333947\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2018-10-01\",\"due_date\":\"2018-11-01\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"2\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal TepatConsult.com\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":null,\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',19,0.00,0.00,NULL,'183.171.97.189',0,NULL,''),(94,'2019-07-13 10:21:04','2019-07-13 10:21:04',1,1,2,NULL,NULL,13,NULL,NULL,NULL,'{\"invoice_number\":\"333947\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2018-10-01\",\"due_date\":\"2018-11-01\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"2\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal TepatConsult.com\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":null,\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',19,0.00,0.00,NULL,'183.171.97.189',0,NULL,''),(95,'2019-07-13 10:21:04','2019-07-13 10:21:04',1,1,2,NULL,NULL,14,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'183.171.97.189',0,NULL,''),(96,'2019-07-13 10:22:03','2019-07-13 10:22:03',1,1,2,NULL,NULL,14,NULL,NULL,NULL,'{\"invoice_number\":\"0013\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-12\",\"due_date\":\"2019-08-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal TepatConsult.com\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":null,\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.97.189',0,NULL,''),(97,'2019-07-13 10:23:12','2019-07-13 10:23:13',1,1,2,NULL,NULL,14,NULL,NULL,NULL,'{\"invoice_number\":\"0013\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2018-10-01\",\"due_date\":\"2018-11-01\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal TepatConsult.com\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":null,\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,350.00,350.00,NULL,'183.171.97.189',0,NULL,''),(98,'2019-07-13 10:23:13','2019-07-13 10:23:13',1,1,2,NULL,4,14,NULL,NULL,NULL,'{\"invoice_number\":\"0013\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2018-10-01\",\"due_date\":\"2018-11-01\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":0,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal TepatConsult.com\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',10,-350.00,0.00,NULL,'183.171.97.189',0,NULL,''),(99,'2019-07-13 10:23:13','2019-07-13 10:23:13',1,1,2,NULL,NULL,14,NULL,NULL,NULL,'{\"invoice_number\":\"0013\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2018-10-01\",\"due_date\":\"2018-11-01\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal TepatConsult.com\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.97.189',0,NULL,''),(100,'2019-07-13 10:30:18','2019-07-13 10:30:18',1,1,2,NULL,NULL,8,NULL,NULL,NULL,'{\"invoice_number\":\"1558090155.876185\",\"discount\":\"30.00\",\"po_number\":\"37718\",\"invoice_date\":\"2019-05-17\",\"due_date\":\"1998-01-23\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"270.00\",\"balance\":\"270.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"1\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal TepatConsult.com\",\"notes\":\"Renewal For 1 Year\",\"cost\":\"300.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.97.189',0,NULL,''),(101,'2019-07-13 10:56:51','2019-07-13 10:56:51',1,1,2,NULL,NULL,8,NULL,NULL,NULL,'{\"invoice_number\":\"1558090155.876185\",\"discount\":\"0.00\",\"po_number\":\"37718\",\"invoice_date\":\"2019-05-17\",\"due_date\":\"1998-01-31\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal TepatConsult.com\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.97.189',0,NULL,''),(102,'2019-07-13 10:57:47','2019-07-13 10:57:47',1,1,2,NULL,NULL,8,NULL,NULL,NULL,'{\"invoice_number\":\"1558090155.876185\",\"discount\":\"0.00\",\"po_number\":\"37718\",\"invoice_date\":\"2019-05-17\",\"due_date\":\"1998-01-31\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal TepatConsult.com\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.97.189',0,NULL,''),(103,'2019-07-13 11:00:33','2019-07-13 11:00:33',1,1,3,NULL,NULL,15,NULL,NULL,NULL,NULL,4,0.00,1450.00,NULL,'183.171.97.189',0,NULL,''),(104,'2019-07-13 11:02:30','2019-07-13 11:02:30',1,1,3,NULL,NULL,15,NULL,NULL,NULL,'{\"invoice_number\":\"1562958033.614152\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-13\",\"due_date\":\"1998-01-31\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"300.00\",\"balance\":\"300.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tourguide.asia\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"300.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"No.29, Jalan Sentosa 3\\/57\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"+6016261233\",\"balance\":\"1450.00\",\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"+6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"+60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,1450.00,NULL,'183.171.97.189',0,NULL,''),(105,'2019-07-13 11:05:18','2019-07-13 11:05:18',1,1,2,NULL,NULL,8,NULL,NULL,NULL,'{\"invoice_number\":\"1558090155.876185\",\"discount\":\"0.00\",\"po_number\":\"37718\",\"invoice_date\":\"2019-05-17\",\"due_date\":\"1998-01-31\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.97.189',0,NULL,''),(106,'2019-07-13 21:34:17','2019-07-13 21:34:17',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'80.154.98.131',0,4,''),(107,'2019-07-13 21:40:52','2019-07-13 21:40:52',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,23,''),(108,'2019-07-13 21:42:12','2019-07-13 21:42:12',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,24,''),(109,'2019-07-13 21:43:36','2019-07-13 21:43:36',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,25,''),(110,'2019-07-13 21:44:48','2019-07-13 21:44:48',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,26,''),(111,'2019-07-13 21:46:01','2019-07-13 21:46:01',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,27,''),(112,'2019-07-13 21:47:18','2019-07-13 21:47:18',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,28,''),(113,'2019-07-13 21:50:16','2019-07-13 21:50:16',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,29,''),(114,'2019-07-13 21:53:53','2019-07-13 21:53:53',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,30,''),(115,'2019-07-13 21:55:18','2019-07-13 21:55:18',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,31,''),(116,'2019-07-13 21:56:27','2019-07-13 21:56:27',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,32,''),(117,'2019-07-13 21:57:41','2019-07-13 21:57:41',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,33,''),(118,'2019-07-13 21:59:18','2019-07-13 21:59:18',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,34,''),(119,'2019-07-13 22:00:23','2019-07-13 22:00:23',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,35,''),(120,'2019-07-13 22:00:58','2019-07-13 22:00:58',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'80.154.98.131',0,5,''),(121,'2019-07-13 22:00:58','2019-07-13 22:00:58',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36,0.00,0.00,NULL,'80.154.98.131',0,5,''),(122,'2019-07-13 22:10:53','2019-07-13 22:10:53',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'80.154.98.131',0,20,''),(123,'2019-07-13 22:13:38','2019-07-13 22:13:38',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,36,''),(124,'2019-07-13 22:14:19','2019-07-13 22:14:19',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,37,''),(125,'2019-07-13 22:15:04','2019-07-13 22:15:04',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,38,''),(126,'2019-07-13 22:15:43','2019-07-13 22:15:43',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,39,''),(127,'2019-07-13 22:20:16','2019-07-13 22:20:16',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'80.154.98.131',0,21,''),(128,'2019-07-13 22:22:24','2019-07-13 22:22:24',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'80.154.98.131',0,6,''),(129,'2019-07-13 22:22:55','2019-07-13 22:22:55',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'80.154.98.131',0,6,''),(130,'2019-07-14 10:04:39','2019-07-14 10:04:39',1,1,4,NULL,NULL,16,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'183.171.71.242',0,NULL,''),(131,'2019-07-14 10:06:41','2019-07-14 10:06:42',1,1,4,NULL,NULL,16,NULL,NULL,NULL,'{\"invoice_number\":\"0014\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,1.00,1.00,NULL,'183.171.71.242',0,NULL,''),(132,'2019-07-14 10:07:55','2019-07-14 10:07:55',1,1,4,NULL,NULL,16,NULL,NULL,NULL,'{\"invoice_number\":\"0014\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTkxIiBoZWlnaHQ9IjEyMyI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDgzIDE0IGMgLTAuMDkgMC4xOSAtMy4wNyA3LjQzIC01IDExIGMgLTIuNDQgNC41MSAtNS4wMyA4LjcgLTggMTMgYyAtMTAuNzQgMTUuNTcgLTIxLjU5IDI5LjM4IC0zMiA0NSBjIC01LjI0IDcuODYgLTguOSAxNi45IC0xNCAyNCBjIC0yLjIxIDMuMDggLTYuMTUgNS4xNSAtOSA4IGMgLTIuMTggMi4xOCAtNS44MSA3LjI4IC02IDcgYyAtMC4yMiAtMC4zMyAzLjIxIC02LjY3IDQgLTEwIGMgMC44MSAtMy40MSAwLjA0IC03LjYgMSAtMTEgYyAxLjk0IC02LjkxIDQuNDMgLTE0LjU5IDggLTIxIGMgNy41OCAtMTMuNiAxNi45NyAtMjYuODYgMjYgLTQwIGMgMi4wMSAtMi45MyA0Ljk0IC01LjE5IDcgLTggYyAxLjU2IC0yLjEzIDIuMzcgLTQuODkgNCAtNyBjIDYuMzIgLTguMTYgMTQuNSAtMjEuNDEgMjAgLTI0IGMgMi44NCAtMS4zNCAxMS43NCA0LjgzIDE0IDggYyAxLjgzIDIuNTYgMC45MSA4LjU1IDEgMTMgYyAwLjI1IDExLjYxIDAuNTMgMjIuNDggMCAzNCBjIC0wLjQ5IDEwLjU1IC0xLjI5IDIwLjk2IC0zIDMxIGMgLTAuOTIgNS40IC0zLjgzIDEwLjgzIC01IDE2IGMgLTAuNDIgMS44NSAwLjI2IDQuMDYgMCA2IGMgLTAuNCAyLjk4IC0xLjk5IDkuMjIgLTIgOSBjIC0wLjA2IC0xLjI3IC0wLjg0IC0zNC41NiAwIC01MiBjIDAuNTEgLTEwLjQ4IDEuNjYgLTIxIDQgLTMxIGMgMi42MSAtMTEuMTIgOS40NiAtMzEuNzcgMTEgLTMzIGMgMC45NSAtMC43NiAzLjUyIDEzLjk4IDQgMjEgYyAwLjg0IDEyLjE1IDAuODEgMjQuNzkgMCAzNyBjIC0wLjUxIDcuNzEgLTMuMzMgMTUuMzEgLTQgMjMgYyAtMC42NiA3LjU4IC0wLjA0IDIzLjQgMCAyMyBjIDAuMDUgLTAuNTkgMC4yNSAtMjIuNjkgMSAtMzQgYyAwLjI1IC0zLjcyIDEuMDYgLTcuMzYgMiAtMTEgYyAxLjQxIC01LjQ2IDQuMzEgLTE0LjkyIDUgLTE2IGMgMC4yMiAtMC4zNSAxLjY5IDMuMjggMiA1IGMgMi45NSAxNi4yMSA1LjEgNDIuNDIgOCA1MCBjIDAuNiAxLjU2IDYuODQgLTEuNTcgMTAgLTMgYyAxNC40NyAtNi41NSAyOS43NyAtMTMuOTYgNDMgLTIxIGMgMS41NiAtMC44MyAyLjk3IC0yLjUgNCAtNCBjIDIuNTMgLTMuNjggNS4wOCAtNy45NiA3IC0xMiBjIDEgLTIuMTIgMS4wNiAtNC44IDIgLTcgYyAyLjAzIC00Ljc0IDUuNzQgLTkuNSA3IC0xNCBjIDAuODggLTMuMTYgMS44OCAtMTAuNTggMCAtMTEgYyAtOC4zNyAtMS44OCAtMzIuODEgLTAuOSAtNDkgMCBjIC03LjcxIDAuNDMgLTE1LjM0IDIuMTUgLTIzIDQgYyAtMTAuNiAyLjU1IC0yMC41OSA2LjcxIC0zMSA5IGMgLTYuMTYgMS4zNiAtMTIuNTQgMS4wNSAtMTkgMiBjIC03LjU2IDEuMTEgLTE0LjY4IDMuMTEgLTIyIDQgYyAtMy42IDAuNDQgLTcuMzkgLTAuMzMgLTExIDAgYyAtMy42NyAwLjMzIC03LjI3IDEuNjcgLTExIDIgbCAtMjMgMSIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-13 18:07:54\"}],\"documents\":[],\"expenses\":[]}',5,2.03,3.03,NULL,'183.171.71.242',0,NULL,''),(133,'2019-07-14 10:08:51','2019-07-14 10:08:53',1,1,4,9,5,16,NULL,22,NULL,'{\"invoice_number\":\"0014\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.03\",\"balance\":0,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.0300\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":4,\"discount\":\"0.00\"}],\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTkxIiBoZWlnaHQ9IjEyMyI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDgzIDE0IGMgLTAuMDkgMC4xOSAtMy4wNyA3LjQzIC01IDExIGMgLTIuNDQgNC41MSAtNS4wMyA4LjcgLTggMTMgYyAtMTAuNzQgMTUuNTcgLTIxLjU5IDI5LjM4IC0zMiA0NSBjIC01LjI0IDcuODYgLTguOSAxNi45IC0xNCAyNCBjIC0yLjIxIDMuMDggLTYuMTUgNS4xNSAtOSA4IGMgLTIuMTggMi4xOCAtNS44MSA3LjI4IC02IDcgYyAtMC4yMiAtMC4zMyAzLjIxIC02LjY3IDQgLTEwIGMgMC44MSAtMy40MSAwLjA0IC03LjYgMSAtMTEgYyAxLjk0IC02LjkxIDQuNDMgLTE0LjU5IDggLTIxIGMgNy41OCAtMTMuNiAxNi45NyAtMjYuODYgMjYgLTQwIGMgMi4wMSAtMi45MyA0Ljk0IC01LjE5IDcgLTggYyAxLjU2IC0yLjEzIDIuMzcgLTQuODkgNCAtNyBjIDYuMzIgLTguMTYgMTQuNSAtMjEuNDEgMjAgLTI0IGMgMi44NCAtMS4zNCAxMS43NCA0LjgzIDE0IDggYyAxLjgzIDIuNTYgMC45MSA4LjU1IDEgMTMgYyAwLjI1IDExLjYxIDAuNTMgMjIuNDggMCAzNCBjIC0wLjQ5IDEwLjU1IC0xLjI5IDIwLjk2IC0zIDMxIGMgLTAuOTIgNS40IC0zLjgzIDEwLjgzIC01IDE2IGMgLTAuNDIgMS44NSAwLjI2IDQuMDYgMCA2IGMgLTAuNCAyLjk4IC0xLjk5IDkuMjIgLTIgOSBjIC0wLjA2IC0xLjI3IC0wLjg0IC0zNC41NiAwIC01MiBjIDAuNTEgLTEwLjQ4IDEuNjYgLTIxIDQgLTMxIGMgMi42MSAtMTEuMTIgOS40NiAtMzEuNzcgMTEgLTMzIGMgMC45NSAtMC43NiAzLjUyIDEzLjk4IDQgMjEgYyAwLjg0IDEyLjE1IDAuODEgMjQuNzkgMCAzNyBjIC0wLjUxIDcuNzEgLTMuMzMgMTUuMzEgLTQgMjMgYyAtMC42NiA3LjU4IC0wLjA0IDIzLjQgMCAyMyBjIDAuMDUgLTAuNTkgMC4yNSAtMjIuNjkgMSAtMzQgYyAwLjI1IC0zLjcyIDEuMDYgLTcuMzYgMiAtMTEgYyAxLjQxIC01LjQ2IDQuMzEgLTE0LjkyIDUgLTE2IGMgMC4yMiAtMC4zNSAxLjY5IDMuMjggMiA1IGMgMi45NSAxNi4yMSA1LjEgNDIuNDIgOCA1MCBjIDAuNiAxLjU2IDYuODQgLTEuNTcgMTAgLTMgYyAxNC40NyAtNi41NSAyOS43NyAtMTMuOTYgNDMgLTIxIGMgMS41NiAtMC44MyAyLjk3IC0yLjUgNCAtNCBjIDIuNTMgLTMuNjggNS4wOCAtNy45NiA3IC0xMiBjIDEgLTIuMTIgMS4wNiAtNC44IDIgLTcgYyAyLjAzIC00Ljc0IDUuNzQgLTkuNSA3IC0xNCBjIDAuODggLTMuMTYgMS44OCAtMTAuNTggMCAtMTEgYyAtOC4zNyAtMS44OCAtMzIuODEgLTAuOSAtNDkgMCBjIC03LjcxIDAuNDMgLTE1LjM0IDIuMTUgLTIzIDQgYyAtMTAuNiAyLjU1IC0yMC41OSA2LjcxIC0zMSA5IGMgLTYuMTYgMS4zNiAtMTIuNTQgMS4wNSAtMTkgMiBjIC03LjU2IDEuMTEgLTE0LjY4IDMuMTEgLTIyIDQgYyAtMy42IDAuNDQgLTcuMzkgLTAuMzMgLTExIDAgYyAtMy42NyAwLjMzIC03LjI3IDEuNjcgLTExIDIgbCAtMjMgMSIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-13 18:07:54\"}],\"documents\":[],\"expenses\":[]}',10,-3.03,0.00,NULL,'183.171.71.242',0,NULL,''),(134,'2019-07-14 10:08:52','2019-07-14 10:08:52',1,1,4,NULL,NULL,16,NULL,NULL,NULL,'{\"invoice_number\":\"0014\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.03\",\"balance\":\"3.03\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.0300\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTkxIiBoZWlnaHQ9IjEyMyI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDgzIDE0IGMgLTAuMDkgMC4xOSAtMy4wNyA3LjQzIC01IDExIGMgLTIuNDQgNC41MSAtNS4wMyA4LjcgLTggMTMgYyAtMTAuNzQgMTUuNTcgLTIxLjU5IDI5LjM4IC0zMiA0NSBjIC01LjI0IDcuODYgLTguOSAxNi45IC0xNCAyNCBjIC0yLjIxIDMuMDggLTYuMTUgNS4xNSAtOSA4IGMgLTIuMTggMi4xOCAtNS44MSA3LjI4IC02IDcgYyAtMC4yMiAtMC4zMyAzLjIxIC02LjY3IDQgLTEwIGMgMC44MSAtMy40MSAwLjA0IC03LjYgMSAtMTEgYyAxLjk0IC02LjkxIDQuNDMgLTE0LjU5IDggLTIxIGMgNy41OCAtMTMuNiAxNi45NyAtMjYuODYgMjYgLTQwIGMgMi4wMSAtMi45MyA0Ljk0IC01LjE5IDcgLTggYyAxLjU2IC0yLjEzIDIuMzcgLTQuODkgNCAtNyBjIDYuMzIgLTguMTYgMTQuNSAtMjEuNDEgMjAgLTI0IGMgMi44NCAtMS4zNCAxMS43NCA0LjgzIDE0IDggYyAxLjgzIDIuNTYgMC45MSA4LjU1IDEgMTMgYyAwLjI1IDExLjYxIDAuNTMgMjIuNDggMCAzNCBjIC0wLjQ5IDEwLjU1IC0xLjI5IDIwLjk2IC0zIDMxIGMgLTAuOTIgNS40IC0zLjgzIDEwLjgzIC01IDE2IGMgLTAuNDIgMS44NSAwLjI2IDQuMDYgMCA2IGMgLTAuNCAyLjk4IC0xLjk5IDkuMjIgLTIgOSBjIC0wLjA2IC0xLjI3IC0wLjg0IC0zNC41NiAwIC01MiBjIDAuNTEgLTEwLjQ4IDEuNjYgLTIxIDQgLTMxIGMgMi42MSAtMTEuMTIgOS40NiAtMzEuNzcgMTEgLTMzIGMgMC45NSAtMC43NiAzLjUyIDEzLjk4IDQgMjEgYyAwLjg0IDEyLjE1IDAuODEgMjQuNzkgMCAzNyBjIC0wLjUxIDcuNzEgLTMuMzMgMTUuMzEgLTQgMjMgYyAtMC42NiA3LjU4IC0wLjA0IDIzLjQgMCAyMyBjIDAuMDUgLTAuNTkgMC4yNSAtMjIuNjkgMSAtMzQgYyAwLjI1IC0zLjcyIDEuMDYgLTcuMzYgMiAtMTEgYyAxLjQxIC01LjQ2IDQuMzEgLTE0LjkyIDUgLTE2IGMgMC4yMiAtMC4zNSAxLjY5IDMuMjggMiA1IGMgMi45NSAxNi4yMSA1LjEgNDIuNDIgOCA1MCBjIDAuNiAxLjU2IDYuODQgLTEuNTcgMTAgLTMgYyAxNC40NyAtNi41NSAyOS43NyAtMTMuOTYgNDMgLTIxIGMgMS41NiAtMC44MyAyLjk3IC0yLjUgNCAtNCBjIDIuNTMgLTMuNjggNS4wOCAtNy45NiA3IC0xMiBjIDEgLTIuMTIgMS4wNiAtNC44IDIgLTcgYyAyLjAzIC00Ljc0IDUuNzQgLTkuNSA3IC0xNCBjIDAuODggLTMuMTYgMS44OCAtMTAuNTggMCAtMTEgYyAtOC4zNyAtMS44OCAtMzIuODEgLTAuOSAtNDkgMCBjIC03LjcxIDAuNDMgLTE1LjM0IDIuMTUgLTIzIDQgYyAtMTAuNiAyLjU1IC0yMC41OSA2LjcxIC0zMSA5IGMgLTYuMTYgMS4zNiAtMTIuNTQgMS4wNSAtMTkgMiBjIC03LjU2IDEuMTEgLTE0LjY4IDMuMTEgLTIyIDQgYyAtMy42IDAuNDQgLTcuMzkgLTAuMzMgLTExIDAgYyAtMy42NyAwLjMzIC03LjI3IDEuNjcgLTExIDIgbCAtMjMgMSIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-13 18:07:54\"}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.71.242',0,NULL,''),(135,'2019-07-14 10:20:41','2019-07-14 10:20:41',1,1,4,NULL,NULL,17,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'183.171.71.242',0,NULL,''),(136,'2019-07-14 10:20:52','2019-07-14 10:20:52',1,1,4,NULL,NULL,17,NULL,NULL,NULL,'{\"invoice_number\":\"0015\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,1.00,1.00,NULL,'183.171.71.242',0,NULL,''),(137,'2019-07-14 10:22:21','2019-07-14 10:22:21',1,1,4,NULL,NULL,17,NULL,NULL,NULL,'{\"invoice_number\":\"0015\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTM5IiBoZWlnaHQ9IjExMCI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDg2IDEyIGMgLTAuMyAwLjQ3IC0xMC45NyAxOC41NiAtMTcgMjcgYyAtMi4xNCAyLjk5IC01LjU3IDUuMDggLTggOCBjIC01Ljk4IDcuMTcgLTExLjEzIDE0Ljc0IC0xNyAyMiBjIC0xLjE5IDEuNDggLTIuNTQgMi45OCAtNCA0IGMgLTEuNzMgMS4yMSAtNC4zNCAxLjcgLTYgMyBjIC0yLjc5IDIuMiAtNS4yNyA1LjcyIC04IDggYyAtMS4wOCAwLjkgLTMuMDYgMS4wNiAtNCAyIGMgLTEuOCAxLjggLTMuMjMgNS4wMSAtNSA3IGMgLTAuNzQgMC44MyAtMy4wOCAyLjE5IC0zIDIgYyAwLjQ1IC0xLjEgNi40IC0xMy4yNCAxMCAtMTkgYyAxLjE5IC0xLjkgMy42NCAtMy4xOSA1IC01IGMgMS41NSAtMi4wNyAyLjM5IC00Ljg5IDQgLTcgYyAzLjY4IC00LjgyIDguMjIgLTkuMjEgMTIgLTE0IGMgMS4yIC0xLjUyIDEuODIgLTMuNjUgMyAtNSBjIDEuMDEgLTEuMTUgMi45NyAtMS44IDQgLTMgYyAyLjggLTMuMjcgNS4yNyAtNy43OCA4IC0xMSBjIDAuNzIgLTAuODUgMi40MSAtMS4xMSAzIC0yIGMgMi40MiAtMy42MyA0LjQgLTguNzEgNyAtMTMgYyAzLjE4IC01LjIzIDkuNzkgLTE1Ljg4IDEwIC0xNSBjIDAuNDIgMS43NyAtMi42MSAyNC4yNiAtNSAzNiBjIC0xLjI1IDYuMTMgLTQuNjYgMTEuOTUgLTYgMTggYyAtMS4yOCA1Ljc3IC0xLjc3IDExLjg5IC0yIDE4IGMgLTAuNDUgMTIuMTUgLTAuMyAzNC43NCAwIDM2IGMgMC4xMyAwLjU1IDMuMDQgLTEwLjA5IDUgLTE1IGMgMS4zOSAtMy40NyAzLjgxIC02LjU2IDUgLTEwIGMgMS43NiAtNS4wOCAyLjM0IC0xMC44MSA0IC0xNiBjIDAuOTkgLTMuMSAzLjA2IC01Ljg4IDQgLTkgYyAyLjM3IC03LjgzIDQuMjggLTE1Ljc2IDYgLTI0IGMgMS4zNCAtNi40IDIuOTggLTE5LjM0IDMgLTE5IGMgMC4wNiAwLjkxIC0wLjE2IDM0Ljk3IC0xIDUyIGMgLTAuMTUgMy4wMiAtMS42IDYuMDIgLTIgOSBjIC0wLjI2IDEuOTQgMC4zNyA0LjMzIDAgNiBjIC0wLjIyIDEgLTEuODQgMS45OSAtMiAzIGMgLTAuNDMgMi44MSAwLjA0IDkuNzMgMCAxMCBjIC0wLjAyIDAuMTEgLTEgLTIuNzUgLTEgLTQgYyAwIC0xLjg1IDAuNDYgLTQuMDUgMSAtNiBjIDEuMTMgLTQuMDUgMy4wOSAtOC4xMyA0IC0xMiBjIDAuMzYgLTEuNTMgLTAuMzQgLTMuNjIgMCAtNSBjIDAuMjUgLTEgMS40NSAtMyAyIC0zIGMgMC42NSAwIDIuNTcgMS44NSAzIDMgYyAxLjY1IDQuNDggMyAxMC43NyA0IDE2IGMgMC4zIDEuNTkgLTAuNTYgNC4xNiAwIDUgYyAwLjQ2IDAuNjkgMy41IDEuNyA0IDEgYyA3LjM2IC0xMC40MyAzOC4xOCAtNDguNzUgMzIgLTUyIGMgLTEzLjQ3IC03LjA3IC04OS45NyAtMC4zNyAtMTMzIC0xIGwgLTQgLTEiLz48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMzggNjggYyAwLjA5IDAuMDIgMy4zOSAxLjA3IDUgMSBjIDUuNzEgLTAuMjUgMTIuMDcgLTEuMDUgMTggLTIgYyAyLjM4IC0wLjM4IDQuNjcgLTEuODkgNyAtMiBjIDE3LjMyIC0wLjg1IDU0IC0xIDU0IC0xIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 18:22:20\"}],\"documents\":[],\"expenses\":[]}',5,2.26,3.26,NULL,'183.171.71.242',0,NULL,''),(138,'2019-07-14 10:23:01','2019-07-14 10:23:01',1,1,4,9,6,17,NULL,23,NULL,'{\"invoice_number\":\"0015\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.26\",\"balance\":0,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.2600\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":4,\"discount\":\"0.00\"}],\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTM5IiBoZWlnaHQ9IjExMCI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDg2IDEyIGMgLTAuMyAwLjQ3IC0xMC45NyAxOC41NiAtMTcgMjcgYyAtMi4xNCAyLjk5IC01LjU3IDUuMDggLTggOCBjIC01Ljk4IDcuMTcgLTExLjEzIDE0Ljc0IC0xNyAyMiBjIC0xLjE5IDEuNDggLTIuNTQgMi45OCAtNCA0IGMgLTEuNzMgMS4yMSAtNC4zNCAxLjcgLTYgMyBjIC0yLjc5IDIuMiAtNS4yNyA1LjcyIC04IDggYyAtMS4wOCAwLjkgLTMuMDYgMS4wNiAtNCAyIGMgLTEuOCAxLjggLTMuMjMgNS4wMSAtNSA3IGMgLTAuNzQgMC44MyAtMy4wOCAyLjE5IC0zIDIgYyAwLjQ1IC0xLjEgNi40IC0xMy4yNCAxMCAtMTkgYyAxLjE5IC0xLjkgMy42NCAtMy4xOSA1IC01IGMgMS41NSAtMi4wNyAyLjM5IC00Ljg5IDQgLTcgYyAzLjY4IC00LjgyIDguMjIgLTkuMjEgMTIgLTE0IGMgMS4yIC0xLjUyIDEuODIgLTMuNjUgMyAtNSBjIDEuMDEgLTEuMTUgMi45NyAtMS44IDQgLTMgYyAyLjggLTMuMjcgNS4yNyAtNy43OCA4IC0xMSBjIDAuNzIgLTAuODUgMi40MSAtMS4xMSAzIC0yIGMgMi40MiAtMy42MyA0LjQgLTguNzEgNyAtMTMgYyAzLjE4IC01LjIzIDkuNzkgLTE1Ljg4IDEwIC0xNSBjIDAuNDIgMS43NyAtMi42MSAyNC4yNiAtNSAzNiBjIC0xLjI1IDYuMTMgLTQuNjYgMTEuOTUgLTYgMTggYyAtMS4yOCA1Ljc3IC0xLjc3IDExLjg5IC0yIDE4IGMgLTAuNDUgMTIuMTUgLTAuMyAzNC43NCAwIDM2IGMgMC4xMyAwLjU1IDMuMDQgLTEwLjA5IDUgLTE1IGMgMS4zOSAtMy40NyAzLjgxIC02LjU2IDUgLTEwIGMgMS43NiAtNS4wOCAyLjM0IC0xMC44MSA0IC0xNiBjIDAuOTkgLTMuMSAzLjA2IC01Ljg4IDQgLTkgYyAyLjM3IC03LjgzIDQuMjggLTE1Ljc2IDYgLTI0IGMgMS4zNCAtNi40IDIuOTggLTE5LjM0IDMgLTE5IGMgMC4wNiAwLjkxIC0wLjE2IDM0Ljk3IC0xIDUyIGMgLTAuMTUgMy4wMiAtMS42IDYuMDIgLTIgOSBjIC0wLjI2IDEuOTQgMC4zNyA0LjMzIDAgNiBjIC0wLjIyIDEgLTEuODQgMS45OSAtMiAzIGMgLTAuNDMgMi44MSAwLjA0IDkuNzMgMCAxMCBjIC0wLjAyIDAuMTEgLTEgLTIuNzUgLTEgLTQgYyAwIC0xLjg1IDAuNDYgLTQuMDUgMSAtNiBjIDEuMTMgLTQuMDUgMy4wOSAtOC4xMyA0IC0xMiBjIDAuMzYgLTEuNTMgLTAuMzQgLTMuNjIgMCAtNSBjIDAuMjUgLTEgMS40NSAtMyAyIC0zIGMgMC42NSAwIDIuNTcgMS44NSAzIDMgYyAxLjY1IDQuNDggMyAxMC43NyA0IDE2IGMgMC4zIDEuNTkgLTAuNTYgNC4xNiAwIDUgYyAwLjQ2IDAuNjkgMy41IDEuNyA0IDEgYyA3LjM2IC0xMC40MyAzOC4xOCAtNDguNzUgMzIgLTUyIGMgLTEzLjQ3IC03LjA3IC04OS45NyAtMC4zNyAtMTMzIC0xIGwgLTQgLTEiLz48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMzggNjggYyAwLjA5IDAuMDIgMy4zOSAxLjA3IDUgMSBjIDUuNzEgLTAuMjUgMTIuMDcgLTEuMDUgMTggLTIgYyAyLjM4IC0wLjM4IDQuNjcgLTEuODkgNyAtMiBjIDE3LjMyIC0wLjg1IDU0IC0xIDU0IC0xIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 18:22:20\"}],\"documents\":[],\"expenses\":[]}',10,-3.26,0.00,NULL,'183.171.71.242',0,NULL,''),(139,'2019-07-14 10:23:01','2019-07-14 10:23:01',1,1,4,NULL,NULL,17,NULL,NULL,NULL,'{\"invoice_number\":\"0015\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.26\",\"balance\":\"3.26\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.2600\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTM5IiBoZWlnaHQ9IjExMCI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDg2IDEyIGMgLTAuMyAwLjQ3IC0xMC45NyAxOC41NiAtMTcgMjcgYyAtMi4xNCAyLjk5IC01LjU3IDUuMDggLTggOCBjIC01Ljk4IDcuMTcgLTExLjEzIDE0Ljc0IC0xNyAyMiBjIC0xLjE5IDEuNDggLTIuNTQgMi45OCAtNCA0IGMgLTEuNzMgMS4yMSAtNC4zNCAxLjcgLTYgMyBjIC0yLjc5IDIuMiAtNS4yNyA1LjcyIC04IDggYyAtMS4wOCAwLjkgLTMuMDYgMS4wNiAtNCAyIGMgLTEuOCAxLjggLTMuMjMgNS4wMSAtNSA3IGMgLTAuNzQgMC44MyAtMy4wOCAyLjE5IC0zIDIgYyAwLjQ1IC0xLjEgNi40IC0xMy4yNCAxMCAtMTkgYyAxLjE5IC0xLjkgMy42NCAtMy4xOSA1IC01IGMgMS41NSAtMi4wNyAyLjM5IC00Ljg5IDQgLTcgYyAzLjY4IC00LjgyIDguMjIgLTkuMjEgMTIgLTE0IGMgMS4yIC0xLjUyIDEuODIgLTMuNjUgMyAtNSBjIDEuMDEgLTEuMTUgMi45NyAtMS44IDQgLTMgYyAyLjggLTMuMjcgNS4yNyAtNy43OCA4IC0xMSBjIDAuNzIgLTAuODUgMi40MSAtMS4xMSAzIC0yIGMgMi40MiAtMy42MyA0LjQgLTguNzEgNyAtMTMgYyAzLjE4IC01LjIzIDkuNzkgLTE1Ljg4IDEwIC0xNSBjIDAuNDIgMS43NyAtMi42MSAyNC4yNiAtNSAzNiBjIC0xLjI1IDYuMTMgLTQuNjYgMTEuOTUgLTYgMTggYyAtMS4yOCA1Ljc3IC0xLjc3IDExLjg5IC0yIDE4IGMgLTAuNDUgMTIuMTUgLTAuMyAzNC43NCAwIDM2IGMgMC4xMyAwLjU1IDMuMDQgLTEwLjA5IDUgLTE1IGMgMS4zOSAtMy40NyAzLjgxIC02LjU2IDUgLTEwIGMgMS43NiAtNS4wOCAyLjM0IC0xMC44MSA0IC0xNiBjIDAuOTkgLTMuMSAzLjA2IC01Ljg4IDQgLTkgYyAyLjM3IC03LjgzIDQuMjggLTE1Ljc2IDYgLTI0IGMgMS4zNCAtNi40IDIuOTggLTE5LjM0IDMgLTE5IGMgMC4wNiAwLjkxIC0wLjE2IDM0Ljk3IC0xIDUyIGMgLTAuMTUgMy4wMiAtMS42IDYuMDIgLTIgOSBjIC0wLjI2IDEuOTQgMC4zNyA0LjMzIDAgNiBjIC0wLjIyIDEgLTEuODQgMS45OSAtMiAzIGMgLTAuNDMgMi44MSAwLjA0IDkuNzMgMCAxMCBjIC0wLjAyIDAuMTEgLTEgLTIuNzUgLTEgLTQgYyAwIC0xLjg1IDAuNDYgLTQuMDUgMSAtNiBjIDEuMTMgLTQuMDUgMy4wOSAtOC4xMyA0IC0xMiBjIDAuMzYgLTEuNTMgLTAuMzQgLTMuNjIgMCAtNSBjIDAuMjUgLTEgMS40NSAtMyAyIC0zIGMgMC42NSAwIDIuNTcgMS44NSAzIDMgYyAxLjY1IDQuNDggMyAxMC43NyA0IDE2IGMgMC4zIDEuNTkgLTAuNTYgNC4xNiAwIDUgYyAwLjQ2IDAuNjkgMy41IDEuNyA0IDEgYyA3LjM2IC0xMC40MyAzOC4xOCAtNDguNzUgMzIgLTUyIGMgLTEzLjQ3IC03LjA3IC04OS45NyAtMC4zNyAtMTMzIC0xIGwgLTQgLTEiLz48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMzggNjggYyAwLjA5IDAuMDIgMy4zOSAxLjA3IDUgMSBjIDUuNzEgLTAuMjUgMTIuMDcgLTEuMDUgMTggLTIgYyAyLjM4IC0wLjM4IDQuNjcgLTEuODkgNyAtMiBjIDE3LjMyIC0wLjg1IDU0IC0xIDU0IC0xIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 18:22:20\"}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.71.242',0,NULL,''),(140,'2019-07-14 10:30:41','2019-07-14 10:30:41',1,1,4,NULL,NULL,18,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'183.171.71.242',0,NULL,''),(141,'2019-07-14 10:30:48','2019-07-14 10:30:48',1,1,4,NULL,NULL,18,NULL,NULL,NULL,'{\"invoice_number\":\"0016\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,1.00,1.00,NULL,'183.171.71.242',0,NULL,''),(142,'2019-07-14 10:31:46','2019-07-14 10:31:46',1,1,4,NULL,NULL,18,NULL,NULL,NULL,'{\"invoice_number\":\"0016\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTM4IiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDUyIDUgYyAtMC41NiAwLjgyIC0yMC45NSAzMS4zIC0zMiA0NyBjIC0xLjc5IDIuNTUgLTQuNjcgNC40MyAtNiA3IGMgLTMuMTEgNS45OSAtNS41OCAxMy4xIC04IDIwIGMgLTEuOTkgNS42OCAtNS4xNyAxNy4yNiAtNSAxNyBjIDAuMjEgLTAuMzEgNC4xIC0xMy41NCA3IC0yMCBjIDQuNDcgLTkuOTYgOC45NSAtMjAuMjUgMTUgLTI5IGMgOC42OSAtMTIuNTUgMTkuNjggLTIzLjg2IDMwIC0zNiBjIDEuMjUgLTEuNDcgMi41MyAtMi44NyA0IC00IGMgMi44MSAtMi4xNiA4Ljg5IC03LjE4IDkgLTYgYyAxLjA0IDExLjIzIC0wLjE5IDk5LjcyIDAgMTAzIGMgMC4wMyAwLjU2IDIuOTYgLTExLjMxIDUgLTE3IGMgNS44MSAtMTYuMTYgMTEuNjIgLTMxLjc1IDE4IC00NyBjIDEuMiAtMi44NiAzLjczIC01LjI3IDUgLTggbCAyIC03Ii8+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDEwMyA3IGMgMC4wMyAwLjEyIDEuODkgNC42OCAyIDcgYyAwLjU0IDExLjc5IDAuNTQgMjUuOTcgMCAzNyBjIC0wLjA3IDEuMzMgLTIgNCAtMiA0Ii8+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDI0IDU5IGMgMS41NCAtMC4xOSA1Ny45OCAtNi43NSA4OCAtMTEgYyA4LjYzIC0xLjIyIDI1IC01IDI1IC01Ii8+PC9zdmc+\",\"signature_date\":\"2019-07-13 18:31:45\"}],\"documents\":[],\"expenses\":[]}',5,2.24,3.24,NULL,'183.171.71.242',0,NULL,''),(143,'2019-07-14 10:32:32','2019-07-14 10:32:32',1,1,4,NULL,NULL,18,NULL,NULL,NULL,'{\"invoice_number\":\"0016\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.24\",\"balance\":\"3.24\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.2400\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.24\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTM4IiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDUyIDUgYyAtMC41NiAwLjgyIC0yMC45NSAzMS4zIC0zMiA0NyBjIC0xLjc5IDIuNTUgLTQuNjcgNC40MyAtNiA3IGMgLTMuMTEgNS45OSAtNS41OCAxMy4xIC04IDIwIGMgLTEuOTkgNS42OCAtNS4xNyAxNy4yNiAtNSAxNyBjIDAuMjEgLTAuMzEgNC4xIC0xMy41NCA3IC0yMCBjIDQuNDcgLTkuOTYgOC45NSAtMjAuMjUgMTUgLTI5IGMgOC42OSAtMTIuNTUgMTkuNjggLTIzLjg2IDMwIC0zNiBjIDEuMjUgLTEuNDcgMi41MyAtMi44NyA0IC00IGMgMi44MSAtMi4xNiA4Ljg5IC03LjE4IDkgLTYgYyAxLjA0IDExLjIzIC0wLjE5IDk5LjcyIDAgMTAzIGMgMC4wMyAwLjU2IDIuOTYgLTExLjMxIDUgLTE3IGMgNS44MSAtMTYuMTYgMTEuNjIgLTMxLjc1IDE4IC00NyBjIDEuMiAtMi44NiAzLjczIC01LjI3IDUgLTggbCAyIC03Ii8+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDEwMyA3IGMgMC4wMyAwLjEyIDEuODkgNC42OCAyIDcgYyAwLjU0IDExLjc5IDAuNTQgMjUuOTcgMCAzNyBjIC0wLjA3IDEuMzMgLTIgNCAtMiA0Ii8+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDI0IDU5IGMgMS41NCAtMC4xOSA1Ny45OCAtNi43NSA4OCAtMTEgYyA4LjYzIC0xLjIyIDI1IC01IDI1IC01Ii8+PC9zdmc+\",\"signature_date\":\"2019-07-13 18:31:45\"}],\"documents\":[],\"expenses\":[]}',5,-2.24,1.00,NULL,'183.171.71.242',0,NULL,''),(144,'2019-07-14 10:32:33','2019-07-14 10:32:33',1,1,4,NULL,NULL,18,NULL,NULL,NULL,'{\"invoice_number\":\"0016\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTM4IiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDUyIDUgYyAtMC41NiAwLjgyIC0yMC45NSAzMS4zIC0zMiA0NyBjIC0xLjc5IDIuNTUgLTQuNjcgNC40MyAtNiA3IGMgLTMuMTEgNS45OSAtNS41OCAxMy4xIC04IDIwIGMgLTEuOTkgNS42OCAtNS4xNyAxNy4yNiAtNSAxNyBjIDAuMjEgLTAuMzEgNC4xIC0xMy41NCA3IC0yMCBjIDQuNDcgLTkuOTYgOC45NSAtMjAuMjUgMTUgLTI5IGMgOC42OSAtMTIuNTUgMTkuNjggLTIzLjg2IDMwIC0zNiBjIDEuMjUgLTEuNDcgMi41MyAtMi44NyA0IC00IGMgMi44MSAtMi4xNiA4Ljg5IC03LjE4IDkgLTYgYyAxLjA0IDExLjIzIC0wLjE5IDk5LjcyIDAgMTAzIGMgMC4wMyAwLjU2IDIuOTYgLTExLjMxIDUgLTE3IGMgNS44MSAtMTYuMTYgMTEuNjIgLTMxLjc1IDE4IC00NyBjIDEuMiAtMi44NiAzLjczIC01LjI3IDUgLTggbCAyIC03Ii8+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDEwMyA3IGMgMC4wMyAwLjEyIDEuODkgNC42OCAyIDcgYyAwLjU0IDExLjc5IDAuNTQgMjUuOTcgMCAzNyBjIC0wLjA3IDEuMzMgLTIgNCAtMiA0Ii8+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDI0IDU5IGMgMS41NCAtMC4xOSA1Ny45OCAtNi43NSA4OCAtMTEgYyA4LjYzIC0xLjIyIDI1IC01IDI1IC01Ii8+PC9zdmc+\",\"signature_date\":\"2019-07-13 18:31:45\"}],\"documents\":[],\"expenses\":[]}',5,2.24,3.24,NULL,'183.171.71.242',0,NULL,''),(145,'2019-07-14 10:44:00','2019-07-14 10:44:00',1,1,4,NULL,NULL,18,NULL,NULL,NULL,'{\"invoice_number\":\"0016\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.24\",\"balance\":\"3.24\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.2400\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.24\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTM4IiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDUyIDUgYyAtMC41NiAwLjgyIC0yMC45NSAzMS4zIC0zMiA0NyBjIC0xLjc5IDIuNTUgLTQuNjcgNC40MyAtNiA3IGMgLTMuMTEgNS45OSAtNS41OCAxMy4xIC04IDIwIGMgLTEuOTkgNS42OCAtNS4xNyAxNy4yNiAtNSAxNyBjIDAuMjEgLTAuMzEgNC4xIC0xMy41NCA3IC0yMCBjIDQuNDcgLTkuOTYgOC45NSAtMjAuMjUgMTUgLTI5IGMgOC42OSAtMTIuNTUgMTkuNjggLTIzLjg2IDMwIC0zNiBjIDEuMjUgLTEuNDcgMi41MyAtMi44NyA0IC00IGMgMi44MSAtMi4xNiA4Ljg5IC03LjE4IDkgLTYgYyAxLjA0IDExLjIzIC0wLjE5IDk5LjcyIDAgMTAzIGMgMC4wMyAwLjU2IDIuOTYgLTExLjMxIDUgLTE3IGMgNS44MSAtMTYuMTYgMTEuNjIgLTMxLjc1IDE4IC00NyBjIDEuMiAtMi44NiAzLjczIC01LjI3IDUgLTggbCAyIC03Ii8+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDEwMyA3IGMgMC4wMyAwLjEyIDEuODkgNC42OCAyIDcgYyAwLjU0IDExLjc5IDAuNTQgMjUuOTcgMCAzNyBjIC0wLjA3IDEuMzMgLTIgNCAtMiA0Ii8+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDI0IDU5IGMgMS41NCAtMC4xOSA1Ny45OCAtNi43NSA4OCAtMTEgYyA4LjYzIC0xLjIyIDI1IC01IDI1IC01Ii8+PC9zdmc+\",\"signature_date\":\"2019-07-13 18:31:45\"}],\"documents\":[],\"expenses\":[]}',5,-2.24,1.00,NULL,'183.171.71.242',0,NULL,''),(146,'2019-07-14 10:44:38','2019-07-14 10:44:38',1,1,4,NULL,NULL,18,NULL,NULL,NULL,'{\"invoice_number\":\"0016\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTc1IiBoZWlnaHQ9IjExMiI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDY4IDEyIGMgLTAuNCAwLjYgLTE0LjYzIDIzLjE1IC0yMyAzNCBjIC02LjM1IDguMjMgLTEzLjY3IDE1LjQzIC0yMSAyMyBjIC0yLjgzIDIuOTMgLTYuMzcgNS4wMyAtOSA4IGMgLTQuOTggNS42MyAtMTIuOTIgMTcuMTcgLTE0IDE4IGMgLTAuMzggMC4yOSAwLjA5IC01LjYyIDEgLTggYyAzLjIzIC04LjQ0IDcuNTUgLTE3LjUyIDEyIC0yNiBjIDIuNTkgLTQuOTMgNS40OSAtOS43MiA5IC0xNCBjIDEwLjE2IC0xMi4zOSAyMC45MyAtMjQuOTMgMzIgLTM2IGMgMy45NSAtMy45NSAxMS42MyAtOS40MSAxNCAtMTAgYyAwLjg3IC0wLjIyIDEuOSA0LjAyIDIgNiBjIDAuNTMgMTAuMzUgMS4wMSAyMi40NCAwIDMzIGMgLTAuNiA2LjI4IC0yLjUyIDEzLjA3IC01IDE5IGMgLTUuMDggMTIuMTQgLTExLjUyIDIzLjk3IC0xOCAzNiBjIC0zLjA0IDUuNjQgLTkuMjEgMTUuMTMgLTEwIDE2IGMgLTAuMjEgMC4yMyAtMC4zOCAtMy40OSAwIC01IGMgMC44OCAtMy41MyAyLjAyIC03Ljg4IDQgLTExIGMgNC43MSAtNy40IDEwLjg5IC0xNS4xIDE3IC0yMiBjIDQuMiAtNC43NCA5LjAzIC04LjgzIDE0IC0xMyBjIDUuNTYgLTQuNjcgMTEuMDMgLTkuMDggMTcgLTEzIGMgNS43NCAtMy43NyAxMS42NyAtNy4xIDE4IC0xMCBjIDE4LjA1IC04LjI3IDM1LjgyIC0xNC44OSA1NCAtMjMgYyAzLjg4IC0xLjczIDkuMjcgLTYgMTEgLTYgYyAwLjg0IDAgMS44IDQuNjYgMSA2IGMgLTQuMDUgNi43NSAtMTIuMjUgMTYuMDUgLTE5IDI0IGMgLTQuODQgNS42OSAtOS40NSAxMS44IC0xNSAxNiBjIC03LjU5IDUuNzQgLTE2LjkgMTAuMTYgLTI2IDE1IGMgLTEyLjg4IDYuODQgLTI0LjkxIDEyLjkyIC0zOCAxOSBjIC01Ljk1IDIuNzYgLTExLjggNC44NyAtMTggNyBjIC00LjY4IDEuNjEgLTkuNDUgMy4wOSAtMTQgNCBjIC0xLjg4IDAuMzggLTUuNSAwLjkyIC02IDAgYyAtMC45MiAtMS42OSAtMC45IC04IDAgLTExIGMgMC44OCAtMi45NSAzLjUxIC03LjEgNiAtOSBjIDMuODEgLTIuOSA5Ljk5IC01LjYzIDE1IC03IGMgNS40OCAtMS40OSAxMS44MyAtMS42IDE4IC0yIGMgOS41NSAtMC42MiAyMC43NyAtMS40NyAyOCAtMSBjIDEuMDkgMC4wNyAzLjQzIDIuOSAzIDMgYyAtNC4zNiAwLjk4IC0yOC41OCA0LjI3IC00MyA2IGMgLTIuMzMgMC4yOCAtNy4xMiAwLjY4IC03IDAgYyAwLjI1IC0xLjM4IDUuNTUgLTguODIgOSAtMTEgYyA0LjYxIC0yLjkgMTEuOSAtNC44MyAxOCAtNiBjIDExIC0yLjEyIDM0LjYgLTMuOTcgMzQgLTQgYyAtMS44OSAtMC4xIC0xMDUuMDUgMC4wNiAtMTA4IDAgYyAtMC4yMyAwIDUuMjYgLTEuNTggOCAtMiBjIDguMzcgLTEuMjcgMTYuNTMgLTIuNzEgMjUgLTMgYyAyMS41NCAtMC43MyA2NCAwIDY0IDAiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 18:44:37\"}],\"documents\":[],\"expenses\":[]}',5,2.24,3.24,NULL,'183.171.71.242',0,NULL,''),(147,'2019-07-14 10:45:19','2019-07-14 10:45:19',1,1,4,NULL,NULL,18,NULL,NULL,NULL,'{\"invoice_number\":\"0016\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.24\",\"balance\":\"3.24\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.2400\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.24\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTc1IiBoZWlnaHQ9IjExMiI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDY4IDEyIGMgLTAuNCAwLjYgLTE0LjYzIDIzLjE1IC0yMyAzNCBjIC02LjM1IDguMjMgLTEzLjY3IDE1LjQzIC0yMSAyMyBjIC0yLjgzIDIuOTMgLTYuMzcgNS4wMyAtOSA4IGMgLTQuOTggNS42MyAtMTIuOTIgMTcuMTcgLTE0IDE4IGMgLTAuMzggMC4yOSAwLjA5IC01LjYyIDEgLTggYyAzLjIzIC04LjQ0IDcuNTUgLTE3LjUyIDEyIC0yNiBjIDIuNTkgLTQuOTMgNS40OSAtOS43MiA5IC0xNCBjIDEwLjE2IC0xMi4zOSAyMC45MyAtMjQuOTMgMzIgLTM2IGMgMy45NSAtMy45NSAxMS42MyAtOS40MSAxNCAtMTAgYyAwLjg3IC0wLjIyIDEuOSA0LjAyIDIgNiBjIDAuNTMgMTAuMzUgMS4wMSAyMi40NCAwIDMzIGMgLTAuNiA2LjI4IC0yLjUyIDEzLjA3IC01IDE5IGMgLTUuMDggMTIuMTQgLTExLjUyIDIzLjk3IC0xOCAzNiBjIC0zLjA0IDUuNjQgLTkuMjEgMTUuMTMgLTEwIDE2IGMgLTAuMjEgMC4yMyAtMC4zOCAtMy40OSAwIC01IGMgMC44OCAtMy41MyAyLjAyIC03Ljg4IDQgLTExIGMgNC43MSAtNy40IDEwLjg5IC0xNS4xIDE3IC0yMiBjIDQuMiAtNC43NCA5LjAzIC04LjgzIDE0IC0xMyBjIDUuNTYgLTQuNjcgMTEuMDMgLTkuMDggMTcgLTEzIGMgNS43NCAtMy43NyAxMS42NyAtNy4xIDE4IC0xMCBjIDE4LjA1IC04LjI3IDM1LjgyIC0xNC44OSA1NCAtMjMgYyAzLjg4IC0xLjczIDkuMjcgLTYgMTEgLTYgYyAwLjg0IDAgMS44IDQuNjYgMSA2IGMgLTQuMDUgNi43NSAtMTIuMjUgMTYuMDUgLTE5IDI0IGMgLTQuODQgNS42OSAtOS40NSAxMS44IC0xNSAxNiBjIC03LjU5IDUuNzQgLTE2LjkgMTAuMTYgLTI2IDE1IGMgLTEyLjg4IDYuODQgLTI0LjkxIDEyLjkyIC0zOCAxOSBjIC01Ljk1IDIuNzYgLTExLjggNC44NyAtMTggNyBjIC00LjY4IDEuNjEgLTkuNDUgMy4wOSAtMTQgNCBjIC0xLjg4IDAuMzggLTUuNSAwLjkyIC02IDAgYyAtMC45MiAtMS42OSAtMC45IC04IDAgLTExIGMgMC44OCAtMi45NSAzLjUxIC03LjEgNiAtOSBjIDMuODEgLTIuOSA5Ljk5IC01LjYzIDE1IC03IGMgNS40OCAtMS40OSAxMS44MyAtMS42IDE4IC0yIGMgOS41NSAtMC42MiAyMC43NyAtMS40NyAyOCAtMSBjIDEuMDkgMC4wNyAzLjQzIDIuOSAzIDMgYyAtNC4zNiAwLjk4IC0yOC41OCA0LjI3IC00MyA2IGMgLTIuMzMgMC4yOCAtNy4xMiAwLjY4IC03IDAgYyAwLjI1IC0xLjM4IDUuNTUgLTguODIgOSAtMTEgYyA0LjYxIC0yLjkgMTEuOSAtNC44MyAxOCAtNiBjIDExIC0yLjEyIDM0LjYgLTMuOTcgMzQgLTQgYyAtMS44OSAtMC4xIC0xMDUuMDUgMC4wNiAtMTA4IDAgYyAtMC4yMyAwIDUuMjYgLTEuNTggOCAtMiBjIDguMzcgLTEuMjcgMTYuNTMgLTIuNzEgMjUgLTMgYyAyMS41NCAtMC43MyA2NCAwIDY0IDAiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 18:44:37\"}],\"documents\":[],\"expenses\":[]}',5,-2.24,1.00,NULL,'183.171.71.242',0,NULL,''),(148,'2019-07-14 10:45:20','2019-07-14 10:45:20',1,1,4,NULL,NULL,18,NULL,NULL,NULL,'{\"invoice_number\":\"0016\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTc1IiBoZWlnaHQ9IjExMiI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDY4IDEyIGMgLTAuNCAwLjYgLTE0LjYzIDIzLjE1IC0yMyAzNCBjIC02LjM1IDguMjMgLTEzLjY3IDE1LjQzIC0yMSAyMyBjIC0yLjgzIDIuOTMgLTYuMzcgNS4wMyAtOSA4IGMgLTQuOTggNS42MyAtMTIuOTIgMTcuMTcgLTE0IDE4IGMgLTAuMzggMC4yOSAwLjA5IC01LjYyIDEgLTggYyAzLjIzIC04LjQ0IDcuNTUgLTE3LjUyIDEyIC0yNiBjIDIuNTkgLTQuOTMgNS40OSAtOS43MiA5IC0xNCBjIDEwLjE2IC0xMi4zOSAyMC45MyAtMjQuOTMgMzIgLTM2IGMgMy45NSAtMy45NSAxMS42MyAtOS40MSAxNCAtMTAgYyAwLjg3IC0wLjIyIDEuOSA0LjAyIDIgNiBjIDAuNTMgMTAuMzUgMS4wMSAyMi40NCAwIDMzIGMgLTAuNiA2LjI4IC0yLjUyIDEzLjA3IC01IDE5IGMgLTUuMDggMTIuMTQgLTExLjUyIDIzLjk3IC0xOCAzNiBjIC0zLjA0IDUuNjQgLTkuMjEgMTUuMTMgLTEwIDE2IGMgLTAuMjEgMC4yMyAtMC4zOCAtMy40OSAwIC01IGMgMC44OCAtMy41MyAyLjAyIC03Ljg4IDQgLTExIGMgNC43MSAtNy40IDEwLjg5IC0xNS4xIDE3IC0yMiBjIDQuMiAtNC43NCA5LjAzIC04LjgzIDE0IC0xMyBjIDUuNTYgLTQuNjcgMTEuMDMgLTkuMDggMTcgLTEzIGMgNS43NCAtMy43NyAxMS42NyAtNy4xIDE4IC0xMCBjIDE4LjA1IC04LjI3IDM1LjgyIC0xNC44OSA1NCAtMjMgYyAzLjg4IC0xLjczIDkuMjcgLTYgMTEgLTYgYyAwLjg0IDAgMS44IDQuNjYgMSA2IGMgLTQuMDUgNi43NSAtMTIuMjUgMTYuMDUgLTE5IDI0IGMgLTQuODQgNS42OSAtOS40NSAxMS44IC0xNSAxNiBjIC03LjU5IDUuNzQgLTE2LjkgMTAuMTYgLTI2IDE1IGMgLTEyLjg4IDYuODQgLTI0LjkxIDEyLjkyIC0zOCAxOSBjIC01Ljk1IDIuNzYgLTExLjggNC44NyAtMTggNyBjIC00LjY4IDEuNjEgLTkuNDUgMy4wOSAtMTQgNCBjIC0xLjg4IDAuMzggLTUuNSAwLjkyIC02IDAgYyAtMC45MiAtMS42OSAtMC45IC04IDAgLTExIGMgMC44OCAtMi45NSAzLjUxIC03LjEgNiAtOSBjIDMuODEgLTIuOSA5Ljk5IC01LjYzIDE1IC03IGMgNS40OCAtMS40OSAxMS44MyAtMS42IDE4IC0yIGMgOS41NSAtMC42MiAyMC43NyAtMS40NyAyOCAtMSBjIDEuMDkgMC4wNyAzLjQzIDIuOSAzIDMgYyAtNC4zNiAwLjk4IC0yOC41OCA0LjI3IC00MyA2IGMgLTIuMzMgMC4yOCAtNy4xMiAwLjY4IC03IDAgYyAwLjI1IC0xLjM4IDUuNTUgLTguODIgOSAtMTEgYyA0LjYxIC0yLjkgMTEuOSAtNC44MyAxOCAtNiBjIDExIC0yLjEyIDM0LjYgLTMuOTcgMzQgLTQgYyAtMS44OSAtMC4xIC0xMDUuMDUgMC4wNiAtMTA4IDAgYyAtMC4yMyAwIDUuMjYgLTEuNTggOCAtMiBjIDguMzcgLTEuMjcgMTYuNTMgLTIuNzEgMjUgLTMgYyAyMS41NCAtMC43MyA2NCAwIDY0IDAiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 18:44:37\"}],\"documents\":[],\"expenses\":[]}',5,2.24,3.24,NULL,'183.171.71.242',0,NULL,''),(149,'2019-07-14 10:47:09','2019-07-14 10:47:10',1,1,4,9,7,18,NULL,24,NULL,'{\"invoice_number\":\"0016\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.24\",\"balance\":0,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.2400\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":4,\"discount\":\"0.00\"}],\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTc1IiBoZWlnaHQ9IjExMiI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDY4IDEyIGMgLTAuNCAwLjYgLTE0LjYzIDIzLjE1IC0yMyAzNCBjIC02LjM1IDguMjMgLTEzLjY3IDE1LjQzIC0yMSAyMyBjIC0yLjgzIDIuOTMgLTYuMzcgNS4wMyAtOSA4IGMgLTQuOTggNS42MyAtMTIuOTIgMTcuMTcgLTE0IDE4IGMgLTAuMzggMC4yOSAwLjA5IC01LjYyIDEgLTggYyAzLjIzIC04LjQ0IDcuNTUgLTE3LjUyIDEyIC0yNiBjIDIuNTkgLTQuOTMgNS40OSAtOS43MiA5IC0xNCBjIDEwLjE2IC0xMi4zOSAyMC45MyAtMjQuOTMgMzIgLTM2IGMgMy45NSAtMy45NSAxMS42MyAtOS40MSAxNCAtMTAgYyAwLjg3IC0wLjIyIDEuOSA0LjAyIDIgNiBjIDAuNTMgMTAuMzUgMS4wMSAyMi40NCAwIDMzIGMgLTAuNiA2LjI4IC0yLjUyIDEzLjA3IC01IDE5IGMgLTUuMDggMTIuMTQgLTExLjUyIDIzLjk3IC0xOCAzNiBjIC0zLjA0IDUuNjQgLTkuMjEgMTUuMTMgLTEwIDE2IGMgLTAuMjEgMC4yMyAtMC4zOCAtMy40OSAwIC01IGMgMC44OCAtMy41MyAyLjAyIC03Ljg4IDQgLTExIGMgNC43MSAtNy40IDEwLjg5IC0xNS4xIDE3IC0yMiBjIDQuMiAtNC43NCA5LjAzIC04LjgzIDE0IC0xMyBjIDUuNTYgLTQuNjcgMTEuMDMgLTkuMDggMTcgLTEzIGMgNS43NCAtMy43NyAxMS42NyAtNy4xIDE4IC0xMCBjIDE4LjA1IC04LjI3IDM1LjgyIC0xNC44OSA1NCAtMjMgYyAzLjg4IC0xLjczIDkuMjcgLTYgMTEgLTYgYyAwLjg0IDAgMS44IDQuNjYgMSA2IGMgLTQuMDUgNi43NSAtMTIuMjUgMTYuMDUgLTE5IDI0IGMgLTQuODQgNS42OSAtOS40NSAxMS44IC0xNSAxNiBjIC03LjU5IDUuNzQgLTE2LjkgMTAuMTYgLTI2IDE1IGMgLTEyLjg4IDYuODQgLTI0LjkxIDEyLjkyIC0zOCAxOSBjIC01Ljk1IDIuNzYgLTExLjggNC44NyAtMTggNyBjIC00LjY4IDEuNjEgLTkuNDUgMy4wOSAtMTQgNCBjIC0xLjg4IDAuMzggLTUuNSAwLjkyIC02IDAgYyAtMC45MiAtMS42OSAtMC45IC04IDAgLTExIGMgMC44OCAtMi45NSAzLjUxIC03LjEgNiAtOSBjIDMuODEgLTIuOSA5Ljk5IC01LjYzIDE1IC03IGMgNS40OCAtMS40OSAxMS44MyAtMS42IDE4IC0yIGMgOS41NSAtMC42MiAyMC43NyAtMS40NyAyOCAtMSBjIDEuMDkgMC4wNyAzLjQzIDIuOSAzIDMgYyAtNC4zNiAwLjk4IC0yOC41OCA0LjI3IC00MyA2IGMgLTIuMzMgMC4yOCAtNy4xMiAwLjY4IC03IDAgYyAwLjI1IC0xLjM4IDUuNTUgLTguODIgOSAtMTEgYyA0LjYxIC0yLjkgMTEuOSAtNC44MyAxOCAtNiBjIDExIC0yLjEyIDM0LjYgLTMuOTcgMzQgLTQgYyAtMS44OSAtMC4xIC0xMDUuMDUgMC4wNiAtMTA4IDAgYyAtMC4yMyAwIDUuMjYgLTEuNTggOCAtMiBjIDguMzcgLTEuMjcgMTYuNTMgLTIuNzEgMjUgLTMgYyAyMS41NCAtMC43MyA2NCAwIDY0IDAiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 18:44:37\"}],\"documents\":[],\"expenses\":[]}',10,-3.24,0.00,NULL,'183.171.71.242',0,NULL,''),(150,'2019-07-14 10:47:09','2019-07-14 10:47:10',1,1,4,NULL,NULL,18,NULL,NULL,NULL,'{\"invoice_number\":\"0016\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.24\",\"balance\":\"3.24\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.2400\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTc1IiBoZWlnaHQ9IjExMiI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDY4IDEyIGMgLTAuNCAwLjYgLTE0LjYzIDIzLjE1IC0yMyAzNCBjIC02LjM1IDguMjMgLTEzLjY3IDE1LjQzIC0yMSAyMyBjIC0yLjgzIDIuOTMgLTYuMzcgNS4wMyAtOSA4IGMgLTQuOTggNS42MyAtMTIuOTIgMTcuMTcgLTE0IDE4IGMgLTAuMzggMC4yOSAwLjA5IC01LjYyIDEgLTggYyAzLjIzIC04LjQ0IDcuNTUgLTE3LjUyIDEyIC0yNiBjIDIuNTkgLTQuOTMgNS40OSAtOS43MiA5IC0xNCBjIDEwLjE2IC0xMi4zOSAyMC45MyAtMjQuOTMgMzIgLTM2IGMgMy45NSAtMy45NSAxMS42MyAtOS40MSAxNCAtMTAgYyAwLjg3IC0wLjIyIDEuOSA0LjAyIDIgNiBjIDAuNTMgMTAuMzUgMS4wMSAyMi40NCAwIDMzIGMgLTAuNiA2LjI4IC0yLjUyIDEzLjA3IC01IDE5IGMgLTUuMDggMTIuMTQgLTExLjUyIDIzLjk3IC0xOCAzNiBjIC0zLjA0IDUuNjQgLTkuMjEgMTUuMTMgLTEwIDE2IGMgLTAuMjEgMC4yMyAtMC4zOCAtMy40OSAwIC01IGMgMC44OCAtMy41MyAyLjAyIC03Ljg4IDQgLTExIGMgNC43MSAtNy40IDEwLjg5IC0xNS4xIDE3IC0yMiBjIDQuMiAtNC43NCA5LjAzIC04LjgzIDE0IC0xMyBjIDUuNTYgLTQuNjcgMTEuMDMgLTkuMDggMTcgLTEzIGMgNS43NCAtMy43NyAxMS42NyAtNy4xIDE4IC0xMCBjIDE4LjA1IC04LjI3IDM1LjgyIC0xNC44OSA1NCAtMjMgYyAzLjg4IC0xLjczIDkuMjcgLTYgMTEgLTYgYyAwLjg0IDAgMS44IDQuNjYgMSA2IGMgLTQuMDUgNi43NSAtMTIuMjUgMTYuMDUgLTE5IDI0IGMgLTQuODQgNS42OSAtOS40NSAxMS44IC0xNSAxNiBjIC03LjU5IDUuNzQgLTE2LjkgMTAuMTYgLTI2IDE1IGMgLTEyLjg4IDYuODQgLTI0LjkxIDEyLjkyIC0zOCAxOSBjIC01Ljk1IDIuNzYgLTExLjggNC44NyAtMTggNyBjIC00LjY4IDEuNjEgLTkuNDUgMy4wOSAtMTQgNCBjIC0xLjg4IDAuMzggLTUuNSAwLjkyIC02IDAgYyAtMC45MiAtMS42OSAtMC45IC04IDAgLTExIGMgMC44OCAtMi45NSAzLjUxIC03LjEgNiAtOSBjIDMuODEgLTIuOSA5Ljk5IC01LjYzIDE1IC03IGMgNS40OCAtMS40OSAxMS44MyAtMS42IDE4IC0yIGMgOS41NSAtMC42MiAyMC43NyAtMS40NyAyOCAtMSBjIDEuMDkgMC4wNyAzLjQzIDIuOSAzIDMgYyAtNC4zNiAwLjk4IC0yOC41OCA0LjI3IC00MyA2IGMgLTIuMzMgMC4yOCAtNy4xMiAwLjY4IC03IDAgYyAwLjI1IC0xLjM4IDUuNTUgLTguODIgOSAtMTEgYyA0LjYxIC0yLjkgMTEuOSAtNC44MyAxOCAtNiBjIDExIC0yLjEyIDM0LjYgLTMuOTcgMzQgLTQgYyAtMS44OSAtMC4xIC0xMDUuMDUgMC4wNiAtMTA4IDAgYyAtMC4yMyAwIDUuMjYgLTEuNTggOCAtMiBjIDguMzcgLTEuMjcgMTYuNTMgLTIuNzEgMjUgLTMgYyAyMS41NCAtMC43MyA2NCAwIDY0IDAiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 18:44:37\"}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.71.242',0,NULL,''),(151,'2019-07-14 11:27:00','2019-07-14 11:27:00',1,1,4,NULL,NULL,19,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'183.171.71.242',0,NULL,''),(152,'2019-07-14 11:27:22','2019-07-14 11:27:23',1,1,4,NULL,NULL,19,NULL,NULL,NULL,'{\"invoice_number\":\"0017\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,1.00,1.00,NULL,'183.171.71.242',0,NULL,''),(153,'2019-07-14 11:30:06','2019-07-14 11:30:07',1,1,4,NULL,NULL,19,NULL,NULL,NULL,'{\"invoice_number\":\"0017\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzM3IiBoZWlnaHQ9Ijk1Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gNzggNzIgYyAwLjM3IC0wLjE3IDE0LjEgLTYuMjcgMjEgLTEwIGMgNS42IC0zLjAzIDEwLjQgLTYuODIgMTYgLTEwIGMgNy4wNCAtNCAxMy42OCAtNy41IDIxIC0xMSBjIDguNDQgLTQuMDQgMTYuMzEgLTguMDcgMjUgLTExIGMgMjAuMjQgLTYuODIgNDAuMDcgLTEyLjk0IDYxIC0xOCBjIDE5Ljc1IC00Ljc3IDUyLjQ1IC0xMC41MyA1OSAtMTEgYyAwLjgzIC0wLjA2IC0xLjMyIDUuODEgLTMgNyBjIC01LjEyIDMuNjIgLTEzLjY5IDcuMyAtMjEgMTAgYyAtMTQuNSA1LjM1IC0yOC45MSAxMC44MiAtNDQgMTQgYyAtMzUuNzkgNy41NCAtNzAuNjUgMTIuNDUgLTEwOCAxOCBjIC0yMy4wMiAzLjQyIC00NC4xMyA0LjcgLTY3IDggYyAtMTIuNzYgMS44NCAtMzQuMTIgNC45NiAtMzcgNyBjIC0xLjI2IDAuODkgOC4zNSA4LjI3IDEzIDEwIGMgMTEuMDggNC4xMyAyNC45IDYuNDcgMzggOSBjIDE2Ljk5IDMuMjggMzMuMTggNy40NCA1MCA4IGMgNjMuMTEgMi4xIDE4Ni42OCAwIDE5MCAwIGMgMC4yOCAwIC0xMC41NCAtMC4yNSAtMTYgMCBjIC05LjI0IDAuNDMgLTE3Ljc1IDEuODIgLTI3IDIgYyAtMjUuMjkgMC41IC03MS45OCAwLjEgLTc0IDAgYyAtMC4zNCAtMC4wMiA3Ljg2IC0yLjI3IDEyIC0zIGMgMTMuMiAtMi4zMyAyNS40IC00LjA4IDM5IC02IGMgMzguMjcgLTUuMzkgOTQuOTggLTExLjc0IDExMCAtMTUgYyAxLjIxIC0wLjI2IC0xLjk2IC02LjY2IC00IC04IGMgLTYuMjMgLTQuMDggLTE2LjM0IC03Ljc1IC0yNSAtMTEgYyAtMTAuMzMgLTMuODcgLTIwLjMxIC03LjI2IC0zMSAtMTAgYyAtMTcuMTMgLTQuMzkgLTMzLjQgLTcuNzMgLTUxIC0xMSBjIC0xNS43IC0yLjkxIC0zMC41NyAtNS41MiAtNDYgLTcgYyAtOC45NSAtMC44NiAtMjUuMDUgLTEuMzQgLTI3IDAgYyAtMS4xMiAwLjc3IDcuMDcgNy43NSAxMSAxMSBjIDMuNjUgMy4wMSA3LjY4IDYuMTEgMTIgOCBjIDI0LjIgMTAuNTcgNDkuMTcgMjAuODYgNzUgMzAgYyAxOC4zMSA2LjQ4IDUzLjMxIDE1LjM3IDU1IDE2IGwgLTEyIDAiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 19:28:52\"}],\"documents\":[],\"expenses\":[]}',5,4.00,5.00,NULL,'183.171.71.242',0,NULL,''),(154,'2019-07-14 11:34:57','2019-07-14 11:34:57',1,1,4,NULL,NULL,19,NULL,NULL,NULL,'{\"invoice_number\":\"0017\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"5.00\",\"balance\":\"5.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"5.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzY5IiBoZWlnaHQ9Ijk5Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMTYgNzkgYyAwLjU2IC0wLjE3IDIxLjMxIC02LjE3IDMyIC0xMCBjIDcuMjggLTIuNjEgMTMuNjkgLTYuMzcgMjEgLTkgYyAxNC40NyAtNS4yIDI4LjA0IC05LjczIDQzIC0xNCBjIDMzLjIzIC05LjQ5IDYzLjY3IC0xOC4xNCA5NyAtMjYgYyAyMC4yNSAtNC43NyAzOS4xNiAtNy41IDYwIC0xMSBjIDE4LjMxIC0zLjA4IDM1LjE5IC02LjU1IDUzIC04IGMgMTQuOTUgLTEuMjIgMzUuOTMgLTAuNzkgNDUgMCBjIDAuODMgMC4wNyAxLjYzIDMuMzQgMSA0IGMgLTMuNDcgMy42NyAtMTEuNTggMTEuOCAtMTggMTQgYyAtMTQuOSA1LjExIC0zNC4xNCA3LjUyIC01MiAxMCBjIC0yOC44NCA0IC01NS41MiA2LjYgLTg1IDkgYyAtNjMuOTcgNS4yMSAtMTIxLjUxIDguMTIgLTE4NSAxMyBjIC03Ljk0IDAuNjEgLTE1Ljg3IDEuNjggLTIzIDMgYyAtMS4zOCAwLjI1IC00LjIzIDIgLTQgMiBjIDE1LjQ0IDAuMSAxOTkuMDggLTAuNjQgMjk5IDAgYyA0LjczIDAuMDMgMTQuNiAxLjUxIDE0IDIgYyAtMS4zNiAxLjExIC0xOS43MyA4LjAyIC0zMCAxMSBjIC0xMC41MyAzLjA2IC0yMS4wNiA0LjMxIC0zMiA3IGMgLTEwLjA1IDIuNDcgLTE5LjE2IDUuMDIgLTI5IDggYyAtNC44NiAxLjQ3IC0xNC41NyA0Ljk2IC0xNCA1IGMgMy4zNiAwLjIzIDgyLjcxIC0wLjE5IDg4IDAgYyAwLjM1IDAuMDEgLTMuMjMgMi40NyAtNSAzIGMgLTcuNzggMi4zMyAtMTYuNzcgNC43MyAtMjUgNiBjIC00LjQ4IDAuNjkgLTkuNDkgMC43NyAtMTQgMCBjIC0xOC40MyAtMy4xNiAtMzYuODMgLTcuMzggLTU2IC0xMiBjIC0xOS40MSAtNC42OCAtNTYgLTE1IC01NiAtMTUiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 19:34:56\"}],\"documents\":[],\"expenses\":[]}',5,2.38,7.38,NULL,'183.171.71.242',0,NULL,''),(155,'2019-07-14 11:40:16','2019-07-14 11:40:17',1,1,4,NULL,NULL,19,NULL,NULL,NULL,'{\"invoice_number\":\"0017\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"7.38\",\"balance\":\"7.38\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.3800\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"7.38\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzAzIiBoZWlnaHQ9Ijc0Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA0OCBjIDAuMTkgLTAuMSA3LjE2IC00LjY2IDExIC02IGMgMTAuMiAtMy41NiAyMC45IC02LjM1IDMyIC05IGMgMjAuNDkgLTQuOSAzOS4zNCAtOS41MyA2MCAtMTMgYyAzMC4yMiAtNS4wNyA1OC4xMiAtOC4yOSA4OSAtMTIgYyAyMy44NSAtMi44NyA0NS41NiAtNS40OSA2OSAtNyBjIDEzLjUyIC0wLjg3IDM1Ljk4IC0wLjk1IDQwIDAgYyAxLjAxIDAuMjQgLTMuNSA2LjI3IC02IDggYyAtOC42MSA1Ljk4IC0xOS41NCAxMi40OCAtMzAgMTcgYyAtMTYuNCA3LjA5IC0zMy41MSAxMy4zIC01MSAxOCBjIC0yMi40NSA2LjA0IC00NC41NyAxMC4xNyAtNjggMTQgYyAtMzAuOTggNS4wNyAtNjAuMzUgOS4xNSAtOTEgMTIgYyAtMTIuNjkgMS4xOCAtMzguNjYgMC4wMiAtMzggMCBjIDEuMTUgLTAuMDQgNDMuOTUgMC42NyA2NiAtMSBjIDE3LjkgLTEuMzUgMzUuMjMgLTYuMTggNTMgLTggYyA4LjI5IC0wLjg1IDI1LjQ0IDAgMjUgMCBjIC0wLjgyIDAgLTMxLjI3IC0wLjY4IC00NyAwIGMgLTcuNDMgMC4zMiAtMTUuNDggMS43IC0yMiAzIGMgLTEuMDYgMC4yMSAtMy4yOCAxLjYyIC0zIDIgYyAwLjg1IDEuMTMgNS45MyA1LjUzIDkgNiBjIDEwLjUyIDEuNiAzNyAxIDM3IDEiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 19:40:16\"}],\"documents\":[],\"expenses\":[]}',5,-2.38,5.00,NULL,'183.171.71.242',0,NULL,''),(156,'2019-07-14 11:47:34','2019-07-14 11:47:34',1,1,4,NULL,NULL,19,NULL,NULL,NULL,'{\"invoice_number\":\"0017\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"5.00\",\"balance\":\"5.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"5.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzM2IiBoZWlnaHQ9Ijg3Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA4MyBjIDAuMyAtMC4xOCAxMS4wNSAtNi44OCAxNyAtMTAgYyA3LjY5IC00LjAzIDE0Ljk5IC03Ljg0IDIzIC0xMSBjIDE0LjMxIC01LjY0IDI4LjA1IC0xMC40MyA0MyAtMTUgYyAyNi42IC04LjEzIDUxLjI0IC0xNS44IDc4IC0yMiBjIDI0LjQ5IC01LjY4IDQ3LjY2IC04LjkyIDczIC0xMyBjIDI0LjE3IC0zLjg5IDQ2LjAyIC03LjEyIDcwIC0xMCBjIDEwLjIgLTEuMjIgMzAuNTEgLTIuMTMgMzAgLTIgYyAtMi40MyAwLjYgLTkxLjk1IDE4LjQ3IC0xNDAgMjkgYyAtMTMuMjEgMi44OSAtMjUuMTUgNi4yOSAtMzggMTAgYyAtNC44NiAxLjQgLTEzLjA2IDMuMzkgLTE0IDUgYyAtMC42MyAxLjA3IDQuMyA2LjU1IDcgNyBjIDM3LjM1IDYuMjcgOTAuMTYgMTIuNDIgMTM2IDE3IGMgMTEuMzcgMS4xNCAyMy4wMyAtMC4yOSAzNCAwIGMgMS4zMyAwLjA0IDQuMTMgMC45OSA0IDEgYyAtMS4wMSAwLjA3IC0yMi4yNiAwLjIxIC0zMyAxIGMgLTIuNjggMC4yIC03LjMxIDEuMTcgLTggMiBjIC0wLjQyIDAuNSAxLjcyIDMuNTYgMyA0IGMgNi4wMiAyLjA4IDE1LjQ3IDIuOTUgMjMgNSBsIDEwIDQiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 19:42:14\"}],\"documents\":[],\"expenses\":[]}',5,-4.00,1.00,NULL,'183.171.71.242',0,NULL,''),(157,'2019-07-14 11:48:34','2019-07-14 11:48:35',1,1,4,NULL,NULL,19,NULL,NULL,NULL,'{\"invoice_number\":\"0017\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDM5IiBoZWlnaHQ9IjkxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gOCA3OSBjIDAuMjYgLTAuMjMgOS42NSAtOS4xNCAxNSAtMTMgYyA2LjY1IC00LjggMTMuNjEgLTkuOTIgMjEgLTEzIGMgMTYuMDggLTYuNyAzMy4zOCAtMTIuNjkgNTEgLTE3IGMgNDUuODkgLTExLjIzIDkwLjk2IC0yNC4xNyAxMzcgLTI5IGMgNjcuNzYgLTcuMTEgMTk0LjM3IC02Ljk0IDIwNiAtNyBjIDAuNjYgMCAtNi40NiA0LjYgLTEwIDYgYyAtMTIuMTkgNC44MyAtMjQuOTkgMTAuMDMgLTM4IDEzIGMgLTI0Ljk3IDUuNjkgLTQ5LjYyIDkuMDcgLTc2IDEzIGMgLTM2LjI0IDUuNDEgLTY4LjczIDguNDggLTEwNSAxNCBjIC00Ny45MSA3LjI5IC05MS4xMiAxNC4wNiAtMTM4IDIzIGMgLTE5LjM0IDMuNjkgLTM3LjU2IDguNzMgLTU2IDE0IGMgLTQuODcgMS4zOSAtMTQuNjkgNS45OCAtMTQgNiBjIDExLjkxIDAuMjkgMjU5LjM4IDAgMjY0IDAgbCAtOCAwIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 19:48:32\"}],\"documents\":[],\"expenses\":[]}',5,2.05,3.05,NULL,'183.171.71.242',0,NULL,''),(158,'2019-07-14 11:51:52','2019-07-14 11:51:54',1,1,4,9,8,19,NULL,25,NULL,'{\"invoice_number\":\"0017\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.05\",\"balance\":0,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.0500\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":4,\"discount\":\"0.00\"}],\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDM5IiBoZWlnaHQ9IjkxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gOCA3OSBjIDAuMjYgLTAuMjMgOS42NSAtOS4xNCAxNSAtMTMgYyA2LjY1IC00LjggMTMuNjEgLTkuOTIgMjEgLTEzIGMgMTYuMDggLTYuNyAzMy4zOCAtMTIuNjkgNTEgLTE3IGMgNDUuODkgLTExLjIzIDkwLjk2IC0yNC4xNyAxMzcgLTI5IGMgNjcuNzYgLTcuMTEgMTk0LjM3IC02Ljk0IDIwNiAtNyBjIDAuNjYgMCAtNi40NiA0LjYgLTEwIDYgYyAtMTIuMTkgNC44MyAtMjQuOTkgMTAuMDMgLTM4IDEzIGMgLTI0Ljk3IDUuNjkgLTQ5LjYyIDkuMDcgLTc2IDEzIGMgLTM2LjI0IDUuNDEgLTY4LjczIDguNDggLTEwNSAxNCBjIC00Ny45MSA3LjI5IC05MS4xMiAxNC4wNiAtMTM4IDIzIGMgLTE5LjM0IDMuNjkgLTM3LjU2IDguNzMgLTU2IDE0IGMgLTQuODcgMS4zOSAtMTQuNjkgNS45OCAtMTQgNiBjIDExLjkxIDAuMjkgMjU5LjM4IDAgMjY0IDAgbCAtOCAwIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 19:48:32\"}],\"documents\":[],\"expenses\":[]}',10,-3.05,0.00,NULL,'183.171.71.242',0,NULL,''),(159,'2019-07-14 11:51:53','2019-07-14 11:51:53',1,1,4,NULL,NULL,19,NULL,NULL,NULL,'{\"invoice_number\":\"0017\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.05\",\"balance\":\"3.05\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.0500\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDM5IiBoZWlnaHQ9IjkxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gOCA3OSBjIDAuMjYgLTAuMjMgOS42NSAtOS4xNCAxNSAtMTMgYyA2LjY1IC00LjggMTMuNjEgLTkuOTIgMjEgLTEzIGMgMTYuMDggLTYuNyAzMy4zOCAtMTIuNjkgNTEgLTE3IGMgNDUuODkgLTExLjIzIDkwLjk2IC0yNC4xNyAxMzcgLTI5IGMgNjcuNzYgLTcuMTEgMTk0LjM3IC02Ljk0IDIwNiAtNyBjIDAuNjYgMCAtNi40NiA0LjYgLTEwIDYgYyAtMTIuMTkgNC44MyAtMjQuOTkgMTAuMDMgLTM4IDEzIGMgLTI0Ljk3IDUuNjkgLTQ5LjYyIDkuMDcgLTc2IDEzIGMgLTM2LjI0IDUuNDEgLTY4LjczIDguNDggLTEwNSAxNCBjIC00Ny45MSA3LjI5IC05MS4xMiAxNC4wNiAtMTM4IDIzIGMgLTE5LjM0IDMuNjkgLTM3LjU2IDguNzMgLTU2IDE0IGMgLTQuODcgMS4zOSAtMTQuNjkgNS45OCAtMTQgNiBjIDExLjkxIDAuMjkgMjU5LjM4IDAgMjY0IDAgbCAtOCAwIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 19:48:32\"}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.71.242',0,NULL,''),(160,'2019-07-14 11:59:07','2019-07-14 11:59:07',1,1,4,NULL,NULL,20,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'183.171.71.242',0,NULL,''),(161,'2019-07-14 11:59:16','2019-07-14 11:59:17',1,1,4,NULL,NULL,20,NULL,NULL,NULL,'{\"invoice_number\":\"0018\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,1.00,1.00,NULL,'183.171.71.242',0,NULL,''),(162,'2019-07-14 12:00:09','2019-07-14 12:00:10',1,1,4,NULL,NULL,20,NULL,NULL,NULL,'{\"invoice_number\":\"0018\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDc3IiBoZWlnaHQ9IjEwMiI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDcyIDcwIGMgMC4wMiAtMC4wNyAwLjIyIC0zLjIyIDEgLTQgYyAyLjA1IC0yLjA1IDUuNzggLTQuNDYgOSAtNiBjIDEyIC01Ljc0IDI0LjI3IC0xMy41NCAzNyAtMTYgYyA3NC4xNSAtMTQuMzMgMTUxLjY5IC0yNC4yNiAyMzIgLTM2IGMgMjMuNzYgLTMuNDcgNDUuNjMgLTYuNSA2OSAtOCBjIDE4Ljg0IC0xLjIxIDUxLjE1IC0wLjY5IDU2IDAgYyAwLjg2IDAuMTIgLTQuMzggNS4xNiAtNyA3IGMgLTcuMTMgNC45OSAtMTQuODcgMTEuMTIgLTIzIDE0IGMgLTI4LjMgMTAuMDIgLTU5LjE3IDE5Ljc2IC05MCAyNiBjIC01My45NCAxMC45MiAtMTA2LjUyIDE4LjMyIC0xNjIgMjUgYyAtMzggNC41OCAtNzMuMzQgNiAtMTEyIDggYyAtMjcuOSAxLjQ1IC04Mi40MiAxLjk4IC04MSAyIGMgNC40NCAwLjA1IDE2Ny44NiAtMS4xNyAyNTQgMCBjIDEzLjk3IDAuMTkgMzkuOTEgMy40OSA0MSA0IGMgMC42NCAwLjMgLTE1LjkzIDMuNzggLTI0IDQgYyAtNDEuNDQgMS4xMSAtMTIyLjgxIC0wLjAyIC0xMjUgMCBjIC0wLjM5IDAgMTQuNCAwLjkxIDIyIDEgYyAyMi43NiAwLjI2IDQzLjI1IC0wLjUyIDY2IDAgYyAyMi40MyAwLjUxIDQyLjgxIDEuMzQgNjUgMyBjIDE0LjQyIDEuMDggMjcuNTggMy41OCA0MiA1IGwgMTkgMSIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-13 20:00:08\"}],\"documents\":[],\"expenses\":[]}',5,2.12,3.12,NULL,'183.171.71.242',0,NULL,''),(163,'2019-07-14 12:04:43','2019-07-14 12:04:43',1,2,4,NULL,NULL,20,NULL,NULL,NULL,'{\"invoice_number\":\"0018\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.12\",\"balance\":\"3.12\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.1200\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.12\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjgwIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA3OSBjIDAuNDIgLTAuMzMgMTUuNjMgLTEyLjc3IDI0IC0xOSBjIDQuOTMgLTMuNjcgOS43IC02Ljk2IDE1IC0xMCBjIDEwLjY1IC02LjEyIDIwLjg0IC0xMi4zNyAzMiAtMTcgYyAyMC4yNyAtOC40MSA0MC43OSAtMTQuMTEgNjIgLTIyIGMgOC4zOCAtMy4xMiAyMy40OCAtOS44IDI0IC0xMCBjIDAuMDcgLTAuMDMgLTMuMjQgMS45OSAtMyAyIGMgNC43OCAwLjE0IDQ4LjYxIC0wLjMgNzMgMCBjIDIuMzYgMC4wMyA3LjI5IDAuOSA3IDEgYyAtMi4wMSAwLjY1IC0zMC44MyA5LjE5IC00NyAxMiBjIC00Ni4xNSA4LjAzIC0xMjkuMjYgMTguNDQgLTEzNyAyMCBjIC0wLjc4IDAuMTYgOC42NSA0LjU0IDEzIDUgYyAxOS43MiAyLjA4IDQxLjE2IDIuMzEgNjMgMyBjIDIyLjE2IDAuNyA0MS44NSAwLjM2IDY0IDEgYyAxMy44NiAwLjQgMjYuNDMgMC45OSA0MCAyIGMgNC43OSAwLjM1IDExLjkgMS4wMyAxNCAyIGMgMC42MSAwLjI4IC0wLjIzIDMuMjMgLTEgNCBjIC0xLjc2IDEuNzYgLTUuMjggMy44MSAtOCA1IGMgLTIuMzggMS4wNCAtNi40MiAwLjk1IC04IDIgYyAtMC43OSAwLjUzIC0wLjI5IDMuMDkgLTEgNCBsIC02IDUiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 20:04:42\"}],\"documents\":[],\"expenses\":[]}',5,-2.12,1.00,NULL,'183.171.71.242',0,NULL,''),(164,'2019-07-14 12:04:44','2019-07-14 12:04:44',1,2,4,NULL,NULL,20,NULL,NULL,NULL,'{\"invoice_number\":\"0018\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjgwIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA3OSBjIDAuNDIgLTAuMzMgMTUuNjMgLTEyLjc3IDI0IC0xOSBjIDQuOTMgLTMuNjcgOS43IC02Ljk2IDE1IC0xMCBjIDEwLjY1IC02LjEyIDIwLjg0IC0xMi4zNyAzMiAtMTcgYyAyMC4yNyAtOC40MSA0MC43OSAtMTQuMTEgNjIgLTIyIGMgOC4zOCAtMy4xMiAyMy40OCAtOS44IDI0IC0xMCBjIDAuMDcgLTAuMDMgLTMuMjQgMS45OSAtMyAyIGMgNC43OCAwLjE0IDQ4LjYxIC0wLjMgNzMgMCBjIDIuMzYgMC4wMyA3LjI5IDAuOSA3IDEgYyAtMi4wMSAwLjY1IC0zMC44MyA5LjE5IC00NyAxMiBjIC00Ni4xNSA4LjAzIC0xMjkuMjYgMTguNDQgLTEzNyAyMCBjIC0wLjc4IDAuMTYgOC42NSA0LjU0IDEzIDUgYyAxOS43MiAyLjA4IDQxLjE2IDIuMzEgNjMgMyBjIDIyLjE2IDAuNyA0MS44NSAwLjM2IDY0IDEgYyAxMy44NiAwLjQgMjYuNDMgMC45OSA0MCAyIGMgNC43OSAwLjM1IDExLjkgMS4wMyAxNCAyIGMgMC42MSAwLjI4IC0wLjIzIDMuMjMgLTEgNCBjIC0xLjc2IDEuNzYgLTUuMjggMy44MSAtOCA1IGMgLTIuMzggMS4wNCAtNi40MiAwLjk1IC04IDIgYyAtMC43OSAwLjUzIC0wLjI5IDMuMDkgLTEgNCBsIC02IDUiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 20:04:42\"}],\"documents\":[],\"expenses\":[]}',5,2.12,3.12,NULL,'183.171.71.242',0,NULL,''),(165,'2019-07-14 12:05:37','2019-07-14 12:05:37',1,1,4,9,NULL,20,NULL,NULL,NULL,NULL,7,0.00,3.12,NULL,'183.171.71.242',0,NULL,''),(166,'2019-07-14 12:06:04','2019-07-14 12:06:05',1,1,4,NULL,NULL,20,NULL,NULL,NULL,'{\"invoice_number\":\"0018\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.12\",\"balance\":\"3.12\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.1200\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.12\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjkxIiBoZWlnaHQ9IjczIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMTcgNDYgYyAwLjAyIC0wLjA3IDAuMDkgLTMuNzEgMSAtNCBjIDE0LjU3IC00LjcxIDQxLjkyIC0xMi4zOSA2NCAtMTcgYyAzOS45NyAtOC4zNSA3Ny4zOCAtMTQuMTggMTE4IC0yMSBjIDguNTMgLTEuNDMgMjAuOTQgLTMuMzIgMjUgLTMgYyAwLjgxIDAuMDYgMC44OCA0LjIyIDAgNSBjIC0zLjcyIDMuMzEgLTExLjcyIDguMTMgLTE4IDExIGMgLTguODUgNC4wNCAtMTguMzQgNy4yIC0yOCAxMCBjIC0xMy43MiAzLjk4IC0yNy4wNCA3LjgyIC00MSAxMCBjIC0yMi42MSAzLjUzIC00NC43IDMuOTQgLTY4IDcgYyAtMjMuODIgMy4xMyAtNzAuMTggMTAuNjcgLTY5IDExIGMgMS44MyAwLjUyIDcxLjI1IC0xLjQ2IDEwOCAwIGMgMzIuMSAxLjI3IDYxLjMyIDQuOTMgOTQgOCBjIDMwLjMgMi44NSA4NyA5IDg3IDkiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 20:06:03\"}],\"documents\":[],\"expenses\":[]}',5,-2.12,1.00,NULL,'183.171.71.242',0,NULL,''),(167,'2019-07-14 12:06:05','2019-07-14 12:06:06',1,1,4,NULL,NULL,20,NULL,NULL,NULL,'{\"invoice_number\":\"0018\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjkxIiBoZWlnaHQ9IjczIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMTcgNDYgYyAwLjAyIC0wLjA3IDAuMDkgLTMuNzEgMSAtNCBjIDE0LjU3IC00LjcxIDQxLjkyIC0xMi4zOSA2NCAtMTcgYyAzOS45NyAtOC4zNSA3Ny4zOCAtMTQuMTggMTE4IC0yMSBjIDguNTMgLTEuNDMgMjAuOTQgLTMuMzIgMjUgLTMgYyAwLjgxIDAuMDYgMC44OCA0LjIyIDAgNSBjIC0zLjcyIDMuMzEgLTExLjcyIDguMTMgLTE4IDExIGMgLTguODUgNC4wNCAtMTguMzQgNy4yIC0yOCAxMCBjIC0xMy43MiAzLjk4IC0yNy4wNCA3LjgyIC00MSAxMCBjIC0yMi42MSAzLjUzIC00NC43IDMuOTQgLTY4IDcgYyAtMjMuODIgMy4xMyAtNzAuMTggMTAuNjcgLTY5IDExIGMgMS44MyAwLjUyIDcxLjI1IC0xLjQ2IDEwOCAwIGMgMzIuMSAxLjI3IDYxLjMyIDQuOTMgOTQgOCBjIDMwLjMgMi44NSA4NyA5IDg3IDkiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 20:06:03\"}],\"documents\":[],\"expenses\":[]}',5,2.12,3.12,NULL,'183.171.71.242',0,NULL,''),(168,'2019-07-14 12:07:12','2019-07-14 12:07:13',1,1,4,9,9,20,NULL,26,NULL,'{\"invoice_number\":\"0018\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.12\",\"balance\":0,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.1200\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":4,\"discount\":\"0.00\"}],\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjkxIiBoZWlnaHQ9IjczIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMTcgNDYgYyAwLjAyIC0wLjA3IDAuMDkgLTMuNzEgMSAtNCBjIDE0LjU3IC00LjcxIDQxLjkyIC0xMi4zOSA2NCAtMTcgYyAzOS45NyAtOC4zNSA3Ny4zOCAtMTQuMTggMTE4IC0yMSBjIDguNTMgLTEuNDMgMjAuOTQgLTMuMzIgMjUgLTMgYyAwLjgxIDAuMDYgMC44OCA0LjIyIDAgNSBjIC0zLjcyIDMuMzEgLTExLjcyIDguMTMgLTE4IDExIGMgLTguODUgNC4wNCAtMTguMzQgNy4yIC0yOCAxMCBjIC0xMy43MiAzLjk4IC0yNy4wNCA3LjgyIC00MSAxMCBjIC0yMi42MSAzLjUzIC00NC43IDMuOTQgLTY4IDcgYyAtMjMuODIgMy4xMyAtNzAuMTggMTAuNjcgLTY5IDExIGMgMS44MyAwLjUyIDcxLjI1IC0xLjQ2IDEwOCAwIGMgMzIuMSAxLjI3IDYxLjMyIDQuOTMgOTQgOCBjIDMwLjMgMi44NSA4NyA5IDg3IDkiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 20:06:03\"}],\"documents\":[],\"expenses\":[]}',10,-3.12,0.00,NULL,'183.171.71.242',0,NULL,''),(169,'2019-07-14 12:07:12','2019-07-14 12:07:13',1,1,4,NULL,NULL,20,NULL,NULL,NULL,'{\"invoice_number\":\"0018\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.12\",\"balance\":\"3.12\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.1200\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjkxIiBoZWlnaHQ9IjczIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMTcgNDYgYyAwLjAyIC0wLjA3IDAuMDkgLTMuNzEgMSAtNCBjIDE0LjU3IC00LjcxIDQxLjkyIC0xMi4zOSA2NCAtMTcgYyAzOS45NyAtOC4zNSA3Ny4zOCAtMTQuMTggMTE4IC0yMSBjIDguNTMgLTEuNDMgMjAuOTQgLTMuMzIgMjUgLTMgYyAwLjgxIDAuMDYgMC44OCA0LjIyIDAgNSBjIC0zLjcyIDMuMzEgLTExLjcyIDguMTMgLTE4IDExIGMgLTguODUgNC4wNCAtMTguMzQgNy4yIC0yOCAxMCBjIC0xMy43MiAzLjk4IC0yNy4wNCA3LjgyIC00MSAxMCBjIC0yMi42MSAzLjUzIC00NC43IDMuOTQgLTY4IDcgYyAtMjMuODIgMy4xMyAtNzAuMTggMTAuNjcgLTY5IDExIGMgMS44MyAwLjUyIDcxLjI1IC0xLjQ2IDEwOCAwIGMgMzIuMSAxLjI3IDYxLjMyIDQuOTMgOTQgOCBjIDMwLjMgMi44NSA4NyA5IDg3IDkiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 20:06:03\"}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.71.242',0,NULL,''),(170,'2019-07-14 12:20:56','2019-07-14 12:20:56',1,1,4,9,9,20,NULL,26,NULL,NULL,40,3.12,3.12,NULL,'183.171.71.242',0,NULL,''),(171,'2019-07-14 12:20:56','2019-07-14 12:20:57',1,1,4,NULL,NULL,20,NULL,NULL,NULL,'{\"invoice_number\":\"0018\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.12\",\"balance\":\"0.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.1200\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"4\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.12\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjkxIiBoZWlnaHQ9IjczIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMTcgNDYgYyAwLjAyIC0wLjA3IDAuMDkgLTMuNzEgMSAtNCBjIDE0LjU3IC00LjcxIDQxLjkyIC0xMi4zOSA2NCAtMTcgYyAzOS45NyAtOC4zNSA3Ny4zOCAtMTQuMTggMTE4IC0yMSBjIDguNTMgLTEuNDMgMjAuOTQgLTMuMzIgMjUgLTMgYyAwLjgxIDAuMDYgMC44OCA0LjIyIDAgNSBjIC0zLjcyIDMuMzEgLTExLjcyIDguMTMgLTE4IDExIGMgLTguODUgNC4wNCAtMTguMzQgNy4yIC0yOCAxMCBjIC0xMy43MiAzLjk4IC0yNy4wNCA3LjgyIC00MSAxMCBjIC0yMi42MSAzLjUzIC00NC43IDMuOTQgLTY4IDcgYyAtMjMuODIgMy4xMyAtNzAuMTggMTAuNjcgLTY5IDExIGMgMS44MyAwLjUyIDcxLjI1IC0xLjQ2IDEwOCAwIGMgMzIuMSAxLjI3IDYxLjMyIDQuOTMgOTQgOCBjIDMwLjMgMi44NSA4NyA5IDg3IDkiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 20:06:03\"}],\"documents\":[],\"expenses\":[]}',5,0.00,3.12,NULL,'183.171.71.242',0,NULL,''),(172,'2019-07-14 12:21:06','2019-07-14 12:21:06',1,1,4,9,8,19,NULL,25,NULL,NULL,40,3.05,6.17,NULL,'183.171.71.242',0,NULL,''),(173,'2019-07-14 12:21:06','2019-07-14 12:21:06',1,1,4,NULL,NULL,19,NULL,NULL,NULL,'{\"invoice_number\":\"0017\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.05\",\"balance\":\"0.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.0500\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"4\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"6.17\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDM5IiBoZWlnaHQ9IjkxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gOCA3OSBjIDAuMjYgLTAuMjMgOS42NSAtOS4xNCAxNSAtMTMgYyA2LjY1IC00LjggMTMuNjEgLTkuOTIgMjEgLTEzIGMgMTYuMDggLTYuNyAzMy4zOCAtMTIuNjkgNTEgLTE3IGMgNDUuODkgLTExLjIzIDkwLjk2IC0yNC4xNyAxMzcgLTI5IGMgNjcuNzYgLTcuMTEgMTk0LjM3IC02Ljk0IDIwNiAtNyBjIDAuNjYgMCAtNi40NiA0LjYgLTEwIDYgYyAtMTIuMTkgNC44MyAtMjQuOTkgMTAuMDMgLTM4IDEzIGMgLTI0Ljk3IDUuNjkgLTQ5LjYyIDkuMDcgLTc2IDEzIGMgLTM2LjI0IDUuNDEgLTY4LjczIDguNDggLTEwNSAxNCBjIC00Ny45MSA3LjI5IC05MS4xMiAxNC4wNiAtMTM4IDIzIGMgLTE5LjM0IDMuNjkgLTM3LjU2IDguNzMgLTU2IDE0IGMgLTQuODcgMS4zOSAtMTQuNjkgNS45OCAtMTQgNiBjIDExLjkxIDAuMjkgMjU5LjM4IDAgMjY0IDAgbCAtOCAwIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 19:48:32\"}],\"documents\":[],\"expenses\":[]}',5,0.00,6.17,NULL,'183.171.71.242',0,NULL,''),(174,'2019-07-14 12:22:04','2019-07-14 12:22:04',1,1,4,NULL,NULL,16,NULL,NULL,NULL,'{\"invoice_number\":\"0014\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.03\",\"balance\":\"0.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.0300\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"4\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"6.17\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTkxIiBoZWlnaHQ9IjEyMyI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDgzIDE0IGMgLTAuMDkgMC4xOSAtMy4wNyA3LjQzIC01IDExIGMgLTIuNDQgNC41MSAtNS4wMyA4LjcgLTggMTMgYyAtMTAuNzQgMTUuNTcgLTIxLjU5IDI5LjM4IC0zMiA0NSBjIC01LjI0IDcuODYgLTguOSAxNi45IC0xNCAyNCBjIC0yLjIxIDMuMDggLTYuMTUgNS4xNSAtOSA4IGMgLTIuMTggMi4xOCAtNS44MSA3LjI4IC02IDcgYyAtMC4yMiAtMC4zMyAzLjIxIC02LjY3IDQgLTEwIGMgMC44MSAtMy40MSAwLjA0IC03LjYgMSAtMTEgYyAxLjk0IC02LjkxIDQuNDMgLTE0LjU5IDggLTIxIGMgNy41OCAtMTMuNiAxNi45NyAtMjYuODYgMjYgLTQwIGMgMi4wMSAtMi45MyA0Ljk0IC01LjE5IDcgLTggYyAxLjU2IC0yLjEzIDIuMzcgLTQuODkgNCAtNyBjIDYuMzIgLTguMTYgMTQuNSAtMjEuNDEgMjAgLTI0IGMgMi44NCAtMS4zNCAxMS43NCA0LjgzIDE0IDggYyAxLjgzIDIuNTYgMC45MSA4LjU1IDEgMTMgYyAwLjI1IDExLjYxIDAuNTMgMjIuNDggMCAzNCBjIC0wLjQ5IDEwLjU1IC0xLjI5IDIwLjk2IC0zIDMxIGMgLTAuOTIgNS40IC0zLjgzIDEwLjgzIC01IDE2IGMgLTAuNDIgMS44NSAwLjI2IDQuMDYgMCA2IGMgLTAuNCAyLjk4IC0xLjk5IDkuMjIgLTIgOSBjIC0wLjA2IC0xLjI3IC0wLjg0IC0zNC41NiAwIC01MiBjIDAuNTEgLTEwLjQ4IDEuNjYgLTIxIDQgLTMxIGMgMi42MSAtMTEuMTIgOS40NiAtMzEuNzcgMTEgLTMzIGMgMC45NSAtMC43NiAzLjUyIDEzLjk4IDQgMjEgYyAwLjg0IDEyLjE1IDAuODEgMjQuNzkgMCAzNyBjIC0wLjUxIDcuNzEgLTMuMzMgMTUuMzEgLTQgMjMgYyAtMC42NiA3LjU4IC0wLjA0IDIzLjQgMCAyMyBjIDAuMDUgLTAuNTkgMC4yNSAtMjIuNjkgMSAtMzQgYyAwLjI1IC0zLjcyIDEuMDYgLTcuMzYgMiAtMTEgYyAxLjQxIC01LjQ2IDQuMzEgLTE0LjkyIDUgLTE2IGMgMC4yMiAtMC4zNSAxLjY5IDMuMjggMiA1IGMgMi45NSAxNi4yMSA1LjEgNDIuNDIgOCA1MCBjIDAuNiAxLjU2IDYuODQgLTEuNTcgMTAgLTMgYyAxNC40NyAtNi41NSAyOS43NyAtMTMuOTYgNDMgLTIxIGMgMS41NiAtMC44MyAyLjk3IC0yLjUgNCAtNCBjIDIuNTMgLTMuNjggNS4wOCAtNy45NiA3IC0xMiBjIDEgLTIuMTIgMS4wNiAtNC44IDIgLTcgYyAyLjAzIC00Ljc0IDUuNzQgLTkuNSA3IC0xNCBjIDAuODggLTMuMTYgMS44OCAtMTAuNTggMCAtMTEgYyAtOC4zNyAtMS44OCAtMzIuODEgLTAuOSAtNDkgMCBjIC03LjcxIDAuNDMgLTE1LjM0IDIuMTUgLTIzIDQgYyAtMTAuNiAyLjU1IC0yMC41OSA2LjcxIC0zMSA5IGMgLTYuMTYgMS4zNiAtMTIuNTQgMS4wNSAtMTkgMiBjIC03LjU2IDEuMTEgLTE0LjY4IDMuMTEgLTIyIDQgYyAtMy42IDAuNDQgLTcuMzkgLTAuMzMgLTExIDAgYyAtMy42NyAwLjMzIC03LjI3IDEuNjcgLTExIDIgbCAtMjMgMSIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-13 18:07:54\"}],\"documents\":[],\"expenses\":[]}',5,0.00,6.17,NULL,'183.171.71.242',0,NULL,''),(175,'2019-07-14 12:22:04','2019-07-14 12:22:04',1,1,4,NULL,NULL,16,NULL,NULL,NULL,NULL,9,0.00,6.17,NULL,'183.171.71.242',0,NULL,''),(176,'2019-07-14 12:22:04','2019-07-14 12:22:04',1,1,4,NULL,NULL,17,NULL,NULL,NULL,'{\"invoice_number\":\"0015\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.26\",\"balance\":\"0.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.2600\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"4\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"6.17\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTM5IiBoZWlnaHQ9IjExMCI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDg2IDEyIGMgLTAuMyAwLjQ3IC0xMC45NyAxOC41NiAtMTcgMjcgYyAtMi4xNCAyLjk5IC01LjU3IDUuMDggLTggOCBjIC01Ljk4IDcuMTcgLTExLjEzIDE0Ljc0IC0xNyAyMiBjIC0xLjE5IDEuNDggLTIuNTQgMi45OCAtNCA0IGMgLTEuNzMgMS4yMSAtNC4zNCAxLjcgLTYgMyBjIC0yLjc5IDIuMiAtNS4yNyA1LjcyIC04IDggYyAtMS4wOCAwLjkgLTMuMDYgMS4wNiAtNCAyIGMgLTEuOCAxLjggLTMuMjMgNS4wMSAtNSA3IGMgLTAuNzQgMC44MyAtMy4wOCAyLjE5IC0zIDIgYyAwLjQ1IC0xLjEgNi40IC0xMy4yNCAxMCAtMTkgYyAxLjE5IC0xLjkgMy42NCAtMy4xOSA1IC01IGMgMS41NSAtMi4wNyAyLjM5IC00Ljg5IDQgLTcgYyAzLjY4IC00LjgyIDguMjIgLTkuMjEgMTIgLTE0IGMgMS4yIC0xLjUyIDEuODIgLTMuNjUgMyAtNSBjIDEuMDEgLTEuMTUgMi45NyAtMS44IDQgLTMgYyAyLjggLTMuMjcgNS4yNyAtNy43OCA4IC0xMSBjIDAuNzIgLTAuODUgMi40MSAtMS4xMSAzIC0yIGMgMi40MiAtMy42MyA0LjQgLTguNzEgNyAtMTMgYyAzLjE4IC01LjIzIDkuNzkgLTE1Ljg4IDEwIC0xNSBjIDAuNDIgMS43NyAtMi42MSAyNC4yNiAtNSAzNiBjIC0xLjI1IDYuMTMgLTQuNjYgMTEuOTUgLTYgMTggYyAtMS4yOCA1Ljc3IC0xLjc3IDExLjg5IC0yIDE4IGMgLTAuNDUgMTIuMTUgLTAuMyAzNC43NCAwIDM2IGMgMC4xMyAwLjU1IDMuMDQgLTEwLjA5IDUgLTE1IGMgMS4zOSAtMy40NyAzLjgxIC02LjU2IDUgLTEwIGMgMS43NiAtNS4wOCAyLjM0IC0xMC44MSA0IC0xNiBjIDAuOTkgLTMuMSAzLjA2IC01Ljg4IDQgLTkgYyAyLjM3IC03LjgzIDQuMjggLTE1Ljc2IDYgLTI0IGMgMS4zNCAtNi40IDIuOTggLTE5LjM0IDMgLTE5IGMgMC4wNiAwLjkxIC0wLjE2IDM0Ljk3IC0xIDUyIGMgLTAuMTUgMy4wMiAtMS42IDYuMDIgLTIgOSBjIC0wLjI2IDEuOTQgMC4zNyA0LjMzIDAgNiBjIC0wLjIyIDEgLTEuODQgMS45OSAtMiAzIGMgLTAuNDMgMi44MSAwLjA0IDkuNzMgMCAxMCBjIC0wLjAyIDAuMTEgLTEgLTIuNzUgLTEgLTQgYyAwIC0xLjg1IDAuNDYgLTQuMDUgMSAtNiBjIDEuMTMgLTQuMDUgMy4wOSAtOC4xMyA0IC0xMiBjIDAuMzYgLTEuNTMgLTAuMzQgLTMuNjIgMCAtNSBjIDAuMjUgLTEgMS40NSAtMyAyIC0zIGMgMC42NSAwIDIuNTcgMS44NSAzIDMgYyAxLjY1IDQuNDggMyAxMC43NyA0IDE2IGMgMC4zIDEuNTkgLTAuNTYgNC4xNiAwIDUgYyAwLjQ2IDAuNjkgMy41IDEuNyA0IDEgYyA3LjM2IC0xMC40MyAzOC4xOCAtNDguNzUgMzIgLTUyIGMgLTEzLjQ3IC03LjA3IC04OS45NyAtMC4zNyAtMTMzIC0xIGwgLTQgLTEiLz48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMzggNjggYyAwLjA5IDAuMDIgMy4zOSAxLjA3IDUgMSBjIDUuNzEgLTAuMjUgMTIuMDcgLTEuMDUgMTggLTIgYyAyLjM4IC0wLjM4IDQuNjcgLTEuODkgNyAtMiBjIDE3LjMyIC0wLjg1IDU0IC0xIDU0IC0xIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 18:22:20\"}],\"documents\":[],\"expenses\":[]}',5,0.00,6.17,NULL,'183.171.71.242',0,NULL,''),(177,'2019-07-14 12:22:05','2019-07-14 12:22:05',1,1,4,NULL,NULL,17,NULL,NULL,NULL,NULL,9,0.00,6.17,NULL,'183.171.71.242',0,NULL,''),(178,'2019-07-14 12:22:05','2019-07-14 12:22:05',1,1,4,NULL,NULL,18,NULL,NULL,NULL,'{\"invoice_number\":\"0016\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.24\",\"balance\":\"0.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.2400\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"4\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"6.17\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTc1IiBoZWlnaHQ9IjExMiI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDY4IDEyIGMgLTAuNCAwLjYgLTE0LjYzIDIzLjE1IC0yMyAzNCBjIC02LjM1IDguMjMgLTEzLjY3IDE1LjQzIC0yMSAyMyBjIC0yLjgzIDIuOTMgLTYuMzcgNS4wMyAtOSA4IGMgLTQuOTggNS42MyAtMTIuOTIgMTcuMTcgLTE0IDE4IGMgLTAuMzggMC4yOSAwLjA5IC01LjYyIDEgLTggYyAzLjIzIC04LjQ0IDcuNTUgLTE3LjUyIDEyIC0yNiBjIDIuNTkgLTQuOTMgNS40OSAtOS43MiA5IC0xNCBjIDEwLjE2IC0xMi4zOSAyMC45MyAtMjQuOTMgMzIgLTM2IGMgMy45NSAtMy45NSAxMS42MyAtOS40MSAxNCAtMTAgYyAwLjg3IC0wLjIyIDEuOSA0LjAyIDIgNiBjIDAuNTMgMTAuMzUgMS4wMSAyMi40NCAwIDMzIGMgLTAuNiA2LjI4IC0yLjUyIDEzLjA3IC01IDE5IGMgLTUuMDggMTIuMTQgLTExLjUyIDIzLjk3IC0xOCAzNiBjIC0zLjA0IDUuNjQgLTkuMjEgMTUuMTMgLTEwIDE2IGMgLTAuMjEgMC4yMyAtMC4zOCAtMy40OSAwIC01IGMgMC44OCAtMy41MyAyLjAyIC03Ljg4IDQgLTExIGMgNC43MSAtNy40IDEwLjg5IC0xNS4xIDE3IC0yMiBjIDQuMiAtNC43NCA5LjAzIC04LjgzIDE0IC0xMyBjIDUuNTYgLTQuNjcgMTEuMDMgLTkuMDggMTcgLTEzIGMgNS43NCAtMy43NyAxMS42NyAtNy4xIDE4IC0xMCBjIDE4LjA1IC04LjI3IDM1LjgyIC0xNC44OSA1NCAtMjMgYyAzLjg4IC0xLjczIDkuMjcgLTYgMTEgLTYgYyAwLjg0IDAgMS44IDQuNjYgMSA2IGMgLTQuMDUgNi43NSAtMTIuMjUgMTYuMDUgLTE5IDI0IGMgLTQuODQgNS42OSAtOS40NSAxMS44IC0xNSAxNiBjIC03LjU5IDUuNzQgLTE2LjkgMTAuMTYgLTI2IDE1IGMgLTEyLjg4IDYuODQgLTI0LjkxIDEyLjkyIC0zOCAxOSBjIC01Ljk1IDIuNzYgLTExLjggNC44NyAtMTggNyBjIC00LjY4IDEuNjEgLTkuNDUgMy4wOSAtMTQgNCBjIC0xLjg4IDAuMzggLTUuNSAwLjkyIC02IDAgYyAtMC45MiAtMS42OSAtMC45IC04IDAgLTExIGMgMC44OCAtMi45NSAzLjUxIC03LjEgNiAtOSBjIDMuODEgLTIuOSA5Ljk5IC01LjYzIDE1IC03IGMgNS40OCAtMS40OSAxMS44MyAtMS42IDE4IC0yIGMgOS41NSAtMC42MiAyMC43NyAtMS40NyAyOCAtMSBjIDEuMDkgMC4wNyAzLjQzIDIuOSAzIDMgYyAtNC4zNiAwLjk4IC0yOC41OCA0LjI3IC00MyA2IGMgLTIuMzMgMC4yOCAtNy4xMiAwLjY4IC03IDAgYyAwLjI1IC0xLjM4IDUuNTUgLTguODIgOSAtMTEgYyA0LjYxIC0yLjkgMTEuOSAtNC44MyAxOCAtNiBjIDExIC0yLjEyIDM0LjYgLTMuOTcgMzQgLTQgYyAtMS44OSAtMC4xIC0xMDUuMDUgMC4wNiAtMTA4IDAgYyAtMC4yMyAwIDUuMjYgLTEuNTggOCAtMiBjIDguMzcgLTEuMjcgMTYuNTMgLTIuNzEgMjUgLTMgYyAyMS41NCAtMC43MyA2NCAwIDY0IDAiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 18:44:37\"}],\"documents\":[],\"expenses\":[]}',5,0.00,6.17,NULL,'183.171.71.242',0,NULL,''),(179,'2019-07-14 12:22:05','2019-07-14 12:22:05',1,1,4,NULL,NULL,18,NULL,NULL,NULL,NULL,9,0.00,6.17,NULL,'183.171.71.242',0,NULL,''),(180,'2019-07-14 12:22:06','2019-07-14 12:22:06',1,1,4,NULL,NULL,19,NULL,NULL,NULL,'{\"invoice_number\":\"0017\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.05\",\"balance\":\"3.05\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.0500\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"4\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"6.17\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDM5IiBoZWlnaHQ9IjkxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gOCA3OSBjIDAuMjYgLTAuMjMgOS42NSAtOS4xNCAxNSAtMTMgYyA2LjY1IC00LjggMTMuNjEgLTkuOTIgMjEgLTEzIGMgMTYuMDggLTYuNyAzMy4zOCAtMTIuNjkgNTEgLTE3IGMgNDUuODkgLTExLjIzIDkwLjk2IC0yNC4xNyAxMzcgLTI5IGMgNjcuNzYgLTcuMTEgMTk0LjM3IC02Ljk0IDIwNiAtNyBjIDAuNjYgMCAtNi40NiA0LjYgLTEwIDYgYyAtMTIuMTkgNC44MyAtMjQuOTkgMTAuMDMgLTM4IDEzIGMgLTI0Ljk3IDUuNjkgLTQ5LjYyIDkuMDcgLTc2IDEzIGMgLTM2LjI0IDUuNDEgLTY4LjczIDguNDggLTEwNSAxNCBjIC00Ny45MSA3LjI5IC05MS4xMiAxNC4wNiAtMTM4IDIzIGMgLTE5LjM0IDMuNjkgLTM3LjU2IDguNzMgLTU2IDE0IGMgLTQuODcgMS4zOSAtMTQuNjkgNS45OCAtMTQgNiBjIDExLjkxIDAuMjkgMjU5LjM4IDAgMjY0IDAgbCAtOCAwIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 19:48:32\"}],\"documents\":[],\"expenses\":[]}',5,0.00,6.17,NULL,'183.171.71.242',0,NULL,''),(181,'2019-07-14 12:22:06','2019-07-14 12:22:06',1,1,4,NULL,NULL,19,NULL,NULL,NULL,NULL,9,-3.05,3.12,NULL,'183.171.71.242',0,NULL,''),(182,'2019-07-14 12:22:06','2019-07-14 12:22:06',1,1,4,NULL,NULL,20,NULL,NULL,NULL,'{\"invoice_number\":\"0018\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.12\",\"balance\":\"3.12\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.1200\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"4\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.12\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjkxIiBoZWlnaHQ9IjczIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMTcgNDYgYyAwLjAyIC0wLjA3IDAuMDkgLTMuNzEgMSAtNCBjIDE0LjU3IC00LjcxIDQxLjkyIC0xMi4zOSA2NCAtMTcgYyAzOS45NyAtOC4zNSA3Ny4zOCAtMTQuMTggMTE4IC0yMSBjIDguNTMgLTEuNDMgMjAuOTQgLTMuMzIgMjUgLTMgYyAwLjgxIDAuMDYgMC44OCA0LjIyIDAgNSBjIC0zLjcyIDMuMzEgLTExLjcyIDguMTMgLTE4IDExIGMgLTguODUgNC4wNCAtMTguMzQgNy4yIC0yOCAxMCBjIC0xMy43MiAzLjk4IC0yNy4wNCA3LjgyIC00MSAxMCBjIC0yMi42MSAzLjUzIC00NC43IDMuOTQgLTY4IDcgYyAtMjMuODIgMy4xMyAtNzAuMTggMTAuNjcgLTY5IDExIGMgMS44MyAwLjUyIDcxLjI1IC0xLjQ2IDEwOCAwIGMgMzIuMSAxLjI3IDYxLjMyIDQuOTMgOTQgOCBjIDMwLjMgMi44NSA4NyA5IDg3IDkiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-13 20:06:03\"}],\"documents\":[],\"expenses\":[]}',5,0.00,3.12,NULL,'183.171.71.242',0,NULL,''),(183,'2019-07-14 12:22:06','2019-07-14 12:22:06',1,1,4,NULL,NULL,20,NULL,NULL,NULL,NULL,9,-3.12,0.00,NULL,'183.171.71.242',0,NULL,''),(184,'2019-07-14 12:28:54','2019-07-14 12:28:54',1,1,4,NULL,NULL,21,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'183.171.71.242',0,NULL,''),(185,'2019-07-14 12:29:05','2019-07-14 12:29:05',1,1,4,NULL,NULL,21,NULL,NULL,NULL,'{\"invoice_number\":\"0019\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,1.00,1.00,NULL,'183.171.71.242',0,NULL,''),(186,'2019-07-14 12:41:43','2019-07-14 12:41:43',1,1,4,NULL,NULL,21,NULL,NULL,NULL,'{\"invoice_number\":\"0019\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzgwIiBoZWlnaHQ9IjExOSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDExNSA0NiBjIDAuMjQgLTAuMjMgOC45MSAtOS42MSAxNCAtMTMgYyA3LjUgLTUgMTYuMjYgLTguOSAyNSAtMTMgYyAxMy44OSAtNi41MiAyNy40NiAtMTYuMiA0MSAtMTggYyAzMC44NCAtNC4xIDc3LjYzIC00LjIzIDEwMiAtMSBjIDQuNjQgMC42MiA3LjczIDEwLjM5IDExIDE2IGMgMy43NyA2LjQ2IDcuOTUgMTMuNjUgMTAgMjAgYyAxLjAxIDMuMTIgMS44OCAxMC4yNSAwIDExIGMgLTYuMDIgMi40MSAtMjMuMDQgMi43NSAtMzUgMyBjIC0zNy40NCAwLjc3IC03MS44OSAwLjQ0IC0xMTAgMCBjIC0yMS44NCAtMC4yNSAtNDEuODUgLTAuMzQgLTYzIC0yIGMgLTEzLjI0IC0xLjA0IC0zNy45MSAtNSAtMzkgLTYgYyAtMC43NiAtMC42OSAxNy45NSAtNC44MiAyNyAtNSBjIDcyLjE3IC0xLjQ3IDIwNy42OSAwLjExIDIxOSAwIGMgMC4yMyAwIC0yLjY3IC0xLjkxIC00IC0yIGMgLTcuNzQgLTAuNTIgLTE3LjIgLTAuNTMgLTI2IDAgYyAtMTMuOTUgMC44MyAtMjguMzYgMS4zMSAtNDEgNCBjIC02LjczIDEuNDMgLTEzLjYyIDUuODEgLTIwIDkgYyAtMS40NiAwLjczIC0zLjU0IDMuMjMgLTQgMyBjIC0wLjQ2IC0wLjIzIC0wLjQ0IC0zLjU3IDAgLTUgYyAwLjc4IC0yLjU1IDMuMDkgLTUuMjggNCAtOCBjIDEuMDMgLTMuMSAyLjgyIC03Ljk2IDIgLTEwIGMgLTAuNzUgLTEuODkgLTUuMjEgLTQuNDUgLTggLTUgYyAtMTQuMzIgLTIuODEgLTMxLjc4IC00Ljg3IC00OCAtNiBjIC0xMi43NCAtMC44OSAtMjUuNTQgLTAuMjkgLTM4IDAgYyAtMS42NyAwLjA0IC00Ljc0IDAuMDMgLTUgMSBjIC0wLjkgMy40MyAtMC45MSAxMi41NyAwIDE4IGMgMC42NSAzLjkyIDMuMDkgOC4xOCA1IDEyIGMgMS4wNiAyLjEyIDIuOSAzLjg1IDQgNiBjIDUuMjcgMTAuMjUgOS40IDIxLjA0IDE1IDMxIGMgMy4zOCA2LjAyIDcuMTcgMTMuMTYgMTIgMTcgYyA3LjA3IDUuNjIgMTguMjggMTAuOTYgMjcgMTQgYyA0LjYgMS42IDEwLjUgMC44NiAxNiAxIGMgNy41NCAwLjIgMTUuNTIgMS41OSAyMiAwIGMgOC43MSAtMi4xMyAxNy44IC03LjYyIDI3IC0xMiBjIDExLjg0IC01LjYzIDIyLjEgLTExLjc3IDM0IC0xNyBjIDI0LjcgLTEwLjg1IDQ4LjE4IC0xOS40NCA3MyAtMzAgYyA0LjkyIC0yLjA5IDEyLjI4IC01LjI4IDE0IC03IGMgMC41NSAtMC41NSAtMS43NyAtMy45OSAtMyAtNCBjIC05Mi41IC0wLjk4IC0zNjYuNzUgMC4wOSAtMzc1IDAgYyAtMC40NSAtMC4wMSAxMy4wOSAtMi45OSAyMCAtNCBjIDIzLjU4IC0zLjQ0IDQ1LjM3IC02Ljk5IDY5IC05IGMgMjguNTYgLTIuNDMgNTUuMDIgLTMuNTMgODQgLTQgYyA1NS40OSAtMC45MSAxNjEgMCAxNjEgMCIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-13 20:40:59\"}],\"documents\":[],\"expenses\":[]}',5,0.00,1.00,NULL,'183.171.71.242',0,NULL,''),(187,'2019-07-14 12:41:44','2019-07-14 12:41:44',1,1,4,NULL,NULL,21,NULL,NULL,NULL,NULL,9,-1.00,0.00,NULL,'183.171.71.242',0,NULL,''),(188,'2019-07-14 13:10:01','2019-07-14 13:10:01',1,2,4,NULL,NULL,22,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'183.171.71.242',0,NULL,''),(189,'2019-07-14 13:10:10','2019-07-14 13:10:10',1,2,4,NULL,NULL,22,NULL,NULL,NULL,'{\"invoice_number\":\"0020\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,1.00,1.00,NULL,'183.171.71.242',0,NULL,''),(190,'2019-07-14 13:10:52','2019-07-14 13:10:52',1,2,4,NULL,NULL,22,NULL,NULL,NULL,'{\"invoice_number\":\"0020\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzIxIiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDIgNTUgYyAwLjE5IC0wLjIzIDcuMDYgLTkuMDYgMTEgLTEzIGMgMi42NCAtMi42NCA1LjggLTQuODMgOSAtNyBjIDYuMzEgLTQuMjggMTIuMzYgLTguNDUgMTkgLTEyIGMgNy44IC00LjE3IDE1LjY2IC03LjY3IDI0IC0xMSBjIDEwLjM5IC00LjE1IDIwLjc1IC0xMC40NCAzMSAtMTEgYyA1My41OSAtMi45IDEyNi45MiAtMi40OCAxNzIgMCBjIDMuNzEgMC4yIDYuOTcgNi40NCAxMCAxMCBjIDIuNjEgMy4wNyA0Ljk2IDYuNjEgNyAxMCBjIDAuOSAxLjUgMS42OCAzLjM4IDIgNSBjIDAuMyAxLjUxIDAuMzUgMy40OSAwIDUgYyAtMC42IDIuNTggLTEuNDYgNi40NiAtMyA4IGMgLTEuNTQgMS41NCAtNS4yOSAyLjYgLTggMyBjIC0xMC41IDEuNTQgLTIxLjc0IDIuNzcgLTMzIDMgYyAtMzguNzQgMC43OSAtNzQuNTUgMC40NiAtMTE0IDAgYyAtMTkuNzQgLTAuMjMgLTM3LjM3IC0wLjk0IC01NyAtMiBjIC0xMi40MyAtMC42NyAtMjMuNzEgLTIuMzIgLTM2IC0zIGMgLTYuMTIgLTAuMzQgLTEyLjIgMC4yNiAtMTggMCBjIC0xLjMzIC0wLjA2IC00LjE4IC0wLjkyIC00IC0xIGMgMC40OSAtMC4yMSA3LjMxIC0xLjk4IDExIC0yIGMgOTcuMzQgLTAuNjQgMjQzLjM4IC0wLjg3IDI5NSAwIGMgMC44NyAwLjAxIDAuODYgNC4yIDAgNSBjIC0zLjAxIDIuODEgLTkuNzQgNy40NiAtMTUgOSBjIC0xOC40NyA1LjQyIC0zOS4zOCA5LjQ4IC02MCAxMyBjIC0yMy4zNyAzLjk5IC00NS4zNSA2LjkyIC02OSA5IGMgLTI2Ljg4IDIuMzYgLTUxLjc3IDMuMzggLTc5IDQgYyAtMzMuMDUgMC43NiAtOTEuMjkgMC42MyAtOTYgMCBjIC0xLjE0IC0wLjE1IDEzLjcyIC03LjU0IDIxIC0xMCBjIDE1LjI3IC01LjE2IDMxLjA3IC0xMC4zMiA0NyAtMTMgYyAyNS42MiAtNC4zIDUxLjQ3IC02LjkxIDc4IC04IGMgMzkuNTggLTEuNjIgNzguNCAtMC42IDExNyAwIGMgMy42OSAwLjA2IDcuOTEgMC44NCAxMSAyIGMgMS43NyAwLjY2IDQuMjcgMi40MyA1IDQgYyAxLjI4IDIuNzQgMS41OSA3LjMzIDIgMTEgYyAwLjI2IDIuMyAwLjggNS4yOSAwIDcgYyAtMS4yMSAyLjYgLTQuMjggNi4xNiAtNyA4IGMgLTYuMDYgNC4xMSAtMTMuNzYgOS4yOCAtMjEgMTEgYyAtMjMuNDggNS41NyAtNTAuMDcgOC44OSAtNzYgMTIgYyAtMTYuNTQgMS45OCAtMzIuMTYgMi41NSAtNDkgMyBjIC0yMS42MSAwLjU4IC00My42MyAwLjU3IC02MyAwIGMgLTEuNjYgLTAuMDUgLTMuNjcgLTEuMDMgLTUgLTIgYyAtMi4wOSAtMS41MiAtNC44NCAtMy44MSAtNiAtNiBjIC0xLjU2IC0yLjk0IC0yLjUxIC03LjM4IC0zIC0xMSBjIC0wLjQ4IC0zLjQ5IC0wLjMzIC03LjM5IDAgLTExIGMgMC4zMyAtMy42NyAwLjIgLTguNTcgMiAtMTEgYyAzLjA5IC00LjE3IDkuNyAtOC44MiAxNSAtMTIgYyA2LjA1IC0zLjYzIDEzLjExIC02LjQ5IDIwIC05IGMgNy44NiAtMi44NiAxNS44IC01Ljg3IDI0IC03IGMgNDkuNDkgLTYuODMgMTUwIC0xNyAxNTAgLTE3Ii8+PC9zdmc+\",\"signature_date\":\"2019-07-13 21:10:51\"}],\"documents\":[],\"expenses\":[]}',5,2.12,3.12,NULL,'183.171.71.242',0,NULL,''),(191,'2019-07-14 13:11:36','2019-07-14 13:11:36',1,2,4,9,NULL,22,NULL,NULL,NULL,NULL,7,0.00,3.12,NULL,'183.171.71.242',0,NULL,''),(192,'2019-07-14 13:12:12','2019-07-14 13:12:12',1,1,4,NULL,NULL,22,NULL,NULL,NULL,'{\"invoice_number\":\"0020\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.12\",\"balance\":\"3.12\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.1200\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.12\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDMxIiBoZWlnaHQ9IjcxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA0NCBjIDAuMTYgLTAuMDkgNS44MSAtMy44NyA5IC01IGMgMjIuODQgLTguMSA0Ni4xNCAtMTYuOTUgNzAgLTIzIGMgMjIuMzYgLTUuNjcgNDQuOTUgLTkuMyA2OCAtMTIgYyAyMC4wNSAtMi4zNSAzOS4zMSAtMi42NSA2MCAtMyBjIDQwLjI5IC0wLjY4IDc2LjgxIC0wLjcxIDExNyAwIGMgMTcuODkgMC4zMiAzNS4yNSAwLjU4IDUyIDMgYyAxMC4zOCAxLjUgMjEuMSA1LjM0IDMxIDkgYyA1LjIxIDEuOTMgMTAuOTYgNS4wMiAxNSA4IGMgMS43MSAxLjI2IDMuNTUgNCA0IDYgYyAwLjc0IDMuMzMgMS43MiA5LjYyIDAgMTIgYyAtMy4xNyA0LjQxIC0xMS42IDExLjc2IC0xOCAxMyBjIC0zNi41NiA3LjExIC04My4wNyAxMS41NiAtMTI2IDE1IGMgLTI5LjEgMi4zMyAtNTYuMTIgMS43MiAtODYgMiBjIC00My43NyAwLjQxIC04NC44NyAwLjg4IC0xMjYgMCBjIC00LjY3IC0wLjEgLTE0LjYzIC0yLjc5IC0xNCAtMyBjIDIuNTkgLTAuODggMzguMDYgLTguOTQgNTggLTEyIGMgMzEuMTkgLTQuNzggNjAuNDkgLTguNTggOTIgLTExIGMgMzUuMDUgLTIuNyA2Ny4zNyAtMy4zMyAxMDMgLTQgYyAzOC4zNiAtMC43MiA3NC44NiAtMC42IDExMSAwIGMgMyAwLjA1IDkuMSAxLjM5IDkgMiBjIC0wLjEyIDAuNzEgLTYuNTYgMy4yOCAtMTAgNCBjIC0xNi44NyAzLjU0IC0zNC4wNCA2LjY2IC01MiA5IGMgLTM3LjMxIDQuODcgLTcxLjM0IDguNDggLTEwOSAxMiBjIC0yMS4zNCAyIC00MC43MiAzLjIxIC02MiA0IGMgLTE1Ljc2IDAuNTggLTQ0LjU1IDAuNDQgLTQ2IDAgYyAtMC43NiAtMC4yMyAxNS4xNCAtNS41OSAyMyAtNyBjIDIxLjc4IC0zLjkyIDQzLjg2IC02LjIzIDY2IC05IGwgNiAwIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 21:12:11\"}],\"documents\":[],\"expenses\":[]}',5,-2.12,1.00,NULL,'183.171.71.242',0,NULL,''),(193,'2019-07-14 13:12:13','2019-07-14 13:12:13',1,1,4,NULL,NULL,22,NULL,NULL,NULL,'{\"invoice_number\":\"0020\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDMxIiBoZWlnaHQ9IjcxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA0NCBjIDAuMTYgLTAuMDkgNS44MSAtMy44NyA5IC01IGMgMjIuODQgLTguMSA0Ni4xNCAtMTYuOTUgNzAgLTIzIGMgMjIuMzYgLTUuNjcgNDQuOTUgLTkuMyA2OCAtMTIgYyAyMC4wNSAtMi4zNSAzOS4zMSAtMi42NSA2MCAtMyBjIDQwLjI5IC0wLjY4IDc2LjgxIC0wLjcxIDExNyAwIGMgMTcuODkgMC4zMiAzNS4yNSAwLjU4IDUyIDMgYyAxMC4zOCAxLjUgMjEuMSA1LjM0IDMxIDkgYyA1LjIxIDEuOTMgMTAuOTYgNS4wMiAxNSA4IGMgMS43MSAxLjI2IDMuNTUgNCA0IDYgYyAwLjc0IDMuMzMgMS43MiA5LjYyIDAgMTIgYyAtMy4xNyA0LjQxIC0xMS42IDExLjc2IC0xOCAxMyBjIC0zNi41NiA3LjExIC04My4wNyAxMS41NiAtMTI2IDE1IGMgLTI5LjEgMi4zMyAtNTYuMTIgMS43MiAtODYgMiBjIC00My43NyAwLjQxIC04NC44NyAwLjg4IC0xMjYgMCBjIC00LjY3IC0wLjEgLTE0LjYzIC0yLjc5IC0xNCAtMyBjIDIuNTkgLTAuODggMzguMDYgLTguOTQgNTggLTEyIGMgMzEuMTkgLTQuNzggNjAuNDkgLTguNTggOTIgLTExIGMgMzUuMDUgLTIuNyA2Ny4zNyAtMy4zMyAxMDMgLTQgYyAzOC4zNiAtMC43MiA3NC44NiAtMC42IDExMSAwIGMgMyAwLjA1IDkuMSAxLjM5IDkgMiBjIC0wLjEyIDAuNzEgLTYuNTYgMy4yOCAtMTAgNCBjIC0xNi44NyAzLjU0IC0zNC4wNCA2LjY2IC01MiA5IGMgLTM3LjMxIDQuODcgLTcxLjM0IDguNDggLTEwOSAxMiBjIC0yMS4zNCAyIC00MC43MiAzLjIxIC02MiA0IGMgLTE1Ljc2IDAuNTggLTQ0LjU1IDAuNDQgLTQ2IDAgYyAtMC43NiAtMC4yMyAxNS4xNCAtNS41OSAyMyAtNyBjIDIxLjc4IC0zLjkyIDQzLjg2IC02LjIzIDY2IC05IGwgNiAwIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 21:12:11\"}],\"documents\":[],\"expenses\":[]}',5,2.12,3.12,NULL,'183.171.71.242',0,NULL,''),(194,'2019-07-14 13:14:38','2019-07-14 13:14:38',1,2,4,NULL,NULL,22,NULL,NULL,NULL,'{\"invoice_number\":\"0020\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.12\",\"balance\":\"3.12\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.1200\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.12\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDMxIiBoZWlnaHQ9IjcxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA0NCBjIDAuMTYgLTAuMDkgNS44MSAtMy44NyA5IC01IGMgMjIuODQgLTguMSA0Ni4xNCAtMTYuOTUgNzAgLTIzIGMgMjIuMzYgLTUuNjcgNDQuOTUgLTkuMyA2OCAtMTIgYyAyMC4wNSAtMi4zNSAzOS4zMSAtMi42NSA2MCAtMyBjIDQwLjI5IC0wLjY4IDc2LjgxIC0wLjcxIDExNyAwIGMgMTcuODkgMC4zMiAzNS4yNSAwLjU4IDUyIDMgYyAxMC4zOCAxLjUgMjEuMSA1LjM0IDMxIDkgYyA1LjIxIDEuOTMgMTAuOTYgNS4wMiAxNSA4IGMgMS43MSAxLjI2IDMuNTUgNCA0IDYgYyAwLjc0IDMuMzMgMS43MiA5LjYyIDAgMTIgYyAtMy4xNyA0LjQxIC0xMS42IDExLjc2IC0xOCAxMyBjIC0zNi41NiA3LjExIC04My4wNyAxMS41NiAtMTI2IDE1IGMgLTI5LjEgMi4zMyAtNTYuMTIgMS43MiAtODYgMiBjIC00My43NyAwLjQxIC04NC44NyAwLjg4IC0xMjYgMCBjIC00LjY3IC0wLjEgLTE0LjYzIC0yLjc5IC0xNCAtMyBjIDIuNTkgLTAuODggMzguMDYgLTguOTQgNTggLTEyIGMgMzEuMTkgLTQuNzggNjAuNDkgLTguNTggOTIgLTExIGMgMzUuMDUgLTIuNyA2Ny4zNyAtMy4zMyAxMDMgLTQgYyAzOC4zNiAtMC43MiA3NC44NiAtMC42IDExMSAwIGMgMyAwLjA1IDkuMSAxLjM5IDkgMiBjIC0wLjEyIDAuNzEgLTYuNTYgMy4yOCAtMTAgNCBjIC0xNi44NyAzLjU0IC0zNC4wNCA2LjY2IC01MiA5IGMgLTM3LjMxIDQuODcgLTcxLjM0IDguNDggLTEwOSAxMiBjIC0yMS4zNCAyIC00MC43MiAzLjIxIC02MiA0IGMgLTE1Ljc2IDAuNTggLTQ0LjU1IDAuNDQgLTQ2IDAgYyAtMC43NiAtMC4yMyAxNS4xNCAtNS41OSAyMyAtNyBjIDIxLjc4IC0zLjkyIDQzLjg2IC02LjIzIDY2IC05IGwgNiAwIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 21:12:11\"}],\"documents\":[],\"expenses\":[]}',5,0.00,3.12,NULL,'183.171.71.242',0,NULL,''),(195,'2019-07-14 13:14:50','2019-07-14 13:14:50',1,2,4,NULL,NULL,22,NULL,NULL,NULL,'{\"invoice_number\":\"0020\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.12\",\"balance\":\"3.12\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.1200\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.12\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDMxIiBoZWlnaHQ9IjcxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA0NCBjIDAuMTYgLTAuMDkgNS44MSAtMy44NyA5IC01IGMgMjIuODQgLTguMSA0Ni4xNCAtMTYuOTUgNzAgLTIzIGMgMjIuMzYgLTUuNjcgNDQuOTUgLTkuMyA2OCAtMTIgYyAyMC4wNSAtMi4zNSAzOS4zMSAtMi42NSA2MCAtMyBjIDQwLjI5IC0wLjY4IDc2LjgxIC0wLjcxIDExNyAwIGMgMTcuODkgMC4zMiAzNS4yNSAwLjU4IDUyIDMgYyAxMC4zOCAxLjUgMjEuMSA1LjM0IDMxIDkgYyA1LjIxIDEuOTMgMTAuOTYgNS4wMiAxNSA4IGMgMS43MSAxLjI2IDMuNTUgNCA0IDYgYyAwLjc0IDMuMzMgMS43MiA5LjYyIDAgMTIgYyAtMy4xNyA0LjQxIC0xMS42IDExLjc2IC0xOCAxMyBjIC0zNi41NiA3LjExIC04My4wNyAxMS41NiAtMTI2IDE1IGMgLTI5LjEgMi4zMyAtNTYuMTIgMS43MiAtODYgMiBjIC00My43NyAwLjQxIC04NC44NyAwLjg4IC0xMjYgMCBjIC00LjY3IC0wLjEgLTE0LjYzIC0yLjc5IC0xNCAtMyBjIDIuNTkgLTAuODggMzguMDYgLTguOTQgNTggLTEyIGMgMzEuMTkgLTQuNzggNjAuNDkgLTguNTggOTIgLTExIGMgMzUuMDUgLTIuNyA2Ny4zNyAtMy4zMyAxMDMgLTQgYyAzOC4zNiAtMC43MiA3NC44NiAtMC42IDExMSAwIGMgMyAwLjA1IDkuMSAxLjM5IDkgMiBjIC0wLjEyIDAuNzEgLTYuNTYgMy4yOCAtMTAgNCBjIC0xNi44NyAzLjU0IC0zNC4wNCA2LjY2IC01MiA5IGMgLTM3LjMxIDQuODcgLTcxLjM0IDguNDggLTEwOSAxMiBjIC0yMS4zNCAyIC00MC43MiAzLjIxIC02MiA0IGMgLTE1Ljc2IDAuNTggLTQ0LjU1IDAuNDQgLTQ2IDAgYyAtMC43NiAtMC4yMyAxNS4xNCAtNS41OSAyMyAtNyBjIDIxLjc4IC0zLjkyIDQzLjg2IC02LjIzIDY2IC05IGwgNiAwIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 21:12:11\"}],\"documents\":[],\"expenses\":[]}',5,-2.12,1.00,NULL,'183.171.71.242',0,NULL,''),(196,'2019-07-14 13:15:02','2019-07-14 13:15:04',1,2,4,NULL,NULL,22,NULL,NULL,NULL,'{\"invoice_number\":\"0020\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDMxIiBoZWlnaHQ9IjcxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA0NCBjIDAuMTYgLTAuMDkgNS44MSAtMy44NyA5IC01IGMgMjIuODQgLTguMSA0Ni4xNCAtMTYuOTUgNzAgLTIzIGMgMjIuMzYgLTUuNjcgNDQuOTUgLTkuMyA2OCAtMTIgYyAyMC4wNSAtMi4zNSAzOS4zMSAtMi42NSA2MCAtMyBjIDQwLjI5IC0wLjY4IDc2LjgxIC0wLjcxIDExNyAwIGMgMTcuODkgMC4zMiAzNS4yNSAwLjU4IDUyIDMgYyAxMC4zOCAxLjUgMjEuMSA1LjM0IDMxIDkgYyA1LjIxIDEuOTMgMTAuOTYgNS4wMiAxNSA4IGMgMS43MSAxLjI2IDMuNTUgNCA0IDYgYyAwLjc0IDMuMzMgMS43MiA5LjYyIDAgMTIgYyAtMy4xNyA0LjQxIC0xMS42IDExLjc2IC0xOCAxMyBjIC0zNi41NiA3LjExIC04My4wNyAxMS41NiAtMTI2IDE1IGMgLTI5LjEgMi4zMyAtNTYuMTIgMS43MiAtODYgMiBjIC00My43NyAwLjQxIC04NC44NyAwLjg4IC0xMjYgMCBjIC00LjY3IC0wLjEgLTE0LjYzIC0yLjc5IC0xNCAtMyBjIDIuNTkgLTAuODggMzguMDYgLTguOTQgNTggLTEyIGMgMzEuMTkgLTQuNzggNjAuNDkgLTguNTggOTIgLTExIGMgMzUuMDUgLTIuNyA2Ny4zNyAtMy4zMyAxMDMgLTQgYyAzOC4zNiAtMC43MiA3NC44NiAtMC42IDExMSAwIGMgMyAwLjA1IDkuMSAxLjM5IDkgMiBjIC0wLjEyIDAuNzEgLTYuNTYgMy4yOCAtMTAgNCBjIC0xNi44NyAzLjU0IC0zNC4wNCA2LjY2IC01MiA5IGMgLTM3LjMxIDQuODcgLTcxLjM0IDguNDggLTEwOSAxMiBjIC0yMS4zNCAyIC00MC43MiAzLjIxIC02MiA0IGMgLTE1Ljc2IDAuNTggLTQ0LjU1IDAuNDQgLTQ2IDAgYyAtMC43NiAtMC4yMyAxNS4xNCAtNS41OSAyMyAtNyBjIDIxLjc4IC0zLjkyIDQzLjg2IC02LjIzIDY2IC05IGwgNiAwIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 21:12:11\"}],\"documents\":[],\"expenses\":[]}',5,0.00,1.00,NULL,'183.171.71.242',0,NULL,''),(197,'2019-07-14 13:15:56','2019-07-14 13:15:56',1,2,4,NULL,NULL,22,NULL,NULL,NULL,'{\"invoice_number\":\"0020\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDMxIiBoZWlnaHQ9IjcxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA0NCBjIDAuMTYgLTAuMDkgNS44MSAtMy44NyA5IC01IGMgMjIuODQgLTguMSA0Ni4xNCAtMTYuOTUgNzAgLTIzIGMgMjIuMzYgLTUuNjcgNDQuOTUgLTkuMyA2OCAtMTIgYyAyMC4wNSAtMi4zNSAzOS4zMSAtMi42NSA2MCAtMyBjIDQwLjI5IC0wLjY4IDc2LjgxIC0wLjcxIDExNyAwIGMgMTcuODkgMC4zMiAzNS4yNSAwLjU4IDUyIDMgYyAxMC4zOCAxLjUgMjEuMSA1LjM0IDMxIDkgYyA1LjIxIDEuOTMgMTAuOTYgNS4wMiAxNSA4IGMgMS43MSAxLjI2IDMuNTUgNCA0IDYgYyAwLjc0IDMuMzMgMS43MiA5LjYyIDAgMTIgYyAtMy4xNyA0LjQxIC0xMS42IDExLjc2IC0xOCAxMyBjIC0zNi41NiA3LjExIC04My4wNyAxMS41NiAtMTI2IDE1IGMgLTI5LjEgMi4zMyAtNTYuMTIgMS43MiAtODYgMiBjIC00My43NyAwLjQxIC04NC44NyAwLjg4IC0xMjYgMCBjIC00LjY3IC0wLjEgLTE0LjYzIC0yLjc5IC0xNCAtMyBjIDIuNTkgLTAuODggMzguMDYgLTguOTQgNTggLTEyIGMgMzEuMTkgLTQuNzggNjAuNDkgLTguNTggOTIgLTExIGMgMzUuMDUgLTIuNyA2Ny4zNyAtMy4zMyAxMDMgLTQgYyAzOC4zNiAtMC43MiA3NC44NiAtMC42IDExMSAwIGMgMyAwLjA1IDkuMSAxLjM5IDkgMiBjIC0wLjEyIDAuNzEgLTYuNTYgMy4yOCAtMTAgNCBjIC0xNi44NyAzLjU0IC0zNC4wNCA2LjY2IC01MiA5IGMgLTM3LjMxIDQuODcgLTcxLjM0IDguNDggLTEwOSAxMiBjIC0yMS4zNCAyIC00MC43MiAzLjIxIC02MiA0IGMgLTE1Ljc2IDAuNTggLTQ0LjU1IDAuNDQgLTQ2IDAgYyAtMC43NiAtMC4yMyAxNS4xNCAtNS41OSAyMyAtNyBjIDIxLjc4IC0zLjkyIDQzLjg2IC02LjIzIDY2IC05IGwgNiAwIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 21:12:11\"}],\"documents\":[],\"expenses\":[]}',5,0.00,1.00,NULL,'183.171.71.242',0,NULL,''),(198,'2019-07-14 13:15:57','2019-07-14 13:15:57',1,2,4,NULL,NULL,22,NULL,NULL,NULL,NULL,9,-1.00,0.00,NULL,'183.171.71.242',0,NULL,''),(199,'2019-07-14 13:16:25','2019-07-14 13:16:25',1,2,4,NULL,NULL,23,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'183.171.71.242',0,NULL,''),(200,'2019-07-14 13:16:47','2019-07-14 13:16:48',1,2,4,NULL,NULL,23,NULL,NULL,NULL,'{\"invoice_number\":\"0021\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,1.00,1.00,NULL,'183.171.71.242',0,NULL,''),(201,'2019-07-14 13:17:41','2019-07-14 13:17:41',1,2,4,NULL,NULL,23,NULL,NULL,NULL,'{\"invoice_number\":\"0021\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjk2IiBoZWlnaHQ9IjkwIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA4MSBjIDAuMTIgLTAuMyA0LjM4IC0xMS4zNyA3IC0xNyBjIDEuNzggLTMuODQgMy41OSAtNy42NCA2IC0xMSBjIDUuMiAtNy4yNCAxMC4zOCAtMTYuMDEgMTcgLTIxIGMgMTEuMTggLTguNDQgMjYuMzQgLTE2LjAxIDQwIC0yMiBjIDEwLjMyIC00LjUyIDIyLjI5IC05LjY4IDMzIC0xMCBjIDMyLjA1IC0wLjk0IDc5LjIxIDIuNDcgMTAzIDYgYyAyLjU4IDAuMzggNC4wMSA2LjY5IDUgMTAgYyAwLjg5IDIuOTggMC44NSA2LjYgMSAxMCBjIDAuMTkgNC40IDAuNDggOC44MSAwIDEzIGMgLTAuNSA0LjMgLTAuNjYgMTAuMiAtMyAxMyBjIC00Ljg3IDUuODQgLTE0LjIgMTIuODMgLTIyIDE3IGMgLTEwLjgzIDUuNzkgLTIzLjkxIDEwLjk0IC0zNiAxNCBjIC0xMi4zMSAzLjEyIC0yNS44MyA0LjA1IC0zOSA1IGMgLTEwLjA1IDAuNzMgLTE5Ljc2IDAuMzcgLTMwIDAgYyAtOC45IC0wLjMyIC0xOC4yNCAtMC4wNiAtMjYgLTIgYyAtNS45OSAtMS41IC0xMi4zNiAtNS43MSAtMTggLTkgYyAtMi4xOSAtMS4yOCAtNC45MiAtMy4wOCAtNiAtNSBjIC0xLjU4IC0yLjggLTIuNDYgLTcuMzkgLTMgLTExIGMgLTAuNDMgLTIuODUgLTAuOTYgLTYuNzIgMCAtOSBjIDEuMzcgLTMuMjQgNC44MSAtOCA4IC0xMCBjIDYuNDkgLTQuMDUgMTUuNzYgLTcuODYgMjQgLTEwIGMgMTguMzkgLTQuNzcgMzcuNjYgLTguNTggNTcgLTExIGMgMjEuMDQgLTIuNjMgNDEuMzYgLTMuMzIgNjMgLTQgYyAyMS45NCAtMC42OSA0Mi42IC0wLjkyIDY0IDAgYyA5Ljc5IDAuNDIgMTkuOTIgMS43OCAyOSA0IGMgNS40MiAxLjMyIDEwLjkzIDQuNDcgMTYgNyBjIDEuNDUgMC43MyAzLjY0IDEuODIgNCAzIGMgMC43MyAyLjM2IDAuODggNy4zNiAwIDEwIGMgLTAuODggMi42NCAtMy42MSA2LjA0IC02IDggYyAtNC41MSAzLjY5IC0xMC41MSA3LjcxIC0xNiAxMCBjIC02IDIuNSAtMTMuMjQgMy4wNCAtMjAgNSBjIC02LjIyIDEuOCAtMTEuOTIgNC40MyAtMTggNiBsIC0xMyAyIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 21:17:40\"}],\"documents\":[],\"expenses\":[]}',5,2.12,3.12,NULL,'183.171.71.242',0,NULL,''),(202,'2019-07-14 13:21:30','2019-07-14 13:21:30',1,2,4,9,10,23,NULL,29,NULL,'{\"invoice_number\":\"0021\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.12\",\"balance\":0,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.1200\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":4,\"discount\":\"0.00\"}],\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjk2IiBoZWlnaHQ9IjkwIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA4MSBjIDAuMTIgLTAuMyA0LjM4IC0xMS4zNyA3IC0xNyBjIDEuNzggLTMuODQgMy41OSAtNy42NCA2IC0xMSBjIDUuMiAtNy4yNCAxMC4zOCAtMTYuMDEgMTcgLTIxIGMgMTEuMTggLTguNDQgMjYuMzQgLTE2LjAxIDQwIC0yMiBjIDEwLjMyIC00LjUyIDIyLjI5IC05LjY4IDMzIC0xMCBjIDMyLjA1IC0wLjk0IDc5LjIxIDIuNDcgMTAzIDYgYyAyLjU4IDAuMzggNC4wMSA2LjY5IDUgMTAgYyAwLjg5IDIuOTggMC44NSA2LjYgMSAxMCBjIDAuMTkgNC40IDAuNDggOC44MSAwIDEzIGMgLTAuNSA0LjMgLTAuNjYgMTAuMiAtMyAxMyBjIC00Ljg3IDUuODQgLTE0LjIgMTIuODMgLTIyIDE3IGMgLTEwLjgzIDUuNzkgLTIzLjkxIDEwLjk0IC0zNiAxNCBjIC0xMi4zMSAzLjEyIC0yNS44MyA0LjA1IC0zOSA1IGMgLTEwLjA1IDAuNzMgLTE5Ljc2IDAuMzcgLTMwIDAgYyAtOC45IC0wLjMyIC0xOC4yNCAtMC4wNiAtMjYgLTIgYyAtNS45OSAtMS41IC0xMi4zNiAtNS43MSAtMTggLTkgYyAtMi4xOSAtMS4yOCAtNC45MiAtMy4wOCAtNiAtNSBjIC0xLjU4IC0yLjggLTIuNDYgLTcuMzkgLTMgLTExIGMgLTAuNDMgLTIuODUgLTAuOTYgLTYuNzIgMCAtOSBjIDEuMzcgLTMuMjQgNC44MSAtOCA4IC0xMCBjIDYuNDkgLTQuMDUgMTUuNzYgLTcuODYgMjQgLTEwIGMgMTguMzkgLTQuNzcgMzcuNjYgLTguNTggNTcgLTExIGMgMjEuMDQgLTIuNjMgNDEuMzYgLTMuMzIgNjMgLTQgYyAyMS45NCAtMC42OSA0Mi42IC0wLjkyIDY0IDAgYyA5Ljc5IDAuNDIgMTkuOTIgMS43OCAyOSA0IGMgNS40MiAxLjMyIDEwLjkzIDQuNDcgMTYgNyBjIDEuNDUgMC43MyAzLjY0IDEuODIgNCAzIGMgMC43MyAyLjM2IDAuODggNy4zNiAwIDEwIGMgLTAuODggMi42NCAtMy42MSA2LjA0IC02IDggYyAtNC41MSAzLjY5IC0xMC41MSA3LjcxIC0xNiAxMCBjIC02IDIuNSAtMTMuMjQgMy4wNCAtMjAgNSBjIC02LjIyIDEuOCAtMTEuOTIgNC40MyAtMTggNiBsIC0xMyAyIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 21:17:40\"}],\"documents\":[],\"expenses\":[]}',10,-3.12,0.00,NULL,'183.171.71.242',0,NULL,''),(203,'2019-07-14 13:21:30','2019-07-14 13:21:30',1,2,4,NULL,NULL,23,NULL,NULL,NULL,'{\"invoice_number\":\"0021\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.12\",\"balance\":\"3.12\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.1200\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjk2IiBoZWlnaHQ9IjkwIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA4MSBjIDAuMTIgLTAuMyA0LjM4IC0xMS4zNyA3IC0xNyBjIDEuNzggLTMuODQgMy41OSAtNy42NCA2IC0xMSBjIDUuMiAtNy4yNCAxMC4zOCAtMTYuMDEgMTcgLTIxIGMgMTEuMTggLTguNDQgMjYuMzQgLTE2LjAxIDQwIC0yMiBjIDEwLjMyIC00LjUyIDIyLjI5IC05LjY4IDMzIC0xMCBjIDMyLjA1IC0wLjk0IDc5LjIxIDIuNDcgMTAzIDYgYyAyLjU4IDAuMzggNC4wMSA2LjY5IDUgMTAgYyAwLjg5IDIuOTggMC44NSA2LjYgMSAxMCBjIDAuMTkgNC40IDAuNDggOC44MSAwIDEzIGMgLTAuNSA0LjMgLTAuNjYgMTAuMiAtMyAxMyBjIC00Ljg3IDUuODQgLTE0LjIgMTIuODMgLTIyIDE3IGMgLTEwLjgzIDUuNzkgLTIzLjkxIDEwLjk0IC0zNiAxNCBjIC0xMi4zMSAzLjEyIC0yNS44MyA0LjA1IC0zOSA1IGMgLTEwLjA1IDAuNzMgLTE5Ljc2IDAuMzcgLTMwIDAgYyAtOC45IC0wLjMyIC0xOC4yNCAtMC4wNiAtMjYgLTIgYyAtNS45OSAtMS41IC0xMi4zNiAtNS43MSAtMTggLTkgYyAtMi4xOSAtMS4yOCAtNC45MiAtMy4wOCAtNiAtNSBjIC0xLjU4IC0yLjggLTIuNDYgLTcuMzkgLTMgLTExIGMgLTAuNDMgLTIuODUgLTAuOTYgLTYuNzIgMCAtOSBjIDEuMzcgLTMuMjQgNC44MSAtOCA4IC0xMCBjIDYuNDkgLTQuMDUgMTUuNzYgLTcuODYgMjQgLTEwIGMgMTguMzkgLTQuNzcgMzcuNjYgLTguNTggNTcgLTExIGMgMjEuMDQgLTIuNjMgNDEuMzYgLTMuMzIgNjMgLTQgYyAyMS45NCAtMC42OSA0Mi42IC0wLjkyIDY0IDAgYyA5Ljc5IDAuNDIgMTkuOTIgMS43OCAyOSA0IGMgNS40MiAxLjMyIDEwLjkzIDQuNDcgMTYgNyBjIDEuNDUgMC43MyAzLjY0IDEuODIgNCAzIGMgMC43MyAyLjM2IDAuODggNy4zNiAwIDEwIGMgLTAuODggMi42NCAtMy42MSA2LjA0IC02IDggYyAtNC41MSAzLjY5IC0xMC41MSA3LjcxIC0xNiAxMCBjIC02IDIuNSAtMTMuMjQgMy4wNCAtMjAgNSBjIC02LjIyIDEuOCAtMTEuOTIgNC40MyAtMTggNiBsIC0xMyAyIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 21:17:40\"}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.71.242',0,NULL,''),(204,'2019-07-14 13:27:42','2019-07-14 13:27:42',1,1,4,9,10,23,NULL,29,NULL,NULL,40,3.12,3.12,NULL,'183.171.71.242',0,NULL,''),(205,'2019-07-14 13:27:42','2019-07-14 13:27:42',1,1,4,NULL,NULL,23,NULL,NULL,NULL,'{\"invoice_number\":\"0021\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.12\",\"balance\":\"0.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.1200\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"4\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.12\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjk2IiBoZWlnaHQ9IjkwIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA4MSBjIDAuMTIgLTAuMyA0LjM4IC0xMS4zNyA3IC0xNyBjIDEuNzggLTMuODQgMy41OSAtNy42NCA2IC0xMSBjIDUuMiAtNy4yNCAxMC4zOCAtMTYuMDEgMTcgLTIxIGMgMTEuMTggLTguNDQgMjYuMzQgLTE2LjAxIDQwIC0yMiBjIDEwLjMyIC00LjUyIDIyLjI5IC05LjY4IDMzIC0xMCBjIDMyLjA1IC0wLjk0IDc5LjIxIDIuNDcgMTAzIDYgYyAyLjU4IDAuMzggNC4wMSA2LjY5IDUgMTAgYyAwLjg5IDIuOTggMC44NSA2LjYgMSAxMCBjIDAuMTkgNC40IDAuNDggOC44MSAwIDEzIGMgLTAuNSA0LjMgLTAuNjYgMTAuMiAtMyAxMyBjIC00Ljg3IDUuODQgLTE0LjIgMTIuODMgLTIyIDE3IGMgLTEwLjgzIDUuNzkgLTIzLjkxIDEwLjk0IC0zNiAxNCBjIC0xMi4zMSAzLjEyIC0yNS44MyA0LjA1IC0zOSA1IGMgLTEwLjA1IDAuNzMgLTE5Ljc2IDAuMzcgLTMwIDAgYyAtOC45IC0wLjMyIC0xOC4yNCAtMC4wNiAtMjYgLTIgYyAtNS45OSAtMS41IC0xMi4zNiAtNS43MSAtMTggLTkgYyAtMi4xOSAtMS4yOCAtNC45MiAtMy4wOCAtNiAtNSBjIC0xLjU4IC0yLjggLTIuNDYgLTcuMzkgLTMgLTExIGMgLTAuNDMgLTIuODUgLTAuOTYgLTYuNzIgMCAtOSBjIDEuMzcgLTMuMjQgNC44MSAtOCA4IC0xMCBjIDYuNDkgLTQuMDUgMTUuNzYgLTcuODYgMjQgLTEwIGMgMTguMzkgLTQuNzcgMzcuNjYgLTguNTggNTcgLTExIGMgMjEuMDQgLTIuNjMgNDEuMzYgLTMuMzIgNjMgLTQgYyAyMS45NCAtMC42OSA0Mi42IC0wLjkyIDY0IDAgYyA5Ljc5IDAuNDIgMTkuOTIgMS43OCAyOSA0IGMgNS40MiAxLjMyIDEwLjkzIDQuNDcgMTYgNyBjIDEuNDUgMC43MyAzLjY0IDEuODIgNCAzIGMgMC43MyAyLjM2IDAuODggNy4zNiAwIDEwIGMgLTAuODggMi42NCAtMy42MSA2LjA0IC02IDggYyAtNC41MSAzLjY5IC0xMC41MSA3LjcxIC0xNiAxMCBjIC02IDIuNSAtMTMuMjQgMy4wNCAtMjAgNSBjIC02LjIyIDEuOCAtMTEuOTIgNC40MyAtMTggNiBsIC0xMyAyIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 21:17:40\"}],\"documents\":[],\"expenses\":[]}',5,0.00,3.12,NULL,'183.171.71.242',0,NULL,''),(206,'2019-07-14 13:27:54','2019-07-14 13:27:54',1,1,4,9,10,23,NULL,29,NULL,NULL,13,0.00,3.12,NULL,'183.171.71.242',0,NULL,''),(207,'2019-07-14 13:28:05','2019-07-14 13:28:05',1,1,4,NULL,NULL,23,NULL,NULL,NULL,'{\"invoice_number\":\"0021\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.12\",\"balance\":\"3.12\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.1200\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"4\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.12\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"0\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjk2IiBoZWlnaHQ9IjkwIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA4MSBjIDAuMTIgLTAuMyA0LjM4IC0xMS4zNyA3IC0xNyBjIDEuNzggLTMuODQgMy41OSAtNy42NCA2IC0xMSBjIDUuMiAtNy4yNCAxMC4zOCAtMTYuMDEgMTcgLTIxIGMgMTEuMTggLTguNDQgMjYuMzQgLTE2LjAxIDQwIC0yMiBjIDEwLjMyIC00LjUyIDIyLjI5IC05LjY4IDMzIC0xMCBjIDMyLjA1IC0wLjk0IDc5LjIxIDIuNDcgMTAzIDYgYyAyLjU4IDAuMzggNC4wMSA2LjY5IDUgMTAgYyAwLjg5IDIuOTggMC44NSA2LjYgMSAxMCBjIDAuMTkgNC40IDAuNDggOC44MSAwIDEzIGMgLTAuNSA0LjMgLTAuNjYgMTAuMiAtMyAxMyBjIC00Ljg3IDUuODQgLTE0LjIgMTIuODMgLTIyIDE3IGMgLTEwLjgzIDUuNzkgLTIzLjkxIDEwLjk0IC0zNiAxNCBjIC0xMi4zMSAzLjEyIC0yNS44MyA0LjA1IC0zOSA1IGMgLTEwLjA1IDAuNzMgLTE5Ljc2IDAuMzcgLTMwIDAgYyAtOC45IC0wLjMyIC0xOC4yNCAtMC4wNiAtMjYgLTIgYyAtNS45OSAtMS41IC0xMi4zNiAtNS43MSAtMTggLTkgYyAtMi4xOSAtMS4yOCAtNC45MiAtMy4wOCAtNiAtNSBjIC0xLjU4IC0yLjggLTIuNDYgLTcuMzkgLTMgLTExIGMgLTAuNDMgLTIuODUgLTAuOTYgLTYuNzIgMCAtOSBjIDEuMzcgLTMuMjQgNC44MSAtOCA4IC0xMCBjIDYuNDkgLTQuMDUgMTUuNzYgLTcuODYgMjQgLTEwIGMgMTguMzkgLTQuNzcgMzcuNjYgLTguNTggNTcgLTExIGMgMjEuMDQgLTIuNjMgNDEuMzYgLTMuMzIgNjMgLTQgYyAyMS45NCAtMC42OSA0Mi42IC0wLjkyIDY0IDAgYyA5Ljc5IDAuNDIgMTkuOTIgMS43OCAyOSA0IGMgNS40MiAxLjMyIDEwLjkzIDQuNDcgMTYgNyBjIDEuNDUgMC43MyAzLjY0IDEuODIgNCAzIGMgMC43MyAyLjM2IDAuODggNy4zNiAwIDEwIGMgLTAuODggMi42NCAtMy42MSA2LjA0IC02IDggYyAtNC41MSAzLjY5IC0xMC41MSA3LjcxIC0xNiAxMCBjIC02IDIuNSAtMTMuMjQgMy4wNCAtMjAgNSBjIC02LjIyIDEuOCAtMTEuOTIgNC40MyAtMTggNiBsIC0xMyAyIi8+PC9zdmc+\",\"signature_date\":\"2019-07-13 21:17:40\"}],\"documents\":[],\"expenses\":[]}',5,0.00,3.12,NULL,'183.171.71.242',0,NULL,''),(208,'2019-07-14 13:28:06','2019-07-14 13:28:06',1,1,4,NULL,NULL,23,NULL,NULL,NULL,NULL,9,-3.12,0.00,NULL,'183.171.71.242',0,NULL,''),(209,'2019-07-15 04:45:48','2019-07-15 04:45:48',1,1,4,NULL,NULL,24,NULL,NULL,NULL,NULL,4,5.00,5.00,NULL,'183.171.68.38',0,NULL,''),(210,'2019-07-15 04:58:41','2019-07-15 04:58:41',1,1,4,NULL,NULL,24,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873546\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"5.00\",\"balance\":\"5.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"5.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNTA2IiBoZWlnaHQ9IjExNCI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDExMiA0NSBjIC0wLjQyIDAuMzIgLTE1LjU0IDEyLjAxIC0yNCAxOCBjIC0xNi40MiAxMS42MyAtMzEuMzQgMjIuNTkgLTQ4IDMzIGMgLTEwLjM2IDYuNDggLTI4LjYxIDIwLjQ4IC0zMiAxNyBjIC01LjM4IC01LjUyIC05LjUzIC00My42MiAtNyAtNTcgYyAxLjE5IC02LjMgMTMuNjMgLTExLjQ3IDIxIC0xNyBjIDYuMjggLTQuNzEgMTIuMyAtOS4zOSAxOSAtMTMgYyAxMC41NSAtNS42OCAyMS44NSAtMTMuMjIgMzMgLTE1IGMgMzguMjYgLTYuMDkgODYuMzYgLTkuNzUgMTI0IC0xMCBjIDguMDQgLTAuMDUgMTYuMzkgNi40NSAyNSA5IGMgOS42NiAyLjg2IDE5LjQxIDQgMjkgNyBjIDEyIDMuNzUgMjMuMDUgOC4zMiAzNSAxMyBjIDUuNTkgMi4xOSAxMC45NiA0LjI5IDE2IDcgYyAzLjUyIDEuOSA3LjA0IDQuNDQgMTAgNyBjIDEuODkgMS42NCA0LjI4IDMuOTkgNSA2IGMgMC43MyAyLjA1IDAuNTMgNS42IDAgOCBjIC0wLjcyIDMuMjMgLTEuNjcgOC4yIC00IDEwIGMgLTcuNjUgNS45IC0yMC4zOSAxMy4zOCAtMzEgMTcgYyAtMTQuNzEgNS4wMyAtMzEuNyA3LjQ4IC00OCAxMCBjIC0xMi4wMSAxLjg2IC0yMy43IDIuNDggLTM2IDMgYyAtMTEuOTIgMC41IC0yMy4zIDAuODEgLTM1IDAgYyAtMTIuNDggLTAuODcgLTI0LjY5IC0yLjcxIC0zNyAtNSBjIC03LjUyIC0xLjQgLTIwLjYxIC0xLjkzIC0yMiAtNiBjIC0yLjUyIC03LjM5IDEuNzUgLTI5LjY2IDYgLTQxIGMgMyAtNy45OSAxMC42MSAtMjAuMjkgMTggLTIzIGMgMjMuNDMgLTguNiA4Ny4xMyAtMTcuNTEgOTEgLTE3IGMgMS44OCAwLjI1IC0yNS4zNCAxNS4yOSAtMzggMjQgYyAtMTQuNzEgMTAuMTEgLTM5LjE3IDI4LjYzIC00MiAzMSBjIC0wLjI3IDAuMjMgMy40MyAwLjM4IDUgMCBjIDMzLjMgLTguMDIgNjguNzkgLTE5LjIxIDEwMyAtMjYgYyAxMi4yNSAtMi40MyAyNi43MyAtMy44IDM4IC0yIGMgOS45NiAxLjU5IDIxLjA3IDguMTUgMzEgMTMgYyA0LjI2IDIuMDggOC42OCA1LjA5IDEyIDggYyAxLjY2IDEuNDUgMy43MiA0LjE5IDQgNiBjIDAuMjggMS44MiAtMC44OSA1LjQxIC0yIDcgYyAtMC44OSAxLjI3IC0zLjMgMi41NSAtNSAzIGMgLTIuOTIgMC43OCAtNi43NSAxLjIgLTEwIDEgYyAtNy41MSAtMC40NiAtMTUuNzMgLTEuMjggLTIzIC0zIGMgLTUuMDYgLTEuMiAtMTAuMjQgLTMuNjIgLTE1IC02IGMgLTMuODQgLTEuOTIgLTcuMTMgLTQuOTQgLTExIC03IGMgLTYuMjQgLTMuMzMgLTEyLjM0IC02LjA5IC0xOSAtOSBjIC0yMSAtOS4xOSAtNTYuNTYgLTIzLjAxIC02MSAtMjYgYyAtMS4wNiAtMC43MSA5Ljg1IC0zLjc0IDE1IC01IGMgOC42MyAtMi4xIDE3LjM4IC00LjUgMjYgLTUgYyAxNC4wMSAtMC44MSAyOS43IC0xLjI4IDQzIDEgYyAxMC44NiAxLjg2IDIzLjI2IDYuNiAzMyAxMiBjIDExLjEgNi4xNSAyMy4wMiAxNS43MSAzMiAyNCBjIDMuMTIgMi44OCA1Ljk4IDguMDggNyAxMiBjIDEuMSA0LjIzIDEuNzcgMTEuNzEgMCAxNSBjIC0yLjEgMy45MSAtOC45OCA3Ljk5IC0xNCAxMSBjIC05Ljg0IDUuOSAtMjAuNDIgMTEuODQgLTMxIDE2IGMgLTkuNDIgMy43MSAtMTkuODYgNi40MiAtMzAgOCBjIC0xNS40IDIuNCAtMzAuOTYgMy4yIC00NyA0IGMgLTExLjIyIDAuNTYgLTIyLjkxIDIuNTcgLTMzIDAgYyAtNDEuMDkgLTEwLjQ2IC04NC41NSAtMjguMjggLTEyOCAtNDEgYyAtMTEuODYgLTMuNDcgLTM0LjI4IC01LjU4IC0zNiAtNyBjIC0wLjk1IC0wLjc4IDEyLjM4IC01LjA4IDE5IC03IGMgMzMuMjUgLTkuNjYgNjQuNTYgLTE5LjMxIDk4IC0yNyBjIDIwLjk5IC00LjgyIDQxLjgzIC04LjcgNjMgLTEwIGMgMzMuMTggLTIuMDQgNjYuMDMgLTEuODQgMTAwIDAgYyA1My44OCAyLjkyIDEwMy43OCA5Ljk1IDE1OCAxNCBjIDE0LjcgMS4xIDQzLjg2IDAuNjEgNDMgMSBjIC0xLjUgMC42OCAtNDkuMTUgMTEuMjUgLTc0IDEzIGMgLTQxLjM0IDIuOTEgLTgxLjk5IDEuMjUgLTEyNSAxIGMgLTE1LjE1IC0wLjA5IC0yOS4yOCAtMC4zOCAtNDQgLTIgYyAtMTUuOTQgLTEuNzUgLTMwLjczIC01LjU3IC00NyAtOCBjIC0xMy43NiAtMi4wNiAtMjcuODUgLTIuMzggLTQwIC01IGwgLTExIC02Ii8+PC9zdmc+\",\"signature_date\":\"2019-07-14 12:58:40\"}],\"documents\":[],\"expenses\":[]}',5,2.38,7.38,NULL,'183.171.68.38',0,NULL,''),(211,'2019-07-15 04:59:46','2019-07-15 04:59:46',1,1,4,NULL,NULL,24,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873546\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"7.38\",\"balance\":\"7.38\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.3800\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"7.38\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDEwIiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDM0IDcyIGMgLTAuNDIgMC4wMiAtMTcuMTEgMS44MyAtMjQgMSBjIC0yLjk1IC0wLjM2IC04LjM4IC0yLjc1IC05IC01IGMgLTEuNDUgLTUuMjUgLTIuMjQgLTE4LjU3IDEgLTI0IGMgNS41MyAtOS4yOCAxOS41OCAtMTguNjIgMzAgLTI4IGMgMy4yNSAtMi45MyA2LjQ2IC01LjU0IDEwIC04IGMgNC4yMSAtMi45MyA4LjcgLTggMTMgLTggYyAzNS41NCAwIDg2Ljk5IDEuMTIgMTI2IDggYyAyMC4zNyAzLjU5IDU4IDIzLjAzIDYxIDI1IGMgMC45MSAwLjYgLTEzLjMgMS4wOCAtMjAgMiBjIC0zLjA4IDAuNDIgLTYuMSAwLjk1IC05IDIgYyAtMjQuODYgOC45OCAtNDguOTQgMjAuOTkgLTc0IDI4IGMgLTIyLjE4IDYuMiAtNDYuMDIgOS4wNCAtNjkgMTIgYyAtNy44NyAxLjAyIC0xNi40OCAwLjUgLTI0IDAgYyAtMS45OCAtMC4xMyAtNC45OCAtMC44NiAtNiAtMiBjIC0xLjE3IC0xLjMyIC0xLjY2IC00LjY0IC0yIC03IGMgLTAuNjUgLTQuNTQgLTEuNzMgLTEwLjM2IC0xIC0xNCBjIDAuNDEgLTIuMDMgMi45NSAtNC44OSA1IC02IGMgOS43NyAtNS4yNiAyMi4yNSAtMTAuNDEgMzQgLTE1IGMgMTAgLTMuOTEgMTkuNjIgLTYuOTEgMzAgLTEwIGMgOS4xNSAtMi43MyAxOC4wNiAtNi4yMSAyNyAtNyBjIDE2LjY3IC0xLjQ4IDM1LjgzIC0xLjIyIDUyIDAgYyA0LjYyIDAuMzUgMTAuMzYgMi4zNCAxNCA1IGMgNy44IDUuNjkgMTkuNDUgMTYuMjEgMjMgMjIgYyAxLjEgMS43OSAtMS44OCA3LjMxIC00IDkgYyAtNS4xIDQuMDggLTEzLjY3IDguMjUgLTIxIDExIGMgLTE2LjUyIDYuMiAtMzMuNDQgMTEuMSAtNTEgMTYgYyAtMTEuOCAzLjI5IC0yMy4yOCA2LjA1IC0zNSA4IGMgLTYuMjEgMS4wMyAtMTkuMzIgMS4xIC0xOSAxIGMgMC40OSAtMC4xNSAxOS4wMSAtMi45MSAyOSAtNCBjIDguOSAtMC45NyAxNy4wNSAtMS42NiAyNiAtMiBjIDE4LjIgLTAuNjkgMzUuNiAtMi4zMSA1MyAtMSBjIDE3LjY0IDEuMzMgMzQuOCA1LjU5IDUzIDkgYyA5LjM2IDEuNzYgMTguMzEgMy4zNyAyNyA2IGMgNS40OSAxLjY2IDE2LjY2IDYuNjcgMTYgNyBjIC0xLjA1IDAuNTMgLTE4LjYzIC0wLjA1IC0yOCAtMSBjIC0xMC41IC0xLjA3IC0yMC4yOCAtMy44IC0zMSAtNSBjIC01MC40NCAtNS42NyAtOTcuMzUgLTkuMzIgLTE0NyAtMTUgYyAtNi41MiAtMC43NSAtMTMuMDEgLTEuODYgLTE5IC00IGMgLTEyLjQ0IC00LjQ0IC0zNC4wOCAtMTMuNjQgLTM3IC0xNiBjIC0wLjg3IC0wLjcxIDcuMjEgLTMuODIgMTEgLTUgYyA2Ljc3IC0yLjEyIDEzLjggLTQuMSAyMSAtNSBjIDQ5LjMxIC02LjE2IDk2LjMgLTExLjczIDE0NyAtMTYgYyA0My4yNyAtMy42NSA4Mi42NCAtNS40MiAxMjYgLTcgYyAyMi42OCAtMC44MyA0NC43IC0wLjMgNjYgMCBjIDEuMzMgMC4wMiA0LjExIDAuOTkgNCAxIGMgLTAuNTcgMC4wMyAtMTMuOCAtMC4zNCAtMjEgMCBjIC0yOC44NiAxLjM3IC01NS4yMSAyLjQ4IC04NCA1IGMgLTI2LjE5IDIuMjkgLTQ5Ljg3IDUuMzUgLTc2IDkgYyAtMjAuNzcgMi45IC0zOS4yOSA2Ljg3IC02MCAxMCBjIC04LjkxIDEuMzUgLTE3LjE4IDIuNjIgLTI2IDMgYyAtMTQuNDkgMC42MyAtMjguNzIgLTAuNjkgLTQzIDAgYyAtNi4zOSAwLjMxIC0xMi42MiAyLjUgLTE5IDMgbCAtMTkgMCIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-14 12:59:45\"}],\"documents\":[],\"expenses\":[]}',5,-2.38,5.00,NULL,'183.171.68.38',0,NULL,''),(212,'2019-07-15 04:59:46','2019-07-15 04:59:46',1,1,4,NULL,NULL,24,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873546\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"5.00\",\"balance\":\"5.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"5.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDEwIiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDM0IDcyIGMgLTAuNDIgMC4wMiAtMTcuMTEgMS44MyAtMjQgMSBjIC0yLjk1IC0wLjM2IC04LjM4IC0yLjc1IC05IC01IGMgLTEuNDUgLTUuMjUgLTIuMjQgLTE4LjU3IDEgLTI0IGMgNS41MyAtOS4yOCAxOS41OCAtMTguNjIgMzAgLTI4IGMgMy4yNSAtMi45MyA2LjQ2IC01LjU0IDEwIC04IGMgNC4yMSAtMi45MyA4LjcgLTggMTMgLTggYyAzNS41NCAwIDg2Ljk5IDEuMTIgMTI2IDggYyAyMC4zNyAzLjU5IDU4IDIzLjAzIDYxIDI1IGMgMC45MSAwLjYgLTEzLjMgMS4wOCAtMjAgMiBjIC0zLjA4IDAuNDIgLTYuMSAwLjk1IC05IDIgYyAtMjQuODYgOC45OCAtNDguOTQgMjAuOTkgLTc0IDI4IGMgLTIyLjE4IDYuMiAtNDYuMDIgOS4wNCAtNjkgMTIgYyAtNy44NyAxLjAyIC0xNi40OCAwLjUgLTI0IDAgYyAtMS45OCAtMC4xMyAtNC45OCAtMC44NiAtNiAtMiBjIC0xLjE3IC0xLjMyIC0xLjY2IC00LjY0IC0yIC03IGMgLTAuNjUgLTQuNTQgLTEuNzMgLTEwLjM2IC0xIC0xNCBjIDAuNDEgLTIuMDMgMi45NSAtNC44OSA1IC02IGMgOS43NyAtNS4yNiAyMi4yNSAtMTAuNDEgMzQgLTE1IGMgMTAgLTMuOTEgMTkuNjIgLTYuOTEgMzAgLTEwIGMgOS4xNSAtMi43MyAxOC4wNiAtNi4yMSAyNyAtNyBjIDE2LjY3IC0xLjQ4IDM1LjgzIC0xLjIyIDUyIDAgYyA0LjYyIDAuMzUgMTAuMzYgMi4zNCAxNCA1IGMgNy44IDUuNjkgMTkuNDUgMTYuMjEgMjMgMjIgYyAxLjEgMS43OSAtMS44OCA3LjMxIC00IDkgYyAtNS4xIDQuMDggLTEzLjY3IDguMjUgLTIxIDExIGMgLTE2LjUyIDYuMiAtMzMuNDQgMTEuMSAtNTEgMTYgYyAtMTEuOCAzLjI5IC0yMy4yOCA2LjA1IC0zNSA4IGMgLTYuMjEgMS4wMyAtMTkuMzIgMS4xIC0xOSAxIGMgMC40OSAtMC4xNSAxOS4wMSAtMi45MSAyOSAtNCBjIDguOSAtMC45NyAxNy4wNSAtMS42NiAyNiAtMiBjIDE4LjIgLTAuNjkgMzUuNiAtMi4zMSA1MyAtMSBjIDE3LjY0IDEuMzMgMzQuOCA1LjU5IDUzIDkgYyA5LjM2IDEuNzYgMTguMzEgMy4zNyAyNyA2IGMgNS40OSAxLjY2IDE2LjY2IDYuNjcgMTYgNyBjIC0xLjA1IDAuNTMgLTE4LjYzIC0wLjA1IC0yOCAtMSBjIC0xMC41IC0xLjA3IC0yMC4yOCAtMy44IC0zMSAtNSBjIC01MC40NCAtNS42NyAtOTcuMzUgLTkuMzIgLTE0NyAtMTUgYyAtNi41MiAtMC43NSAtMTMuMDEgLTEuODYgLTE5IC00IGMgLTEyLjQ0IC00LjQ0IC0zNC4wOCAtMTMuNjQgLTM3IC0xNiBjIC0wLjg3IC0wLjcxIDcuMjEgLTMuODIgMTEgLTUgYyA2Ljc3IC0yLjEyIDEzLjggLTQuMSAyMSAtNSBjIDQ5LjMxIC02LjE2IDk2LjMgLTExLjczIDE0NyAtMTYgYyA0My4yNyAtMy42NSA4Mi42NCAtNS40MiAxMjYgLTcgYyAyMi42OCAtMC44MyA0NC43IC0wLjMgNjYgMCBjIDEuMzMgMC4wMiA0LjExIDAuOTkgNCAxIGMgLTAuNTcgMC4wMyAtMTMuOCAtMC4zNCAtMjEgMCBjIC0yOC44NiAxLjM3IC01NS4yMSAyLjQ4IC04NCA1IGMgLTI2LjE5IDIuMjkgLTQ5Ljg3IDUuMzUgLTc2IDkgYyAtMjAuNzcgMi45IC0zOS4yOSA2Ljg3IC02MCAxMCBjIC04LjkxIDEuMzUgLTE3LjE4IDIuNjIgLTI2IDMgYyAtMTQuNDkgMC42MyAtMjguNzIgLTAuNjkgLTQzIDAgYyAtNi4zOSAwLjMxIC0xMi42MiAyLjUgLTE5IDMgbCAtMTkgMCIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-14 12:59:45\"}],\"documents\":[],\"expenses\":[]}',5,2.28,7.28,NULL,'183.171.68.38',0,NULL,''),(213,'2019-07-15 05:01:08','2019-07-15 05:01:08',1,1,4,NULL,NULL,24,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873546\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-14\",\"due_date\":\"2019-07-15\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"7.28\",\"balance\":\"7.28\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 14-July-2019\",\"cost\":\"2.2800\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"7.28\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDEwIiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDM0IDcyIGMgLTAuNDIgMC4wMiAtMTcuMTEgMS44MyAtMjQgMSBjIC0yLjk1IC0wLjM2IC04LjM4IC0yLjc1IC05IC01IGMgLTEuNDUgLTUuMjUgLTIuMjQgLTE4LjU3IDEgLTI0IGMgNS41MyAtOS4yOCAxOS41OCAtMTguNjIgMzAgLTI4IGMgMy4yNSAtMi45MyA2LjQ2IC01LjU0IDEwIC04IGMgNC4yMSAtMi45MyA4LjcgLTggMTMgLTggYyAzNS41NCAwIDg2Ljk5IDEuMTIgMTI2IDggYyAyMC4zNyAzLjU5IDU4IDIzLjAzIDYxIDI1IGMgMC45MSAwLjYgLTEzLjMgMS4wOCAtMjAgMiBjIC0zLjA4IDAuNDIgLTYuMSAwLjk1IC05IDIgYyAtMjQuODYgOC45OCAtNDguOTQgMjAuOTkgLTc0IDI4IGMgLTIyLjE4IDYuMiAtNDYuMDIgOS4wNCAtNjkgMTIgYyAtNy44NyAxLjAyIC0xNi40OCAwLjUgLTI0IDAgYyAtMS45OCAtMC4xMyAtNC45OCAtMC44NiAtNiAtMiBjIC0xLjE3IC0xLjMyIC0xLjY2IC00LjY0IC0yIC03IGMgLTAuNjUgLTQuNTQgLTEuNzMgLTEwLjM2IC0xIC0xNCBjIDAuNDEgLTIuMDMgMi45NSAtNC44OSA1IC02IGMgOS43NyAtNS4yNiAyMi4yNSAtMTAuNDEgMzQgLTE1IGMgMTAgLTMuOTEgMTkuNjIgLTYuOTEgMzAgLTEwIGMgOS4xNSAtMi43MyAxOC4wNiAtNi4yMSAyNyAtNyBjIDE2LjY3IC0xLjQ4IDM1LjgzIC0xLjIyIDUyIDAgYyA0LjYyIDAuMzUgMTAuMzYgMi4zNCAxNCA1IGMgNy44IDUuNjkgMTkuNDUgMTYuMjEgMjMgMjIgYyAxLjEgMS43OSAtMS44OCA3LjMxIC00IDkgYyAtNS4xIDQuMDggLTEzLjY3IDguMjUgLTIxIDExIGMgLTE2LjUyIDYuMiAtMzMuNDQgMTEuMSAtNTEgMTYgYyAtMTEuOCAzLjI5IC0yMy4yOCA2LjA1IC0zNSA4IGMgLTYuMjEgMS4wMyAtMTkuMzIgMS4xIC0xOSAxIGMgMC40OSAtMC4xNSAxOS4wMSAtMi45MSAyOSAtNCBjIDguOSAtMC45NyAxNy4wNSAtMS42NiAyNiAtMiBjIDE4LjIgLTAuNjkgMzUuNiAtMi4zMSA1MyAtMSBjIDE3LjY0IDEuMzMgMzQuOCA1LjU5IDUzIDkgYyA5LjM2IDEuNzYgMTguMzEgMy4zNyAyNyA2IGMgNS40OSAxLjY2IDE2LjY2IDYuNjcgMTYgNyBjIC0xLjA1IDAuNTMgLTE4LjYzIC0wLjA1IC0yOCAtMSBjIC0xMC41IC0xLjA3IC0yMC4yOCAtMy44IC0zMSAtNSBjIC01MC40NCAtNS42NyAtOTcuMzUgLTkuMzIgLTE0NyAtMTUgYyAtNi41MiAtMC43NSAtMTMuMDEgLTEuODYgLTE5IC00IGMgLTEyLjQ0IC00LjQ0IC0zNC4wOCAtMTMuNjQgLTM3IC0xNiBjIC0wLjg3IC0wLjcxIDcuMjEgLTMuODIgMTEgLTUgYyA2Ljc3IC0yLjEyIDEzLjggLTQuMSAyMSAtNSBjIDQ5LjMxIC02LjE2IDk2LjMgLTExLjczIDE0NyAtMTYgYyA0My4yNyAtMy42NSA4Mi42NCAtNS40MiAxMjYgLTcgYyAyMi42OCAtMC44MyA0NC43IC0wLjMgNjYgMCBjIDEuMzMgMC4wMiA0LjExIDAuOTkgNCAxIGMgLTAuNTcgMC4wMyAtMTMuOCAtMC4zNCAtMjEgMCBjIC0yOC44NiAxLjM3IC01NS4yMSAyLjQ4IC04NCA1IGMgLTI2LjE5IDIuMjkgLTQ5Ljg3IDUuMzUgLTc2IDkgYyAtMjAuNzcgMi45IC0zOS4yOSA2Ljg3IC02MCAxMCBjIC04LjkxIDEuMzUgLTE3LjE4IDIuNjIgLTI2IDMgYyAtMTQuNDkgMC42MyAtMjguNzIgLTAuNjkgLTQzIDAgYyAtNi4zOSAwLjMxIC0xMi42MiAyLjUgLTE5IDMgbCAtMTkgMCIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-14 12:59:45\"}],\"documents\":[],\"expenses\":[]}',5,0.00,7.28,NULL,'183.171.68.38',0,NULL,''),(214,'2019-07-15 05:01:08','2019-07-15 05:01:08',1,1,4,NULL,NULL,24,NULL,NULL,NULL,NULL,9,-7.28,0.00,NULL,'183.171.68.38',0,NULL,''),(215,'2019-07-17 06:19:35','2019-07-17 06:19:35',1,2,4,NULL,NULL,25,NULL,NULL,NULL,NULL,4,5.00,5.00,NULL,'183.171.73.219',0,NULL,''),(216,'2019-07-17 06:26:26','2019-07-17 06:26:26',1,2,4,NULL,NULL,25,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873547\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-16\",\"due_date\":\"2019-07-17\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"5.00\",\"balance\":\"5.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"5.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTYyIiBoZWlnaHQ9IjU1Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA1NCBjIDAuNTkgLTAuMjggMjIuMTggLTExLjA5IDM0IC0xNiBjIDE0LjQzIC02IDI4LjE1IC0xMS40NyA0MyAtMTYgYyAyMC43MyAtNi4zMiA0MS4yNSAtMTEuMSA2MiAtMTYgYyAzLjI2IC0wLjc3IDYuNyAtMSAxMCAtMSBjIDMuNjMgMCAxMS41NSAwLjcgMTEgMSBjIC0zLjY4IDIgLTQ1LjY0IDIyLjI0IC02OCAzMCBjIC05LjExIDMuMTYgLTE5LjY3IDMuMDEgLTMwIDQgYyAtMTQuNzIgMS40MSAtNDMuNzIgMy4yMyAtNDMgMyBjIDEuODQgLTAuNiA3Mi43MiAtMTYuNyAxMDggLTI0IGMgMi41NSAtMC41MyA1LjQ0IC0wLjMyIDggMCBjIDIuNjQgMC4zMyA3LjYzIDEuMzggOCAyIGMgMC4yNiAwLjQ0IC0zLjI4IDIuNjMgLTUgMyBjIC01LjM1IDEuMTYgLTExLjg5IDEuODEgLTE4IDIgYyAtMTUuMTkgMC40OCAtMzAuNSAwLjc2IC00NSAwIGMgLTMuOTkgLTAuMjEgLTguNDEgLTEuNiAtMTIgLTMgYyAtMi4xIC0wLjgxIC00LjM0IC0yLjU1IC02IC00IGMgLTAuODMgLTAuNzMgLTIuNDcgLTIuNzkgLTIgLTMgYyA0LjQxIC0xLjkxIDIxLjEgLTcuNDEgMzIgLTEwIGMgMTAuMiAtMi40MyAyMC42NyAtMy41NyAzMSAtNSBjIDEuNjUgLTAuMjMgNS4xIC0wLjAyIDUgMCBjIC0xLjEgMC4yMSAtMzcuOTkgNy44NCAtNTcgMTAgYyAtMTAuMTggMS4xNiAtMjEgMC4yOSAtMzEgMCBjIC0xLjMzIC0wLjA0IC00LjExIC0wLjk5IC00IC0xIGMgMC4zOCAtMC4wNCA5LjU4IC0wLjg4IDE0IDAgYyAxNi42MyAzLjMzIDM1LjA5IDcuMTMgNTEgMTMgYyAxMS4zNiA0LjE5IDIyLjUgMTMuMzYgMzMgMTggbCAxMCAxIi8+PC9zdmc+\",\"signature_date\":\"2019-07-16 14:26:25\"}],\"documents\":[],\"expenses\":[]}',5,3.80,8.80,NULL,'183.171.73.219',0,NULL,''),(217,'2019-07-17 06:30:53','2019-07-17 06:30:53',1,2,4,NULL,NULL,25,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873547\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-16\",\"due_date\":\"2019-07-17\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"8.80\",\"balance\":\"8.80\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 16-July-2019\",\"cost\":\"3.8000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"8.80\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTYyIiBoZWlnaHQ9IjU1Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA1NCBjIDAuNTkgLTAuMjggMjIuMTggLTExLjA5IDM0IC0xNiBjIDE0LjQzIC02IDI4LjE1IC0xMS40NyA0MyAtMTYgYyAyMC43MyAtNi4zMiA0MS4yNSAtMTEuMSA2MiAtMTYgYyAzLjI2IC0wLjc3IDYuNyAtMSAxMCAtMSBjIDMuNjMgMCAxMS41NSAwLjcgMTEgMSBjIC0zLjY4IDIgLTQ1LjY0IDIyLjI0IC02OCAzMCBjIC05LjExIDMuMTYgLTE5LjY3IDMuMDEgLTMwIDQgYyAtMTQuNzIgMS40MSAtNDMuNzIgMy4yMyAtNDMgMyBjIDEuODQgLTAuNiA3Mi43MiAtMTYuNyAxMDggLTI0IGMgMi41NSAtMC41MyA1LjQ0IC0wLjMyIDggMCBjIDIuNjQgMC4zMyA3LjYzIDEuMzggOCAyIGMgMC4yNiAwLjQ0IC0zLjI4IDIuNjMgLTUgMyBjIC01LjM1IDEuMTYgLTExLjg5IDEuODEgLTE4IDIgYyAtMTUuMTkgMC40OCAtMzAuNSAwLjc2IC00NSAwIGMgLTMuOTkgLTAuMjEgLTguNDEgLTEuNiAtMTIgLTMgYyAtMi4xIC0wLjgxIC00LjM0IC0yLjU1IC02IC00IGMgLTAuODMgLTAuNzMgLTIuNDcgLTIuNzkgLTIgLTMgYyA0LjQxIC0xLjkxIDIxLjEgLTcuNDEgMzIgLTEwIGMgMTAuMiAtMi40MyAyMC42NyAtMy41NyAzMSAtNSBjIDEuNjUgLTAuMjMgNS4xIC0wLjAyIDUgMCBjIC0xLjEgMC4yMSAtMzcuOTkgNy44NCAtNTcgMTAgYyAtMTAuMTggMS4xNiAtMjEgMC4yOSAtMzEgMCBjIC0xLjMzIC0wLjA0IC00LjExIC0wLjk5IC00IC0xIGMgMC4zOCAtMC4wNCA5LjU4IC0wLjg4IDE0IDAgYyAxNi42MyAzLjMzIDM1LjA5IDcuMTMgNTEgMTMgYyAxMS4zNiA0LjE5IDIyLjUgMTMuMzYgMzMgMTggbCAxMCAxIi8+PC9zdmc+\",\"signature_date\":\"2019-07-16 14:26:25\"}],\"documents\":[],\"expenses\":[]}',5,-7.80,1.00,NULL,'183.171.73.219',0,NULL,''),(218,'2019-07-17 06:31:56','2019-07-17 06:31:56',1,2,4,NULL,NULL,25,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873547\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-16\",\"due_date\":\"2019-07-17\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTQwIiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDIwIDU3IGMgMC4zNSAtMC4yMyAxMi45MiAtOS4wMSAyMCAtMTMgYyAyMi41OCAtMTIuNzIgNDQuMjUgLTI0LjYzIDY3IC0zNiBjIDYuMDYgLTMuMDMgMTIuOTYgLTUuMjQgMTkgLTcgYyAxLjQ5IC0wLjQzIDMuMzUgLTAuMTUgNSAwIGMgMi4wMSAwLjE4IDQuODUgMC4xNCA2IDEgYyAxLjAyIDAuNzYgMi42NSAzLjk1IDIgNSBjIC0zLjMxIDUuMzkgLTExLjM2IDE1LjMxIC0xOCAyMSBjIC02Ljc5IDUuODIgLTE1LjU5IDEwLjUxIC0yNCAxNSBjIC0xMS4xNiA1Ljk3IC0yMi45MiA5Ljk5IC0zNCAxNiBjIC04Ljc2IDQuNzUgLTE2Ljg1IDEwLjA4IC0yNSAxNiBjIC0xMi45MSA5LjM3IC0zNi4zOCAyOC40NiAtMzcgMjkgYyAtMC4xOCAwLjE2IDcuNzQgLTUuMzEgMTIgLTcgYyAxOS44NyAtNy44OSA0MC4zNyAtMTUuNTIgNjEgLTIyIGMgOC4xMSAtMi41NSAxNi44MiAtMi44MSAyNSAtNSBjIDUuNDggLTEuNDcgMTAuNDkgLTQuMjIgMTYgLTYgbCAxNSAtNCIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-16 14:31:56\"}],\"documents\":[],\"expenses\":[]}',5,2.24,3.24,NULL,'183.171.73.219',0,NULL,''),(219,'2019-07-17 06:33:16','2019-07-17 06:33:16',1,2,4,8,11,25,NULL,31,NULL,'{\"invoice_number\":\"25354I-873547\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-16\",\"due_date\":\"2019-07-17\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.24\",\"balance\":0,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 16-July-2019\",\"cost\":\"2.2400\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":4,\"discount\":\"0.00\"}],\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTQwIiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDIwIDU3IGMgMC4zNSAtMC4yMyAxMi45MiAtOS4wMSAyMCAtMTMgYyAyMi41OCAtMTIuNzIgNDQuMjUgLTI0LjYzIDY3IC0zNiBjIDYuMDYgLTMuMDMgMTIuOTYgLTUuMjQgMTkgLTcgYyAxLjQ5IC0wLjQzIDMuMzUgLTAuMTUgNSAwIGMgMi4wMSAwLjE4IDQuODUgMC4xNCA2IDEgYyAxLjAyIDAuNzYgMi42NSAzLjk1IDIgNSBjIC0zLjMxIDUuMzkgLTExLjM2IDE1LjMxIC0xOCAyMSBjIC02Ljc5IDUuODIgLTE1LjU5IDEwLjUxIC0yNCAxNSBjIC0xMS4xNiA1Ljk3IC0yMi45MiA5Ljk5IC0zNCAxNiBjIC04Ljc2IDQuNzUgLTE2Ljg1IDEwLjA4IC0yNSAxNiBjIC0xMi45MSA5LjM3IC0zNi4zOCAyOC40NiAtMzcgMjkgYyAtMC4xOCAwLjE2IDcuNzQgLTUuMzEgMTIgLTcgYyAxOS44NyAtNy44OSA0MC4zNyAtMTUuNTIgNjEgLTIyIGMgOC4xMSAtMi41NSAxNi44MiAtMi44MSAyNSAtNSBjIDUuNDggLTEuNDcgMTAuNDkgLTQuMjIgMTYgLTYgbCAxNSAtNCIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-16 14:31:56\"}],\"documents\":[],\"expenses\":[]}',10,-3.24,0.00,NULL,'183.171.73.219',0,NULL,''),(220,'2019-07-17 06:33:16','2019-07-17 06:33:16',1,2,4,NULL,NULL,25,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873547\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-16\",\"due_date\":\"2019-07-17\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.24\",\"balance\":\"3.24\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 16-July-2019\",\"cost\":\"2.2400\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTQwIiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDIwIDU3IGMgMC4zNSAtMC4yMyAxMi45MiAtOS4wMSAyMCAtMTMgYyAyMi41OCAtMTIuNzIgNDQuMjUgLTI0LjYzIDY3IC0zNiBjIDYuMDYgLTMuMDMgMTIuOTYgLTUuMjQgMTkgLTcgYyAxLjQ5IC0wLjQzIDMuMzUgLTAuMTUgNSAwIGMgMi4wMSAwLjE4IDQuODUgMC4xNCA2IDEgYyAxLjAyIDAuNzYgMi42NSAzLjk1IDIgNSBjIC0zLjMxIDUuMzkgLTExLjM2IDE1LjMxIC0xOCAyMSBjIC02Ljc5IDUuODIgLTE1LjU5IDEwLjUxIC0yNCAxNSBjIC0xMS4xNiA1Ljk3IC0yMi45MiA5Ljk5IC0zNCAxNiBjIC04Ljc2IDQuNzUgLTE2Ljg1IDEwLjA4IC0yNSAxNiBjIC0xMi45MSA5LjM3IC0zNi4zOCAyOC40NiAtMzcgMjkgYyAtMC4xOCAwLjE2IDcuNzQgLTUuMzEgMTIgLTcgYyAxOS44NyAtNy44OSA0MC4zNyAtMTUuNTIgNjEgLTIyIGMgOC4xMSAtMi41NSAxNi44MiAtMi44MSAyNSAtNSBjIDUuNDggLTEuNDcgMTAuNDkgLTQuMjIgMTYgLTYgbCAxNSAtNCIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-16 14:31:56\"}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.73.219',0,NULL,''),(221,'2019-07-17 06:38:42','2019-07-17 06:38:42',1,1,4,8,11,25,NULL,31,NULL,NULL,40,3.24,3.24,NULL,'54.187.174.169',0,NULL,''),(222,'2019-07-17 06:38:42','2019-07-17 06:38:42',1,1,4,NULL,NULL,25,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873547\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-16\",\"due_date\":\"2019-07-17\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.24\",\"balance\":\"0.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 16-July-2019\",\"cost\":\"2.2400\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"4\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.24\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTQwIiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDIwIDU3IGMgMC4zNSAtMC4yMyAxMi45MiAtOS4wMSAyMCAtMTMgYyAyMi41OCAtMTIuNzIgNDQuMjUgLTI0LjYzIDY3IC0zNiBjIDYuMDYgLTMuMDMgMTIuOTYgLTUuMjQgMTkgLTcgYyAxLjQ5IC0wLjQzIDMuMzUgLTAuMTUgNSAwIGMgMi4wMSAwLjE4IDQuODUgMC4xNCA2IDEgYyAxLjAyIDAuNzYgMi42NSAzLjk1IDIgNSBjIC0zLjMxIDUuMzkgLTExLjM2IDE1LjMxIC0xOCAyMSBjIC02Ljc5IDUuODIgLTE1LjU5IDEwLjUxIC0yNCAxNSBjIC0xMS4xNiA1Ljk3IC0yMi45MiA5Ljk5IC0zNCAxNiBjIC04Ljc2IDQuNzUgLTE2Ljg1IDEwLjA4IC0yNSAxNiBjIC0xMi45MSA5LjM3IC0zNi4zOCAyOC40NiAtMzcgMjkgYyAtMC4xOCAwLjE2IDcuNzQgLTUuMzEgMTIgLTcgYyAxOS44NyAtNy44OSA0MC4zNyAtMTUuNTIgNjEgLTIyIGMgOC4xMSAtMi41NSAxNi44MiAtMi44MSAyNSAtNSBjIDUuNDggLTEuNDcgMTAuNDkgLTQuMjIgMTYgLTYgbCAxNSAtNCIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-16 14:31:56\"}],\"documents\":[],\"expenses\":[]}',5,0.00,3.24,NULL,'54.187.174.169',0,NULL,''),(223,'2019-07-17 06:43:29','2019-07-17 06:43:29',1,2,4,NULL,NULL,25,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873547\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-16\",\"due_date\":\"2019-07-17\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.24\",\"balance\":\"3.24\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 16-July-2019\",\"cost\":\"2.2400\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"4\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.24\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTQwIiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDIwIDU3IGMgMC4zNSAtMC4yMyAxMi45MiAtOS4wMSAyMCAtMTMgYyAyMi41OCAtMTIuNzIgNDQuMjUgLTI0LjYzIDY3IC0zNiBjIDYuMDYgLTMuMDMgMTIuOTYgLTUuMjQgMTkgLTcgYyAxLjQ5IC0wLjQzIDMuMzUgLTAuMTUgNSAwIGMgMi4wMSAwLjE4IDQuODUgMC4xNCA2IDEgYyAxLjAyIDAuNzYgMi42NSAzLjk1IDIgNSBjIC0zLjMxIDUuMzkgLTExLjM2IDE1LjMxIC0xOCAyMSBjIC02Ljc5IDUuODIgLTE1LjU5IDEwLjUxIC0yNCAxNSBjIC0xMS4xNiA1Ljk3IC0yMi45MiA5Ljk5IC0zNCAxNiBjIC04Ljc2IDQuNzUgLTE2Ljg1IDEwLjA4IC0yNSAxNiBjIC0xMi45MSA5LjM3IC0zNi4zOCAyOC40NiAtMzcgMjkgYyAtMC4xOCAwLjE2IDcuNzQgLTUuMzEgMTIgLTcgYyAxOS44NyAtNy44OSA0MC4zNyAtMTUuNTIgNjEgLTIyIGMgOC4xMSAtMi41NSAxNi44MiAtMi44MSAyNSAtNSBjIDUuNDggLTEuNDcgMTAuNDkgLTQuMjIgMTYgLTYgbCAxNSAtNCIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-16 14:31:56\"}],\"documents\":[],\"expenses\":[]}',5,0.00,3.24,NULL,'183.171.73.219',0,NULL,''),(224,'2019-07-17 06:43:30','2019-07-17 06:43:30',1,2,4,NULL,NULL,25,NULL,NULL,NULL,NULL,9,-3.24,0.00,NULL,'183.171.73.219',0,NULL,''),(225,'2019-07-18 03:33:22','2019-07-18 03:33:22',1,2,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.73.164',0,40,''),(226,'2019-07-18 03:34:11','2019-07-18 03:34:11',1,2,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.73.164',0,40,''),(227,'2019-07-18 03:35:03','2019-07-18 03:35:03',1,2,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36,0.00,0.00,NULL,'183.171.73.164',0,40,''),(228,'2019-07-18 03:37:29','2019-07-18 03:37:29',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.73.164',0,41,''),(229,'2019-07-18 09:08:51','2019-07-18 09:08:51',1,1,4,NULL,NULL,26,NULL,NULL,NULL,NULL,4,5.00,5.00,NULL,'80.154.98.131',0,NULL,''),(230,'2019-07-18 09:09:43','2019-07-18 09:09:43',1,1,4,NULL,NULL,26,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873548\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-18\",\"due_date\":\"2019-07-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"5.00\",\"balance\":\"5.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"5.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzExIiBoZWlnaHQ9IjkzIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA4NyBjIDAuMjMgLTAuMTggOC4zIC03LjY5IDEzIC0xMCBjIDEyLjM1IC02LjA2IDI2LjExIC0xMS4zMyA0MCAtMTYgYyAyNC41OSAtOC4yNyA0OC4xNCAtMTUuNjIgNzMgLTIyIGMgMTMuMjQgLTMuNCAyNi4zMiAtNS4wNSA0MCAtNyBjIDcuNzggLTEuMTEgMTUuNDEgLTIgMjMgLTIgYyA2LjI4IDAgMTMuOTcgMC41MyAxOSAyIGMgMS44NiAwLjU0IDQuMTggMy4yMyA1IDUgYyAwLjkzIDIuMDIgMS4zIDUuNjMgMSA4IGMgLTAuMzEgMi41MSAtMS4xNiA2Ljc3IC0zIDggYyAtNS42IDMuNzMgLTE1LjY5IDcuNDcgLTI0IDEwIGMgLTE5LjE1IDUuODQgLTM4LjAyIDEwLjYyIC01OCAxNSBjIC0xOC45OCA0LjE2IC0zNi43OSA3LjIzIC01NiAxMCBjIC0xMy45MSAyLjAxIC0yNy4wNSAzLjE0IC00MSA0IGMgLTguMTIgMC41IC0yMS45MiAwLjMgLTI0IDAgYyAtMC4zNyAtMC4wNSAxLjgzIC0yLjM2IDMgLTMgYyA4IC00LjQxIDE2Ljg3IC05Ljc3IDI2IC0xMyBjIDQwLjkyIC0xNC40NiA4MS40NCAtMjguNDkgMTI0IC00MCBjIDM2LjM5IC05Ljg0IDcyLjE1IC0xNC4yOSAxMDkgLTIzIGMgMTMuNSAtMy4xOSAzOC4xMiAtMTEuNjUgMzkgLTEyIGMgMC4yNCAtMC4wOSAtNy40MyAwLjIzIC0xMSAxIGMgLTguNzEgMS44OCAtMTcuNzggNC4wNSAtMjYgNyBjIC00LjUxIDEuNjIgLTguNzUgNC40MSAtMTMgNyBjIC0zLjUxIDIuMTQgLTYuODcgNC40NiAtMTAgNyBjIC0yLjE4IDEuNzcgLTUuMTIgMy44NiAtNiA2IGwgLTEgMTEiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-17 17:09:42\"}],\"documents\":[],\"expenses\":[]}',5,3.80,8.80,NULL,'80.154.98.131',0,NULL,''),(231,'2019-07-18 09:12:49','2019-07-18 09:12:49',1,1,4,NULL,NULL,26,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873548\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-18\",\"due_date\":\"2019-07-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"8.80\",\"balance\":\"8.80\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 18-July-2019\",\"cost\":\"3.8000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"8.80\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzExIiBoZWlnaHQ9IjkzIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA4NyBjIDAuMjMgLTAuMTggOC4zIC03LjY5IDEzIC0xMCBjIDEyLjM1IC02LjA2IDI2LjExIC0xMS4zMyA0MCAtMTYgYyAyNC41OSAtOC4yNyA0OC4xNCAtMTUuNjIgNzMgLTIyIGMgMTMuMjQgLTMuNCAyNi4zMiAtNS4wNSA0MCAtNyBjIDcuNzggLTEuMTEgMTUuNDEgLTIgMjMgLTIgYyA2LjI4IDAgMTMuOTcgMC41MyAxOSAyIGMgMS44NiAwLjU0IDQuMTggMy4yMyA1IDUgYyAwLjkzIDIuMDIgMS4zIDUuNjMgMSA4IGMgLTAuMzEgMi41MSAtMS4xNiA2Ljc3IC0zIDggYyAtNS42IDMuNzMgLTE1LjY5IDcuNDcgLTI0IDEwIGMgLTE5LjE1IDUuODQgLTM4LjAyIDEwLjYyIC01OCAxNSBjIC0xOC45OCA0LjE2IC0zNi43OSA3LjIzIC01NiAxMCBjIC0xMy45MSAyLjAxIC0yNy4wNSAzLjE0IC00MSA0IGMgLTguMTIgMC41IC0yMS45MiAwLjMgLTI0IDAgYyAtMC4zNyAtMC4wNSAxLjgzIC0yLjM2IDMgLTMgYyA4IC00LjQxIDE2Ljg3IC05Ljc3IDI2IC0xMyBjIDQwLjkyIC0xNC40NiA4MS40NCAtMjguNDkgMTI0IC00MCBjIDM2LjM5IC05Ljg0IDcyLjE1IC0xNC4yOSAxMDkgLTIzIGMgMTMuNSAtMy4xOSAzOC4xMiAtMTEuNjUgMzkgLTEyIGMgMC4yNCAtMC4wOSAtNy40MyAwLjIzIC0xMSAxIGMgLTguNzEgMS44OCAtMTcuNzggNC4wNSAtMjYgNyBjIC00LjUxIDEuNjIgLTguNzUgNC40MSAtMTMgNyBjIC0zLjUxIDIuMTQgLTYuODcgNC40NiAtMTAgNyBjIC0yLjE4IDEuNzcgLTUuMTIgMy44NiAtNiA2IGwgLTEgMTEiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-17 17:09:42\"}],\"documents\":[],\"expenses\":[]}',5,-3.80,5.00,NULL,'80.154.98.131',0,NULL,''),(232,'2019-07-18 09:13:10','2019-07-18 09:13:10',1,1,4,NULL,NULL,26,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873548\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-18\",\"due_date\":\"2019-07-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"5.00\",\"balance\":\"5.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"5.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzA4IiBoZWlnaHQ9IjQ3Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSAxNyBjIDEuNzUgLTAuMTcgNjUuMzEgLTYuOTMgMTAwIC0xMCBjIDIwLjA3IC0xLjc4IDM3Ljg5IC0yLjk0IDU4IC00IGMgMTkuMzggLTEuMDIgMzYuNjIgLTEuNTcgNTYgLTIgYyAxMi4xMSAtMC4yNyAyNy4xMSAtMC44NSAzNSAwIGMgMS4wMSAwLjExIDIuMzEgMyAyIDQgYyAtMC43NCAyLjQxIC0zLjU1IDYuOCAtNiA5IGMgLTMuNzYgMy4zOSAtOS4xMSA2LjU1IC0xNCA5IGMgLTYuMzMgMy4xNyAtMTMuMTggNi4wMyAtMjAgOCBjIC04LjA3IDIuMzMgLTE2LjQ0IDMuOTIgLTI1IDUgYyAtMTguMiAyLjMgLTM2Ljg4IDIuOTcgLTU0IDUgYyAtMS43IDAuMiAtNS4zMSAxLjgzIC01IDIgYyAwLjgyIDAuNDYgOS4zNSAyLjkgMTQgMyBjIDI2IDAuNTUgNTMuMDQgMC41OSA4MCAtMSBjIDE5LjAyIC0xLjEyIDM3LjIxIC0zLjkgNTYgLTcgYyA5LjkzIC0xLjY0IDI5Ljg2IC02LjgyIDI5IC03IGMgLTIuMDUgLTAuNDQgLTQ4LjkxIC0yLjI4IC03MSAtMiBjIC0yLjk1IDAuMDQgLTYuNyAxLjc0IC05IDMgbCAtMiAzIi8+PC9zdmc+\",\"signature_date\":\"2019-07-17 17:13:09\"}],\"documents\":[],\"expenses\":[]}',5,3.80,8.80,NULL,'80.154.98.131',0,NULL,''),(233,'2019-07-18 09:14:58','2019-07-18 09:14:58',1,1,4,NULL,NULL,26,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873548\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-18\",\"due_date\":\"2019-07-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"8.80\",\"balance\":\"8.80\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 18-July-2019\",\"cost\":\"3.8000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"8.80\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzA4IiBoZWlnaHQ9IjQ3Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSAxNyBjIDEuNzUgLTAuMTcgNjUuMzEgLTYuOTMgMTAwIC0xMCBjIDIwLjA3IC0xLjc4IDM3Ljg5IC0yLjk0IDU4IC00IGMgMTkuMzggLTEuMDIgMzYuNjIgLTEuNTcgNTYgLTIgYyAxMi4xMSAtMC4yNyAyNy4xMSAtMC44NSAzNSAwIGMgMS4wMSAwLjExIDIuMzEgMyAyIDQgYyAtMC43NCAyLjQxIC0zLjU1IDYuOCAtNiA5IGMgLTMuNzYgMy4zOSAtOS4xMSA2LjU1IC0xNCA5IGMgLTYuMzMgMy4xNyAtMTMuMTggNi4wMyAtMjAgOCBjIC04LjA3IDIuMzMgLTE2LjQ0IDMuOTIgLTI1IDUgYyAtMTguMiAyLjMgLTM2Ljg4IDIuOTcgLTU0IDUgYyAtMS43IDAuMiAtNS4zMSAxLjgzIC01IDIgYyAwLjgyIDAuNDYgOS4zNSAyLjkgMTQgMyBjIDI2IDAuNTUgNTMuMDQgMC41OSA4MCAtMSBjIDE5LjAyIC0xLjEyIDM3LjIxIC0zLjkgNTYgLTcgYyA5LjkzIC0xLjY0IDI5Ljg2IC02LjgyIDI5IC03IGMgLTIuMDUgLTAuNDQgLTQ4LjkxIC0yLjI4IC03MSAtMiBjIC0yLjk1IDAuMDQgLTYuNyAxLjc0IC05IDMgbCAtMiAzIi8+PC9zdmc+\",\"signature_date\":\"2019-07-17 17:13:09\"}],\"documents\":[],\"expenses\":[]}',5,0.00,8.80,NULL,'80.154.98.131',0,NULL,''),(234,'2019-07-18 09:14:58','2019-07-18 09:14:58',1,1,4,NULL,NULL,26,NULL,NULL,NULL,NULL,9,-8.80,0.00,NULL,'80.154.98.131',0,NULL,''),(235,'2019-07-18 09:18:22','2019-07-18 09:18:22',1,1,4,NULL,NULL,27,NULL,NULL,NULL,NULL,4,5.00,5.00,NULL,'80.154.98.131',0,NULL,''),(236,'2019-07-18 09:19:02','2019-07-18 09:19:02',1,1,4,NULL,NULL,27,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873549\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-18\",\"due_date\":\"2019-07-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"5.00\",\"balance\":\"5.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"5.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjc0IiBoZWlnaHQ9IjU1Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMTIgMzQgYyAtMC4xMSAtMC4wNyAtNC42NCAtMi40OCAtNiAtNCBjIC0xLjAxIC0xLjE0IC0xLjg5IC0zLjQxIC0yIC01IGMgLTAuMTkgLTIuNjcgMC4xMyAtNi41NSAxIC05IGMgMC42MiAtMS43MyAyLjQzIC0zLjg4IDQgLTUgYyAyLjc1IC0xLjk2IDYuNTkgLTMuOTEgMTAgLTUgYyA0LjY3IC0xLjQ5IDkuODUgLTIuMjIgMTUgLTMgYyA2LjA5IC0wLjkyIDExLjg5IC0xLjczIDE4IC0yIGMgOS4xMSAtMC40IDE3LjgxIC0wLjY1IDI3IDAgYyA2My40OCA0LjQ3IDEyOC45MyA5LjQxIDE4NiAxNSBjIDIuNzQgMC4yNyA3LjkgMi42NCA4IDQgYyAwLjEzIDEuNzQgLTQuMDggNy42NyAtNyA5IGMgLTEwLjQ2IDQuNzggLTI1LjkyIDEwLjEzIC0zOSAxMiBjIC0yNS42OSAzLjY3IC01Mi4xNCAzLjUxIC04MCA1IGMgLTMwLjYyIDEuNjQgLTU3LjYzIDMuMDggLTg4IDQgYyAtMTUuMTcgMC40NiAtMjkuNjggMC41NCAtNDQgMCBjIC0zIC0wLjExIC04LjY0IC0xLjAzIC05IC0yIGMgLTAuMzMgLTAuODkgMy43OCAtNC44MyA2IC02IGMgMy41NiAtMS44NyA4LjU0IC0zLjAxIDEzIC00IGMgNy42NiAtMS43IDE1LjA3IC0yLjk2IDIzIC00IGMgMTIuOTggLTEuNyAyNSAtMy4xOCAzOCAtNCBjIDEzLjk2IC0wLjg4IDI3LjM5IC0xLjcgNDEgLTEgYyAxMi4zOSAwLjY0IDI1Ljc1IDIuMyAzNyA1IGMgNC40NSAxLjA3IDkuMzcgNC41OCAxMyA3IGMgMC44OSAwLjU5IDIuNDIgMi43NSAyIDMgYyAtMS40NSAwLjg3IC03Ljk5IDIuODUgLTEyIDMgYyAtNDAuODYgMS40OCAtODMuNDYgMC4yMSAtMTI2IDIgYyAtMTMuNjEgMC41NyAtMzkuMyA0Ljk1IC00MCA1IGMgLTAuMjMgMC4wMiA4LjU4IC0yLjQ3IDEzIC0zIGMgMTIuMyAtMS40OCAyNC4zMSAtMi42NiAzNyAtMyBjIDM4LjI5IC0xLjAzIDExMiAtMSAxMTIgLTEiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-17 17:19:01\"}],\"documents\":[],\"expenses\":[]}',5,0.05,5.05,NULL,'80.154.98.131',0,NULL,''),(237,'2019-07-18 09:20:44','2019-07-18 09:20:44',1,1,4,NULL,NULL,27,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873549\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-18\",\"due_date\":\"2019-07-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"5.05\",\"balance\":\"5.05\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 18-July-2019\",\"cost\":\"0.0500\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"5.05\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjc0IiBoZWlnaHQ9IjU1Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMTIgMzQgYyAtMC4xMSAtMC4wNyAtNC42NCAtMi40OCAtNiAtNCBjIC0xLjAxIC0xLjE0IC0xLjg5IC0zLjQxIC0yIC01IGMgLTAuMTkgLTIuNjcgMC4xMyAtNi41NSAxIC05IGMgMC42MiAtMS43MyAyLjQzIC0zLjg4IDQgLTUgYyAyLjc1IC0xLjk2IDYuNTkgLTMuOTEgMTAgLTUgYyA0LjY3IC0xLjQ5IDkuODUgLTIuMjIgMTUgLTMgYyA2LjA5IC0wLjkyIDExLjg5IC0xLjczIDE4IC0yIGMgOS4xMSAtMC40IDE3LjgxIC0wLjY1IDI3IDAgYyA2My40OCA0LjQ3IDEyOC45MyA5LjQxIDE4NiAxNSBjIDIuNzQgMC4yNyA3LjkgMi42NCA4IDQgYyAwLjEzIDEuNzQgLTQuMDggNy42NyAtNyA5IGMgLTEwLjQ2IDQuNzggLTI1LjkyIDEwLjEzIC0zOSAxMiBjIC0yNS42OSAzLjY3IC01Mi4xNCAzLjUxIC04MCA1IGMgLTMwLjYyIDEuNjQgLTU3LjYzIDMuMDggLTg4IDQgYyAtMTUuMTcgMC40NiAtMjkuNjggMC41NCAtNDQgMCBjIC0zIC0wLjExIC04LjY0IC0xLjAzIC05IC0yIGMgLTAuMzMgLTAuODkgMy43OCAtNC44MyA2IC02IGMgMy41NiAtMS44NyA4LjU0IC0zLjAxIDEzIC00IGMgNy42NiAtMS43IDE1LjA3IC0yLjk2IDIzIC00IGMgMTIuOTggLTEuNyAyNSAtMy4xOCAzOCAtNCBjIDEzLjk2IC0wLjg4IDI3LjM5IC0xLjcgNDEgLTEgYyAxMi4zOSAwLjY0IDI1Ljc1IDIuMyAzNyA1IGMgNC40NSAxLjA3IDkuMzcgNC41OCAxMyA3IGMgMC44OSAwLjU5IDIuNDIgMi43NSAyIDMgYyAtMS40NSAwLjg3IC03Ljk5IDIuODUgLTEyIDMgYyAtNDAuODYgMS40OCAtODMuNDYgMC4yMSAtMTI2IDIgYyAtMTMuNjEgMC41NyAtMzkuMyA0Ljk1IC00MCA1IGMgLTAuMjMgMC4wMiA4LjU4IC0yLjQ3IDEzIC0zIGMgMTIuMyAtMS40OCAyNC4zMSAtMi42NiAzNyAtMyBjIDM4LjI5IC0xLjAzIDExMiAtMSAxMTIgLTEiLz48L3N2Zz4=\",\"signature_date\":\"2019-07-17 17:19:01\"}],\"documents\":[],\"expenses\":[]}',5,0.00,5.05,NULL,'80.154.98.131',0,NULL,''),(238,'2019-07-18 09:20:44','2019-07-18 09:20:44',1,1,4,NULL,NULL,27,NULL,NULL,NULL,NULL,9,-5.05,0.00,NULL,'80.154.98.131',0,NULL,''),(239,'2019-07-18 09:53:31','2019-07-18 09:53:31',1,1,4,NULL,NULL,NULL,1,NULL,NULL,NULL,14,0.00,0.00,NULL,'80.154.98.131',0,NULL,''),(240,'2019-07-18 10:09:21','2019-07-18 10:09:21',1,1,4,NULL,NULL,28,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'80.154.98.131',0,NULL,''),(241,'2019-07-18 10:09:42','2019-07-18 10:09:42',1,1,4,NULL,NULL,28,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873550\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-18\",\"due_date\":\"2019-07-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"0.00\",\"balance\":\"0.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,5.00,5.00,NULL,'80.154.98.131',0,NULL,''),(242,'2019-07-18 10:10:30','2019-07-18 10:10:30',1,1,4,NULL,NULL,28,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873550\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-18\",\"due_date\":\"2019-07-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"5.00\",\"balance\":\"5.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"5.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzQ2IiBoZWlnaHQ9IjQ1Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMTQ0IDM5IGMgMC4wNSAtMC4wOSAxLjc2IC0zLjc2IDMgLTUgYyAxLjUzIC0xLjUzIDMuODQgLTMuMDcgNiAtNCBjIDExLjU3IC00Ljk2IDIzLjYgLTEwLjAyIDM2IC0xNCBjIDEzLjk0IC00LjQ3IDI3Ljg3IC04LjkgNDIgLTExIGMgMTkuMjQgLTIuODYgMzkuMTMgLTMuMjMgNTkgLTQgYyA2LjA2IC0wLjI0IDEyLjEgMC4xNiAxOCAxIGMgNS43MSAwLjgyIDExLjc2IDEuOTYgMTcgNCBjIDYuNDQgMi41IDE0LjQ5IDYuODQgMTkgMTAgYyAwLjg3IDAuNjEgMS42OSAzLjY1IDEgNCBjIC02LjI2IDMuMTMgLTIzLjIxIDkuOTcgLTM1IDEzIGMgLTExLjE3IDIuODcgLTIyLjk2IDMuOCAtMzUgNSBjIC0xOC43OCAxLjg4IC0zNi4xNSAzLjcgLTU1IDQgYyAtNjYuNjYgMS4wNyAtMTQxLjUgNC42NCAtMTk1IDAgYyAtOC40IC0wLjczIC0yNi4wMyAtMTcuNDkgLTI0IC0xOSBjIDMuNjYgLTIuNzIgMzYuMTUgLTMuNDggNTUgLTQgYyAzMC43NiAtMC44NSA4Ni40MSAtMC4xMyA5MCAwIGMgMC4zNCAwLjAxIC01LjI0IDIuMzMgLTggMyBjIC04LjIzIDEuOTkgLTE2LjM1IDMuNjEgLTI1IDUgYyAtMTkuMiAzLjA4IC0zNy42NCA0LjI4IC01NiA4IGMgLTkuNTUgMS45MyAtMjguODcgOC45NyAtMjggOSBjIDMuNzcgMC4xMSA4My44NSAtNC4zMyAxMjggLTYgYyAxMC42OCAtMC40IDIwLjQ0IC0wLjI1IDMxIDAgbCAxMiAxIi8+PC9zdmc+\",\"signature_date\":\"2019-07-17 18:10:29\"}],\"documents\":[],\"expenses\":[]}',5,0.05,5.05,NULL,'80.154.98.131',0,NULL,''),(243,'2019-07-18 10:11:32','2019-07-18 10:11:32',1,1,4,NULL,NULL,28,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873550\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-18\",\"due_date\":\"2019-07-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"5.05\",\"balance\":\"5.05\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"5.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 18-July-2019\",\"cost\":\"0.0500\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"5.05\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzQ2IiBoZWlnaHQ9IjQ1Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMTQ0IDM5IGMgMC4wNSAtMC4wOSAxLjc2IC0zLjc2IDMgLTUgYyAxLjUzIC0xLjUzIDMuODQgLTMuMDcgNiAtNCBjIDExLjU3IC00Ljk2IDIzLjYgLTEwLjAyIDM2IC0xNCBjIDEzLjk0IC00LjQ3IDI3Ljg3IC04LjkgNDIgLTExIGMgMTkuMjQgLTIuODYgMzkuMTMgLTMuMjMgNTkgLTQgYyA2LjA2IC0wLjI0IDEyLjEgMC4xNiAxOCAxIGMgNS43MSAwLjgyIDExLjc2IDEuOTYgMTcgNCBjIDYuNDQgMi41IDE0LjQ5IDYuODQgMTkgMTAgYyAwLjg3IDAuNjEgMS42OSAzLjY1IDEgNCBjIC02LjI2IDMuMTMgLTIzLjIxIDkuOTcgLTM1IDEzIGMgLTExLjE3IDIuODcgLTIyLjk2IDMuOCAtMzUgNSBjIC0xOC43OCAxLjg4IC0zNi4xNSAzLjcgLTU1IDQgYyAtNjYuNjYgMS4wNyAtMTQxLjUgNC42NCAtMTk1IDAgYyAtOC40IC0wLjczIC0yNi4wMyAtMTcuNDkgLTI0IC0xOSBjIDMuNjYgLTIuNzIgMzYuMTUgLTMuNDggNTUgLTQgYyAzMC43NiAtMC44NSA4Ni40MSAtMC4xMyA5MCAwIGMgMC4zNCAwLjAxIC01LjI0IDIuMzMgLTggMyBjIC04LjIzIDEuOTkgLTE2LjM1IDMuNjEgLTI1IDUgYyAtMTkuMiAzLjA4IC0zNy42NCA0LjI4IC01NiA4IGMgLTkuNTUgMS45MyAtMjguODcgOC45NyAtMjggOSBjIDMuNzcgMC4xMSA4My44NSAtNC4zMyAxMjggLTYgYyAxMC42OCAtMC40IDIwLjQ0IC0wLjI1IDMxIDAgbCAxMiAxIi8+PC9zdmc+\",\"signature_date\":\"2019-07-17 18:10:29\"}],\"documents\":[],\"expenses\":[]}',5,44.95,50.00,NULL,'80.154.98.131',0,NULL,''),(244,'2019-07-18 10:12:02','2019-07-18 10:12:02',1,1,4,NULL,NULL,28,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873550\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-18\",\"due_date\":\"2019-07-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"50.00\",\"balance\":\"50.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"50.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"50.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzY3IiBoZWlnaHQ9IjgzIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gNDAgNDEgYyAwLjEyIC0wLjEyIDQuMzcgLTUuMzggNyAtNyBjIDUuNTggLTMuNDQgMTIuNDQgLTYuNzcgMTkgLTkgYyAxMC45NyAtMy43MyAyMi4zMyAtNi43NCAzNCAtOSBjIDE5LjgxIC0zLjgzIDM4LjcgLTYuNjkgNTkgLTkgYyAyNC45MSAtMi44MyA0OC4xMiAtNS4zMSA3MyAtNiBjIDM2LjM1IC0xLjAxIDcyLjI2IC0wLjYzIDEwNyAxIGMgNy4wMSAwLjMzIDE2LjExIDIuMzYgMjEgNSBjIDIuMzMgMS4yNiA0LjM1IDUuOTkgNSA5IGMgMS4xOSA1LjU3IDEuMjEgMTIuODQgMSAxOSBjIC0wLjEyIDMuNjIgLTAuNzQgNy42NyAtMiAxMSBjIC0yLjI3IDUuOTkgLTQuOTQgMTMuODEgLTkgMTggYyAtNS4yNiA1LjQzIC0xNC41NyAxMS4zMyAtMjIgMTQgYyAtOC4wNSAyLjkgLTE4LjU2IDMuNTcgLTI4IDQgYyAtMTkuNyAwLjkxIC0zOC42NiAwLjU2IC01OSAwIGMgLTMwLjAzIC0wLjgyIC01Ny41NSAtMS4zMiAtODcgLTQgYyAtMjYuNjMgLTIuNDIgLTUxLjUzIC02LjQyIC03OCAtMTEgYyAtMTYuODcgLTIuOTIgLTMyLjU0IC02LjcxIC00OSAtMTEgYyAtOC4yOSAtMi4xNiAtMTcuMjEgLTQuNzEgLTI0IC04IGMgLTIuNjYgLTEuMjkgLTUuNjkgLTQuNzYgLTcgLTcgYyAtMC42NiAtMS4xMyAtMC40OSAtMy42MiAwIC01IGMgMS4wMiAtMi44NSAyLjcxIC03LjQ0IDUgLTkgYyA0LjAxIC0yLjczIDExLjIyIC00LjkyIDE3IC02IGMgMTUuMiAtMi44NSAzMC43NiAtNC40NCA0NyAtNiBjIDI2LjgyIC0yLjU3IDUxLjIyIC00LjkgNzggLTYgYyAzMS44NCAtMS4zIDYxLjg1IC0xLjI5IDkzIC0xIGMgNS40IDAuMDUgMTEuMjkgMS4wMSAxNiAyIGMgMS4wNSAwLjIyIDMuMTMgMS4zNyAzIDIgYyAtMC4zMyAxLjY1IC0yLjc5IDYuNjIgLTUgOCBjIC00Ljc1IDIuOTcgLTEyLjQzIDQuOTIgLTE5IDcgYyAtNy40IDIuMzUgLTE0LjQzIDQuMzMgLTIyIDYgYyAtOS40NSAyLjA4IC0xOC4zOSAzLjkyIC0yOCA1IGMgLTIzLjczIDIuNjYgLTY3LjQzIDUuNzMgLTcwIDYgYyAtMC4xNSAwLjAyIDIuNjcgMC45MiA0IDEgbCAxMyAwIi8+PC9zdmc+\",\"signature_date\":\"2019-07-17 18:12:01\"}],\"documents\":[],\"expenses\":[]}',5,0.50,50.50,NULL,'80.154.98.131',0,NULL,''),(245,'2019-07-18 10:13:49','2019-07-18 10:13:49',1,1,4,NULL,NULL,28,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873550\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-18\",\"due_date\":\"2019-07-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"50.50\",\"balance\":\"50.50\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"50.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 18-July-2019\",\"cost\":\"0.5000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"50.50\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzY3IiBoZWlnaHQ9IjgzIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gNDAgNDEgYyAwLjEyIC0wLjEyIDQuMzcgLTUuMzggNyAtNyBjIDUuNTggLTMuNDQgMTIuNDQgLTYuNzcgMTkgLTkgYyAxMC45NyAtMy43MyAyMi4zMyAtNi43NCAzNCAtOSBjIDE5LjgxIC0zLjgzIDM4LjcgLTYuNjkgNTkgLTkgYyAyNC45MSAtMi44MyA0OC4xMiAtNS4zMSA3MyAtNiBjIDM2LjM1IC0xLjAxIDcyLjI2IC0wLjYzIDEwNyAxIGMgNy4wMSAwLjMzIDE2LjExIDIuMzYgMjEgNSBjIDIuMzMgMS4yNiA0LjM1IDUuOTkgNSA5IGMgMS4xOSA1LjU3IDEuMjEgMTIuODQgMSAxOSBjIC0wLjEyIDMuNjIgLTAuNzQgNy42NyAtMiAxMSBjIC0yLjI3IDUuOTkgLTQuOTQgMTMuODEgLTkgMTggYyAtNS4yNiA1LjQzIC0xNC41NyAxMS4zMyAtMjIgMTQgYyAtOC4wNSAyLjkgLTE4LjU2IDMuNTcgLTI4IDQgYyAtMTkuNyAwLjkxIC0zOC42NiAwLjU2IC01OSAwIGMgLTMwLjAzIC0wLjgyIC01Ny41NSAtMS4zMiAtODcgLTQgYyAtMjYuNjMgLTIuNDIgLTUxLjUzIC02LjQyIC03OCAtMTEgYyAtMTYuODcgLTIuOTIgLTMyLjU0IC02LjcxIC00OSAtMTEgYyAtOC4yOSAtMi4xNiAtMTcuMjEgLTQuNzEgLTI0IC04IGMgLTIuNjYgLTEuMjkgLTUuNjkgLTQuNzYgLTcgLTcgYyAtMC42NiAtMS4xMyAtMC40OSAtMy42MiAwIC01IGMgMS4wMiAtMi44NSAyLjcxIC03LjQ0IDUgLTkgYyA0LjAxIC0yLjczIDExLjIyIC00LjkyIDE3IC02IGMgMTUuMiAtMi44NSAzMC43NiAtNC40NCA0NyAtNiBjIDI2LjgyIC0yLjU3IDUxLjIyIC00LjkgNzggLTYgYyAzMS44NCAtMS4zIDYxLjg1IC0xLjI5IDkzIC0xIGMgNS40IDAuMDUgMTEuMjkgMS4wMSAxNiAyIGMgMS4wNSAwLjIyIDMuMTMgMS4zNyAzIDIgYyAtMC4zMyAxLjY1IC0yLjc5IDYuNjIgLTUgOCBjIC00Ljc1IDIuOTcgLTEyLjQzIDQuOTIgLTE5IDcgYyAtNy40IDIuMzUgLTE0LjQzIDQuMzMgLTIyIDYgYyAtOS40NSAyLjA4IC0xOC4zOSAzLjkyIC0yOCA1IGMgLTIzLjczIDIuNjYgLTY3LjQzIDUuNzMgLTcwIDYgYyAtMC4xNSAwLjAyIDIuNjcgMC45MiA0IDEgbCAxMyAwIi8+PC9zdmc+\",\"signature_date\":\"2019-07-17 18:12:01\"}],\"documents\":[],\"expenses\":[]}',5,-0.50,50.00,NULL,'80.154.98.131',0,NULL,''),(246,'2019-07-18 10:28:43','2019-07-18 10:28:43',1,1,4,NULL,NULL,28,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873550\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-18\",\"due_date\":\"2019-07-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"50.00\",\"balance\":\"50.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"50.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"50.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzUzIiBoZWlnaHQ9IjU4Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA1NiBjIDAuMDkgLTAuMDUgMy4yMiAtMi40MyA1IC0zIGMgMTMuMzUgLTQuMjYgMjcuNDggLTguNDUgNDIgLTEyIGMgMTcuNjcgLTQuMzIgMzMuOTEgLTcuNjYgNTIgLTExIGMgNDkuNCAtOS4xMiA5NC4zNCAtMTcuODcgMTQzIC0yNSBjIDE4LjQ5IC0yLjcxIDM2LjE2IC0zLjMxIDU1IC00IGMgMTguNDUgLTAuNjggNDUuMjcgLTIuMTQgNTQgMCBjIDIuMTEgMC41MiAwLjkyIDEwLjAzIC0xIDEzIGMgLTQuMzcgNi43NiAtMTMuMjggMTYuNSAtMjEgMjEgYyAtMTAuNzcgNi4yOCAtMjUuOTIgMTIuMzEgLTM5IDE0IGMgLTQxLjQ0IDUuMzYgLTg2Ljc5IDcuMTIgLTEzMSA4IGMgLTIzLjk2IDAuNDcgLTQ2Ljc0IC0xLjk2IC03MSAtNCBjIC0xNi41MSAtMS4zOSAtMzMuMDcgLTIuOTIgLTQ4IC02IGMgLTUuMTEgLTEuMDUgLTE1IC01LjQ5IC0xNSAtNyBjIDAgLTEuNDcgOS45IC00LjkgMTUgLTYgYyAxMS40OCAtMi40OCAyMy42NCAtNC4wNCAzNiAtNSBjIDM1Ljc1IC0yLjc5IDczLjY5IC02LjI2IDEwNSAtNiBjIDUuMiAwLjA0IDEzLjAzIDQuMjEgMTYgNyBjIDEuNTQgMS40NSAxLjIgNi41NCAxIDkgbCAtMiAzIi8+PC9zdmc+\",\"signature_date\":\"2019-07-17 18:27:24\"}],\"documents\":[],\"expenses\":[]}',5,0.00,50.00,NULL,'80.154.98.131',0,NULL,''),(247,'2019-07-18 10:28:43','2019-07-18 10:28:43',1,1,4,NULL,NULL,28,NULL,NULL,NULL,NULL,9,-50.00,0.00,NULL,'80.154.98.131',0,NULL,''),(248,'2019-07-18 10:28:54','2019-07-18 10:28:54',1,1,4,NULL,NULL,NULL,1,NULL,NULL,NULL,17,0.00,0.00,NULL,'80.154.98.131',0,NULL,''),(249,'2019-07-18 12:47:19','2019-07-18 12:47:19',1,1,4,NULL,NULL,29,NULL,NULL,NULL,NULL,4,10.00,10.00,NULL,'80.154.98.131',0,NULL,''),(250,'2019-07-18 12:52:03','2019-07-18 12:52:03',1,1,4,NULL,NULL,29,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873551\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-18\",\"due_date\":\"2019-07-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"10.00\",\"balance\":\"10.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"10.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"10.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"1\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzE5IiBoZWlnaHQ9IjQ4Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMjAzIDEgYyAtMC4zOCAwLjEgLTE0LjYyIDQuOTggLTIyIDYgYyAtMTEuNjYgMS42MSAtMjMuNjggMC43NyAtMzYgMiBjIC0zOS4yMiAzLjkyIC03NS40NyA5LjM0IC0xMTQgMTMgYyAtNy43MiAwLjczIC0xNS4zMiAtMC4yNiAtMjMgMCBjIC0yLjM2IDAuMDggLTcuMTIgMS4wMSAtNyAxIGMgMi44OSAtMC4yIDEwNy45MSAtOC45NCAxNjUgLTEyIGMgNTIuNDggLTIuODEgMTQ1Ljg3IC01IDE1MiAtNSBjIDAuNTIgMCAtNy45IDMuODggLTEyIDUgYyAtNi43NCAxLjg0IC0xMy44NiAyLjM2IC0yMSA0IGMgLTkuMzIgMi4xNCAtMTcuOSA0LjE3IC0yNyA3IGMgLTE2LjIgNS4wNCAtNDMuNCAxNC40NiAtNDcgMTYgYyAtMC4zOSAwLjE3IDUuMzEgMS43OCA1IDIgYyAtMC43IDAuNSAtNy45MiAyLjUgLTEyIDMgYyAtMTQuOTEgMS44MyAtNDUgNCAtNDUgNCIvPjwvc3ZnPg==\",\"signature_date\":\"2019-07-17 20:50:55\"}],\"documents\":[],\"expenses\":[]}',5,0.00,10.00,NULL,'80.154.98.131',0,NULL,''),(251,'2019-07-18 12:52:03','2019-07-18 12:52:03',1,1,4,NULL,NULL,29,NULL,NULL,NULL,NULL,9,-10.00,0.00,NULL,'80.154.98.131',0,NULL,''),(252,'2019-07-23 23:18:45','2019-07-23 23:18:45',1,1,4,NULL,NULL,30,NULL,NULL,NULL,NULL,4,1.00,1.00,NULL,'183.171.185.76',0,NULL,''),(253,'2019-07-27 04:35:49','2019-07-27 04:35:49',1,1,4,NULL,NULL,30,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873552\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-23\",\"due_date\":\"2019-08-22\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,1.00,NULL,'80.154.98.131',0,NULL,''),(254,'2019-07-27 04:35:49','2019-07-27 04:35:49',1,1,4,NULL,NULL,30,NULL,NULL,NULL,NULL,9,-1.00,0.00,NULL,'80.154.98.131',0,NULL,''),(255,'2019-07-31 08:07:54','2019-07-31 08:07:54',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.70.63',0,4,''),(256,'2019-07-31 08:08:02','2019-07-31 08:08:02',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.70.63',0,4,''),(257,'2019-07-31 08:08:49','2019-07-31 08:08:49',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.70.63',0,39,''),(258,'2019-07-31 08:10:15','2019-07-31 08:10:15',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.70.63',0,8,''),(259,'2019-07-31 08:13:04','2019-07-31 08:13:04',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.70.63',0,39,''),(260,'2019-07-31 08:16:02','2019-07-31 08:16:02',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.70.63',0,6,''),(261,'2019-07-31 08:18:31','2019-07-31 08:18:31',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.70.63',0,41,''),(268,'2019-08-06 12:32:42','2019-08-06 12:32:42',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,44,''),(269,'2019-08-06 12:34:23','2019-08-06 12:34:23',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'80.154.98.131',0,45,''),(270,'2019-08-06 12:34:48','2019-08-06 12:34:48',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'80.154.98.131',0,44,''),(271,'2019-08-06 12:37:38','2019-08-06 12:37:38',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'208.87.12.248',0,45,''),(272,'2019-08-30 21:18:59','2019-08-30 21:18:59',1,1,3,NULL,NULL,15,NULL,NULL,NULL,'{\"invoice_number\":\"1562958033.614152\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-13\",\"due_date\":\"1998-01-31\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"300.00\",\"balance\":\"300.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tourguide.asia\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"300.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"No.29, Jalan Sentosa 3\\/57\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"+6016261233\",\"balance\":\"1450.00\",\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"+6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"+60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,1450.00,NULL,'183.171.91.198',0,NULL,''),(273,'2019-08-30 21:21:09','2019-08-30 21:21:09',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.91.198',0,45,''),(274,'2019-08-30 21:21:18','2019-08-30 21:21:18',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.91.198',0,45,''),(275,'2019-08-30 21:22:02','2019-08-30 21:22:02',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.91.198',0,44,''),(277,'2019-09-08 23:43:11','2019-09-08 23:43:11',1,1,3,NULL,NULL,31,NULL,NULL,NULL,NULL,4,300.00,1750.00,NULL,'127.0.0.1',1,NULL,''),(278,'2019-09-08 23:43:11','2019-09-08 23:43:11',1,1,3,NULL,NULL,15,NULL,NULL,NULL,'{\"invoice_number\":\"1562958033.614152\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-13\",\"due_date\":\"1998-01-31\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"300.00\",\"balance\":\"300.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tourguide.asia\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"300.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"No.29, Jalan Sentosa 3\\/57\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"+6016261233\",\"balance\":\"1750.00\",\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"+6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"+60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,1450.00,NULL,'127.0.0.1',1,NULL,''),(279,'2019-09-08 23:43:44','2019-09-08 23:43:44',1,1,3,NULL,NULL,31,NULL,NULL,NULL,'{\"invoice_number\":\"R25354I-873553\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-09-08\",\"due_date\":\"2019-09-30\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"300.00\",\"balance\":\"300.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":null,\"has_tasks\":false,\"custom_text_value1\":\"\",\"custom_text_value2\":\"\",\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tourguide.asia\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"300.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"No.29, Jalan Sentosa 3\\/57\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"+6016261233\",\"balance\":\"1750.00\",\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"+6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"+60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,1750.00,NULL,'127.0.0.1',1,NULL,''),(280,'2019-09-08 23:43:44','2019-09-08 23:43:44',1,1,3,6,NULL,31,NULL,NULL,NULL,NULL,6,0.00,1750.00,NULL,'127.0.0.1',1,NULL,''),(281,'2019-09-08 23:44:00','2019-09-08 23:44:00',1,1,3,7,NULL,31,NULL,NULL,NULL,NULL,6,0.00,1750.00,NULL,'127.0.0.1',1,NULL,''),(282,'2019-09-08 23:44:00','2019-09-08 23:44:00',1,1,3,NULL,NULL,31,NULL,NULL,NULL,'{\"invoice_number\":\"R25354I-873553\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-09-08\",\"due_date\":\"2019-09-30\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"300.00\",\"balance\":\"300.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":null,\"has_tasks\":false,\"custom_text_value1\":\"\",\"custom_text_value2\":\"\",\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tourguide.asia\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"300.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"No.29, Jalan Sentosa 3\\/57\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"+6016261233\",\"balance\":\"1750.00\",\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"+6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"+60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,1750.00,NULL,'127.0.0.1',1,NULL,''),(283,'2019-09-30 23:43:35','2019-09-30 23:43:35',1,1,2,NULL,NULL,32,NULL,NULL,NULL,NULL,4,350.00,350.00,NULL,'127.0.0.1',1,NULL,''),(284,'2019-09-30 23:43:36','2019-09-30 23:43:36',1,1,2,NULL,NULL,8,NULL,NULL,NULL,'{\"invoice_number\":\"1558090155.876185\",\"discount\":\"0.00\",\"po_number\":\"37718\",\"invoice_date\":\"2019-05-17\",\"due_date\":\"1998-01-31\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":\"350.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'127.0.0.1',1,NULL,''),(285,'2019-09-30 23:44:14','2019-09-30 23:44:14',1,1,2,NULL,NULL,32,NULL,NULL,NULL,'{\"invoice_number\":\"R25354I-873554\",\"discount\":\"0.00\",\"po_number\":\"37718\",\"invoice_date\":\"2019-09-30\",\"due_date\":\"2019-10-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":null,\"has_tasks\":false,\"custom_text_value1\":\"\",\"custom_text_value2\":\"\",\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":\"350.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,350.00,NULL,'127.0.0.1',1,NULL,''),(286,'2019-09-30 23:44:15','2019-09-30 23:44:15',1,1,2,2,NULL,32,NULL,NULL,NULL,NULL,6,0.00,350.00,NULL,'127.0.0.1',1,NULL,''),(287,'2019-09-30 23:44:23','2019-09-30 23:44:23',1,1,2,3,NULL,32,NULL,NULL,NULL,NULL,6,0.00,350.00,NULL,'127.0.0.1',1,NULL,''),(288,'2019-09-30 23:44:39','2019-09-30 23:44:39',1,1,2,4,NULL,32,NULL,NULL,NULL,NULL,6,0.00,350.00,NULL,'127.0.0.1',1,NULL,''),(289,'2019-09-30 23:44:47','2019-09-30 23:44:47',1,1,2,5,NULL,32,NULL,NULL,NULL,NULL,6,0.00,350.00,NULL,'127.0.0.1',1,NULL,''),(290,'2019-09-30 23:44:47','2019-09-30 23:44:48',1,1,2,NULL,NULL,32,NULL,NULL,NULL,'{\"invoice_number\":\"R25354I-873554\",\"discount\":\"0.00\",\"po_number\":\"37718\",\"invoice_date\":\"2019-09-30\",\"due_date\":\"2019-10-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":null,\"has_tasks\":false,\"custom_text_value1\":\"\",\"custom_text_value2\":\"\",\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":\"350.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,350.00,NULL,'127.0.0.1',1,NULL,''),(291,'2019-10-01 04:24:13','2019-10-01 04:24:13',1,1,2,4,NULL,32,NULL,NULL,NULL,NULL,7,0.00,350.00,NULL,'183.171.67.71',0,NULL,''),(293,'2019-10-03 01:21:11','2019-10-03 01:21:11',1,1,2,4,NULL,32,NULL,NULL,NULL,NULL,7,0.00,350.00,NULL,'101.164.101.41',0,NULL,''),(294,'2019-10-03 01:27:21','2019-10-03 01:27:21',1,1,2,NULL,NULL,32,NULL,NULL,NULL,'{\"invoice_number\":\"R25354I-873554\",\"discount\":\"0.00\",\"po_number\":\"37718\",\"invoice_date\":\"2019-09-30\",\"due_date\":\"2019-10-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":null,\"has_tasks\":false,\"custom_text_value1\":\"\",\"custom_text_value2\":\"\",\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":\"350.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,14.11,364.11,NULL,'101.164.101.41',0,NULL,''),(295,'2019-10-03 08:45:31','2019-10-03 08:45:31',1,1,2,NULL,NULL,32,NULL,NULL,NULL,'{\"invoice_number\":\"R25354I-873554\",\"discount\":\"0.00\",\"po_number\":\"37718\",\"invoice_date\":\"2019-09-30\",\"due_date\":\"2019-10-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"364.11\",\"balance\":\"364.11\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":null,\"has_tasks\":false,\"custom_text_value1\":\"\",\"custom_text_value2\":\"\",\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 02-October-2019\",\"cost\":\"14.1100\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":\"364.11\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-14.11,350.00,NULL,'183.171.70.171',0,NULL,''),(296,'2019-10-03 08:54:21','2019-10-03 08:54:21',1,1,2,NULL,12,32,NULL,NULL,NULL,'{\"invoice_number\":\"R25354I-873554\",\"discount\":\"0.00\",\"po_number\":\"37718\",\"invoice_date\":\"2019-09-30\",\"due_date\":\"2019-10-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":0,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":\"\",\"custom_text_value2\":\"\",\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',10,-350.00,0.00,NULL,'183.171.70.171',0,NULL,''),(297,'2019-10-03 08:54:21','2019-10-03 08:54:21',1,1,2,NULL,NULL,32,NULL,NULL,NULL,'{\"invoice_number\":\"R25354I-873554\",\"discount\":\"0.00\",\"po_number\":\"37718\",\"invoice_date\":\"2019-09-30\",\"due_date\":\"2019-10-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":\"\",\"custom_text_value2\":\"\",\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":\"458\",\"work_phone\":\"+6011-5763973\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"millarw@gmail.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Bill\",\"last_name\":\"Millar\",\"email\":\"bill@tepatconsult.com\",\"phone\":\"+60123386689\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.70.171',0,NULL,''),(298,'2019-10-03 09:14:54','2019-10-03 09:14:54',1,1,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.70.171',0,48,''),(299,'2019-10-08 17:11:22','2019-10-08 17:11:22',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.84.156',0,49,''),(300,'2019-10-08 17:15:19','2019-10-08 17:15:19',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.84.156',0,50,''),(301,'2019-10-08 17:55:08','2019-10-08 17:55:08',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.84.156',0,51,''),(302,'2019-10-08 17:58:26','2019-10-08 17:58:26',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.84.156',0,52,''),(303,'2019-10-14 06:23:58','2019-10-14 06:23:58',1,1,4,NULL,NULL,33,NULL,NULL,NULL,NULL,4,1.00,1.00,NULL,'183.171.101.140',0,NULL,''),(304,'2019-10-14 06:25:19','2019-10-14 06:25:19',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,2.24,3.24,NULL,'183.171.101.140',0,NULL,''),(305,'2019-10-14 06:26:12','2019-10-14 06:26:12',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.24\",\"balance\":\"3.24\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 13-October-2019\",\"cost\":\"2.2400\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"3.24\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-1.24,2.00,NULL,'183.171.101.140',0,NULL,''),(306,'2019-10-14 06:26:35','2019-10-14 06:26:35',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.00\",\"balance\":\"2.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 13-October-2019\",\"cost\":\"2.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"2.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-2.00,0.00,NULL,'183.171.101.140',0,NULL,''),(307,'2019-10-14 06:26:35','2019-10-14 06:26:35',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"0.00\",\"balance\":\"0.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,2.21,2.21,NULL,'183.171.101.140',0,NULL,''),(308,'2019-10-14 06:27:38','2019-10-14 06:27:38',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.21\",\"balance\":\"2.21\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 13-October-2019\",\"cost\":\"2.2100\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"2.21\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-0.42,1.79,NULL,'183.171.101.140',0,NULL,''),(309,'2019-10-14 06:27:55','2019-10-14 06:27:56',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.79\",\"balance\":\"1.79\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 13-October-2019\",\"cost\":\"1.7900\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.79\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-1.79,0.00,NULL,'183.171.101.140',0,NULL,''),(310,'2019-10-14 06:27:56','2019-10-14 06:27:56',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"0.00\",\"balance\":\"0.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,2.21,2.21,NULL,'183.171.101.140',0,NULL,''),(311,'2019-10-14 06:29:08','2019-10-14 06:29:08',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.21\",\"balance\":\"2.21\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 13-October-2019\",\"cost\":\"2.2100\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"2.21\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-1.21,1.00,NULL,'183.171.101.140',0,NULL,''),(312,'2019-10-14 06:29:21','2019-10-14 06:29:22',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 13-October-2019\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-1.00,0.00,NULL,'183.171.101.140',0,NULL,''),(313,'2019-10-14 06:29:22','2019-10-14 06:29:22',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"0.00\",\"balance\":\"0.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,2.21,2.21,NULL,'183.171.101.140',0,NULL,''),(314,'2019-10-14 06:29:56','2019-10-14 06:29:56',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.21\",\"balance\":\"2.21\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 13-October-2019\",\"cost\":\"2.2100\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"2.21\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-0.21,2.00,NULL,'183.171.101.140',0,NULL,''),(315,'2019-10-14 06:30:32','2019-10-14 06:30:32',1,1,4,9,NULL,33,NULL,NULL,NULL,NULL,7,0.00,2.00,NULL,'183.171.101.140',0,NULL,''),(316,'2019-10-14 06:30:53','2019-10-14 06:30:53',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.00\",\"balance\":\"2.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 13-October-2019\",\"cost\":\"2.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"2.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-2.00,0.00,NULL,'183.171.101.140',0,NULL,''),(317,'2019-10-14 06:30:53','2019-10-14 06:30:53',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"0.00\",\"balance\":\"0.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,2.21,2.21,NULL,'183.171.101.140',0,NULL,''),(318,'2019-10-14 06:31:51','2019-10-14 06:31:51',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.21\",\"balance\":\"2.21\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 13-October-2019\",\"cost\":\"2.2100\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"2.21\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-0.21,2.00,NULL,'183.171.101.140',0,NULL,''),(319,'2019-10-14 06:33:50','2019-10-14 06:33:50',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.00\",\"balance\":\"2.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 13-October-2019\",\"cost\":\"2.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"2.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-2.00,0.00,NULL,'183.171.101.140',0,NULL,''),(320,'2019-10-14 06:34:32','2019-10-14 06:34:32',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"0.00\",\"balance\":\"0.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,2.00,2.00,NULL,'183.171.101.140',0,NULL,''),(321,'2019-10-14 06:35:27','2019-10-14 06:35:27',1,1,4,9,13,33,NULL,43,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.00\",\"balance\":0,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"2.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',10,-2.00,0.00,NULL,'183.171.101.140',0,NULL,''),(322,'2019-10-14 06:35:27','2019-10-14 06:35:27',1,1,4,NULL,NULL,33,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873555\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-13\",\"due_date\":\"2019-11-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.00\",\"balance\":\"2.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"2.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.101.140',0,NULL,''),(323,'2019-10-15 15:15:31','2019-10-15 15:15:31',1,1,3,NULL,NULL,31,NULL,NULL,NULL,'{\"invoice_number\":\"R25354I-873553\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-09-08\",\"due_date\":\"2019-09-30\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"300.00\",\"balance\":\"300.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":null,\"has_tasks\":false,\"custom_text_value1\":\"\",\"custom_text_value2\":\"\",\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tourguide.asia\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"300.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"No.29, Jalan Sentosa 3\\/57\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"+6016261233\",\"balance\":\"1750.00\",\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"+6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"+60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,1750.00,NULL,'208.87.12.248',0,NULL,''),(324,'2019-10-15 15:15:31','2019-10-15 15:15:31',1,1,3,NULL,NULL,31,NULL,NULL,NULL,NULL,9,-300.00,1450.00,NULL,'208.87.12.248',0,NULL,''),(325,'2019-10-15 15:15:38','2019-10-15 15:15:39',1,1,3,NULL,NULL,10,NULL,NULL,NULL,'{\"invoice_number\":\"864556\",\"discount\":\"0.00\",\"po_number\":\"864046\",\"invoice_date\":\"2018-10-02\",\"due_date\":\"2019-10-10\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1650.00\",\"balance\":\"1450.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"130.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Website Development - 2 Languages\",\"notes\":\"Translate 2 Language\",\"cost\":\"1150.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Domain & Hosting  (Linux Platform)\",\"notes\":\"1 Year Fee\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50GB\\r\\nMultiple Domain Hosting - Up To 5 Domains\\r\\nDisk Space 10GB\",\"cost\":\"500.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Website & Hosting Maintenance \\/ Support\",\"notes\":\"Optional\\r\\nRM100 \\/ Request\\r\\nRM1200 \\/ Yearly\",\"cost\":\"0.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"No.29, Jalan Sentosa 3\\/57\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"+6016261233\",\"balance\":\"1450.00\",\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"+6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"+60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[{\"public_id\":\"4\",\"name\":\"web development deposit.pdf\"}],\"expenses\":[]}',5,0.00,1450.00,NULL,'208.87.12.248',0,NULL,''),(326,'2019-10-15 15:15:40','2019-10-15 15:15:40',1,1,3,NULL,NULL,10,NULL,NULL,NULL,NULL,9,-1450.00,0.00,NULL,'208.87.12.248',0,NULL,''),(327,'2019-10-15 15:16:55','2019-10-15 15:16:55',1,1,3,NULL,NULL,15,NULL,NULL,NULL,'{\"invoice_number\":\"1562958033.614152\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-13\",\"due_date\":\"1998-01-31\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"300.00\",\"balance\":\"300.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tourguide.asia\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"300.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"No.29, Jalan Sentosa 3\\/57\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"+6016261233\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"+6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"+60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'208.87.12.248',0,NULL,''),(328,'2019-10-15 15:16:55','2019-10-15 15:16:55',1,1,3,NULL,NULL,15,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'208.87.12.248',0,NULL,''),(329,'2019-10-15 15:17:11','2019-10-15 15:17:11',1,1,3,NULL,NULL,9,NULL,NULL,NULL,'{\"invoice_number\":\"5021\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-07-12\",\"due_date\":null,\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Prepayment is allow 3 time after completion development.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer\\r\\n- Pay to MOBTEL HUB (Maybank : 564548148577)\",\"public_notes\":\"Unpaid Quotation - 25354A 864046 (MYR 625)\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"500.00\",\"balance\":\"500.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"2\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Website Development (Enhance From Old Website)\",\"notes\":\"Enhancement Previous Website From 2 Language To Single Language\",\"cost\":\"500.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Norsobah Mashitah\",\"address1\":\"No.29, Jalan Sentosa 3\\/57\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"46000\",\"country_id\":\"458\",\"work_phone\":\"+6016261233\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tourguide.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Norsobah Mashitah\",\"last_name\":\"Misrul\",\"email\":\"aksara.nordanie@gmail.com\",\"phone\":\"+6016261233\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Shovkat Hamidov\",\"last_name\":\"\",\"email\":\"shovkatkhamidov@gmail.com\",\"phone\":\"+60172789317\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',19,0.00,0.00,NULL,'208.87.12.248',0,NULL,''),(330,'2019-10-15 15:17:11','2019-10-15 15:17:11',1,1,3,NULL,NULL,9,NULL,NULL,NULL,NULL,23,0.00,0.00,NULL,'208.87.12.248',0,NULL,''),(331,'2019-10-15 15:22:14','2019-10-15 15:22:14',1,1,4,NULL,NULL,34,NULL,NULL,NULL,NULL,4,20.00,20.00,NULL,'208.87.12.248',0,NULL,''),(332,'2019-10-15 15:23:54','2019-10-15 15:23:55',1,1,4,NULL,NULL,34,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873556\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-15\",\"due_date\":\"2019-11-13\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"20.00\",\"balance\":\"20.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"20.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"20.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,2.89,22.89,NULL,'208.87.12.248',0,NULL,''),(333,'2019-10-15 15:25:19','2019-10-15 15:25:19',1,1,4,NULL,NULL,34,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873556\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-15\",\"due_date\":\"2019-11-13\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"22.89\",\"balance\":\"22.89\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"20.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"},{\"product_key\":\"Gateway Fee Item\",\"notes\":\"Gateway Fee Surcharge \\u2022 15-October-2019\",\"cost\":\"2.8900\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"3\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"22.89\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,977.11,1000.00,NULL,'208.87.12.248',0,NULL,''),(334,'2019-10-15 15:27:23','2019-10-15 15:27:23',1,1,4,NULL,NULL,34,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873556\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-15\",\"due_date\":\"2019-11-13\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1000.00\",\"balance\":\"1000.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1000.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1000.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-999.00,1.00,NULL,'208.87.12.248',0,NULL,''),(335,'2019-10-15 15:30:04','2019-10-15 15:30:05',1,1,4,NULL,NULL,34,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873556\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-15\",\"due_date\":\"2019-11-13\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"1.00\",\"balance\":\"1.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-0.50,0.50,NULL,'208.87.12.248',0,NULL,''),(336,'2019-10-15 15:37:40','2019-10-15 15:37:40',1,1,4,NULL,NULL,34,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873556\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-15\",\"due_date\":\"2019-11-13\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"0.50\",\"balance\":\"0.50\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"0.5000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.50\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.50,NULL,'208.87.12.248',0,NULL,''),(337,'2019-10-15 15:42:59','2019-10-15 15:42:59',1,1,4,NULL,NULL,34,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873556\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-15\",\"due_date\":\"2019-11-13\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"0.50\",\"balance\":\"0.50\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"0.5000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.50\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Testing\",\"last_name\":\"Testing\",\"email\":\"test@test.com.my\",\"phone\":\"01234567890\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.50,NULL,'208.87.12.248',0,NULL,''),(338,'2019-10-15 16:13:36','2019-10-15 16:13:36',1,1,4,NULL,NULL,34,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873556\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-15\",\"due_date\":\"2019-11-13\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"0.50\",\"balance\":\"0.50\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"0.5000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.50\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Testing\",\"last_name\":\"Testing\",\"email\":\"\",\"phone\":\"01234567890\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.50,NULL,'208.87.12.248',0,NULL,''),(339,'2019-10-15 16:13:36','2019-10-15 16:13:36',1,1,4,NULL,NULL,34,NULL,NULL,NULL,NULL,9,-0.50,0.00,NULL,'208.87.12.248',0,NULL,''),(340,'2019-10-15 16:59:01','2019-10-15 16:59:01',1,1,4,NULL,NULL,35,NULL,NULL,NULL,NULL,4,2.00,2.00,NULL,'208.87.12.248',0,NULL,''),(341,'2019-10-15 17:00:13','2019-10-15 17:00:13',1,1,4,NULL,NULL,35,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873557\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-15\",\"due_date\":\"2019-11-14\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.00\",\"balance\":\"2.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"2.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"2.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Testing\",\"last_name\":\"Testing\",\"email\":\"\",\"phone\":\"01234567890\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,2.00,NULL,'208.87.12.248',0,NULL,''),(342,'2019-10-15 17:00:13','2019-10-15 17:00:13',1,1,4,NULL,NULL,35,NULL,NULL,NULL,NULL,9,-2.00,0.00,NULL,'208.87.12.248',0,NULL,''),(343,'2019-10-21 07:53:05','2019-10-21 07:53:05',1,1,4,NULL,NULL,36,NULL,NULL,NULL,NULL,4,12.00,12.00,NULL,'183.171.65.10',0,NULL,''),(344,'2019-10-21 07:54:01','2019-10-21 07:54:02',1,1,4,9,14,36,NULL,48,NULL,'{\"invoice_number\":\"25354I-873558\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-20\",\"due_date\":\"2019-11-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"12.00\",\"balance\":0,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Testing\",\"last_name\":\"Testing\",\"email\":\"\",\"phone\":\"01234567890\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"12.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-12.00,0.00,NULL,'183.171.65.10',0,NULL,''),(345,'2019-10-21 07:54:01','2019-10-21 07:54:02',1,1,4,NULL,NULL,36,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873558\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-20\",\"due_date\":\"2019-11-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"12.00\",\"balance\":\"12.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"12.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Testing\",\"last_name\":\"Testing\",\"email\":\"\",\"phone\":\"01234567890\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.65.10',0,NULL,''),(346,'2019-10-21 07:58:47','2019-10-21 07:58:47',1,1,4,NULL,NULL,37,NULL,NULL,NULL,NULL,4,4.00,4.00,NULL,'183.171.65.10',0,NULL,''),(347,'2019-10-21 07:59:31','2019-10-21 07:59:32',1,1,4,9,15,37,NULL,49,NULL,'{\"invoice_number\":\"25354I-873559\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-20\",\"due_date\":\"2019-11-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"4.00\",\"balance\":0,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Testing\",\"last_name\":\"Testing\",\"email\":\"\",\"phone\":\"01234567890\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"4.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-4.00,0.00,NULL,'183.171.65.10',0,NULL,''),(348,'2019-10-21 07:59:32','2019-10-21 07:59:32',1,1,4,NULL,NULL,37,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873559\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-20\",\"due_date\":\"2019-11-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"4.00\",\"balance\":\"4.00\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"4.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Testing\",\"last_name\":\"Testing\",\"email\":\"\",\"phone\":\"01234567890\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.65.10',0,NULL,''),(349,'2019-10-21 08:03:44','2019-10-21 08:03:44',1,1,4,NULL,NULL,38,NULL,NULL,NULL,NULL,4,7.90,7.90,NULL,'183.171.65.10',0,NULL,''),(350,'2019-10-21 08:04:29','2019-10-21 08:04:30',1,1,4,9,16,38,NULL,50,NULL,'{\"invoice_number\":\"25354I-873560\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-21\",\"due_date\":\"2019-11-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"7.90\",\"balance\":0,\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Testing\",\"last_name\":\"Testing\",\"email\":\"\",\"phone\":\"01234567890\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"7.9000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-7.90,0.00,NULL,'183.171.65.10',0,NULL,''),(351,'2019-10-21 08:04:29','2019-10-21 08:04:30',1,1,4,NULL,NULL,38,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873560\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2019-10-21\",\"due_date\":\"2019-11-19\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"7.90\",\"balance\":\"7.90\",\"invoice_design_id\":\"5\",\"invoice_type_id\":\"1\",\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":\"0\",\"custom_taxes2\":\"0\",\"is_amount_discount\":\"0\",\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"7.9000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":\"1\",\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":\"30\",\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Testing\",\"last_name\":\"Testing\",\"email\":\"\",\"phone\":\"01234567890\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":\"19\",\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":\"458\",\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":\"0\",\"hide_paid_to_date\":\"1\",\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":\"1\",\"show_item_taxes\":\"0\",\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":\"0\",\"all_pages_header\":\"0\",\"show_currency_code\":\"0\",\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":\"0\",\"page_size\":\"A4\",\"include_item_taxes_inline\":\"0\",\"inclusive_taxes\":\"1\",\"signature_on_pdf\":\"0\",\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.65.10',0,NULL,''),(354,'2019-12-10 03:53:03','2019-12-10 03:53:03',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.96.177',0,55,''),(355,'2019-12-10 03:54:37','2019-12-10 03:54:37',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.96.177',0,56,''),(356,'2019-12-10 03:57:00','2019-12-10 03:57:00',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.96.177',0,55,''),(357,'2019-12-10 03:57:17','2019-12-10 03:57:17',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.96.177',0,56,''),(358,'2019-12-10 03:59:28','2019-12-10 03:59:28',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.96.177',0,50,''),(359,'2019-12-10 04:00:00','2019-12-10 04:00:00',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.96.177',0,50,''),(360,'2019-12-10 04:01:12','2019-12-10 04:01:12',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.96.177',0,50,''),(361,'2019-12-10 04:02:43','2019-12-10 04:02:43',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.96.177',0,49,''),(362,'2019-12-10 04:03:06','2019-12-10 04:03:06',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.96.177',0,50,''),(363,'2019-12-10 04:03:53','2019-12-10 04:03:53',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.96.177',0,55,''),(364,'2019-12-11 03:07:24','2019-12-11 03:07:24',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.85.13',0,57,''),(365,'2019-12-11 03:08:06','2019-12-11 03:08:06',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.85.13',0,57,''),(366,'2019-12-11 03:08:16','2019-12-11 03:08:16',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.85.13',0,57,''),(367,'2019-12-11 03:10:53','2019-12-11 03:10:53',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.85.13',0,58,''),(368,'2019-12-11 03:11:22','2019-12-11 03:11:22',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.85.13',0,58,''),(369,'2019-12-27 09:47:54','2019-12-27 09:47:54',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.74.204',0,59,''),(370,'2019-12-27 09:50:29','2019-12-27 09:50:29',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.74.204',0,60,''),(371,'2019-12-27 09:52:11','2019-12-27 09:52:11',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36,0.00,0.00,NULL,'183.171.74.204',0,45,''),(372,'2019-12-27 09:54:08','2019-12-27 09:54:08',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.74.204',0,60,''),(373,'2019-12-27 10:32:43','2019-12-27 10:32:43',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.74.204',0,61,''),(374,'2019-12-27 10:33:32','2019-12-27 10:33:32',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.74.204',0,61,''),(375,'2019-12-27 10:33:38','2019-12-27 10:33:38',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.74.204',0,61,''),(376,'2019-12-27 10:34:15','2019-12-27 10:34:15',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.74.204',0,61,''),(377,'2019-12-27 10:56:20','2019-12-27 10:56:20',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.74.204',0,62,''),(378,'2019-12-27 10:58:07','2019-12-27 10:58:07',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.74.204',0,62,''),(379,'2019-12-27 11:00:22','2019-12-27 11:00:22',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.74.204',0,62,''),(380,'2020-01-01 08:23:27','2020-01-01 08:23:27',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.79.27',0,63,''),(381,'2020-01-01 08:24:49','2020-01-01 08:24:49',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.79.27',0,63,''),(383,'2020-03-28 23:43:08','2020-03-28 23:43:08',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'127.0.0.1',1,65,''),(384,'2020-09-24 02:49:10','2020-09-24 02:49:10',1,1,2,NULL,NULL,8,NULL,NULL,NULL,'{\"invoice_number\":\"1558090155.876185\",\"discount\":\"0.00\",\"po_number\":\"37718\",\"invoice_date\":\"2019-05-17\",\"due_date\":\"1998-01-31\",\"terms\":\"\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":458,\"work_phone\":\"+6011-5763973\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'208.87.12.248',0,NULL,''),(385,'2020-09-24 02:49:10','2020-09-24 02:49:10',1,1,2,NULL,NULL,8,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'208.87.12.248',0,NULL,''),(386,'2020-09-28 17:41:16','2020-09-28 17:41:16',1,1,2,3,NULL,32,NULL,NULL,NULL,NULL,7,0.00,0.00,NULL,'193.36.225.19',0,NULL,''),(393,'2021-08-17 22:47:54','2021-08-17 22:47:54',1,1,2,NULL,NULL,39,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'42.153.132.252',0,NULL,''),(394,'2021-08-17 22:48:05','2021-08-17 22:48:05',1,1,2,NULL,NULL,39,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873561\",\"discount\":\"10.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-01\",\"due_date\":\"2021-09-30\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Payment : Cash \\/ Cheque \\/ Wire Transfer \\/ Credit Card (Visa\\/MasterCard) \\/ PayPal \\/ Bitcoin\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"0.00\",\"balance\":\"0.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":458,\"work_phone\":\"+6011-5763973\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'42.153.132.252',0,NULL,''),(395,'2021-08-17 22:48:07','2021-08-17 22:48:07',1,1,2,NULL,NULL,39,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'42.153.132.252',0,NULL,''),(396,'2021-08-17 23:13:30','2021-08-17 23:13:30',1,1,2,NULL,NULL,40,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'42.153.132.252',0,NULL,''),(397,'2021-08-17 23:21:59','2021-08-17 23:21:59',1,1,2,NULL,NULL,40,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873562\",\"discount\":\"10.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-01\",\"due_date\":\"2021-09-30\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\nBank Address                     : 9, Jalan 3\\/76D,\\r\\n                                                Desa Pandan, 55100, \\r\\n                                                Kuala Lumpur, Malaysia.\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"388.8900\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting Sdn. Bhd\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":458,\"work_phone\":\"+6011-5763973\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"1255090-V\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+601115763973\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'42.153.132.252',0,NULL,''),(398,'2021-08-17 23:21:59','2021-08-17 23:21:59',1,1,2,NULL,NULL,40,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'42.153.132.252',0,NULL,''),(399,'2021-08-17 23:26:32','2021-08-17 23:26:32',1,1,2,NULL,NULL,41,NULL,NULL,NULL,NULL,4,350.00,350.00,NULL,'42.153.132.252',0,NULL,''),(400,'2021-08-17 23:40:17','2021-08-17 23:40:17',1,1,2,NULL,NULL,41,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873563\",\"discount\":\"10.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-01\",\"due_date\":\"2021-09-30\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\nBank Address                     : 9, Jalan 3\\/76D, Desa Pandan, 55100, Kuala Lumpur, Malaysia.\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"388.8900\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":458,\"work_phone\":\"+61406709860\",\"balance\":\"350.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+61406709860\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+61406709860\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,350.00,NULL,'42.153.132.252',0,NULL,''),(401,'2021-08-17 23:40:31','2021-08-17 23:40:31',1,1,2,2,NULL,41,NULL,NULL,NULL,NULL,6,0.00,350.00,NULL,'42.153.132.252',0,NULL,''),(402,'2021-08-17 23:40:39','2021-08-17 23:40:39',1,1,2,3,NULL,41,NULL,NULL,NULL,NULL,6,0.00,350.00,NULL,'42.153.132.252',0,NULL,''),(403,'2021-08-17 23:40:39','2021-08-17 23:40:39',1,1,2,NULL,NULL,41,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873563\",\"discount\":\"10.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-01\",\"due_date\":\"2021-09-30\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\nBank Address                     : 9, Jalan 3\\/76D, Desa Pandan, 55100, Kuala Lumpur, Malaysia.\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"388.8900\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":458,\"work_phone\":\"+61406709860\",\"balance\":\"350.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+61406709860\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+61406709860\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,350.00,NULL,'42.153.132.252',0,NULL,''),(404,'2021-08-19 09:57:30','2021-08-19 09:57:30',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'42.153.146.47',0,65,''),(405,'2021-08-19 09:59:22','2021-08-19 09:59:22',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'42.153.146.47',0,65,''),(406,'2021-08-19 09:59:56','2021-08-19 09:59:56',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'42.153.146.47',0,56,''),(407,'2021-08-19 10:00:24','2021-08-19 10:00:24',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'42.153.146.47',0,59,''),(408,'2021-08-19 10:14:40','2021-08-19 10:14:40',1,1,4,NULL,NULL,42,NULL,NULL,NULL,NULL,4,3.73,3.73,NULL,'42.153.146.47',0,NULL,''),(409,'2021-08-19 10:14:49','2021-08-19 10:14:49',1,1,4,9,NULL,42,NULL,NULL,NULL,NULL,6,0.00,3.73,NULL,'42.153.146.47',0,NULL,''),(410,'2021-08-19 10:14:49','2021-08-19 10:14:49',1,1,4,NULL,NULL,42,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873564\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-08-19\",\"due_date\":\"2021-09-18\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\nBank Address                     : 9, Jalan 3\\/76D, Desa Pandan, 55100, Kuala Lumpur, Malaysia.\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.73\",\"balance\":\"3.73\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"3.7300\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"3.73\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,3.73,NULL,'42.153.146.47',0,NULL,''),(411,'2021-08-19 10:16:24','2021-08-19 10:16:24',1,1,4,9,NULL,42,NULL,NULL,NULL,NULL,7,0.00,3.73,NULL,'42.153.146.47',0,NULL,''),(412,'2021-08-19 10:18:43','2021-08-19 10:18:44',1,1,4,9,17,42,NULL,57,NULL,'{\"invoice_number\":\"25354I-873564\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-08-19\",\"due_date\":\"2021-09-18\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\nBank Address                     : 9, Jalan 3\\/76D, Desa Pandan, 55100, Kuala Lumpur, Malaysia.\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.73\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"3.7300\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-3.73,0.00,NULL,'42.153.146.47',0,NULL,''),(413,'2021-08-19 10:18:43','2021-08-19 10:18:44',1,1,4,NULL,NULL,42,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873564\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-08-19\",\"due_date\":\"2021-09-18\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\nBank Address                     : 9, Jalan 3\\/76D, Desa Pandan, 55100, Kuala Lumpur, Malaysia.\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3.73\",\"balance\":\"3.73\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"3.7300\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'42.153.146.47',0,NULL,''),(414,'2021-08-19 10:45:15','2021-08-19 10:45:15',1,1,2,NULL,NULL,43,NULL,NULL,NULL,NULL,4,0.00,350.00,NULL,'42.153.146.47',0,NULL,''),(415,'2021-08-19 10:45:43','2021-08-19 10:45:43',1,1,2,NULL,NULL,43,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873565\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2020-09-24\",\"due_date\":\"2020-09-24\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\nBank Address                     : 9, Jalan 3\\/76D, Desa Pandan, 55100, Kuala Lumpur, Malaysia.\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"355.00\",\"balance\":\"355.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"355.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":458,\"work_phone\":\"+61406709860\",\"balance\":\"350.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+61406709860\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+61406709860\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,355.00,705.00,NULL,'42.153.146.47',0,NULL,''),(416,'2021-08-19 10:47:29','2021-08-19 10:47:29',1,1,2,NULL,18,43,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873565\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2020-09-24\",\"due_date\":\"2020-09-24\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\nBank Address                     : 9, Jalan 3\\/76D, Desa Pandan, 55100, Kuala Lumpur, Malaysia.\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"355.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":458,\"work_phone\":\"+61406709860\",\"balance\":\"350.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+61406709860\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+61406709860\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"355.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-355.00,350.00,NULL,'42.153.146.47',0,NULL,''),(417,'2021-08-19 10:47:29','2021-08-19 10:47:29',1,1,2,NULL,NULL,43,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873565\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2020-09-24\",\"due_date\":\"2020-09-24\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\nBank Address                     : 9, Jalan 3\\/76D, Desa Pandan, 55100, Kuala Lumpur, Malaysia.\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"355.00\",\"balance\":\"355.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"355.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":458,\"work_phone\":\"+61406709860\",\"balance\":\"350.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+61406709860\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+61406709860\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,350.00,NULL,'42.153.146.47',0,NULL,''),(418,'2021-08-20 08:39:23','2021-08-20 08:39:23',1,1,2,NULL,19,41,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873563\",\"discount\":\"10.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-01\",\"due_date\":\"2021-09-30\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\nBank Address                     : 9, Jalan 3\\/76D, Desa Pandan, 55100, Kuala Lumpur, Malaysia.\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":458,\"work_phone\":\"+61406709860\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+61406709860\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+61406709860\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"388.8900\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-350.00,0.00,NULL,'42.153.53.42',0,NULL,''),(419,'2021-08-20 08:39:23','2021-08-20 08:39:23',1,1,2,NULL,NULL,41,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873563\",\"discount\":\"10.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-01\",\"due_date\":\"2021-09-30\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\nBank Address                     : 9, Jalan 3\\/76D, Desa Pandan, 55100, Kuala Lumpur, Malaysia.\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"350.00\",\"balance\":\"350.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Domain & Hosting Renewal\",\"notes\":\"Renewal For 1 Year - tepatconsult.com\\r\\nWeb-Base File Sharing\\r\\nUnlimited Email\\r\\nWeb-Base Email Access\\r\\nSPAM Assassin\\r\\nVirus Protection\\r\\nMonthly Bandwidth 50 GB\\r\\nMultiple Domain Hosting Up To 5 Domain\\r\\nDisk Space 10 GB\\r\\nServer Hosting Location : Malaysia\",\"cost\":\"388.8900\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Tepat Consulting\",\"address1\":\"Zehn Jalan Bukit Pantai\",\"address2\":\"Bukit Pantai\",\"city\":\"Kuala Lumpur\",\"state\":\"Wilayah Persekutuan\",\"postal_code\":\"59100\",\"country_id\":458,\"work_phone\":\"+61406709860\",\"balance\":\"0.00\",\"website\":\"http:\\/\\/www.tepatconsult.com\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard.j.rankin@gmail.com\",\"phone\":\"+61406709860\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Richard\",\"last_name\":\"Ranking\",\"email\":\"richard@tepatconsult.com\",\"phone\":\"+61406709860\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"02655707-P\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null},{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'42.153.53.42',0,NULL,''),(420,'2021-08-20 09:01:55','2021-08-20 09:01:55',1,1,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'42.153.53.42',0,66,''),(421,'2021-08-20 09:30:05','2021-08-20 09:30:05',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'42.153.53.42',0,67,''),(422,'2021-08-20 09:34:57','2021-08-20 09:34:57',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'42.153.53.42',0,68,''),(423,'2021-08-20 09:36:38','2021-08-20 09:36:38',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'42.153.53.42',0,69,''),(424,'2021-08-20 09:37:56','2021-08-20 09:37:56',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'42.153.53.42',0,70,''),(425,'2021-08-20 14:28:53','2021-08-20 14:28:53',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'42.153.42.69',0,71,''),(426,'2021-09-02 20:04:53','2021-09-02 20:04:53',1,2,4,NULL,NULL,44,NULL,NULL,NULL,NULL,4,71.00,71.00,NULL,'183.171.69.74',0,NULL,''),(427,'2021-09-02 20:05:09','2021-09-02 20:05:09',1,2,4,9,NULL,44,NULL,NULL,NULL,NULL,6,0.00,71.00,NULL,'183.171.69.74',0,NULL,''),(428,'2021-09-02 20:05:09','2021-09-02 20:05:09',1,2,4,NULL,NULL,44,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873566\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-02\",\"due_date\":\"2021-10-02\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"71.00\",\"balance\":\"71.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_3)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nMonday 8:00pm- 9:00pm\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"71.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,71.00,NULL,'183.171.69.74',0,NULL,''),(429,'2021-09-02 20:07:38','2021-09-02 20:07:38',1,2,4,NULL,20,44,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873566\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-02\",\"due_date\":\"2021-10-02\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"71.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_3)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nMonday 8:00pm- 9:00pm\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-71.00,0.00,NULL,'183.171.69.74',0,NULL,''),(430,'2021-09-02 20:07:38','2021-09-02 20:07:38',1,2,4,NULL,NULL,44,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873566\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-02\",\"due_date\":\"2021-10-02\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"71.00\",\"balance\":\"71.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_3)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nMonday 8:00pm- 9:00pm\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"002655707-P\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"karl.qing@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.69.74',0,NULL,''),(431,'2021-09-02 20:26:04','2021-09-02 20:26:04',1,1,4,NULL,NULL,44,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873566\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-02\",\"due_date\":\"2021-10-02\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nMake all cheques payable to MOBTEL HUB\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"71.00\",\"balance\":\"0.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_3)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nMonday 8:00pm- 9:00pm\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.69.74',0,NULL,''),(432,'2021-09-02 20:26:04','2021-09-02 20:26:04',1,1,4,NULL,NULL,44,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'183.171.69.74',0,NULL,''),(433,'2021-09-02 21:29:42','2021-09-02 21:29:42',1,2,4,NULL,NULL,45,NULL,NULL,NULL,NULL,4,140.00,140.00,NULL,'183.171.69.74',0,NULL,''),(434,'2021-09-02 21:29:51','2021-09-02 21:29:51',1,2,4,9,NULL,45,NULL,NULL,NULL,NULL,6,0.00,140.00,NULL,'183.171.69.74',0,NULL,''),(435,'2021-09-02 21:29:51','2021-09-02 21:29:51',1,2,4,NULL,NULL,45,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873567\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-02\",\"due_date\":\"2021-10-02\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"140.00\",\"balance\":\"140.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_3)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nMonday 8:00pm- 9:00pm\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN2_2)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 11:30am- 12:30pm\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"140.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,140.00,NULL,'183.171.69.74',0,NULL,''),(436,'2021-09-02 21:36:47','2021-09-02 21:36:47',1,2,4,NULL,21,45,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873567\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-02\",\"due_date\":\"2021-10-02\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"140.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_3)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nMonday 8:00pm- 9:00pm\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN2_2)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 11:30am- 12:30pm\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-140.00,0.00,NULL,'183.171.69.74',0,NULL,''),(437,'2021-09-02 21:36:47','2021-09-02 21:36:47',1,2,4,NULL,NULL,45,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873567\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-02\",\"due_date\":\"2021-10-02\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"140.00\",\"balance\":\"140.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_3)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nMonday 8:00pm- 9:00pm\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN2_2)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 11:30am- 12:30pm\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.69.74',0,NULL,''),(438,'2021-09-02 21:38:59','2021-09-02 21:38:59',1,2,4,NULL,NULL,45,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873567\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-02\",\"due_date\":\"2021-10-02\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"140.00\",\"balance\":\"0.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_3)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nMonday 8:00pm- 9:00pm\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN2_2)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 11:30am- 12:30pm\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.69.74',0,NULL,''),(439,'2021-09-02 21:38:59','2021-09-02 21:38:59',1,2,4,NULL,NULL,45,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'183.171.69.74',0,NULL,''),(440,'2021-09-02 23:10:00','2021-09-02 23:10:00',1,2,4,NULL,NULL,46,NULL,NULL,NULL,NULL,4,140.00,140.00,NULL,'14.192.213.70',0,NULL,''),(441,'2021-09-02 23:10:08','2021-09-02 23:10:08',1,2,4,9,NULL,46,NULL,NULL,NULL,NULL,6,0.00,140.00,NULL,'14.192.213.70',0,NULL,''),(442,'2021-09-02 23:10:08','2021-09-02 23:10:08',1,2,4,NULL,NULL,46,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873568\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-02\",\"due_date\":\"2021-10-02\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"140.00\",\"balance\":\"140.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_2)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 9:30am- 10:30am\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_2)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 9:30am- 10:30am\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"140.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,140.00,NULL,'14.192.213.70',0,NULL,''),(443,'2021-09-02 23:14:33','2021-09-02 23:14:33',1,2,4,NULL,22,46,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873568\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-02\",\"due_date\":\"2021-10-02\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"140.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_2)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 9:30am- 10:30am\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_2)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 9:30am- 10:30am\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-140.00,0.00,NULL,'14.192.213.70',0,NULL,''),(444,'2021-09-02 23:14:33','2021-09-02 23:14:33',1,2,4,NULL,NULL,46,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873568\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-02\",\"due_date\":\"2021-10-02\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"140.00\",\"balance\":\"140.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_2)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 9:30am- 10:30am\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_2)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 9:30am- 10:30am\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.213.70',0,NULL,''),(445,'2021-09-02 23:44:05','2021-09-02 23:44:05',1,2,4,NULL,NULL,47,NULL,NULL,NULL,NULL,4,70.00,70.00,NULL,'14.192.213.70',0,NULL,''),(446,'2021-09-03 00:40:47','2021-09-03 00:40:48',1,1,4,NULL,NULL,47,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873569\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-02\",\"due_date\":\"2021-10-02\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":\"70.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0103)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month :- \\r\\n\\r\\nSession :-\\r\\n\\r\\nTuesday 8:00pm- 9:00pm (MAN0103)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"70.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,70.00,NULL,'183.171.69.74',0,NULL,''),(447,'2021-09-03 00:40:48','2021-09-03 00:40:48',1,1,4,NULL,NULL,47,NULL,NULL,NULL,NULL,9,-70.00,0.00,NULL,'183.171.69.74',0,NULL,''),(448,'2021-09-03 00:40:54','2021-09-03 00:40:54',1,1,4,NULL,NULL,46,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873568\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-02\",\"due_date\":\"2021-10-02\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"140.00\",\"balance\":\"0.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_2)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 9:30am- 10:30am\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN1_2)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 9:30am- 10:30am\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.69.74',0,NULL,''),(449,'2021-09-03 00:40:54','2021-09-03 00:40:54',1,1,4,NULL,NULL,46,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'183.171.69.74',0,NULL,''),(450,'2021-09-03 00:46:19','2021-09-03 00:46:19',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'183.171.69.74',0,70,''),(451,'2021-09-03 00:47:06','2021-09-03 00:47:06',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.69.74',0,72,''),(452,'2021-09-03 00:48:06','2021-09-03 00:48:06',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.69.74',0,73,''),(453,'2021-09-03 00:50:16','2021-09-03 00:50:16',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.69.74',0,74,''),(454,'2021-09-03 00:54:44','2021-09-03 00:54:44',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.69.74',0,75,''),(455,'2021-09-03 00:56:17','2021-09-03 00:56:17',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,0.00,0.00,NULL,'183.171.69.74',0,76,''),(456,'2021-09-09 10:32:25','2021-09-09 10:32:25',1,2,6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'14.192.213.70',0,NULL,''),(457,'2021-09-09 10:32:26','2021-09-09 10:32:26',1,2,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'14.192.213.70',0,NULL,''),(458,'2021-09-09 10:34:31','2021-09-09 10:34:31',1,2,6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,0.00,0.00,NULL,'14.192.213.70',0,NULL,''),(459,'2021-09-09 17:13:20','2021-09-09 17:13:20',1,2,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'14.192.213.70',0,NULL,''),(460,'2021-09-09 17:17:17','2021-09-09 17:17:17',1,2,9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'14.192.213.70',0,NULL,''),(461,'2021-09-09 17:18:49','2021-09-09 17:18:49',1,2,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'14.192.213.70',0,NULL,''),(462,'2021-09-09 17:21:02','2021-09-09 17:21:02',1,2,11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'14.192.213.70',0,NULL,''),(463,'2021-09-09 17:44:02','2021-09-09 17:44:02',1,2,7,NULL,NULL,48,NULL,NULL,NULL,NULL,4,100.00,100.00,NULL,'14.192.213.70',0,NULL,''),(464,'2021-09-09 17:44:18','2021-09-09 17:44:18',1,2,7,14,NULL,48,NULL,NULL,NULL,NULL,6,0.00,100.00,NULL,'14.192.213.70',0,NULL,''),(465,'2021-09-09 17:44:18','2021-09-09 17:44:18',1,2,7,NULL,NULL,48,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873570\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0201)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month:- September\\r\\n- Student\'s Name: Muhammad Rayyan bin Mohamad Zulfadhli\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 9:30am- 10:30am (MAN0201)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual (with postage)\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Hanim Mohamad Ismail\",\"address1\":\"No 42, Jalan Tun Teja 35\\/7A, Alam Impian, Seksyen 35,\",\"address2\":\"\",\"city\":\"Shah Alam\",\"state\":\"Selangor\",\"postal_code\":\"40470\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"100.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Hanim\",\"last_name\":\"Mohamad Ismail\",\"email\":\"hanimismail@upnm.edu.my\",\"phone\":\"017-6215211\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,100.00,NULL,'14.192.213.70',0,NULL,''),(466,'2021-09-09 17:56:52','2021-09-09 17:56:52',1,2,8,NULL,NULL,49,NULL,NULL,NULL,NULL,4,380.00,380.00,NULL,'14.192.213.70',0,NULL,''),(467,'2021-09-09 17:57:07','2021-09-09 17:57:07',1,2,8,15,NULL,49,NULL,NULL,NULL,NULL,6,0.00,380.00,NULL,'14.192.213.70',0,NULL,''),(468,'2021-09-09 17:57:07','2021-09-09 17:57:07',1,2,8,NULL,NULL,49,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873571\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"380.00\",\"balance\":\"380.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0201)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month:- September 2021-January 2022\\r\\n- Student\'s Name: Ahmad Syafiq bin Ahmad Sallehuddin\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 9:30am- 10:30am (MAN0201)\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual (with postage)\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Aida Maria Daud\",\"address1\":\"No. 8, Jalan 3\\/66, Seksyen 3, Bandar Baru Bangi,\",\"address2\":\"\",\"city\":\"Bangi\",\"state\":\"Selangor\",\"postal_code\":\"43650\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"380.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Aida Maria\",\"last_name\":\"Daud\",\"email\":\"countessmary@hotmail.com\",\"phone\":\"012-6786001\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,380.00,NULL,'14.192.213.70',0,NULL,''),(469,'2021-09-09 18:02:39','2021-09-09 18:02:39',1,2,9,NULL,NULL,50,NULL,NULL,NULL,NULL,4,100.00,100.00,NULL,'14.192.213.70',0,NULL,''),(470,'2021-09-09 18:02:54','2021-09-09 18:02:54',1,2,9,16,NULL,50,NULL,NULL,NULL,NULL,6,0.00,100.00,NULL,'14.192.213.70',0,NULL,'');
INSERT INTO `activities` (`id`, `created_at`, `updated_at`, `account_id`, `user_id`, `client_id`, `contact_id`, `payment_id`, `invoice_id`, `credit_id`, `invitation_id`, `task_id`, `json_backup`, `activity_type_id`, `adjustment`, `balance`, `token_id`, `ip`, `is_system`, `expense_id`, `notes`) VALUES (471,'2021-09-09 18:02:54','2021-09-09 18:02:55',1,2,9,NULL,NULL,50,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873572\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: September 2021\\r\\n- Student\'s Name: Nur Maisarah bte Asri\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual (with postage)\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Rini Lidyawati Abd Razak\",\"address1\":\"96 Jalan Dillenia 3, Nilai Impian,\",\"address2\":\"\",\"city\":\"Nilai\",\"state\":\"Negeri Sembilan\",\"postal_code\":\"71800\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"100.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Rini Lidyawati\",\"last_name\":\"Abd Razak\",\"email\":\"erinz0156@gmail.com\",\"phone\":\"013- 2088771\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,100.00,NULL,'14.192.213.70',0,NULL,''),(472,'2021-09-09 18:08:33','2021-09-09 18:08:33',1,2,10,NULL,NULL,51,NULL,NULL,NULL,NULL,4,100.00,100.00,NULL,'14.192.213.70',0,NULL,''),(473,'2021-09-09 18:08:50','2021-09-09 18:08:50',1,2,10,17,NULL,51,NULL,NULL,NULL,NULL,6,0.00,100.00,NULL,'14.192.213.70',0,NULL,''),(474,'2021-09-09 18:08:50','2021-09-09 18:08:50',1,2,10,NULL,NULL,51,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873573\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: September 2021\\r\\n- Student\'s Name: Iris Sophia \\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual (with postage)\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Noraini Kasbon\",\"address1\":\"28 Jalan SSD\\/6 Kelana Jaya\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor\",\"postal_code\":\"47301\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"100.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Noraini\",\"last_name\":\"Kasbon\",\"email\":\"nani.kasbon@gmail.com\",\"phone\":\"013- 2053115\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,100.00,NULL,'14.192.213.70',0,NULL,''),(475,'2021-09-09 18:14:37','2021-09-09 18:14:37',1,2,11,NULL,NULL,52,NULL,NULL,NULL,NULL,4,92.00,92.00,NULL,'14.192.213.70',0,NULL,''),(476,'2021-09-09 18:14:52','2021-09-09 18:14:52',1,2,11,18,NULL,52,NULL,NULL,NULL,NULL,6,0.00,92.00,NULL,'14.192.213.70',0,NULL,''),(477,'2021-09-09 18:14:52','2021-09-09 18:14:52',1,2,11,NULL,NULL,52,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873574\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"92.00\",\"balance\":\"92.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0102)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: September 2021\\r\\n- Student\'s Name: Ainul Aisyah\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 11:30am- 12:30pm (MAN0102)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual\",\"cost\":\"22.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Ainul Farqhana\",\"address1\":\"Bayu Sentul Condominiums, Blok A-11-2, Taman Dato Senu 3\",\"address2\":\"\",\"city\":\"Kuala Lumpur\",\"state\":\"\",\"postal_code\":\"51000\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"92.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Ainul Farqhana\",\"last_name\":\"\",\"email\":\"farqhana@gmail.com\",\"phone\":\"012-249 2499\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,92.00,NULL,'14.192.213.70',0,NULL,''),(478,'2021-09-10 18:20:44','2021-09-10 18:20:44',1,2,8,NULL,23,49,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873571\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"380.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Aida Maria Daud\",\"address1\":\"No. 8, Jalan 3\\/66, Seksyen 3, Bandar Baru Bangi,\",\"address2\":\"\",\"city\":\"Bangi\",\"state\":\"Selangor\",\"postal_code\":\"43650\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Aida Maria\",\"last_name\":\"Daud\",\"email\":\"countessmary@hotmail.com\",\"phone\":\"012-6786001\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0201)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month:- September 2021-January 2022\\r\\n- Student\'s Name: Ahmad Syafiq bin Ahmad Sallehuddin\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 9:30am- 10:30am (MAN0201)\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual (with postage)\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-380.00,0.00,NULL,'14.192.208.142',0,NULL,''),(479,'2021-09-10 18:20:44','2021-09-10 18:20:44',1,2,8,NULL,NULL,49,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873571\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"380.00\",\"balance\":\"380.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0201)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month:- September 2021-January 2022\\r\\n- Student\'s Name: Ahmad Syafiq bin Ahmad Sallehuddin\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 9:30am- 10:30am (MAN0201)\",\"cost\":\"350.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual (with postage)\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Aida Maria Daud\",\"address1\":\"No. 8, Jalan 3\\/66, Seksyen 3, Bandar Baru Bangi,\",\"address2\":\"\",\"city\":\"Bangi\",\"state\":\"Selangor\",\"postal_code\":\"43650\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Aida Maria\",\"last_name\":\"Daud\",\"email\":\"countessmary@hotmail.com\",\"phone\":\"012-6786001\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.208.142',0,NULL,''),(480,'2021-09-10 18:22:34','2021-09-10 18:22:34',1,2,7,NULL,24,48,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873570\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Hanim Mohamad Ismail\",\"address1\":\"No 42, Jalan Tun Teja 35\\/7A, Alam Impian, Seksyen 35,\",\"address2\":\"\",\"city\":\"Shah Alam\",\"state\":\"Selangor\",\"postal_code\":\"40470\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Hanim\",\"last_name\":\"Mohamad Ismail\",\"email\":\"hanimismail@upnm.edu.my\",\"phone\":\"017-6215211\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0201)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month:- September\\r\\n- Student\'s Name: Muhammad Rayyan bin Mohamad Zulfadhli\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 9:30am- 10:30am (MAN0201)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual (with postage)\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-100.00,0.00,NULL,'14.192.208.142',0,NULL,''),(481,'2021-09-10 18:22:34','2021-09-10 18:22:34',1,2,7,NULL,NULL,48,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873570\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0201)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month:- September\\r\\n- Student\'s Name: Muhammad Rayyan bin Mohamad Zulfadhli\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 9:30am- 10:30am (MAN0201)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual (with postage)\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Hanim Mohamad Ismail\",\"address1\":\"No 42, Jalan Tun Teja 35\\/7A, Alam Impian, Seksyen 35,\",\"address2\":\"\",\"city\":\"Shah Alam\",\"state\":\"Selangor\",\"postal_code\":\"40470\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Hanim\",\"last_name\":\"Mohamad Ismail\",\"email\":\"hanimismail@upnm.edu.my\",\"phone\":\"017-6215211\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.208.142',0,NULL,''),(482,'2021-09-10 18:23:32','2021-09-10 18:23:32',1,2,9,NULL,25,50,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873572\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Rini Lidyawati Abd Razak\",\"address1\":\"96 Jalan Dillenia 3, Nilai Impian,\",\"address2\":\"\",\"city\":\"Nilai\",\"state\":\"Negeri Sembilan\",\"postal_code\":\"71800\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Rini Lidyawati\",\"last_name\":\"Abd Razak\",\"email\":\"erinz0156@gmail.com\",\"phone\":\"013- 2088771\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: September 2021\\r\\n- Student\'s Name: Nur Maisarah bte Asri\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual (with postage)\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-100.00,0.00,NULL,'14.192.208.142',0,NULL,''),(483,'2021-09-10 18:23:32','2021-09-10 18:23:32',1,2,9,NULL,NULL,50,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873572\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: September 2021\\r\\n- Student\'s Name: Nur Maisarah bte Asri\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual (with postage)\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Rini Lidyawati Abd Razak\",\"address1\":\"96 Jalan Dillenia 3, Nilai Impian,\",\"address2\":\"\",\"city\":\"Nilai\",\"state\":\"Negeri Sembilan\",\"postal_code\":\"71800\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Rini Lidyawati\",\"last_name\":\"Abd Razak\",\"email\":\"erinz0156@gmail.com\",\"phone\":\"013- 2088771\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.208.142',0,NULL,''),(484,'2021-09-10 18:24:24','2021-09-10 18:24:24',1,2,10,NULL,26,51,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873573\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Noraini Kasbon\",\"address1\":\"28 Jalan SSD\\/6 Kelana Jaya\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor\",\"postal_code\":\"47301\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Noraini\",\"last_name\":\"Kasbon\",\"email\":\"nani.kasbon@gmail.com\",\"phone\":\"013- 2053115\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: September 2021\\r\\n- Student\'s Name: Iris Sophia \\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual (with postage)\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-100.00,0.00,NULL,'14.192.208.142',0,NULL,''),(485,'2021-09-10 18:24:24','2021-09-10 18:24:24',1,2,10,NULL,NULL,51,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873573\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: September 2021\\r\\n- Student\'s Name: Iris Sophia \\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual (with postage)\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Noraini Kasbon\",\"address1\":\"28 Jalan SSD\\/6 Kelana Jaya\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor\",\"postal_code\":\"47301\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Noraini\",\"last_name\":\"Kasbon\",\"email\":\"nani.kasbon@gmail.com\",\"phone\":\"013- 2053115\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.208.142',0,NULL,''),(486,'2021-09-10 18:25:28','2021-09-10 18:25:28',1,2,11,NULL,27,52,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873574\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"92.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Ainul Farqhana\",\"address1\":\"Bayu Sentul Condominiums, Blok A-11-2, Taman Dato Senu 3\",\"address2\":\"\",\"city\":\"Kuala Lumpur\",\"state\":\"\",\"postal_code\":\"51000\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Ainul Farqhana\",\"last_name\":\"\",\"email\":\"farqhana@gmail.com\",\"phone\":\"012-249 2499\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0102)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: September 2021\\r\\n- Student\'s Name: Ainul Aisyah\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 11:30am- 12:30pm (MAN0102)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual\",\"cost\":\"22.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-92.00,0.00,NULL,'14.192.208.142',0,NULL,''),(487,'2021-09-10 18:25:28','2021-09-10 18:25:28',1,2,11,NULL,NULL,52,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873574\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"92.00\",\"balance\":\"92.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0102)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: September 2021\\r\\n- Student\'s Name: Ainul Aisyah\\r\\n\\r\\nSession :-\\r\\n\\r\\nSunday 11:30am- 12:30pm (MAN0102)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual\",\"cost\":\"22.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Ainul Farqhana\",\"address1\":\"Bayu Sentul Condominiums, Blok A-11-2, Taman Dato Senu 3\",\"address2\":\"\",\"city\":\"Kuala Lumpur\",\"state\":\"\",\"postal_code\":\"51000\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Ainul Farqhana\",\"last_name\":\"\",\"email\":\"farqhana@gmail.com\",\"phone\":\"012-249 2499\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.208.142',0,NULL,''),(488,'2021-10-08 08:26:08','2021-10-08 08:26:08',1,1,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,47,0.00,0.00,NULL,'42.153.128.109',0,60,''),(489,'2021-10-12 14:19:26','2021-10-12 14:19:26',1,2,10,NULL,NULL,51,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873573\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"0.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: September 2021\\r\\n- Student\'s Name: Iris Sophia \\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Manual (with postage)\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Noraini Kasbon\",\"address1\":\"28 Jalan SSD\\/6 Kelana Jaya\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor\",\"postal_code\":\"47301\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Noraini\",\"last_name\":\"Kasbon\",\"email\":\"nani.kasbon@gmail.com\",\"phone\":\"013- 2053115\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(490,'2021-10-12 14:25:46','2021-10-12 14:25:46',1,2,10,NULL,NULL,53,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(491,'2021-10-12 14:28:42','2021-10-12 14:28:42',1,2,10,NULL,NULL,53,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873575\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":\"70.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: September 2021\\r\\n- Student\'s Name: Iris Sophia \\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Noraini Kasbon\",\"address1\":\"28 Jalan SSD\\/6 Kelana Jaya\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor\",\"postal_code\":\"47301\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Noraini\",\"last_name\":\"Kasbon\",\"email\":\"nani.kasbon@gmail.com\",\"phone\":\"013- 2053115\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(492,'2021-10-12 15:22:10','2021-10-12 15:22:10',1,2,12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(493,'2021-10-12 15:29:13','2021-10-12 15:29:13',1,2,12,NULL,NULL,54,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(494,'2021-10-12 18:36:33','2021-10-12 18:36:33',1,2,7,NULL,NULL,55,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(495,'2021-10-12 18:38:35','2021-10-12 18:38:35',1,2,7,NULL,NULL,55,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873577\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":\"70.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0201)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month:- October 2021\\r\\n- Student\'s Name: Muhammad Rayyan bin Mohamad Zulfadhli\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 9:30am- 10:30am (MAN0201)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Hanim Mohamad Ismail\",\"address1\":\"No 42, Jalan Tun Teja 35\\/7A, Alam Impian, Seksyen 35,\",\"address2\":\"\",\"city\":\"Shah Alam\",\"state\":\"Selangor\",\"postal_code\":\"40470\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Hanim\",\"last_name\":\"Mohamad Ismail\",\"email\":\"hanimismail@upnm.edu.my\",\"phone\":\"017-6215211\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(496,'2021-10-12 18:43:09','2021-10-12 18:43:09',1,2,9,NULL,NULL,56,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(497,'2021-10-12 19:02:26','2021-10-12 19:02:26',1,2,13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(498,'2021-10-12 19:21:22','2021-10-12 19:21:22',1,2,13,NULL,NULL,57,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(499,'2021-10-12 19:50:32','2021-10-12 19:50:32',1,2,10,NULL,NULL,53,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873575\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":\"70.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: October 2021\\r\\n- Student\'s Name: Iris Sophia \\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Noraini Kasbon\",\"address1\":\"28 Jalan SSD\\/6 Kelana Jaya\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor\",\"postal_code\":\"47301\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Noraini\",\"last_name\":\"Kasbon\",\"email\":\"nani.kasbon@gmail.com\",\"phone\":\"013- 2053115\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(500,'2021-10-12 20:02:37','2021-10-12 20:02:37',1,2,13,NULL,NULL,57,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873579\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN101)\",\"notes\":\"- Age 11 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: October 2021\\r\\n- Student\'s Name: Nur Hadirah Humayraa\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN101)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"Mandarin Book\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"ZAHID MOHD DIN\",\"address1\":\"Apartmen Sri Pinang Villa, Jalan Pandan Bersih , Taman Nirwana,\",\"address2\":\"\",\"city\":\"Ampang\",\"state\":\"Selangor\",\"postal_code\":\"68000\",\"country_id\":458,\"work_phone\":\"\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"ZAHID\",\"last_name\":\"MOHD DIN\",\"email\":\"johanpublic321@gmail.com\",\"phone\":\"0122273530\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(501,'2021-10-12 20:02:37','2021-10-12 20:02:37',1,2,13,NULL,NULL,57,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(502,'2021-10-12 20:02:47','2021-10-12 20:02:48',1,2,9,NULL,NULL,56,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873578\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":\"70.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: October 2021\\r\\n- Student\'s Name: Nur Maisarah bte Asri\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Rini Lidyawati Abd Razak\",\"address1\":\"96 Jalan Dillenia 3, Nilai Impian,\",\"address2\":\"\",\"city\":\"Nilai\",\"state\":\"Negeri Sembilan\",\"postal_code\":\"71800\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Rini Lidyawati\",\"last_name\":\"Abd Razak\",\"email\":\"erinz0156@gmail.com\",\"phone\":\"013- 2088771\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(503,'2021-10-12 20:02:48','2021-10-12 20:02:48',1,2,9,NULL,NULL,56,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(504,'2021-10-12 20:02:55','2021-10-12 20:02:55',1,2,7,NULL,NULL,55,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873577\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":\"70.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0201)\",\"notes\":\"- Age 10-12 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month:- October 2021\\r\\n- Student\'s Name: Muhammad Rayyan bin Mohamad Zulfadhli\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30am (MAN101)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Hanim Mohamad Ismail\",\"address1\":\"No 42, Jalan Tun Teja 35\\/7A, Alam Impian, Seksyen 35,\",\"address2\":\"\",\"city\":\"Shah Alam\",\"state\":\"Selangor\",\"postal_code\":\"40470\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Hanim\",\"last_name\":\"Mohamad Ismail\",\"email\":\"hanimismail@upnm.edu.my\",\"phone\":\"017-6215211\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(505,'2021-10-12 20:02:55','2021-10-12 20:02:55',1,2,7,NULL,NULL,55,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(506,'2021-10-12 20:03:03','2021-10-12 20:03:03',1,2,12,NULL,NULL,54,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873576\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: CS Std Module 1 (MAN0402)\",\"notes\":\"- Age 8 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment for Month :- October 2021\\r\\n- Student\'s Name: Sofea Qaleesya binti Shahrul Aizat \\u82cf\\u83f2\\u4e9a s\\u016b f\\u0113i y\\u00e0\\r\\n\\r\\nSession :-\\r\\n\\r\\nFriday 8:00pm- 9:00pm (MAN402)\",\"cost\":\"100.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Suriyati Kamaruzzaman\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":458,\"work_phone\":\"\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suriyati\",\"last_name\":\"Kamaruzzaman\",\"email\":\"Suriyati.Kamaruzzaman@wct.my\",\"phone\":\"0192626806\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(507,'2021-10-12 20:03:03','2021-10-12 20:03:03',1,2,12,NULL,NULL,54,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(508,'2021-10-12 20:03:09','2021-10-12 20:03:09',1,2,10,NULL,NULL,53,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873575\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":\"70.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: October 2021\\r\\n- Student\'s Name: Iris Sophia \\r\\nSession :-\\r\\n\\r\\nThursday 8:00PM- 9:00PM (MAN301)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Noraini Kasbon\",\"address1\":\"28 Jalan SSD\\/6 Kelana Jaya\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor\",\"postal_code\":\"47301\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Noraini\",\"last_name\":\"Kasbon\",\"email\":\"nani.kasbon@gmail.com\",\"phone\":\"013- 2053115\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(509,'2021-10-12 20:03:09','2021-10-12 20:03:09',1,2,10,NULL,NULL,53,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(510,'2021-10-12 20:04:35','2021-10-12 20:04:35',1,2,10,NULL,NULL,58,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(511,'2021-10-12 20:06:54','2021-10-12 20:06:54',1,2,10,NULL,NULL,58,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873580\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":\"70.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN301\",\"notes\":\"ELEMENTARY MANDARIN\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Noraini Kasbon\",\"address1\":\"28 Jalan SSD\\/6 Kelana Jaya\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor\",\"postal_code\":\"47301\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Noraini\",\"last_name\":\"Kasbon\",\"email\":\"nani.kasbon@gmail.com\",\"phone\":\"013- 2053115\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,70.00,70.00,NULL,'14.192.212.208',0,NULL,''),(512,'2021-10-12 20:06:54','2021-10-12 20:06:54',1,2,10,NULL,28,58,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873580\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Noraini Kasbon\",\"address1\":\"28 Jalan SSD\\/6 Kelana Jaya\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor\",\"postal_code\":\"47301\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Noraini\",\"last_name\":\"Kasbon\",\"email\":\"nani.kasbon@gmail.com\",\"phone\":\"013- 2053115\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"MAN301\",\"notes\":\"ELEMENTARY MANDARIN\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-70.00,0.00,NULL,'14.192.212.208',0,NULL,''),(513,'2021-10-12 20:06:54','2021-10-12 20:06:54',1,2,10,NULL,NULL,58,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873580\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":\"70.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN301\",\"notes\":\"ELEMENTARY MANDARIN\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Noraini Kasbon\",\"address1\":\"28 Jalan SSD\\/6 Kelana Jaya\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor\",\"postal_code\":\"47301\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Noraini\",\"last_name\":\"Kasbon\",\"email\":\"nani.kasbon@gmail.com\",\"phone\":\"013- 2053115\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(514,'2021-10-12 20:08:40','2021-10-12 20:08:40',1,2,12,NULL,NULL,59,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(515,'2021-10-12 20:09:35','2021-10-12 20:09:35',1,2,12,NULL,NULL,59,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873581\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN402\",\"notes\":\"SRJKC YEAR 2\",\"cost\":\"100.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Suriyati Kamaruzzaman\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":458,\"work_phone\":\"\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suriyati\",\"last_name\":\"Kamaruzzaman\",\"email\":\"Suriyati.Kamaruzzaman@wct.my\",\"phone\":\"0192626806\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,100.00,100.00,NULL,'14.192.212.208',0,NULL,''),(516,'2021-10-12 20:09:35','2021-10-12 20:09:35',1,2,12,NULL,29,59,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873581\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Suriyati Kamaruzzaman\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suriyati\",\"last_name\":\"Kamaruzzaman\",\"email\":\"Suriyati.Kamaruzzaman@wct.my\",\"phone\":\"0192626806\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"MAN402\",\"notes\":\"SRJKC YEAR 2\",\"cost\":\"100.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-100.00,0.00,NULL,'14.192.212.208',0,NULL,''),(517,'2021-10-12 20:09:35','2021-10-12 20:09:35',1,2,12,NULL,NULL,59,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873581\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN402\",\"notes\":\"SRJKC YEAR 2\",\"cost\":\"100.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Suriyati Kamaruzzaman\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suriyati\",\"last_name\":\"Kamaruzzaman\",\"email\":\"Suriyati.Kamaruzzaman@wct.my\",\"phone\":\"0192626806\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(518,'2021-10-12 20:11:44','2021-10-12 20:11:44',1,2,7,NULL,NULL,60,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(519,'2021-10-12 20:12:50','2021-10-12 20:12:50',1,2,7,NULL,NULL,60,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873582\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":\"70.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Hanim Mohamad Ismail\",\"address1\":\"No 42, Jalan Tun Teja 35\\/7A, Alam Impian, Seksyen 35,\",\"address2\":\"\",\"city\":\"Shah Alam\",\"state\":\"Selangor\",\"postal_code\":\"40470\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Hanim\",\"last_name\":\"Mohamad Ismail\",\"email\":\"hanimismail@upnm.edu.my\",\"phone\":\"017-6215211\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,70.00,70.00,NULL,'14.192.212.208',0,NULL,''),(520,'2021-10-12 20:12:50','2021-10-12 20:12:50',1,2,7,NULL,30,60,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873582\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Hanim Mohamad Ismail\",\"address1\":\"No 42, Jalan Tun Teja 35\\/7A, Alam Impian, Seksyen 35,\",\"address2\":\"\",\"city\":\"Shah Alam\",\"state\":\"Selangor\",\"postal_code\":\"40470\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Hanim\",\"last_name\":\"Mohamad Ismail\",\"email\":\"hanimismail@upnm.edu.my\",\"phone\":\"017-6215211\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-70.00,0.00,NULL,'14.192.212.208',0,NULL,''),(521,'2021-10-12 20:12:50','2021-10-12 20:12:50',1,2,7,NULL,NULL,60,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873582\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":\"70.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Hanim Mohamad Ismail\",\"address1\":\"No 42, Jalan Tun Teja 35\\/7A, Alam Impian, Seksyen 35,\",\"address2\":\"\",\"city\":\"Shah Alam\",\"state\":\"Selangor\",\"postal_code\":\"40470\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Hanim\",\"last_name\":\"Mohamad Ismail\",\"email\":\"hanimismail@upnm.edu.my\",\"phone\":\"017-6215211\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(522,'2021-10-12 20:14:36','2021-10-12 20:14:36',1,2,9,NULL,NULL,61,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(523,'2021-10-12 20:14:55','2021-10-12 20:14:55',1,2,9,NULL,NULL,61,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873583\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":\"70.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Rini Lidyawati Abd Razak\",\"address1\":\"96 Jalan Dillenia 3, Nilai Impian,\",\"address2\":\"\",\"city\":\"Nilai\",\"state\":\"Negeri Sembilan\",\"postal_code\":\"71800\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Rini Lidyawati\",\"last_name\":\"Abd Razak\",\"email\":\"erinz0156@gmail.com\",\"phone\":\"013- 2088771\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,70.00,70.00,NULL,'14.192.212.208',0,NULL,''),(524,'2021-10-12 20:14:55','2021-10-12 20:14:55',1,2,9,NULL,31,61,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873583\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Rini Lidyawati Abd Razak\",\"address1\":\"96 Jalan Dillenia 3, Nilai Impian,\",\"address2\":\"\",\"city\":\"Nilai\",\"state\":\"Negeri Sembilan\",\"postal_code\":\"71800\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Rini Lidyawati\",\"last_name\":\"Abd Razak\",\"email\":\"erinz0156@gmail.com\",\"phone\":\"013- 2088771\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-70.00,0.00,NULL,'14.192.212.208',0,NULL,''),(525,'2021-10-12 20:14:55','2021-10-12 20:14:55',1,2,9,NULL,NULL,61,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873583\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":\"70.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Rini Lidyawati Abd Razak\",\"address1\":\"96 Jalan Dillenia 3, Nilai Impian,\",\"address2\":\"\",\"city\":\"Nilai\",\"state\":\"Negeri Sembilan\",\"postal_code\":\"71800\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Rini Lidyawati\",\"last_name\":\"Abd Razak\",\"email\":\"erinz0156@gmail.com\",\"phone\":\"013- 2088771\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(526,'2021-10-12 20:18:14','2021-10-12 20:18:14',1,2,13,NULL,NULL,62,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(527,'2021-10-12 20:18:39','2021-10-12 20:18:39',1,2,13,NULL,NULL,62,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873584\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"MANDARIN BOOK  + POSTAGE\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"ZAHID MOHD DIN\",\"address1\":\"Apartmen Sri Pinang Villa, Jalan Pandan Bersih , Taman Nirwana,\",\"address2\":\"\",\"city\":\"Ampang\",\"state\":\"Selangor\",\"postal_code\":\"68000\",\"country_id\":458,\"work_phone\":\"\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"ZAHID\",\"last_name\":\"MOHD DIN\",\"email\":\"johanpublic321@gmail.com\",\"phone\":\"0122273530\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,100.00,100.00,NULL,'14.192.212.208',0,NULL,''),(528,'2021-10-12 20:18:39','2021-10-12 20:18:39',1,2,13,NULL,32,62,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873584\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"ZAHID MOHD DIN\",\"address1\":\"Apartmen Sri Pinang Villa, Jalan Pandan Bersih , Taman Nirwana,\",\"address2\":\"\",\"city\":\"Ampang\",\"state\":\"Selangor\",\"postal_code\":\"68000\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"ZAHID\",\"last_name\":\"MOHD DIN\",\"email\":\"johanpublic321@gmail.com\",\"phone\":\"0122273530\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"MANDARIN BOOK  + POSTAGE\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-100.00,0.00,NULL,'14.192.212.208',0,NULL,''),(529,'2021-10-12 20:18:39','2021-10-12 20:18:39',1,2,13,NULL,NULL,62,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873584\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"MANDARIN BOOK  + POSTAGE\",\"cost\":\"30.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"ZAHID MOHD DIN\",\"address1\":\"Apartmen Sri Pinang Villa, Jalan Pandan Bersih , Taman Nirwana,\",\"address2\":\"\",\"city\":\"Ampang\",\"state\":\"Selangor\",\"postal_code\":\"68000\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"ZAHID\",\"last_name\":\"MOHD DIN\",\"email\":\"johanpublic321@gmail.com\",\"phone\":\"0122273530\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(530,'2021-10-12 20:22:10','2021-10-12 20:22:10',1,2,11,NULL,NULL,63,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(531,'2021-10-12 20:22:26','2021-10-12 20:22:26',1,2,11,NULL,NULL,63,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873585\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"93.00\",\"balance\":\"93.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"MANDARIN BOOK + POSTAGE\",\"cost\":\"23.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Ainul Farqhana\",\"address1\":\"Bayu Sentul Condominiums, Blok A-11-2, Taman Dato Senu 3\",\"address2\":\"\",\"city\":\"Kuala Lumpur\",\"state\":\"\",\"postal_code\":\"51000\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Ainul Farqhana\",\"last_name\":\"\",\"email\":\"farqhana@gmail.com\",\"phone\":\"012-249 2499\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,93.00,93.00,NULL,'14.192.212.208',0,NULL,''),(532,'2021-10-12 20:22:26','2021-10-12 20:22:26',1,2,11,NULL,33,63,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873585\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"93.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Ainul Farqhana\",\"address1\":\"Bayu Sentul Condominiums, Blok A-11-2, Taman Dato Senu 3\",\"address2\":\"\",\"city\":\"Kuala Lumpur\",\"state\":\"\",\"postal_code\":\"51000\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Ainul Farqhana\",\"last_name\":\"\",\"email\":\"farqhana@gmail.com\",\"phone\":\"012-249 2499\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"MANDARIN BOOK + POSTAGE\",\"cost\":\"23.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-93.00,0.00,NULL,'14.192.212.208',0,NULL,''),(533,'2021-10-12 20:22:26','2021-10-12 20:22:26',1,2,11,NULL,NULL,63,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873585\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"93.00\",\"balance\":\"93.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"MANDARIN BOOK + POSTAGE\",\"cost\":\"23.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Ainul Farqhana\",\"address1\":\"Bayu Sentul Condominiums, Blok A-11-2, Taman Dato Senu 3\",\"address2\":\"\",\"city\":\"Kuala Lumpur\",\"state\":\"\",\"postal_code\":\"51000\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Ainul Farqhana\",\"last_name\":\"\",\"email\":\"farqhana@gmail.com\",\"phone\":\"012-249 2499\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(534,'2021-10-12 20:32:03','2021-10-12 20:32:03',1,2,14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(535,'2021-10-12 20:33:27','2021-10-12 20:33:27',1,2,14,NULL,NULL,64,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(536,'2021-10-12 20:34:00','2021-10-12 20:34:00',1,2,14,NULL,NULL,64,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873586\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"September & October Fees\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"140.00\",\"balance\":\"140.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"140.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Sharifah Athirah Auni\",\"address1\":\"no 15,Jalan SG9\\/16, Taman Sri Gombak\",\"address2\":\"\",\"city\":\"Gombak\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sharifah Athirah Auni\",\"last_name\":\"\",\"email\":\"madamathirahauni@gmail.com\",\"phone\":\"0132212106\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,140.00,140.00,NULL,'14.192.212.208',0,NULL,''),(537,'2021-10-12 20:34:00','2021-10-12 20:34:00',1,2,14,NULL,34,64,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873586\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"September & October Fees\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"140.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Sharifah Athirah Auni\",\"address1\":\"no 15,Jalan SG9\\/16, Taman Sri Gombak\",\"address2\":\"\",\"city\":\"Gombak\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sharifah Athirah Auni\",\"last_name\":\"\",\"email\":\"madamathirahauni@gmail.com\",\"phone\":\"0132212106\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"140.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-140.00,0.00,NULL,'14.192.212.208',0,NULL,''),(538,'2021-10-12 20:34:00','2021-10-12 20:34:00',1,2,14,NULL,NULL,64,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873586\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"September & October Fees\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"140.00\",\"balance\":\"140.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"140.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Sharifah Athirah Auni\",\"address1\":\"no 15,Jalan SG9\\/16, Taman Sri Gombak\",\"address2\":\"\",\"city\":\"Gombak\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sharifah Athirah Auni\",\"last_name\":\"\",\"email\":\"madamathirahauni@gmail.com\",\"phone\":\"0132212106\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(539,'2021-10-12 20:37:51','2021-10-12 20:37:51',1,2,15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(540,'2021-10-12 20:45:51','2021-10-12 20:45:51',1,2,15,NULL,NULL,65,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(541,'2021-10-12 20:47:20','2021-10-12 20:47:20',1,2,15,NULL,NULL,65,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873587\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-12\",\"due_date\":\"2021-10-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"September Fees\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"200.00\",\"balance\":\"200.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1 (2 STUDENTS)\",\"cost\":\"140.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"MANDARIN BOOK + POSTAGE\",\"cost\":\"30.0000\",\"qty\":\"2.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Sharifah Yuliana Syed Ali Hanafiah\",\"address1\":\"No 19, Jalan Selayang Baru 27\\/69, Taman Alam Megah, Seksyen 27,\",\"address2\":\"\",\"city\":\"Shah Alam\",\"state\":\"Selangor\",\"postal_code\":\"40400\",\"country_id\":458,\"work_phone\":\"\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sharifah Yuliana\",\"last_name\":\"Syed Ali Hanafiah\",\"email\":\"aaashayu@gmail.com\",\"phone\":\"0182944597\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(542,'2021-10-12 20:47:52','2021-10-12 20:47:52',1,2,15,NULL,NULL,65,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873587\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"September Fees\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"200.00\",\"balance\":\"200.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1 (2 STUDENTS)\",\"cost\":\"140.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"MANDARIN BOOK + POSTAGE\",\"cost\":\"30.0000\",\"qty\":\"2.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Sharifah Yuliana Syed Ali Hanafiah\",\"address1\":\"No 19, Jalan Selayang Baru 27\\/69, Taman Alam Megah, Seksyen 27,\",\"address2\":\"\",\"city\":\"Shah Alam\",\"state\":\"Selangor\",\"postal_code\":\"40400\",\"country_id\":458,\"work_phone\":\"\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sharifah Yuliana\",\"last_name\":\"Syed Ali Hanafiah\",\"email\":\"aaashayu@gmail.com\",\"phone\":\"0182944597\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,200.00,200.00,NULL,'14.192.212.208',0,NULL,''),(543,'2021-10-12 20:47:52','2021-10-12 20:47:52',1,2,15,NULL,35,65,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873587\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"September Fees\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"200.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Sharifah Yuliana Syed Ali Hanafiah\",\"address1\":\"No 19, Jalan Selayang Baru 27\\/69, Taman Alam Megah, Seksyen 27,\",\"address2\":\"\",\"city\":\"Shah Alam\",\"state\":\"Selangor\",\"postal_code\":\"40400\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sharifah Yuliana\",\"last_name\":\"Syed Ali Hanafiah\",\"email\":\"aaashayu@gmail.com\",\"phone\":\"0182944597\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1 (2 STUDENTS)\",\"cost\":\"140.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"MANDARIN BOOK + POSTAGE\",\"cost\":\"30.0000\",\"qty\":\"2.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-200.00,0.00,NULL,'14.192.212.208',0,NULL,''),(544,'2021-10-12 20:47:52','2021-10-12 20:47:52',1,2,15,NULL,NULL,65,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873587\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-09\",\"due_date\":\"2021-10-09\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"September Fees\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"200.00\",\"balance\":\"200.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1 (2 STUDENTS)\",\"cost\":\"140.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"MANDARIN BOOK + POSTAGE\",\"cost\":\"30.0000\",\"qty\":\"2.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Sharifah Yuliana Syed Ali Hanafiah\",\"address1\":\"No 19, Jalan Selayang Baru 27\\/69, Taman Alam Megah, Seksyen 27,\",\"address2\":\"\",\"city\":\"Shah Alam\",\"state\":\"Selangor\",\"postal_code\":\"40400\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sharifah Yuliana\",\"last_name\":\"Syed Ali Hanafiah\",\"email\":\"aaashayu@gmail.com\",\"phone\":\"0182944597\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(545,'2021-10-12 20:49:18','2021-10-12 20:49:18',1,2,15,NULL,NULL,66,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(546,'2021-10-12 20:51:24','2021-10-12 20:51:24',1,2,16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(547,'2021-10-12 20:58:05','2021-10-12 20:58:05',1,2,16,NULL,NULL,67,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(548,'2021-10-12 20:58:48','2021-10-12 20:58:48',1,2,16,NULL,NULL,67,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873589\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-11\",\"due_date\":\"2021-10-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"September fee\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"92.00\",\"balance\":\"92.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1 (2 STUDENTS)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"MANDARIN BOOK\",\"cost\":\"22.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Marzia Jaludin\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Marzia\",\"last_name\":\"Jaludin\",\"email\":\"marziaj@iwk.com.my\",\"phone\":\"0193588823\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,92.00,92.00,NULL,'14.192.212.208',0,NULL,''),(549,'2021-10-12 20:58:48','2021-10-12 20:58:48',1,2,16,NULL,36,67,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873589\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-11\",\"due_date\":\"2021-10-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"September fee\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"92.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Marzia Jaludin\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Marzia\",\"last_name\":\"Jaludin\",\"email\":\"marziaj@iwk.com.my\",\"phone\":\"0193588823\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1 (2 STUDENTS)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"MANDARIN BOOK\",\"cost\":\"22.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-92.00,0.00,NULL,'14.192.212.208',0,NULL,''),(550,'2021-10-12 20:58:48','2021-10-12 20:58:48',1,2,16,NULL,NULL,67,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873589\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-11\",\"due_date\":\"2021-10-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"September fee\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"92.00\",\"balance\":\"92.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1 (2 STUDENTS)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"MANDARIN BOOK\",\"cost\":\"22.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Marzia Jaludin\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Marzia\",\"last_name\":\"Jaludin\",\"email\":\"marziaj@iwk.com.my\",\"phone\":\"0193588823\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(551,'2021-10-12 20:59:59','2021-10-12 20:59:59',1,2,16,NULL,NULL,67,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873589\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-09-11\",\"due_date\":\"2021-10-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"September fee\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"92.00\",\"balance\":\"0.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1 (2 STUDENTS)\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"\",\"notes\":\"MANDARIN BOOK\",\"cost\":\"22.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Marzia Jaludin\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Marzia\",\"last_name\":\"Jaludin\",\"email\":\"marziaj@iwk.com.my\",\"phone\":\"0193588823\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(552,'2021-10-12 21:01:38','2021-10-12 21:01:38',1,2,16,NULL,NULL,68,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(553,'2021-10-12 21:10:26','2021-10-12 21:10:26',1,2,17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'14.192.212.208',0,NULL,''),(554,'2021-10-21 15:44:13','2021-10-21 15:44:13',1,2,17,NULL,NULL,69,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.213.23',0,NULL,''),(555,'2021-10-21 15:44:52','2021-10-21 15:44:52',1,2,17,NULL,NULL,69,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873591\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-01\",\"due_date\":\"2021-11-20\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"290.00\",\"balance\":\"290.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1 (3 Copies Manual + Courier)\",\"cost\":\"290.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Suri Kasbon\",\"address1\":\"Unit 11-10-2, Desa Damansara, Jalan Setiakasih, Bukit Damansara,\",\"address2\":\"\",\"city\":\"Bukit Damansara\",\"state\":\"Kuala Lumpur\",\"postal_code\":\"50490\",\"country_id\":458,\"work_phone\":\"0122221006\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suri\",\"last_name\":\"Kasbon\",\"email\":\"sitizahra.mohdfairuz@gmail.com\",\"phone\":\"0327284676\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.213.23',0,NULL,''),(556,'2021-10-21 15:46:08','2021-10-21 15:46:09',1,2,17,NULL,NULL,69,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873591\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-20\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"290.00\",\"balance\":\"290.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1 (3 Copies Manual + Courier)\",\"cost\":\"290.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Suri Kasbon\",\"address1\":\"Unit 11-10-2, Desa Damansara, Jalan Setiakasih, Bukit Damansara,\",\"address2\":\"\",\"city\":\"Bukit Damansara\",\"state\":\"Kuala Lumpur\",\"postal_code\":\"50490\",\"country_id\":458,\"work_phone\":\"0122221006\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suri\",\"last_name\":\"Kasbon\",\"email\":\"sitizahra.mohdfairuz@gmail.com\",\"phone\":\"0327284676\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,290.00,290.00,NULL,'14.192.213.23',0,NULL,''),(557,'2021-10-21 15:46:09','2021-10-21 15:46:10',1,2,17,NULL,37,69,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873591\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-20\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"290.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Suri Kasbon\",\"address1\":\"Unit 11-10-2, Desa Damansara, Jalan Setiakasih, Bukit Damansara,\",\"address2\":\"\",\"city\":\"Bukit Damansara\",\"state\":\"Kuala Lumpur\",\"postal_code\":\"50490\",\"country_id\":458,\"work_phone\":\"0122221006\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suri\",\"last_name\":\"Kasbon\",\"email\":\"sitizahra.mohdfairuz@gmail.com\",\"phone\":\"0327284676\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1 (3 Copies Manual + Courier)\",\"cost\":\"290.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-290.00,0.00,NULL,'14.192.213.23',0,NULL,''),(558,'2021-10-21 15:46:09','2021-10-21 15:46:10',1,2,17,NULL,NULL,69,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873591\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-20\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"290.00\",\"balance\":\"290.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1 (3 Copies Manual + Courier)\",\"cost\":\"290.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Suri Kasbon\",\"address1\":\"Unit 11-10-2, Desa Damansara, Jalan Setiakasih, Bukit Damansara,\",\"address2\":\"\",\"city\":\"Bukit Damansara\",\"state\":\"Kuala Lumpur\",\"postal_code\":\"50490\",\"country_id\":458,\"work_phone\":\"0122221006\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suri\",\"last_name\":\"Kasbon\",\"email\":\"sitizahra.mohdfairuz@gmail.com\",\"phone\":\"0327284676\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.213.23',0,NULL,''),(559,'2021-12-14 10:39:36','2021-12-14 10:39:36',1,1,18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'183.171.108.99',0,NULL,''),(560,'2021-12-14 10:45:24','2021-12-14 10:45:24',1,1,18,NULL,NULL,70,NULL,NULL,NULL,NULL,4,2619.00,2619.00,NULL,'183.171.108.99',0,NULL,''),(561,'2021-12-14 10:46:21','2021-12-14 10:46:21',1,1,18,NULL,38,70,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873592\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2020-05-12\",\"due_date\":\"2020-05-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2619.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mohamad Bin Arshad\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"+60123994187\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"821025-08-6663\",\"contacts\":[{\"first_name\":\"Mohamad\",\"last_name\":\"Arshad\",\"email\":\"mohamadarshad828@gmail.com\",\"phone\":\"+60123994187\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"HP Laptop Notebook 15s-fq2513TU Gold (15.6\\\"\\/1366x768\\/Intel Core i3-1115G4\\/512 GB PCIe NVMe M.2 SSD\\/Intel UHD Graphics)\",\"notes\":\"Operating system\\tWindows 10 Home Single Language 64\\r\\nProcessor\\tIntel\\u00ae Core\\u2122 i3-1115G4 (up to 4.1 GHz with Intel\\u00ae Turbo Boost Technology, 6 MB L3 cache, 2 cores)\\r\\nChipset\\tIntel\\u00ae Integrated SoC\\r\\nForm factor\\tStandard laptop\\r\\nMEMORY\\r\\nMemory\\t8 GB DDR4-2666 MHz RAM (1 x 8 GB)\\r\\nSTORAGE\\r\\nHard drive description\\t512 GB PCIe\\u00ae NVMe\\u2122 M.2 SSD\\r\\nStorage type\\tSSD\\r\\nOptical drive\\tOptical drive not included\\r\\nDISPLAY AND GRAPHICS\\r\\nDisplay\\t15.6\\\" diagonal, HD (1366 x 768), micro-edge, BrightView, 250 nits, 45% NTSC\\r\\nGraphics\\tIntel\\u00ae UHD Graphics\",\"cost\":\"2619.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-2619.00,0.00,NULL,'183.171.108.99',0,NULL,''),(562,'2021-12-14 10:46:21','2021-12-14 10:46:21',1,1,18,NULL,NULL,70,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873592\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2020-05-12\",\"due_date\":\"2020-05-12\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2619.00\",\"balance\":\"2619.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"HP Laptop Notebook 15s-fq2513TU Gold (15.6\\\"\\/1366x768\\/Intel Core i3-1115G4\\/512 GB PCIe NVMe M.2 SSD\\/Intel UHD Graphics)\",\"notes\":\"Operating system\\tWindows 10 Home Single Language 64\\r\\nProcessor\\tIntel\\u00ae Core\\u2122 i3-1115G4 (up to 4.1 GHz with Intel\\u00ae Turbo Boost Technology, 6 MB L3 cache, 2 cores)\\r\\nChipset\\tIntel\\u00ae Integrated SoC\\r\\nForm factor\\tStandard laptop\\r\\nMEMORY\\r\\nMemory\\t8 GB DDR4-2666 MHz RAM (1 x 8 GB)\\r\\nSTORAGE\\r\\nHard drive description\\t512 GB PCIe\\u00ae NVMe\\u2122 M.2 SSD\\r\\nStorage type\\tSSD\\r\\nOptical drive\\tOptical drive not included\\r\\nDISPLAY AND GRAPHICS\\r\\nDisplay\\t15.6\\\" diagonal, HD (1366 x 768), micro-edge, BrightView, 250 nits, 45% NTSC\\r\\nGraphics\\tIntel\\u00ae UHD Graphics\",\"cost\":\"2619.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mohamad Bin Arshad\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"+60123994187\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"821025-08-6663\",\"contacts\":[{\"first_name\":\"Mohamad\",\"last_name\":\"Arshad\",\"email\":\"mohamadarshad828@gmail.com\",\"phone\":\"+60123994187\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'183.171.108.99',0,NULL,''),(563,'2022-02-27 04:23:40','2022-02-27 04:23:40',1,2,17,NULL,NULL,71,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.213.8',0,NULL,''),(564,'2022-02-27 04:32:35','2022-02-27 04:32:35',1,2,17,NULL,NULL,72,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.213.8',0,NULL,''),(565,'2022-02-27 04:35:12','2022-02-27 04:35:16',1,2,17,NULL,NULL,71,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873593\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-01\",\"due_date\":\"2022-01-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"840.00\",\"balance\":\"840.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: October 2021\\r\\n- Student\'s Name: Nur Maisarah bte Asri\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"210.0000\",\"qty\":\"4.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Suri Kasbon\",\"address1\":\"Unit 11-10-2, Desa Damansara, Jalan Setiakasih, Bukit Damansara,\",\"address2\":\"\",\"city\":\"Bukit Damansara\",\"state\":\"Kuala Lumpur\",\"postal_code\":\"50490\",\"country_id\":458,\"work_phone\":\"0122221006\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suri\",\"last_name\":\"Kasbon\",\"email\":\"sitizahra.mohdfairuz@gmail.com\",\"phone\":\"0327284676\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,840.00,840.00,NULL,'14.192.213.8',0,NULL,''),(566,'2022-02-27 04:35:22','2022-02-27 04:35:35',1,2,17,NULL,39,71,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873593\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-01\",\"due_date\":\"2022-01-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"840.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Suri Kasbon\",\"address1\":\"Unit 11-10-2, Desa Damansara, Jalan Setiakasih, Bukit Damansara,\",\"address2\":\"\",\"city\":\"Bukit Damansara\",\"state\":\"Kuala Lumpur\",\"postal_code\":\"50490\",\"country_id\":458,\"work_phone\":\"0122221006\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suri\",\"last_name\":\"Kasbon\",\"email\":\"sitizahra.mohdfairuz@gmail.com\",\"phone\":\"0327284676\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: October 2021\\r\\n- Student\'s Name: Nur Maisarah bte Asri\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"210.0000\",\"qty\":\"4.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-840.00,0.00,NULL,'14.192.213.8',0,NULL,''),(567,'2022-02-27 04:35:24','2022-02-27 04:35:26',1,2,17,NULL,NULL,71,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873593\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-01\",\"due_date\":\"2022-01-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"840.00\",\"balance\":\"840.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: October 2021\\r\\n- Student\'s Name: Nur Maisarah bte Asri\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"210.0000\",\"qty\":\"4.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Suri Kasbon\",\"address1\":\"Unit 11-10-2, Desa Damansara, Jalan Setiakasih, Bukit Damansara,\",\"address2\":\"\",\"city\":\"Bukit Damansara\",\"state\":\"Kuala Lumpur\",\"postal_code\":\"50490\",\"country_id\":458,\"work_phone\":\"0122221006\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suri\",\"last_name\":\"Kasbon\",\"email\":\"sitizahra.mohdfairuz@gmail.com\",\"phone\":\"0327284676\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'14.192.213.8',0,NULL,''),(568,'2022-02-27 09:37:08','2022-02-27 09:37:08',1,2,17,NULL,NULL,71,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873593\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-01\",\"due_date\":\"2022-01-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"840.00\",\"balance\":\"0.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: October 2021\\r\\n- Student\'s Name: Nur Maisarah bte Asri\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"210.0000\",\"qty\":\"4.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Suri Kasbon\",\"address1\":\"Unit 11-10-2, Desa Damansara, Jalan Setiakasih, Bukit Damansara,\",\"address2\":\"\",\"city\":\"Bukit Damansara\",\"state\":\"Kuala Lumpur\",\"postal_code\":\"50490\",\"country_id\":458,\"work_phone\":\"0122221006\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suri\",\"last_name\":\"Kasbon\",\"email\":\"sitizahra.mohdfairuz@gmail.com\",\"phone\":\"0327284676\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-210.00,-210.00,NULL,'14.192.213.8',0,NULL,''),(569,'2022-02-27 09:39:14','2022-02-27 09:39:14',1,2,17,NULL,NULL,71,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873593\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-11-01\",\"due_date\":\"2022-01-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"630.00\",\"balance\":\"-210.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: October 2021\\r\\n- Student\'s Name: Nur Maisarah bte Asri\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"210.0000\",\"qty\":\"3.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Suri Kasbon\",\"address1\":\"Unit 11-10-2, Desa Damansara, Jalan Setiakasih, Bukit Damansara,\",\"address2\":\"\",\"city\":\"Bukit Damansara\",\"state\":\"Kuala Lumpur\",\"postal_code\":\"50490\",\"country_id\":458,\"work_phone\":\"0122221006\",\"balance\":\"-210.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suri\",\"last_name\":\"Kasbon\",\"email\":\"sitizahra.mohdfairuz@gmail.com\",\"phone\":\"0327284676\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-420.00,-630.00,NULL,'14.192.213.8',0,NULL,''),(570,'2022-02-27 09:39:36','2022-02-27 09:39:36',1,2,17,NULL,NULL,71,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873593\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-11-01\",\"due_date\":\"2022-01-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"210.00\",\"balance\":\"-630.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN0101)\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: October 2021\\r\\n- Student\'s Name: Nur Maisarah bte Asri\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"70.0000\",\"qty\":\"3.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Suri Kasbon\",\"address1\":\"Unit 11-10-2, Desa Damansara, Jalan Setiakasih, Bukit Damansara,\",\"address2\":\"\",\"city\":\"Bukit Damansara\",\"state\":\"Kuala Lumpur\",\"postal_code\":\"50490\",\"country_id\":458,\"work_phone\":\"0122221006\",\"balance\":\"-630.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suri\",\"last_name\":\"Kasbon\",\"email\":\"sitizahra.mohdfairuz@gmail.com\",\"phone\":\"0327284676\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,-630.00,NULL,'14.192.213.8',0,NULL,''),(571,'2022-02-27 09:45:50','2022-02-27 09:45:50',1,2,17,NULL,NULL,73,NULL,NULL,NULL,NULL,4,0.00,-630.00,NULL,'14.192.213.8',0,NULL,''),(572,'2022-02-27 10:02:55','2022-02-27 10:02:55',1,2,10,NULL,NULL,74,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.213.8',0,NULL,''),(573,'2022-02-27 10:11:27','2022-02-27 10:11:27',1,2,13,NULL,NULL,75,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.213.8',0,NULL,''),(574,'2022-02-27 10:18:00','2022-02-27 10:18:00',1,2,16,NULL,NULL,76,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'14.192.213.8',0,NULL,''),(575,'2022-03-12 22:48:38','2022-03-12 22:48:38',1,2,19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'27.125.242.207',0,NULL,''),(576,'2022-03-13 04:02:31','2022-03-13 04:02:31',1,2,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'27.125.242.111',0,NULL,''),(577,'2022-03-13 04:02:36','2022-03-13 04:02:36',1,2,20,NULL,NULL,77,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'27.125.242.111',0,NULL,''),(578,'2022-03-13 04:06:02','2022-03-13 04:06:02',1,2,13,NULL,NULL,75,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873597\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-11-01\",\"due_date\":\"2022-01-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"210.00\",\"balance\":\"210.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"3.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"ZAHID MOHD DIN\",\"address1\":\"Apartmen Sri Pinang Villa, Jalan Pandan Bersih , Taman Nirwana,\",\"address2\":\"\",\"city\":\"Ampang\",\"state\":\"Selangor\",\"postal_code\":\"68000\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"ZAHID\",\"last_name\":\"MOHD DIN\",\"email\":\"johanpublic321@gmail.com\",\"phone\":\"0122273530\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.242.111',0,NULL,''),(579,'2022-03-13 04:09:07','2022-03-13 04:09:08',1,2,10,NULL,NULL,74,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873596\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-01\",\"due_date\":\"2022-01-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"280.00\",\"balance\":\"280.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"4.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Noraini Kasbon\",\"address1\":\"28 Jalan SSD\\/6 Kelana Jaya\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor\",\"postal_code\":\"47301\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Noraini\",\"last_name\":\"Kasbon\",\"email\":\"nani.kasbon@gmail.com\",\"phone\":\"013- 2053115\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.242.111',0,NULL,''),(580,'2022-03-13 04:14:35','2022-03-13 04:14:35',1,2,8,NULL,NULL,78,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'27.125.242.207',0,NULL,''),(581,'2022-03-13 05:41:46','2022-03-13 05:41:46',1,2,21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'27.125.242.189',0,NULL,''),(582,'2022-03-13 05:45:32','2022-03-13 05:45:32',1,2,21,NULL,NULL,79,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'27.125.242.189',0,NULL,''),(583,'2022-03-13 05:57:41','2022-03-13 05:57:41',1,2,22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'27.125.242.207',0,NULL,''),(584,'2022-03-13 06:02:04','2022-03-13 06:02:04',1,2,22,NULL,NULL,80,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'27.125.242.189',0,NULL,''),(585,'2022-03-13 06:03:21','2022-03-13 06:03:21',1,2,23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'27.125.242.189',0,NULL,''),(586,'2022-03-13 06:11:27','2022-03-13 06:11:27',1,2,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'27.125.242.159',0,NULL,''),(587,'2022-03-13 06:12:46','2022-03-13 06:12:46',1,2,24,NULL,NULL,81,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'27.125.242.159',0,NULL,''),(588,'2022-03-13 06:14:57','2022-03-13 06:14:57',1,2,25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'27.125.242.159',0,NULL,''),(589,'2022-03-13 06:15:49','2022-03-13 06:15:49',1,2,24,NULL,NULL,82,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'27.125.242.111',0,NULL,''),(590,'2022-03-13 06:16:21','2022-03-13 06:16:21',1,2,24,NULL,NULL,82,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873604\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-03-05\",\"due_date\":\"2022-04-01\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR BEGINNERS LEVEL 1\",\"cost\":\"100.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"NABILAH NUWAIRI\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"010-2002962\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"NABILAH\",\"last_name\":\"NUWAIRI\",\"email\":\"nblh2021@gmail.com\",\"phone\":\"010-2002962\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.242.111',0,NULL,''),(591,'2022-08-27 17:11:54','2022-08-27 17:11:54',1,1,4,NULL,NULL,83,NULL,NULL,NULL,NULL,4,2.00,2.00,NULL,'42.153.34.65',0,NULL,''),(592,'2022-08-27 17:12:07','2022-08-27 17:12:07',1,1,4,9,NULL,83,NULL,NULL,NULL,NULL,6,0.00,2.00,NULL,'42.153.34.65',0,NULL,''),(593,'2022-08-27 17:12:07','2022-08-27 17:12:07',1,1,4,NULL,NULL,83,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873605\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-08-28\",\"due_date\":\"2022-09-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.00\",\"balance\":\"2.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"2.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,2.00,NULL,'42.153.34.65',0,NULL,''),(594,'2022-08-27 17:12:30','2022-08-27 17:12:32',1,1,4,NULL,NULL,83,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873605\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-08-28\",\"due_date\":\"2022-09-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.00\",\"balance\":\"2.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"2.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,2.00,NULL,'42.153.34.65',0,NULL,''),(595,'2022-08-27 17:14:04','2022-08-27 17:14:04',1,1,4,9,NULL,83,NULL,NULL,NULL,NULL,7,0.00,2.00,NULL,'42.153.34.65',0,NULL,''),(596,'2022-08-27 17:18:21','2022-08-27 17:18:21',1,1,4,9,NULL,83,NULL,NULL,NULL,NULL,7,0.00,2.00,NULL,'42.153.34.65',0,NULL,''),(597,'2022-08-27 17:20:30','2022-08-27 17:20:30',1,1,4,NULL,NULL,83,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873605\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-08-28\",\"due_date\":\"2022-09-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.00\",\"balance\":\"2.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"2.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,2.00,NULL,'42.153.34.65',0,NULL,''),(598,'2022-08-27 17:20:30','2022-08-27 17:20:30',1,1,4,NULL,NULL,83,NULL,NULL,NULL,NULL,9,-2.00,0.00,NULL,'42.153.34.65',0,NULL,''),(599,'2022-08-27 17:21:46','2022-08-27 17:21:46',1,1,4,NULL,NULL,84,NULL,NULL,NULL,NULL,4,2.00,2.00,NULL,'42.153.34.65',0,NULL,''),(600,'2022-08-27 17:21:54','2022-08-27 17:21:54',1,1,4,9,NULL,84,NULL,NULL,NULL,NULL,6,0.00,2.00,NULL,'42.153.34.65',0,NULL,''),(601,'2022-08-27 17:21:54','2022-08-27 17:21:55',1,1,4,NULL,NULL,84,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873606\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-08-28\",\"due_date\":\"2022-09-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.00\",\"balance\":\"2.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"2.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,2.00,NULL,'42.153.34.65',0,NULL,''),(602,'2022-08-27 17:22:53','2022-08-27 17:22:53',1,1,4,9,NULL,84,NULL,NULL,NULL,NULL,7,0.00,2.00,NULL,'42.153.34.65',0,NULL,''),(603,'2022-08-27 17:25:56','2022-08-27 17:25:56',1,1,4,9,NULL,33,NULL,NULL,NULL,NULL,7,0.00,2.00,NULL,'42.153.34.65',0,NULL,''),(604,'2022-08-27 17:26:23','2022-08-27 17:26:23',1,1,4,NULL,NULL,84,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873606\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-08-28\",\"due_date\":\"2022-09-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2.00\",\"balance\":\"2.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"2.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,2.00,NULL,'42.153.34.65',0,NULL,''),(605,'2022-08-27 17:26:23','2022-08-27 17:26:23',1,1,4,NULL,NULL,84,NULL,NULL,NULL,NULL,9,-2.00,0.00,NULL,'42.153.34.65',0,NULL,''),(606,'2022-08-27 17:26:59','2022-08-27 17:26:59',1,1,4,NULL,NULL,85,NULL,NULL,NULL,NULL,4,4.00,4.00,NULL,'42.153.34.65',0,NULL,''),(607,'2022-08-27 17:27:11','2022-08-27 17:27:11',1,1,4,9,NULL,85,NULL,NULL,NULL,NULL,6,0.00,4.00,NULL,'42.153.34.65',0,NULL,''),(608,'2022-08-27 17:27:12','2022-08-27 17:27:12',1,1,4,NULL,NULL,85,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873607\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-08-28\",\"due_date\":\"2022-09-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"4.00\",\"balance\":\"4.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"4.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,4.00,NULL,'42.153.34.65',0,NULL,''),(609,'2022-08-27 17:27:43','2022-08-27 17:27:43',1,1,4,9,NULL,85,NULL,NULL,NULL,NULL,7,0.00,4.00,NULL,'42.153.34.65',0,NULL,''),(610,'2022-08-27 17:30:58','2022-08-27 17:30:58',1,1,4,9,NULL,85,NULL,NULL,NULL,NULL,7,0.00,4.00,NULL,'42.153.34.65',0,NULL,''),(611,'2022-08-27 17:32:55','2022-08-27 17:32:55',1,1,4,9,NULL,85,NULL,NULL,NULL,NULL,7,0.00,4.00,NULL,'42.153.34.65',0,NULL,''),(612,'2022-08-27 17:33:17','2022-08-27 17:33:17',1,1,4,9,NULL,33,NULL,NULL,NULL,NULL,7,0.00,4.00,NULL,'42.153.34.65',0,NULL,''),(613,'2022-08-27 17:35:48','2022-08-27 17:35:48',1,1,4,9,NULL,85,NULL,NULL,NULL,NULL,7,0.00,4.00,NULL,'42.153.34.65',0,NULL,''),(614,'2022-08-27 17:37:45','2022-08-27 17:37:46',1,1,4,9,40,85,NULL,100,NULL,'{\"invoice_number\":\"25354I-873607\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-08-28\",\"due_date\":\"2022-09-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"4.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-4.00,0.00,NULL,'42.153.34.65',0,NULL,''),(615,'2022-08-27 17:37:46','2022-08-27 17:37:46',1,1,4,NULL,NULL,85,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873607\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-08-28\",\"due_date\":\"2022-09-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"4.00\",\"balance\":\"4.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"0.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'42.153.34.65',0,NULL,''),(616,'2022-08-27 17:48:43','2022-08-27 17:48:43',1,1,4,9,40,85,NULL,100,NULL,NULL,40,1.00,1.00,NULL,'42.153.34.65',0,NULL,''),(617,'2022-08-27 17:48:43','2022-08-27 17:48:43',1,1,4,NULL,NULL,85,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873607\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-08-28\",\"due_date\":\"2022-09-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"4.00\",\"balance\":\"0.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"1.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,1.00,NULL,'42.153.34.65',0,NULL,''),(618,'2022-08-27 17:48:44','2022-08-27 17:48:44',1,1,4,9,40,85,NULL,100,NULL,NULL,40,3.00,4.00,NULL,'54.187.205.235',0,NULL,''),(619,'2022-08-27 17:48:44','2022-08-27 17:48:45',1,1,4,NULL,NULL,85,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873607\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-08-28\",\"due_date\":\"2022-09-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"4.00\",\"balance\":\"1.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"4.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,4.00,NULL,'54.187.205.235',0,NULL,''),(620,'2022-08-27 19:01:44','2022-08-27 19:01:44',1,1,4,NULL,NULL,86,NULL,NULL,NULL,NULL,4,5.00,9.00,NULL,'42.153.128.167',0,NULL,''),(621,'2022-08-27 19:02:02','2022-08-27 19:02:02',1,1,4,9,NULL,86,NULL,NULL,NULL,NULL,6,0.00,9.00,NULL,'42.153.128.167',0,NULL,''),(622,'2022-08-27 19:02:02','2022-08-27 19:02:02',1,1,4,NULL,NULL,86,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873608\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-08-28\",\"due_date\":\"2022-09-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"5.00\",\"balance\":\"5.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"9.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,9.00,NULL,'42.153.128.167',0,NULL,''),(623,'2022-08-27 19:03:48','2022-08-27 19:03:48',1,1,4,9,NULL,86,NULL,NULL,NULL,NULL,7,0.00,9.00,NULL,'42.153.128.167',0,NULL,''),(624,'2022-08-27 19:09:30','2022-08-27 19:09:30',1,1,4,9,NULL,86,NULL,NULL,NULL,NULL,7,0.00,9.00,NULL,'172.225.180.164',0,NULL,''),(625,'2022-08-27 19:18:25','2022-08-27 19:18:25',1,1,4,9,NULL,86,NULL,NULL,NULL,NULL,7,0.00,9.00,NULL,'172.225.180.164',0,NULL,''),(626,'2022-08-27 19:19:32','2022-08-27 19:19:32',1,1,4,9,NULL,85,NULL,NULL,NULL,NULL,7,0.00,9.00,NULL,'172.225.180.164',0,NULL,''),(627,'2022-08-27 19:30:55','2022-08-27 19:30:55',1,1,4,9,NULL,86,NULL,NULL,NULL,NULL,7,0.00,9.00,NULL,'172.224.228.10',0,NULL,''),(628,'2022-08-27 19:32:58','2022-08-27 19:32:58',1,1,4,NULL,NULL,86,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873608\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-08-28\",\"due_date\":\"2022-09-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"5.00\",\"balance\":\"5.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"9.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,25.00,34.00,NULL,'42.153.128.167',0,NULL,''),(629,'2022-08-27 19:33:49','2022-08-27 19:33:49',1,1,4,9,NULL,86,NULL,NULL,NULL,NULL,7,0.00,34.00,NULL,'172.225.180.184',0,NULL,''),(630,'2024-08-21 17:02:33','2024-08-21 17:02:33',1,1,18,NULL,NULL,87,NULL,NULL,NULL,NULL,4,2410.00,2410.00,NULL,'113.210.58.54',0,NULL,''),(631,'2024-08-21 17:03:28','2024-08-21 17:03:29',1,1,18,NULL,41,87,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873609\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2023-04-08\",\"due_date\":\"2023-04-08\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2410.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mohamad Bin Arshad\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"+60123994187\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"821025-08-6663\",\"contacts\":[{\"first_name\":\"Mohamad\",\"last_name\":\"Arshad\",\"email\":\"mohamadarshad828@gmail.com\",\"phone\":\"+60123994187\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Computer\",\"notes\":\"HONOR MagicBook X15 2022\",\"cost\":\"2410.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-2410.00,0.00,NULL,'113.210.58.54',0,NULL,''),(632,'2024-08-21 17:03:28','2024-08-21 17:03:28',1,1,18,NULL,NULL,87,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873609\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2023-04-08\",\"due_date\":\"2023-04-08\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"2410.00\",\"balance\":\"2410.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Computer\",\"notes\":\"HONOR MagicBook X15 2022\",\"cost\":\"2410.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mohamad Bin Arshad\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"+60123994187\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"821025-08-6663\",\"contacts\":[{\"first_name\":\"Mohamad\",\"last_name\":\"Arshad\",\"email\":\"mohamadarshad828@gmail.com\",\"phone\":\"+60123994187\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'113.210.58.54',0,NULL,''),(633,'2024-08-21 17:42:44','2024-08-21 17:42:44',1,1,4,NULL,NULL,88,NULL,NULL,NULL,NULL,4,7.00,41.00,NULL,'113.210.58.54',0,NULL,''),(634,'2024-08-21 17:42:53','2024-08-21 17:42:53',1,1,4,9,NULL,88,NULL,NULL,NULL,NULL,6,0.00,41.00,NULL,'113.210.58.54',0,NULL,''),(635,'2024-08-21 17:42:54','2024-08-21 17:42:54',1,1,4,NULL,NULL,88,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873610\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2024-08-22\",\"due_date\":\"2024-09-20\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"7.00\",\"balance\":\"7.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"7.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"41.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,41.00,NULL,'113.210.58.54',0,NULL,''),(636,'2024-08-21 17:46:04','2024-08-21 17:46:05',1,1,4,9,42,88,NULL,103,NULL,'{\"invoice_number\":\"25354I-873610\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2024-08-22\",\"due_date\":\"2024-09-20\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"7.00\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"34.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"7.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-7.00,34.00,NULL,'113.210.58.54',0,NULL,''),(637,'2024-08-21 17:46:05','2024-08-21 17:46:05',1,1,4,NULL,NULL,88,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873610\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2024-08-22\",\"due_date\":\"2024-09-20\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"7.00\",\"balance\":\"7.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"7.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"34.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,34.00,NULL,'113.210.58.54',0,NULL,''),(638,'2024-09-19 12:09:31','2024-09-19 12:09:31',1,1,4,NULL,NULL,86,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873608\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-08-28\",\"due_date\":\"2022-09-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"30.00\",\"balance\":\"30.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"26.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"34.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,34.00,NULL,'27.125.240.239',0,NULL,''),(639,'2024-09-19 12:09:32','2024-09-19 12:09:32',1,1,4,NULL,NULL,86,NULL,NULL,NULL,NULL,9,-30.00,4.00,NULL,'27.125.240.239',0,NULL,''),(640,'2024-09-19 12:09:38','2024-09-19 12:09:38',1,1,4,NULL,NULL,85,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873607\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-08-28\",\"due_date\":\"2022-09-26\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"4.00\",\"balance\":\"4.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Testing\",\"notes\":\"Testing\",\"cost\":\"1.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Mobtel Hub\",\"address1\":\"No.9, Jalan Bullion Mewah 3,\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Caves\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60192220293\",\"balance\":\"4.00\",\"website\":\"https:\\/\\/www.m-hub.asia\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"201703164951\",\"contacts\":[{\"first_name\":\"Khedir\",\"last_name\":\"Yaakub\",\"email\":\"khedir@m-hub.asia\",\"phone\":\"+60192220598\",\"custom_value1\":null,\"custom_value2\":null},{\"first_name\":\"Muhammad Alif\",\"last_name\":\"Armia\",\"email\":\"admin@m-hub.asia\",\"phone\":\"+60192220293\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,4.00,NULL,'27.125.240.239',0,NULL,''),(641,'2024-09-19 12:09:38','2024-09-19 12:09:38',1,1,4,NULL,NULL,85,NULL,NULL,NULL,NULL,9,-4.00,0.00,NULL,'27.125.240.239',0,NULL,''),(642,'2024-09-19 12:10:36','2024-09-19 12:10:36',1,1,15,NULL,NULL,66,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873588\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"140.00\",\"balance\":\"140.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1 (2 STUDENTS)\",\"cost\":\"70.0000\",\"qty\":\"2.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Sharifah Yuliana Syed Ali Hanafiah\",\"address1\":\"No 19, Jalan Selayang Baru 27\\/69, Taman Alam Megah, Seksyen 27,\",\"address2\":\"\",\"city\":\"Shah Alam\",\"state\":\"Selangor\",\"postal_code\":\"40400\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sharifah Yuliana\",\"last_name\":\"Syed Ali Hanafiah\",\"email\":\"aaashayu@gmail.com\",\"phone\":\"0182944597\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(643,'2024-09-19 12:10:37','2024-09-19 12:10:37',1,1,15,NULL,NULL,66,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(644,'2024-09-19 12:10:37','2024-09-19 12:10:37',1,1,16,NULL,NULL,68,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873590\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-12\",\"due_date\":\"2021-11-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"70.00\",\"balance\":\"70.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Marzia Jaludin\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Marzia\",\"last_name\":\"Jaludin\",\"email\":\"marziaj@iwk.com.my\",\"phone\":\"0193588823\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(645,'2024-09-19 12:10:37','2024-09-19 12:10:37',1,1,16,NULL,NULL,68,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(646,'2024-09-19 12:10:37','2024-09-19 12:10:37',1,1,17,NULL,NULL,72,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873594\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-01\",\"due_date\":\"2022-01-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"840.00\",\"balance\":\"840.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1 (MAN101)\",\"notes\":\"- Age 7-12 years old\\r\\n- Duration: 4 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month:- OCT 2021 - JAN 2022\\r\\n\\r\\nSession :-\\r\\n\\r\\nTHURSDAY 8-9PM\",\"cost\":\"210.0000\",\"qty\":\"4.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Suri Kasbon\",\"address1\":\"Unit 11-10-2, Desa Damansara, Jalan Setiakasih, Bukit Damansara,\",\"address2\":\"\",\"city\":\"Bukit Damansara\",\"state\":\"Kuala Lumpur\",\"postal_code\":\"50490\",\"country_id\":458,\"work_phone\":\"0122221006\",\"balance\":\"-630.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suri\",\"last_name\":\"Kasbon\",\"email\":\"sitizahra.mohdfairuz@gmail.com\",\"phone\":\"0327284676\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,-630.00,NULL,'27.125.240.239',0,NULL,''),(647,'2024-09-19 12:10:37','2024-09-19 12:10:37',1,1,17,NULL,NULL,72,NULL,NULL,NULL,NULL,9,0.00,-630.00,NULL,'27.125.240.239',0,NULL,''),(648,'2024-09-19 12:10:37','2024-09-19 12:10:37',1,1,17,NULL,NULL,73,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873595\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-11-01\",\"due_date\":\"2022-01-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"630.00\",\"balance\":\"630.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"210.0000\",\"qty\":\"3.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Suri Kasbon\",\"address1\":\"Unit 11-10-2, Desa Damansara, Jalan Setiakasih, Bukit Damansara,\",\"address2\":\"\",\"city\":\"Bukit Damansara\",\"state\":\"Kuala Lumpur\",\"postal_code\":\"50490\",\"country_id\":458,\"work_phone\":\"0122221006\",\"balance\":\"-630.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suri\",\"last_name\":\"Kasbon\",\"email\":\"sitizahra.mohdfairuz@gmail.com\",\"phone\":\"0327284676\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,-630.00,NULL,'27.125.240.239',0,NULL,''),(649,'2024-09-19 12:10:37','2024-09-19 12:10:37',1,1,17,NULL,NULL,73,NULL,NULL,NULL,NULL,9,0.00,-630.00,NULL,'27.125.240.239',0,NULL,''),(650,'2024-09-19 12:10:37','2024-09-19 12:10:37',1,1,10,NULL,NULL,74,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873596\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-03-01\",\"due_date\":\"2022-04-01\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"75.00\",\"balance\":\"75.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN102\",\"notes\":\"BASIC MANDARIN FOR BEGINNERS LEVEL 2\",\"cost\":\"75.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Noraini Kasbon\",\"address1\":\"28 Jalan SSD\\/6 Kelana Jaya\",\"address2\":\"\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor\",\"postal_code\":\"47301\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Noraini\",\"last_name\":\"Kasbon\",\"email\":\"nani.kasbon@gmail.com\",\"phone\":\"013- 2053115\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(651,'2024-09-19 12:10:37','2024-09-19 12:10:37',1,1,10,NULL,NULL,74,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(652,'2024-09-19 12:10:38','2024-09-19 12:10:38',1,1,13,NULL,NULL,75,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873597\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-03-11\",\"due_date\":\"2022-04-01\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN102\",\"notes\":\"BASIC MANDARIN FOR BEGINNERS LEVEL 2\",\"cost\":\"100.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"ZAHID MOHD DIN\",\"address1\":\"Apartmen Sri Pinang Villa, Jalan Pandan Bersih , Taman Nirwana,\",\"address2\":\"\",\"city\":\"Ampang\",\"state\":\"Selangor\",\"postal_code\":\"68000\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"ZAHID\",\"last_name\":\"MOHD DIN\",\"email\":\"johanpublic321@gmail.com\",\"phone\":\"0122273530\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(653,'2024-09-19 12:10:38','2024-09-19 12:10:38',1,1,13,NULL,NULL,75,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(654,'2024-09-19 12:10:38','2024-09-19 12:10:38',1,1,16,NULL,NULL,76,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873598\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-10-01\",\"due_date\":\"2022-01-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"280.00\",\"balance\":\"280.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR KIDS 1\",\"cost\":\"70.0000\",\"qty\":\"4.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Marzia Jaludin\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Marzia\",\"last_name\":\"Jaludin\",\"email\":\"marziaj@iwk.com.my\",\"phone\":\"0193588823\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(655,'2024-09-19 12:10:38','2024-09-19 12:10:38',1,1,16,NULL,NULL,76,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(656,'2024-09-19 12:10:38','2024-09-19 12:10:38',1,1,20,NULL,NULL,77,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873599\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-03-04\",\"due_date\":\"2022-04-01\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"225.00\",\"balance\":\"225.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN102\",\"notes\":\"BASIC MANDARIN FOR BEGINNERS LEVEL 2\",\"cost\":\"75.0000\",\"qty\":\"3.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"SURI KASBON\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":null,\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"SURI\",\"last_name\":\"KASBON\",\"email\":\"sitizahra.mohdfairuz@gmail.com\",\"phone\":\"012-222 1006\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(657,'2024-09-19 12:10:38','2024-09-19 12:10:38',1,1,20,NULL,NULL,77,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(658,'2024-09-19 12:10:38','2024-09-19 12:10:38',1,1,8,NULL,NULL,78,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873600\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-03-01\",\"due_date\":\"2022-07-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"500.00\",\"balance\":\"500.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN102\",\"notes\":\"BASIC MANDARIN FOR BEGINNERS LEVEL 2\",\"cost\":\"100.0000\",\"qty\":\"5.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Aida Maria Daud\",\"address1\":\"No. 8, Jalan 3\\/66, Seksyen 3, Bandar Baru Bangi,\",\"address2\":\"\",\"city\":\"Bangi\",\"state\":\"Selangor\",\"postal_code\":\"43650\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"0.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Aida Maria\",\"last_name\":\"Daud\",\"email\":\"countessmary@hotmail.com\",\"phone\":\"012-6786001\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(659,'2024-09-19 12:10:39','2024-09-19 12:10:39',1,1,8,NULL,NULL,78,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(660,'2024-09-19 12:10:39','2024-09-19 12:10:39',1,1,21,NULL,NULL,79,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873601\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-02-28\",\"due_date\":\"2022-04-01\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR BEGINNERS LEVEL 1\",\"cost\":\"100.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"ROSMELIA TAIB\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"017- 2513439\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"ROSMELIA\",\"last_name\":\"TAIB\",\"email\":\"melliyya77@gmail.com\",\"phone\":\"017- 2513439\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(661,'2024-09-19 12:10:39','2024-09-19 12:10:39',1,1,21,NULL,NULL,79,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(662,'2024-09-19 12:10:39','2024-09-19 12:10:39',1,1,22,NULL,NULL,80,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873602\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-03-09\",\"due_date\":\"2022-07-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"200.00\",\"balance\":\"200.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR BEGINNERS LEVEL 1\",\"cost\":\"100.0000\",\"qty\":\"2.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"RINI LIDYAWATI\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"013- 2088771\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"RINI LIDYAWATI\",\"last_name\":\"ABD RAZAK\",\"email\":\"erinz0156@gmail.com\",\"phone\":\"013- 2088771\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(663,'2024-09-19 12:10:39','2024-09-19 12:10:39',1,1,22,NULL,NULL,80,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(664,'2024-09-19 12:10:39','2024-09-19 12:10:39',1,1,24,NULL,NULL,81,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873603\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-03-05\",\"due_date\":\"2022-04-01\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"100.00\",\"balance\":\"100.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR BEGINNERS LEVEL 1\",\"cost\":\"100.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"NABILAH NUWAIRI\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"010-2002962\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"NABILAH\",\"last_name\":\"NUWAIRI\",\"email\":\"nblh2021@gmail.com\",\"phone\":\"010-2002962\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(665,'2024-09-19 12:10:39','2024-09-19 12:10:39',1,1,24,NULL,NULL,81,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(666,'2024-09-19 12:10:40','2024-09-19 12:10:40',1,1,24,NULL,NULL,82,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873604\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2022-03-05\",\"due_date\":\"2022-04-01\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"200.00\",\"balance\":\"200.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"MAN101\",\"notes\":\"BASIC MANDARIN FOR BEGINNERS LEVEL 1\",\"cost\":\"100.0000\",\"qty\":\"2.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"NABILAH NUWAIRI\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"010-2002962\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"NABILAH\",\"last_name\":\"NUWAIRI\",\"email\":\"nblh2021@gmail.com\",\"phone\":\"010-2002962\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(667,'2024-09-19 12:10:40','2024-09-19 12:10:40',1,1,24,NULL,NULL,82,NULL,NULL,NULL,NULL,9,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(668,'2024-09-19 12:10:55','2024-09-19 12:10:56',1,1,17,NULL,NULL,71,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873593\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2021-11-01\",\"due_date\":\"2022-01-31\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"210.00\",\"balance\":\"-630.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"Basic Mandarin for kids: Beginners Module 1\",\"notes\":\"- Age 7-9 years old\\r\\n- Duration: 5 Months (1 hour per week) \\r\\n- Medium: Google Meet, Cisco Webex\\r\\n- Payment For Month: October 2021\\r\\n- Student\'s Name: Nur Maisarah bte Asri\\r\\n\\r\\nSession :-\\r\\n\\r\\nSaturday 11:30am- 12:30pm (MAN0101)\",\"cost\":\"70.0000\",\"qty\":\"3.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"Suri Kasbon\",\"address1\":\"Unit 11-10-2, Desa Damansara, Jalan Setiakasih, Bukit Damansara,\",\"address2\":\"\",\"city\":\"Bukit Damansara\",\"state\":\"Kuala Lumpur\",\"postal_code\":\"50490\",\"country_id\":458,\"work_phone\":\"0122221006\",\"balance\":\"-630.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Suri\",\"last_name\":\"Kasbon\",\"email\":\"sitizahra.mohdfairuz@gmail.com\",\"phone\":\"0327284676\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,-630.00,NULL,'27.125.240.239',0,NULL,''),(669,'2024-09-19 12:10:56','2024-09-19 12:10:56',1,1,17,NULL,NULL,71,NULL,NULL,NULL,NULL,9,630.00,0.00,NULL,'27.125.240.239',0,NULL,''),(670,'2024-09-19 12:17:09','2024-09-19 12:17:09',1,1,26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'27.125.240.239',0,NULL,''),(671,'2024-09-19 12:37:03','2024-09-19 12:37:03',1,1,26,NULL,NULL,89,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'27.125.240.208',0,NULL,''),(672,'2024-09-19 12:46:27','2024-09-19 12:46:27',1,1,26,NULL,NULL,89,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873611\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2024-09-19\",\"due_date\":\"2024-10-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3376.93\",\"balance\":\"3376.93\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"1688.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":\"2024-09-27\",\"invoice_items\":[{\"product_key\":\"Latitude 3440 Laptop\",\"notes\":\"12th Gen Intel\\u00ae Core\\u2122 i5-1235U (12 MB cache, 10 cores, 12 threads, up to 4.4 GHz Turbo)\\r\\nWindows 11 Pro, English\\r\\nIntegrated Intel\\u00ae Iris\\u00ae Xe or UHD Graphics for i5-1235U Processor\\r\\n14\\\", FHD 1920x1080, 60Hz, WVA\\/IPS, Non-Touch, Anti-Glare, 250 nit, NTSC 45%, FHD Camera, WLAN\\r\\n8 GB: 1 x 8 GB, DDR4, 3200 MT\\/s\\r\\n512GB, M.2 2230, QLC PCIe Gen 4 NVMe\\r\\nIntel\\u00ae Wi-Fi 6E AX211, 2x2, 802.11ax, Bluetooth\\u00ae wireless card\\r\\nStereo speakers with Waves MaxxAudio\\u00ae Pro, Realtek ALC3204 Audio Controller, 2 W x 2 = 4 W total\\r\\n1 USB 3.2 Gen 2 Type-C\\u00ae port with DisplayPort Alt mode\\/Power Delivery\\r\\n2 USB 3.2 Gen 1 port\\r\\n1 USB 3.2 Gen 1 port with PowerShare\\r\\n1 HDMI 1.4 port\\r\\n1 universal audio port\\r\\n1 power-adapter port\\r\\n1 RJ-45 Ethernet port\",\"cost\":\"3376.9300\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"FARAH ATELIER\",\"address1\":\"Lorong SKD 8, Taman PSJ\",\"address2\":\"No.54\",\"city\":\"Kuantan\",\"state\":\"Pahang\",\"postal_code\":\"26150\",\"country_id\":458,\"work_phone\":\"\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Farah Nuruljannah\",\"last_name\":\"Dahli\",\"email\":\"farahdahli90@gmail.com\",\"phone\":\"+60192226172\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor Darul Ehsan\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.240.210',0,NULL,''),(673,'2024-09-19 12:57:20','2024-09-19 12:57:20',1,1,26,NULL,NULL,89,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873611\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2024-09-19\",\"due_date\":\"2024-10-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"3376.93\",\"balance\":\"3376.93\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"1688.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":\"2024-09-27\",\"invoice_items\":[{\"product_key\":\"Latitude 3440 Laptop\",\"notes\":\"12th Gen Intel\\u00ae Core\\u2122 i5-1235U (12 MB cache, 10 cores, 12 threads, up to 4.4 GHz Turbo)\\r\\nWindows 11 Pro, English\\r\\nIntegrated Intel\\u00ae Iris\\u00ae Xe or UHD Graphics for i5-1235U Processor\\r\\n14\\\", FHD 1920x1080, 60Hz, WVA\\/IPS, Non-Touch, Anti-Glare, 250 nit, NTSC 45%, FHD Camera, WLAN\\r\\n8 GB: 1 x 8 GB, DDR4, 3200 MT\\/s\\r\\n512GB, M.2 2230, QLC PCIe Gen 4 NVMe\\r\\nIntel\\u00ae Wi-Fi 6E AX211, 2x2, 802.11ax, Bluetooth\\u00ae wireless card\\r\\nStereo speakers with Waves MaxxAudio\\u00ae Pro, Realtek ALC3204 Audio Controller, 2 W x 2 = 4 W total\\r\\n1 USB 3.2 Gen 2 Type-C\\u00ae port with DisplayPort Alt mode\\/Power Delivery\\r\\n2 USB 3.2 Gen 1 port\\r\\n1 USB 3.2 Gen 1 port with PowerShare\\r\\n1 HDMI 1.4 port\\r\\n1 universal audio port\\r\\n1 power-adapter port\\r\\n1 RJ-45 Ethernet port\",\"cost\":\"3376.9300\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Warranty\",\"notes\":\"Manufacturer Warranty\",\"cost\":\"0.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"FARAH ATELIER\",\"address1\":\"Lorong SKD 8, Taman PSJ\",\"address2\":\"No.54\",\"city\":\"Kuantan\",\"state\":\"Pahang\",\"postal_code\":\"26150\",\"country_id\":458,\"work_phone\":\"\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Farah Nuruljannah\",\"last_name\":\"Dahli\",\"email\":\"farahdahli90@gmail.com\",\"phone\":\"+60192226172\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,0.00,NULL,'27.125.240.130',0,NULL,''),(674,'2024-09-19 12:58:16','2024-09-19 12:58:17',1,1,26,NULL,NULL,89,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873611\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2024-09-19\",\"due_date\":\"2024-10-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"4000.00\",\"balance\":\"4000.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"2000.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":\"2024-09-27\",\"invoice_items\":[{\"product_key\":\"Latitude 3440 Laptop\",\"notes\":\"12th Gen Intel\\u00ae Core\\u2122 i5-1235U (12 MB cache, 10 cores, 12 threads, up to 4.4 GHz Turbo)\\r\\nWindows 11 Pro, English\\r\\nIntegrated Intel\\u00ae Iris\\u00ae Xe or UHD Graphics for i5-1235U Processor\\r\\n14\\\", FHD 1920x1080, 60Hz, WVA\\/IPS, Non-Touch, Anti-Glare, 250 nit, NTSC 45%, FHD Camera, WLAN\\r\\n8 GB: 1 x 8 GB, DDR4, 3200 MT\\/s\\r\\n512GB, M.2 2230, QLC PCIe Gen 4 NVMe\\r\\nIntel\\u00ae Wi-Fi 6E AX211, 2x2, 802.11ax, Bluetooth\\u00ae wireless card\\r\\nStereo speakers with Waves MaxxAudio\\u00ae Pro, Realtek ALC3204 Audio Controller, 2 W x 2 = 4 W total\\r\\n1 USB 3.2 Gen 2 Type-C\\u00ae port with DisplayPort Alt mode\\/Power Delivery\\r\\n2 USB 3.2 Gen 1 port\\r\\n1 USB 3.2 Gen 1 port with PowerShare\\r\\n1 HDMI 1.4 port\\r\\n1 universal audio port\\r\\n1 power-adapter port\\r\\n1 RJ-45 Ethernet port\",\"cost\":\"4000.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Warranty\",\"notes\":\"Manufacturer Warranty\",\"cost\":\"0.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"FARAH ATELIER\",\"address1\":\"Lorong SKD 8, Taman PSJ\",\"address2\":\"No.54\",\"city\":\"Kuantan\",\"state\":\"Pahang\",\"postal_code\":\"26150\",\"country_id\":458,\"work_phone\":\"\",\"balance\":null,\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Farah Nuruljannah\",\"last_name\":\"Dahli\",\"email\":\"farahdahli90@gmail.com\",\"phone\":\"+60192226172\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,4000.00,4000.00,NULL,'27.125.240.130',0,NULL,''),(675,'2024-09-19 13:02:44','2024-09-19 13:02:44',1,1,26,NULL,43,89,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873611\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2024-09-19\",\"due_date\":\"2024-10-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"4000.00\",\"balance\":2000,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":0,\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"FARAH ATELIER\",\"address1\":\"Lorong SKD 8, Taman PSJ\",\"address2\":\"No.54\",\"city\":\"Kuantan\",\"state\":\"Pahang\",\"postal_code\":\"26150\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"2000.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Farah Nuruljannah\",\"last_name\":\"Dahli\",\"email\":\"farahdahli90@gmail.com\",\"phone\":\"+60192226172\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"Latitude 3440 Laptop\",\"notes\":\"12th Gen Intel\\u00ae Core\\u2122 i5-1235U (12 MB cache, 10 cores, 12 threads, up to 4.4 GHz Turbo)\\r\\nWindows 11 Pro, English\\r\\nIntegrated Intel\\u00ae Iris\\u00ae Xe or UHD Graphics for i5-1235U Processor\\r\\n14\\\", FHD 1920x1080, 60Hz, WVA\\/IPS, Non-Touch, Anti-Glare, 250 nit, NTSC 45%, FHD Camera, WLAN\\r\\n8 GB: 1 x 8 GB, DDR4, 3200 MT\\/s\\r\\n512GB, M.2 2230, QLC PCIe Gen 4 NVMe\\r\\nIntel\\u00ae Wi-Fi 6E AX211, 2x2, 802.11ax, Bluetooth\\u00ae wireless card\\r\\nStereo speakers with Waves MaxxAudio\\u00ae Pro, Realtek ALC3204 Audio Controller, 2 W x 2 = 4 W total\\r\\n1 USB 3.2 Gen 2 Type-C\\u00ae port with DisplayPort Alt mode\\/Power Delivery\\r\\n2 USB 3.2 Gen 1 port\\r\\n1 USB 3.2 Gen 1 port with PowerShare\\r\\n1 HDMI 1.4 port\\r\\n1 universal audio port\\r\\n1 power-adapter port\\r\\n1 RJ-45 Ethernet port\",\"cost\":\"4000.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Warranty\",\"notes\":\"Manufacturer Warranty\",\"cost\":\"0.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-2000.00,2000.00,NULL,'27.125.240.239',0,NULL,''),(676,'2024-09-19 13:02:44','2024-09-19 13:02:44',1,1,26,NULL,NULL,89,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873611\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2024-09-19\",\"due_date\":\"2024-10-11\",\"terms\":\"- Ordered items are subject to availability.\\r\\n- Goods sold are neither returnable nor refundable.\\r\\n- Price is subject to change without any notice.\\r\\n- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at sales@m-hub.asia\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"4000.00\",\"balance\":\"4000.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"2000.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":\"2024-09-27\",\"invoice_items\":[{\"product_key\":\"Latitude 3440 Laptop\",\"notes\":\"12th Gen Intel\\u00ae Core\\u2122 i5-1235U (12 MB cache, 10 cores, 12 threads, up to 4.4 GHz Turbo)\\r\\nWindows 11 Pro, English\\r\\nIntegrated Intel\\u00ae Iris\\u00ae Xe or UHD Graphics for i5-1235U Processor\\r\\n14\\\", FHD 1920x1080, 60Hz, WVA\\/IPS, Non-Touch, Anti-Glare, 250 nit, NTSC 45%, FHD Camera, WLAN\\r\\n8 GB: 1 x 8 GB, DDR4, 3200 MT\\/s\\r\\n512GB, M.2 2230, QLC PCIe Gen 4 NVMe\\r\\nIntel\\u00ae Wi-Fi 6E AX211, 2x2, 802.11ax, Bluetooth\\u00ae wireless card\\r\\nStereo speakers with Waves MaxxAudio\\u00ae Pro, Realtek ALC3204 Audio Controller, 2 W x 2 = 4 W total\\r\\n1 USB 3.2 Gen 2 Type-C\\u00ae port with DisplayPort Alt mode\\/Power Delivery\\r\\n2 USB 3.2 Gen 1 port\\r\\n1 USB 3.2 Gen 1 port with PowerShare\\r\\n1 HDMI 1.4 port\\r\\n1 universal audio port\\r\\n1 power-adapter port\\r\\n1 RJ-45 Ethernet port\",\"cost\":\"4000.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"Warranty\",\"notes\":\"Manufacturer Warranty\",\"cost\":\"0.0000\",\"qty\":\"1.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"FARAH ATELIER\",\"address1\":\"Lorong SKD 8, Taman PSJ\",\"address2\":\"No.54\",\"city\":\"Kuantan\",\"state\":\"Pahang\",\"postal_code\":\"26150\",\"country_id\":458,\"work_phone\":\"\",\"balance\":\"2000.00\",\"website\":\"\",\"payment_terms\":30,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Farah Nuruljannah\",\"last_name\":\"Dahli\",\"email\":\"farahdahli90@gmail.com\",\"phone\":\"+60192226172\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":19,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60376208756\",\"work_email\":\"sales@m-hub.asia\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"http:\\/\\/www.m-hub.asia\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":0,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,2000.00,NULL,'27.125.240.239',0,NULL,''),(677,'2025-06-10 03:43:51','2025-06-10 03:43:51',1,2,27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0.00,0.00,NULL,'113.211.135.59',0,NULL,''),(678,'2025-06-10 03:43:51','2025-06-10 03:43:51',1,2,27,NULL,NULL,90,NULL,NULL,NULL,NULL,4,0.00,0.00,NULL,'113.211.135.59',0,NULL,''),(679,'2025-06-10 03:49:01','2025-06-10 03:49:01',1,2,27,NULL,NULL,90,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873612\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2025-06-10\",\"due_date\":\"2025-07-10\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"708.75\",\"balance\":\"708.75\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":1,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"1016.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"1009.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":null,\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,708.75,708.75,NULL,'113.211.135.59',0,NULL,''),(680,'2025-06-10 03:49:15','2025-06-10 03:49:15',1,2,27,34,NULL,90,NULL,NULL,NULL,NULL,6,0.00,708.75,NULL,'113.211.135.59',0,NULL,''),(681,'2025-06-10 03:49:15','2025-06-10 03:49:16',1,2,27,NULL,NULL,90,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873612\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2025-06-10\",\"due_date\":\"2025-07-10\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"708.75\",\"balance\":\"708.75\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":1,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"1016.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"1009.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"708.75\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,708.75,NULL,'113.211.135.59',0,NULL,''),(682,'2025-07-19 01:59:58','2025-07-19 01:59:58',1,2,27,NULL,NULL,91,NULL,NULL,NULL,NULL,4,7394.80,8103.55,NULL,'113.211.137.157',0,NULL,''),(683,'2025-07-19 02:00:15','2025-07-19 02:00:15',1,2,27,34,NULL,91,NULL,NULL,NULL,NULL,6,0.00,8103.55,NULL,'113.211.137.157',0,NULL,''),(684,'2025-07-19 02:00:15','2025-07-19 02:00:15',1,2,27,NULL,NULL,91,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873613\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2025-07-19\",\"due_date\":\"2025-08-18\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"7394.80\",\"balance\":\"7394.80\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":1,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"2073.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"9jakids trivia NG MTN#1047\",\"cost\":\"0.3500\",\"qty\":\"2424.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"E-Limu NG MTN#1046\",\"cost\":\"0.3500\",\"qty\":\"16631.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"Wheel of Fortune MTN#1000\",\"cost\":\"0.3500\",\"qty\":\"0.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"8103.55\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,8103.55,NULL,'113.211.137.157',0,NULL,''),(685,'2025-07-23 10:52:53','2025-07-23 10:52:53',1,1,27,NULL,NULL,91,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873613\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2025-07-19\",\"due_date\":\"2025-08-18\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"7394.80\",\"balance\":\"7394.80\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":1,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"2073.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"9jakids trivia NG MTN#1047\",\"cost\":\"0.3500\",\"qty\":\"2424.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"E-Limu NG MTN#1046\",\"cost\":\"0.3500\",\"qty\":\"16631.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"Wheel of Fortune MTN#1000\",\"cost\":\"0.3500\",\"qty\":\"0.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"8103.55\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-739.48,7364.07,NULL,'14.1.225.75',0,NULL,''),(686,'2025-07-23 10:56:04','2025-07-23 10:56:04',1,1,27,NULL,NULL,91,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873613\",\"discount\":\"10.00\",\"po_number\":\"\",\"invoice_date\":\"2025-07-19\",\"due_date\":\"2025-08-18\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"6655.32\",\"balance\":\"6655.32\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"2073.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"9jakids trivia NG MTN#1047\",\"cost\":\"0.3500\",\"qty\":\"2424.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"E-Limu NG MTN#1046\",\"cost\":\"0.3500\",\"qty\":\"16631.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"Wheel of Fortune MTN#1000\",\"cost\":\"0.3500\",\"qty\":\"0.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"7364.07\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,7364.07,NULL,'14.1.225.75',0,NULL,''),(687,'2025-07-23 10:58:03','2025-07-23 10:58:03',1,1,27,NULL,44,90,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873612\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2025-06-10\",\"due_date\":\"2025-07-10\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"708.75\",\"balance\":0,\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":1,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"6655.32\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"1016.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"1009.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"documents\":[],\"expenses\":[]}',10,-708.75,6655.32,NULL,'14.1.225.75',0,NULL,''),(688,'2025-07-23 10:58:03','2025-07-23 10:58:03',1,1,27,NULL,NULL,90,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873612\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2025-06-10\",\"due_date\":\"2025-07-10\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"708.75\",\"balance\":\"708.75\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":1,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"1016.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"1009.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"6655.32\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,6655.32,NULL,'14.1.225.75',0,NULL,''),(689,'2025-07-23 10:58:16','2025-07-23 10:58:16',1,1,27,NULL,NULL,90,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873612\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2025-06-10\",\"due_date\":\"2025-07-10\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"708.75\",\"balance\":\"0.00\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":1,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"1016.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"1009.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"6655.32\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,6655.32,NULL,'14.1.225.75',0,NULL,''),(690,'2025-07-24 00:20:54','2025-07-24 00:20:54',1,2,27,NULL,NULL,91,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873613\",\"discount\":\"10.00\",\"po_number\":\"\",\"invoice_date\":\"2025-07-19\",\"due_date\":\"2025-08-18\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\\r\\n\\r\\n** Discount 10%\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"6655.32\",\"balance\":\"6655.32\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"2073.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"9jakids trivia NG MTN#1047\",\"cost\":\"0.3500\",\"qty\":\"2424.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"E-Limu NG MTN#1046\",\"cost\":\"0.3500\",\"qty\":\"16631.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"Wheel of Fortune MTN#1000\",\"cost\":\"0.3500\",\"qty\":\"0.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"6655.32\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,739.48,7394.80,NULL,'2001:d08:1411:c30e:c6c:29b1:665e:d04d',0,NULL,''),(691,'2025-07-24 00:22:13','2025-07-24 00:22:13',1,1,27,NULL,NULL,91,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873613\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2025-07-19\",\"due_date\":\"2025-08-18\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\\r\\n\\r\\n** Discount 10%\",\"public_notes\":\"E-Limu NG MTN (Ref: #1046):\\r\\nA 10% discount has been applied to the total service amount.\\r\\nOriginal amount: USD 5,820.85\\r\\nDiscounted amount (after 10% deduction): USD 5,238.77\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"7394.80\",\"balance\":\"7394.80\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"2073.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"9jakids trivia NG MTN#1047\",\"cost\":\"0.3500\",\"qty\":\"2424.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"E-Limu NG MTN#1046\\r\\n(10% OFF\",\"cost\":\"0.3500\",\"qty\":\"16631.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"Wheel of Fortune MTN#1000\",\"cost\":\"0.3500\",\"qty\":\"0.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"7394.80\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,7394.80,NULL,'14.1.252.238',0,NULL,''),(692,'2025-07-24 00:22:17','2025-07-24 00:22:18',1,2,27,NULL,NULL,91,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873613\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2025-07-19\",\"due_date\":\"2025-08-18\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\\r\\n\\r\\n** Discount 10%\",\"public_notes\":\"\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"7394.80\",\"balance\":\"7394.80\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"2073.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"9jakids trivia NG MTN#1047\",\"cost\":\"0.3500\",\"qty\":\"2424.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"E-Limu NG MTN#1046\",\"cost\":\"0.3500\",\"qty\":\"16631.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"Wheel of Fortune MTN#1000\",\"cost\":\"0.3500\",\"qty\":\"0.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"7394.80\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,7394.80,NULL,'2001:d08:1411:c30e:c6c:29b1:665e:d04d',0,NULL,''),(693,'2025-07-24 01:07:13','2025-07-24 01:07:13',1,2,27,NULL,NULL,91,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873613\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2025-07-19\",\"due_date\":\"2025-08-18\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\",\"public_notes\":\"E-Limu NG MTN (Ref: #1046):\\r\\nA 10% discount has been applied to the total service amount.\\r\\nOriginal amount: USD 5,820.85\\r\\nDiscounted amount (after 10% deduction): USD 5,238.77\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"7394.80\",\"balance\":\"7394.80\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"2073.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"9jakids trivia NG MTN#1047\",\"cost\":\"0.3500\",\"qty\":\"2424.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"E-Limu NG MTN#1046\\r\\n(10% OFF\",\"cost\":\"0.3500\",\"qty\":\"16631.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"Wheel of Fortune MTN#1000\",\"cost\":\"0.3500\",\"qty\":\"0.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"7394.80\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\",\\\"product.discount\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,-582.08,6812.72,NULL,'2001:d08:1411:c30e:c6c:29b1:665e:d04d',0,NULL,''),(694,'2025-07-24 01:09:04','2025-07-24 01:09:04',1,2,27,NULL,NULL,91,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873613\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2025-07-19\",\"due_date\":\"2025-08-18\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\",\"public_notes\":\"E-Limu NG MTN (Ref: #1046):\\r\\nA 10% discount has been applied to the total service amount.\\r\\nOriginal amount: USD 5,820.85\\r\\nDiscounted amount (after 10% deduction): USD 5,238.77\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"6812.72\",\"balance\":\"6812.72\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"2073.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"9jakids trivia NG MTN#1047\",\"cost\":\"0.3500\",\"qty\":\"2424.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"E-Limu NG MTN#1046\",\"cost\":\"0.3500\",\"qty\":\"16631.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"10.00\"},{\"product_key\":\"CPA\",\"notes\":\"Wheel of Fortune MTN#1000\",\"cost\":\"0.3500\",\"qty\":\"0.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"6812.72\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\",\\\"product.discount\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,6812.72,NULL,'2001:d08:1411:c30e:c6c:29b1:665e:d04d',0,NULL,''),(695,'2025-07-24 01:15:54','2025-07-24 01:15:54',1,1,27,NULL,NULL,91,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873613\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2025-07-19\",\"due_date\":\"2025-08-18\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\",\"public_notes\":\"E-Limu NG MTN (Ref: #1046):\\r\\nA 10% discount has been applied to the total service amount.\\r\\nOriginal amount: USD 5,820.85\\r\\nDiscounted amount (after 10% deduction): USD 5,238.77\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"6812.72\",\"balance\":\"6812.72\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"2073.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"9jakids trivia NG MTN#1047\",\"cost\":\"0.3500\",\"qty\":\"2424.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"E-Limu NG MTN#1046\",\"cost\":\"0.3500\",\"qty\":\"16631.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"10.00\"},{\"product_key\":\"CPA\",\"notes\":\"Wheel of Fortune MTN#1000\",\"cost\":\"0.3500\",\"qty\":\"0.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"6812.72\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\",\\\"product.discount\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,6812.72,NULL,'14.1.254.171',0,NULL,''),(696,'2025-07-24 01:30:15','2025-07-24 01:30:16',1,1,27,NULL,NULL,91,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873613\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2025-07-19\",\"due_date\":\"2025-08-18\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\",\"public_notes\":\"E-Limu NG MTN (Ref: #1046):\\r\\nA 10% discount has been applied to the total service amount.\\r\\nOriginal amount: USD 5,820.85\\r\\nDiscounted amount (after 10% deduction): USD 5,238.77\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"6812.72\",\"balance\":\"6812.72\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"2073.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"9jakids trivia NG MTN#1047\",\"cost\":\"0.3500\",\"qty\":\"2424.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"E-Limu NG MTN#1046\",\"cost\":\"0.3500\",\"qty\":\"16631.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"10.00\"},{\"product_key\":\"CPA\",\"notes\":\"Wheel of Fortune MTN#1000\",\"cost\":\"0.3500\",\"qty\":\"0.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"6812.72\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\",\\\"product.discount\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,6812.72,NULL,'14.1.254.171',0,NULL,''),(697,'2025-07-24 01:30:24','2025-07-24 01:30:24',1,1,27,34,NULL,91,NULL,NULL,NULL,NULL,6,0.00,6812.72,NULL,'14.1.254.171',0,NULL,''),(698,'2025-07-24 01:30:24','2025-07-24 01:30:24',1,1,27,NULL,NULL,91,NULL,NULL,NULL,'{\"invoice_number\":\"25354I-873613\",\"discount\":\"0.00\",\"po_number\":\"\",\"invoice_date\":\"2025-07-19\",\"due_date\":\"2025-08-18\",\"terms\":\"- Card payment are accepted upon request.\\r\\n\\r\\nPlease Transfer To:\\r\\nBank Name                         : Malayan Banking Bhd\\r\\nAccount Name                   : MOBTEL HUB\\r\\nBank Account Number     : 564548148577\\r\\nSwift Code                          : MBBEMYKL\\r\\n\\r\\nPlease send to us payment advice at khediryaakub@mobtelhub.com\",\"public_notes\":\"E-Limu NG MTN (Ref: #1046):\\r\\nA 10% discount has been applied to the total service amount.\\r\\nOriginal amount: USD 5,820.85\\r\\nDiscounted amount (after 10% deduction): USD 5,238.77\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"amount\":\"6812.72\",\"balance\":\"6812.72\",\"invoice_design_id\":5,\"invoice_type_id\":1,\"custom_value1\":\"0.00\",\"custom_value2\":\"0.00\",\"custom_taxes1\":0,\"custom_taxes2\":0,\"is_amount_discount\":0,\"invoice_footer\":\"This is a computer generated document. No signature is required.\",\"partial\":\"0.00\",\"has_tasks\":false,\"custom_text_value1\":null,\"custom_text_value2\":null,\"has_expenses\":false,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"partial_due_date\":null,\"invoice_items\":[{\"product_key\":\"CPA\",\"notes\":\"Fun gamers club NG MTN#1038\",\"cost\":\"0.3500\",\"qty\":\"2073.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"9jakids trivia NG MTN#1047\",\"cost\":\"0.3500\",\"qty\":\"2424.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"},{\"product_key\":\"CPA\",\"notes\":\"E-Limu NG MTN#1046\",\"cost\":\"0.3500\",\"qty\":\"16631.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"10.00\"},{\"product_key\":\"CPA\",\"notes\":\"Wheel of Fortune MTN#1000\",\"cost\":\"0.3500\",\"qty\":\"0.0000\",\"tax_name1\":\"\",\"tax_rate1\":\"0.000\",\"custom_value1\":null,\"custom_value2\":null,\"tax_name2\":\"\",\"tax_rate2\":\"0.000\",\"invoice_item_type_id\":1,\"discount\":\"0.00\"}],\"client\":{\"currency_id\":null,\"name\":\"VDL Technologies Limited\",\"address1\":\"\",\"address2\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country_id\":null,\"work_phone\":\"\",\"balance\":\"6812.72\",\"website\":\"\",\"payment_terms\":0,\"custom_value1\":null,\"custom_value2\":null,\"vat_number\":\"\",\"id_number\":\"\",\"contacts\":[{\"first_name\":\"Sam\",\"last_name\":\"Olayemi\",\"email\":\"sam@vdltechnologies.com\",\"phone\":\"+234 8167904675\",\"custom_value1\":null,\"custom_value2\":null}]},\"account\":{\"currency_id\":1,\"name\":\"MOBTEL HUB\",\"address1\":\"No.9, Jalan Bullion Mewah 3\",\"address2\":\"Taman Bullion\",\"city\":\"Batu Cave\",\"state\":\"Selangor\",\"postal_code\":\"68100\",\"country_id\":458,\"work_phone\":\"+60178283608\",\"work_email\":\"khediryaakub@mobtelhub.com\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"primary_color\":\"\",\"secondary_color\":\"\",\"hide_quantity\":0,\"hide_paid_to_date\":1,\"vat_number\":\"\",\"id_number\":\"202303322139 (TR0295457-D)\",\"pdf_email_attachment\":1,\"show_item_taxes\":0,\"website\":\"https:\\/\\/www.mobtelhub.com\",\"all_pages_footer\":0,\"all_pages_header\":0,\"show_currency_code\":1,\"invoice_fields\":\"{\\\"invoice_fields\\\":[\\\"invoice.invoice_number\\\",\\\"invoice.po_number\\\",\\\"invoice.invoice_date\\\",\\\"invoice.due_date\\\",\\\"invoice.balance_due\\\",\\\"invoice.partial_due\\\"],\\\"client_fields\\\":[\\\"client.client_name\\\",\\\"client.id_number\\\",\\\"client.address1\\\",\\\"client.address2\\\",\\\"client.city_state_postal\\\",\\\"client.country\\\",\\\"client.email\\\"],\\\"account_fields1\\\":[\\\"account.company_name\\\",\\\"account.id_number\\\",\\\"account.website\\\",\\\"account.email\\\",\\\"account.phone\\\"],\\\"account_fields2\\\":[\\\"account.address1\\\",\\\"account.address2\\\",\\\"account.city_state_postal\\\",\\\"account.country\\\"],\\\"product_fields\\\":[\\\"product.item\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.quantity\\\",\\\"product.unit_cost\\\",\\\"product.line_total\\\",\\\"product.discount\\\"],\\\"task_fields\\\":[\\\"product.service\\\",\\\"product.description\\\",\\\"product.custom_value1\\\",\\\"product.custom_value2\\\",\\\"product.rate\\\",\\\"product.hours\\\",\\\"product.tax\\\",\\\"product.line_total\\\"]}\",\"invoice_embed_documents\":0,\"page_size\":\"A4\",\"include_item_taxes_inline\":0,\"inclusive_taxes\":1,\"signature_on_pdf\":0,\"custom_fields\":{}},\"invitations\":[{\"signature_base64\":null,\"signature_date\":null}],\"documents\":[],\"expenses\":[]}',5,0.00,6812.72,NULL,'14.1.254.171',0,NULL,'');
/*!40000 ALTER TABLE `activities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `affiliates`
--

DROP TABLE IF EXISTS `affiliates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `affiliates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `affiliate_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `payment_title` text COLLATE utf8_unicode_ci NOT NULL,
  `payment_subtitle` text COLLATE utf8_unicode_ci NOT NULL,
  `price` decimal(7,2) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `affiliates_affiliate_key_unique` (`affiliate_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `affiliates`
--

LOCK TABLES `affiliates` WRITE;
/*!40000 ALTER TABLE `affiliates` DISABLE KEYS */;
/*!40000 ALTER TABLE `affiliates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bank_accounts`
--

DROP TABLE IF EXISTS `bank_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bank_accounts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `bank_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `username` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `public_id` int(10) unsigned NOT NULL,
  `app_version` mediumint(9) NOT NULL DEFAULT '2500',
  `ofx_version` mediumint(9) NOT NULL DEFAULT '102',
  PRIMARY KEY (`id`),
  UNIQUE KEY `bank_accounts_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `bank_accounts_user_id_foreign` (`user_id`),
  KEY `bank_accounts_bank_id_foreign` (`bank_id`),
  KEY `bank_accounts_public_id_index` (`public_id`),
  CONSTRAINT `bank_accounts_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_accounts_bank_id_foreign` FOREIGN KEY (`bank_id`) REFERENCES `banks` (`id`),
  CONSTRAINT `bank_accounts_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_accounts`
--

LOCK TABLES `bank_accounts` WRITE;
/*!40000 ALTER TABLE `bank_accounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `bank_accounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bank_subaccounts`
--

DROP TABLE IF EXISTS `bank_subaccounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bank_subaccounts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `bank_account_id` int(10) unsigned NOT NULL,
  `account_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `account_number` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `public_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bank_subaccounts_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `bank_subaccounts_user_id_foreign` (`user_id`),
  KEY `bank_subaccounts_bank_account_id_foreign` (`bank_account_id`),
  KEY `bank_subaccounts_public_id_index` (`public_id`),
  CONSTRAINT `bank_subaccounts_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_subaccounts_bank_account_id_foreign` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_subaccounts_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_subaccounts`
--

LOCK TABLES `bank_subaccounts` WRITE;
/*!40000 ALTER TABLE `bank_subaccounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `bank_subaccounts` 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 = utf8 */;
CREATE TABLE `banks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `remote_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `bank_library_id` int(11) NOT NULL DEFAULT '1',
  `config` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=388 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_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` (`id`, `name`, `remote_id`, `bank_library_id`, `config`) VALUES (1,'ING DIRECT (Canada)','421',1,'{\"fid\":\"061400152\",\"org\":\"INGDirectCanada\",\"url\":\"https:\\/\\/ofx.ingdirect.ca\"}'),(2,'Safe Credit Union - OFX Beta','422',1,'{\"fid\":\"321173742\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxcert.diginsite.com\\/cmr\\/cmr.ofx\"}'),(3,'Ascentra Credit Union','423',1,'{\"fid\":\"273973456\",\"org\":\"Alcoa Employees&Community CU\",\"url\":\"https:\\/\\/alc.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(4,'American Express Card','424',1,'{\"fid\":\"3101\",\"org\":\"AMEX\",\"url\":\"https:\\/\\/online.americanexpress.com\\/myca\\/ofxdl\\/desktop\\/desktopDownload.do?request_type=nl_ofxdownload\"}'),(5,'TD Ameritrade','425',1,'{\"fid\":\"5024\",\"org\":\"ameritrade.com\",\"url\":\"https:\\/\\/ofxs.ameritrade.com\\/cgi-bin\\/apps\\/OFX\"}'),(6,'Truliant FCU','426',1,'{\"fid\":\"253177832\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(7,'AT&T Universal Card','427',1,'{\"fid\":\"24909\",\"org\":\"Citigroup\",\"url\":\"https:\\/\\/secureofx2.bankhost.com\\/citi\\/cgi-forte\\/ofx_rt?servicename=ofx_rt&pagename=ofx\"}'),(8,'Bank One','428',1,'{\"fid\":\"5811\",\"org\":\"B1\",\"url\":\"https:\\/\\/onlineofx.chase.com\\/chase.ofx\"}'),(9,'Bank of Stockton','429',1,'{\"fid\":\"3901\",\"org\":\"BOS\",\"url\":\"https:\\/\\/internetbanking.bankofstockton.com\\/scripts\\/serverext.dll\"}'),(10,'Bank of the Cascades','430',1,'{\"fid\":\"4751\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline.netteller.com\"}'),(11,'Centra Credit Union','431',1,'{\"fid\":\"274972883\",\"org\":\"Centra CU\",\"url\":\"https:\\/\\/centralink.org\\/scripts\\/isaofx.dll\"}'),(12,'Centura Bank','432',1,'{\"fid\":\"1901\",\"org\":\"Centura Bank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/1901.ofxgp\"}'),(13,'Charles Schwab&Co., INC','433',1,'{\"fid\":\"5104\",\"org\":\"ISC\",\"url\":\"https:\\/\\/ofx.schwab.com\\/cgi_dev\\/ofx_server\"}'),(14,'JPMorgan Chase Bank (Texas)','434',1,'{\"fid\":\"5301\",\"org\":\"Chase Bank of Texas\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/5301.ofxgp\"}'),(15,'JPMorgan Chase Bank','435',1,'{\"fid\":\"1601\",\"org\":\"Chase Bank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/1601.ofxgp\"}'),(16,'Colonial Bank','436',1,'{\"fid\":\"1046\",\"org\":\"Colonial Banc Group\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/1046.ofxgp\"}'),(17,'Comerica Bank','437',1,'{\"fid\":\"5601\",\"org\":\"Comerica\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/5601.ofxgp\"}'),(18,'Commerce Bank NJ, PA, NY&DE','438',1,'{\"fid\":\"1001\",\"org\":\"CommerceBank\",\"url\":\"https:\\/\\/www.commerceonlinebanking.com\\/scripts\\/serverext.dll\"}'),(19,'Commerce Bank, NA','439',1,'{\"fid\":\"4001\",\"org\":\"Commerce Bank NA\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/4001.ofxgp\"}'),(20,'Commercial Federal Bank','440',1,'{\"fid\":\"4801\",\"org\":\"CommercialFederalBank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/4801.ofxgp\"}'),(21,'COMSTAR FCU','441',1,'{\"fid\":\"255074988\",\"org\":\"Comstar Federal Credit Union\",\"url\":\"https:\\/\\/pcu.comstarfcu.org\\/scripts\\/isaofx.dll\"}'),(22,'SunTrust','442',1,'{\"fid\":\"2801\",\"org\":\"SunTrust PC Banking\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/2801.ofxgp\"}'),(23,'Denali Alaskan FCU','443',1,'{\"fid\":\"1\",\"org\":\"Denali Alaskan FCU\",\"url\":\"https:\\/\\/remotebanking.denalifcu.com\\/ofx\\/ofx.dll\"}'),(24,'Discover Card','444',1,'{\"fid\":\"7101\",\"org\":\"Discover Financial Services\",\"url\":\"https:\\/\\/ofx.discovercard.com\"}'),(25,'E*TRADE','446',1,'{\"fid\":\"fldProv_mProvBankId\",\"org\":\"fldProv_mId\",\"url\":\"https:\\/\\/ofx.etrade.com\\/cgi-ofx\\/etradeofx\"}'),(26,'Eastern Bank','447',1,'{\"fid\":\"6201\",\"org\":\"Eastern Bank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/6201.ofxgp\"}'),(27,'EDS Credit Union','448',1,'{\"fid\":\"311079474\",\"org\":\"EDS CU\",\"url\":\"https:\\/\\/eds.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(28,'Fidelity Investments','449',1,'{\"fid\":\"7776\",\"org\":\"fidelity.com\",\"url\":\"https:\\/\\/ofx.fidelity.com\\/ftgw\\/OFX\\/clients\\/download\"}'),(29,'Fifth Third Bancorp','450',1,'{\"fid\":\"5829\",\"org\":\"Fifth Third Bank\",\"url\":\"https:\\/\\/banking.53.com\\/ofx\\/OFXServlet\"}'),(30,'First Tech Credit Union','451',1,'{\"fid\":\"2243\",\"org\":\"First Tech Credit Union\",\"url\":\"https:\\/\\/ofx.firsttechcu.com\"}'),(31,'zWachovia','452',1,'{\"fid\":\"4301\",\"org\":\"Wachovia\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/4301.ofxgp\"}'),(32,'KeyBank','453',1,'{\"fid\":\"5901\",\"org\":\"KeyBank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/05901.ofx\"}'),(33,'Mellon Bank','454',1,'{\"fid\":\"1226\",\"org\":\"Mellon Bank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/1226.ofxgp\"}'),(34,'LaSalle Bank Midwest','455',1,'{\"fid\":\"1101\",\"org\":\"LaSalleBankMidwest\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/1101.ofxgp\"}'),(35,'Nantucket Bank','456',1,'{\"fid\":\"466\",\"org\":\"Nantucket\",\"url\":\"https:\\/\\/ofx.onlinencr.com\\/scripts\\/serverext.dll\"}'),(36,'National Penn Bank','457',1,'{\"fid\":\"6301\",\"org\":\"National Penn Bank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/6301.ofxgp\"}'),(37,'Nevada State Bank - New','458',1,'{\"fid\":\"1121\",\"org\":\"295-3\",\"url\":\"https:\\/\\/quicken.metavante.com\\/ofx\\/OFXServlet\"}'),(38,'UBS Financial Services Inc.','459',1,'{\"fid\":\"7772\",\"org\":\"Intuit\",\"url\":\"https:\\/\\/ofx1.ubs.com\\/eftxweb\\/access.ofx\"}'),(39,'Patelco CU','460',1,'{\"fid\":\"2000\",\"org\":\"Patelco Credit Union\",\"url\":\"https:\\/\\/ofx.patelco.org\"}'),(40,'Mercantile Brokerage Services','461',1,'{\"fid\":\"011\",\"org\":\"Mercantile Brokerage\",\"url\":\"https:\\/\\/ofx.netxclient.com\\/cgi\\/OFXNetx\"}'),(41,'Regions Bank','462',1,'{\"fid\":\"243\",\"org\":\"regions.com\",\"url\":\"https:\\/\\/ofx.morgankeegan.com\\/begasp\\/directtocore.asp\"}'),(42,'Spectrum Connect/Reich&Tang','463',1,'{\"fid\":\"6510\",\"org\":\"SpectrumConnect\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/6510.ofxgp\"}'),(43,'Smith Barney - Transactions','464',1,'{\"fid\":\"3201\",\"org\":\"SmithBarney\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/3201.ofxgp\"}'),(44,'Southwest Airlines FCU','465',1,'{\"fid\":\"311090673\",\"org\":\"Southwest Airlines EFCU\",\"url\":\"https:\\/\\/www.swacuflashbp.org\\/scripts\\/isaofx.dll\"}'),(45,'Technology Credit Union - CA','467',1,'{\"fid\":\"11257\",\"org\":\"Tech CU\",\"url\":\"https:\\/\\/webbranchofx.techcu.com\\/TekPortalOFX\\/servlet\\/TP_OFX_Controller\"}'),(46,'UMB Bank','468',1,'{\"fid\":\"0\",\"org\":\"UMB\",\"url\":\"https:\\/\\/pcbanking.umb.com\\/hs_ofx\\/hsofx.dll\"}'),(47,'Union Bank of California','469',1,'{\"fid\":\"2901\",\"org\":\"Union Bank of California\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/2901.ofxgp\"}'),(48,'United Teletech Financial','470',1,'{\"fid\":\"221276011\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxcore.digitalinsight.com:443\\/servlet\\/OFXCoreServlet\"}'),(49,'US Bank','471',1,'{\"fid\":\"1401\",\"org\":\"US Bank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/1401.ofxgp\"}'),(50,'Bank of America (All except CA, WA,&ID)','472',1,'{\"fid\":\"6812\",\"org\":\"HAN\",\"url\":\"https:\\/\\/ofx.bankofamerica.com\\/cgi-forte\\/fortecgi?servicename=ofx_2-3&pagename=ofx\"}'),(51,'Wells Fargo','473',1,'{\"fid\":\"3000\",\"org\":\"WF\",\"url\":\"https:\\/\\/ofxdc.wellsfargo.com\\/ofx\\/process.ofx\"}'),(52,'LaSalle Bank NA','474',1,'{\"fid\":\"6501\",\"org\":\"LaSalle Bank NA\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/6501.ofxgp\"}'),(53,'BB&T','475',1,'{\"fid\":\"BB&T\",\"org\":\"BB&T\",\"url\":\"https:\\/\\/eftx.bbt.com\\/eftxweb\\/access.ofx\"}'),(54,'Los Alamos National Bank','476',1,'{\"fid\":\"107001012\",\"org\":\"LANB\",\"url\":\"https:\\/\\/ofx.lanb.com\\/ofx\\/ofxrelay.dll\"}'),(55,'Citadel FCU','477',1,'{\"fid\":\"citadel\",\"org\":\"CitadelFCU\",\"url\":\"https:\\/\\/pcu.citadelfcu.org\\/scripts\\/isaofx.dll\"}'),(56,'Clearview Federal Credit Union','478',1,'{\"fid\":\"243083237\",\"org\":\"Clearview Federal Credit Union\",\"url\":\"https:\\/\\/www.pcu.clearviewfcu.org\\/scripts\\/isaofx.dll\"}'),(57,'Vanguard Group, The','479',1,'{\"fid\":\"1358\",\"org\":\"The Vanguard Group\",\"url\":\"https:\\/\\/vesnc.vanguard.com\\/us\\/OfxDirectConnectServlet\"}'),(58,'First Citizens Bank - NC, VA, WV','480',1,'{\"fid\":\"5013\",\"org\":\"First Citizens Bank NC, VA, WV\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/5013.ofxgp\"}'),(59,'Northern Trust - Banking','481',1,'{\"fid\":\"5804\",\"org\":\"ORG\",\"url\":\"https:\\/\\/www3883.ntrs.com\\/nta\\/ofxservlet\"}'),(60,'The Mechanics Bank','482',1,'{\"fid\":\"121102036\",\"org\":\"TMB\",\"url\":\"https:\\/\\/ofx.mechbank.com\\/OFXServer\\/ofxsrvr.dll\"}'),(61,'USAA Federal Savings Bank','483',1,'{\"fid\":\"24591\",\"org\":\"USAA\",\"url\":\"https:\\/\\/service2.usaa.com\\/ofx\\/OFXServlet\"}'),(62,'Florida Telco CU','484',1,'{\"fid\":\"FTCU\",\"org\":\"FloridaTelcoCU\",\"url\":\"https:\\/\\/ppc.floridatelco.org\\/scripts\\/isaofx.dll\"}'),(63,'DuPont Community Credit Union','485',1,'{\"fid\":\"251483311\",\"org\":\"DuPont Community Credit Union\",\"url\":\"https:\\/\\/pcu.mydccu.com\\/scripts\\/isaofx.dll\"}'),(64,'Central Florida Educators FCU','486',1,'{\"fid\":\"590678236\",\"org\":\"CentralFloridaEduc\",\"url\":\"https:\\/\\/www.mattweb.cfefcu.com\\/scripts\\/isaofx.dll\"}'),(65,'California Bank&Trust','487',1,'{\"fid\":\"5006\",\"org\":\"401\",\"url\":\"https:\\/\\/pfm.metavante.com\\/ofx\\/OFXServlet\"}'),(66,'First Commonwealth FCU','488',1,'{\"fid\":\"231379199\",\"org\":\"FirstCommonwealthFCU\",\"url\":\"https:\\/\\/pcu.firstcomcu.org\\/scripts\\/isaofx.dll\"}'),(67,'Ameriprise Financial Services, Inc.','489',1,'{\"fid\":\"3102\",\"org\":\"AMPF\",\"url\":\"https:\\/\\/www25.ameriprise.com\\/AMPFWeb\\/ofxdl\\/us\\/download?request_type=nl_desktopdownload\"}'),(68,'AltaOne Federal Credit Union','490',1,'{\"fid\":\"322274462\",\"org\":\"AltaOneFCU\",\"url\":\"https:\\/\\/pcu.altaone.org\\/scripts\\/isaofx.dll\"}'),(69,'A. G. Edwards and Sons, Inc.','491',1,'{\"fid\":\"43-0895447\",\"org\":\"A.G. Edwards\",\"url\":\"https:\\/\\/ofx.agedwards.com\"}'),(70,'Educational Employees CU Fresno','492',1,'{\"fid\":\"321172594\",\"org\":\"Educational Employees C U\",\"url\":\"https:\\/\\/www.eecuonline.org\\/scripts\\/isaofx.dll\"}'),(71,'Hawthorne Credit Union','493',1,'{\"fid\":\"271979193\",\"org\":\"Hawthorne Credit Union\",\"url\":\"https:\\/\\/hwt.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(72,'Firstar','494',1,'{\"fid\":\"1255\",\"org\":\"Firstar\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/1255.ofxgp\"}'),(73,'myStreetscape','495',1,'{\"fid\":\"7784\",\"org\":\"Fidelity\",\"url\":\"https:\\/\\/ofx.ibgstreetscape.com:443\"}'),(74,'Collegedale Credit Union','496',1,'{\"fid\":\"35GFA\",\"org\":\"CollegedaleCU\",\"url\":\"https:\\/\\/www.netit.financial-net.com\\/ofx\"}'),(75,'GCS Federal Credit Union','498',1,'{\"fid\":\"281076853\",\"org\":\"Granite City Steel cu\",\"url\":\"https:\\/\\/pcu.mygcscu.com\\/scripts\\/isaofx.dll\"}'),(76,'Vantage Credit Union','499',1,'{\"fid\":\"281081479\",\"org\":\"EECU-St. Louis\",\"url\":\"https:\\/\\/secure2.eecu.com\\/scripts\\/isaofx.dll\"}'),(77,'Morgan Stanley ClientServ','500',1,'{\"fid\":\"1235\",\"org\":\"msdw.com\",\"url\":\"https:\\/\\/ofx.morganstanleyclientserv.com\\/ofx\\/ProfileMSMoney.ofx\"}'),(78,'Kennedy Space Center FCU','501',1,'{\"fid\":\"263179532\",\"org\":\"Kennedy Space Center FCU\",\"url\":\"https:\\/\\/www.pcu.kscfcu.org\\/scripts\\/isaofx.dll\"}'),(79,'Sierra Central Credit Union','502',1,'{\"fid\":\"321174770\",\"org\":\"Sierra Central Credit Union\",\"url\":\"https:\\/\\/www.sierracpu.com\\/scripts\\/isaofx.dll\"}'),(80,'Virginia Educators Credit Union','503',1,'{\"fid\":\"251481355\",\"org\":\"Virginia Educators CU\",\"url\":\"https:\\/\\/www.vecumoneylink.org\\/scripts\\/isaofx.dll\"}'),(81,'Red Crown Federal Credit Union','504',1,'{\"fid\":\"303986148\",\"org\":\"Red Crown FCU\",\"url\":\"https:\\/\\/cre.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(82,'B-M S Federal Credit Union','505',1,'{\"fid\":\"221277007\",\"org\":\"B-M S Federal Credit Union\",\"url\":\"https:\\/\\/bms.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(83,'Fort Stewart GeorgiaFCU','506',1,'{\"fid\":\"261271364\",\"org\":\"Fort Stewart FCU\",\"url\":\"https:\\/\\/fsg.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(84,'Northern Trust - Investments','507',1,'{\"fid\":\"6028\",\"org\":\"Northern Trust Investments\",\"url\":\"https:\\/\\/www3883.ntrs.com\\/nta\\/ofxservlet?accounttypegroup=INV\"}'),(85,'Picatinny Federal Credit Union','508',1,'{\"fid\":\"221275216\",\"org\":\"Picatinny Federal Credit Union\",\"url\":\"https:\\/\\/banking.picacreditunion.com\\/scripts\\/isaofx.dll\"}'),(86,'SAC FEDERAL CREDIT UNION','509',1,'{\"fid\":\"091901480\",\"org\":\"SAC Federal CU\",\"url\":\"https:\\/\\/pcu.sacfcu.com\\/scripts\\/isaofx.dll\"}'),(87,'Merrill Lynch&Co., Inc.','510',1,'{\"fid\":\"5550\",\"org\":\"Merrill Lynch & Co., Inc.\",\"url\":\"https:\\/\\/taxcert.mlol.ml.com\\/eftxweb\\/access.ofx\"}'),(88,'Southeastern CU','511',1,'{\"fid\":\"261271500\",\"org\":\"Southeastern FCU\",\"url\":\"https:\\/\\/moo.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(89,'Texas Dow Employees Credit Union','512',1,'{\"fid\":\"313185515\",\"org\":\"TexasDow\",\"url\":\"https:\\/\\/allthetime.tdecu.org\\/scripts\\/isaofx.dll\"}'),(90,'University Federal Credit Union','513',1,'{\"fid\":\"314977405\",\"org\":\"Univerisity FCU\",\"url\":\"https:\\/\\/OnDemand.ufcu.org\\/scripts\\/isaofx.dll\"}'),(91,'Yakima Valley Credit Union','514',1,'{\"fid\":\"325183796\",\"org\":\"Yakima Valley Credit Union\",\"url\":\"https:\\/\\/secure1.yvcu.org\\/scripts\\/isaofx.dll\"}'),(92,'First Community FCU','515',1,'{\"fid\":\"272483633\",\"org\":\"FirstCommunityFCU\",\"url\":\"https:\\/\\/pcu.1stcomm.org\\/scripts\\/isaofx.dll\"}'),(93,'Wells Fargo Advisor','516',1,'{\"fid\":\"1030\",\"org\":\"strong.com\",\"url\":\"https:\\/\\/ofx.wellsfargoadvantagefunds.com\\/eftxWeb\\/Access.ofx\"}'),(94,'Chicago Patrolmens FCU','517',1,'{\"fid\":\"271078146\",\"org\":\"Chicago Patrolmens CU\",\"url\":\"https:\\/\\/chp.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(95,'Signal Financial Federal Credit Union','518',1,'{\"fid\":\"255075495\",\"org\":\"Washington Telephone FCU\",\"url\":\"https:\\/\\/webpb.sfonline.org\\/scripts\\/isaofx.dll\"}'),(96,'Bank-Fund Staff FCU','520',1,'{\"fid\":\"2\",\"org\":\"Bank Fund Staff FCU\",\"url\":\"https:\\/\\/secure.bfsfcu.org\\/ofx\\/ofx.dll\"}'),(97,'APCO EMPLOYEES CREDIT UNION','521',1,'{\"fid\":\"262087609\",\"org\":\"APCO Employees Credit Union\",\"url\":\"https:\\/\\/apc.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(98,'Bank of Tampa, The','522',1,'{\"fid\":\"063108680\",\"org\":\"BOT\",\"url\":\"https:\\/\\/OFX.Bankoftampa.com\\/OFXServer\\/ofxsrvr.dll\"}'),(99,'Cedar Point Federal Credit Union','523',1,'{\"fid\":\"255077736\",\"org\":\"Cedar Point Federal Credit Union\",\"url\":\"https:\\/\\/pcu.cpfcu.com\\/scripts\\/isaofx.dll\"}'),(100,'Las Colinas FCU','524',1,'{\"fid\":\"311080573\",\"org\":\"Las Colinas Federal CU\",\"url\":\"https:\\/\\/las.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(101,'McCoy Federal Credit Union','525',1,'{\"fid\":\"263179956\",\"org\":\"McCoy Federal Credit Union\",\"url\":\"https:\\/\\/www.mccoydirect.org\\/scripts\\/isaofx.dll\"}'),(102,'Old National Bank','526',1,'{\"fid\":\"11638\",\"org\":\"ONB\",\"url\":\"https:\\/\\/www.ofx.oldnational.com\\/ofxpreprocess.asp\"}'),(103,'Citizens Bank - Consumer','527',1,'{\"fid\":\"CTZBK\",\"org\":\"CheckFree OFX\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/0CTZBK.ofxgp\"}'),(104,'Citizens Bank - Business','528',1,'{\"fid\":\"4639\",\"org\":\"CheckFree OFX\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/04639.ofxgp\"}'),(105,'Century Federal Credit Union','529',1,'{\"fid\":\"241075056\",\"org\":\"CenturyFederalCU\",\"url\":\"https:\\/\\/pcu.cenfedcu.org\\/scripts\\/isaofx.dll\"}'),(106,'ABNB Federal Credit Union','530',1,'{\"fid\":\"251481627\",\"org\":\"ABNB Federal Credit Union\",\"url\":\"https:\\/\\/cuathome.abnbfcu.org\\/scripts\\/isaofx.dll\"}'),(107,'Allegiance Credit Union','531',1,'{\"fid\":\"303085230\",\"org\":\"Federal Employees CU\",\"url\":\"https:\\/\\/fed.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(108,'Wright Patman Congressional FCU','532',1,'{\"fid\":\"254074345\",\"org\":\"Wright Patman Congressional FCU\",\"url\":\"https:\\/\\/www.congressionalonline.org\\/scripts\\/isaofx.dll\"}'),(109,'America First Credit Union','533',1,'{\"fid\":\"54324\",\"org\":\"America First Credit Union\",\"url\":\"https:\\/\\/ofx.americafirst.com\"}'),(110,'Motorola Employees Credit Union','534',1,'{\"fid\":\"271984311\",\"org\":\"Motorola Employees CU\",\"url\":\"https:\\/\\/mecuofx.mecunet.org\\/scripts\\/isaofx.dll\"}'),(111,'Finance Center FCU (IN)','535',1,'{\"fid\":\"274073876\",\"org\":\"Finance Center FCU\",\"url\":\"https:\\/\\/sec.fcfcu.com\\/scripts\\/isaofx.dll\"}'),(112,'Fort Knox Federal Credit Union','536',1,'{\"fid\":\"283978425\",\"org\":\"Fort Knox Federal Credit Union\",\"url\":\"https:\\/\\/fcs1.fkfcu.org\\/scripts\\/isaofx.dll\"}'),(113,'Wachovia Bank','537',1,'{\"fid\":\"4309\",\"org\":\"Wachovia\",\"url\":\"https:\\/\\/pfmpw.wachovia.com\\/cgi-forte\\/fortecgi?servicename=ofx&pagename=PFM\"}'),(114,'Think Federal Credit Union','538',1,'{\"fid\":\"291975465\",\"org\":\"IBMCU\",\"url\":\"https:\\/\\/ofx.ibmcu.com\"}'),(115,'PSECU','539',1,'{\"fid\":\"54354\",\"org\":\"Teknowledge\",\"url\":\"https:\\/\\/ofx.psecu.com\\/servlet\\/OFXServlet\"}'),(116,'Envision Credit Union','540',1,'{\"fid\":\"263182558\",\"org\":\"Envision Credit Union\",\"url\":\"https:\\/\\/pcu.envisioncu.com\\/scripts\\/isaofx.dll\"}'),(117,'Columbia Credit Union','541',1,'{\"fid\":\"323383349\",\"org\":\"Columbia Credit Union\",\"url\":\"https:\\/\\/ofx.columbiacu.org\\/scripts\\/isaofx.dll\"}'),(118,'1st Advantage FCU','542',1,'{\"fid\":\"251480563\",\"org\":\"1st Advantage FCU\",\"url\":\"https:\\/\\/members.1stadvantage.org\\/scripts\\/isaofx.dll\"}'),(119,'Central Maine FCU','543',1,'{\"fid\":\"211287926\",\"org\":\"Central Maine FCU\",\"url\":\"https:\\/\\/cro.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(120,'Kirtland Federal Credit Union','544',1,'{\"fid\":\"307070050\",\"org\":\"Kirtland Federal Credit Union\",\"url\":\"https:\\/\\/pcu.kirtlandfcu.org\\/scripts\\/isaofx.dll\"}'),(121,'Chesterfield Federal Credit Union','545',1,'{\"fid\":\"251480327\",\"org\":\"Chesterfield Employees FCU\",\"url\":\"https:\\/\\/chf.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(122,'Campus USA Credit Union','546',1,'{\"fid\":\"263178478\",\"org\":\"Campus USA Credit Union\",\"url\":\"https:\\/\\/que.campuscu.com\\/scripts\\/isaofx.dll\"}'),(123,'Summit Credit Union (WI)','547',1,'{\"fid\":\"275979034\",\"org\":\"Summit Credit Union\",\"url\":\"https:\\/\\/branch.summitcreditunion.com\\/scripts\\/isaofx.dll\"}'),(124,'Financial Center CU','548',1,'{\"fid\":\"321177803\",\"org\":\"Fincancial Center Credit Union\",\"url\":\"https:\\/\\/fin.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(125,'Hawaiian Tel Federal Credit Union','549',1,'{\"fid\":\"321379070\",\"org\":\"Hawaiian Tel FCU\",\"url\":\"https:\\/\\/htl.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(126,'Addison Avenue Federal Credit Union','550',1,'{\"fid\":\"11288\",\"org\":\"hpcu\",\"url\":\"https:\\/\\/ofx.addisonavenue.com\"}'),(127,'Navy Army Federal Credit Union','551',1,'{\"fid\":\"111904503\",\"org\":\"Navy Army Federal Credit Union\",\"url\":\"https:\\/\\/mybranch.navyarmyfcu.com\\/scripts\\/isaofx.dll\"}'),(128,'Nevada Federal Credit Union','552',1,'{\"fid\":\"10888\",\"org\":\"PSI\",\"url\":\"https:\\/\\/ssl4.nevadafederal.org\\/ofxdirect\\/ofxrqst.aspx\"}'),(129,'66 Federal Credit Union','553',1,'{\"fid\":\"289\",\"org\":\"SixySix\",\"url\":\"https:\\/\\/ofx.cuonlineaccounts.org\"}'),(130,'FirstBank of Colorado','554',1,'{\"fid\":\"FirstBank\",\"org\":\"FBDC\",\"url\":\"https:\\/\\/www.efirstbankpfm.com\\/ofx\\/OFXServlet\"}'),(131,'Continental Federal Credit Union','555',1,'{\"fid\":\"322077559\",\"org\":\"Continenetal FCU\",\"url\":\"https:\\/\\/cnt.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(132,'Fremont Bank','556',1,'{\"fid\":\"121107882\",\"org\":\"Fremont Bank\",\"url\":\"https:\\/\\/ofx.fremontbank.com\\/OFXServer\\/FBOFXSrvr.dll\"}'),(133,'Peninsula Community Federal Credit Union','557',1,'{\"fid\":\"325182344\",\"org\":\"Peninsula Credit Union\",\"url\":\"https:\\/\\/mas.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(134,'Fidelity NetBenefits','558',1,'{\"fid\":\"8288\",\"org\":\"nbofx.fidelity.com\",\"url\":\"https:\\/\\/nbofx.fidelity.com\\/netbenefits\\/ofx\\/download\"}'),(135,'Fall River Municipal CU','559',1,'{\"fid\":\"211382591\",\"org\":\"Fall River Municipal CU\",\"url\":\"https:\\/\\/fal.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(136,'University Credit Union','560',1,'{\"fid\":\"267077850\",\"org\":\"University Credit Union\",\"url\":\"https:\\/\\/umc.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(137,'Dominion Credit Union','561',1,'{\"fid\":\"251082644\",\"org\":\"Dominion Credit Union\",\"url\":\"https:\\/\\/dom.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(138,'HFS Federal Credit Union','562',1,'{\"fid\":\"321378660\",\"org\":\"HFS Federal Credit Union\",\"url\":\"https:\\/\\/hfs.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(139,'IronStone Bank','563',1,'{\"fid\":\"5012\",\"org\":\"Atlantic States Bank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/5012.ofxgp\"}'),(140,'Utah Community Credit Union','564',1,'{\"fid\":\"324377820\",\"org\":\"Utah Community Credit Union\",\"url\":\"https:\\/\\/ofx.uccu.com\\/scripts\\/isaofx.dll\"}'),(141,'OptionsXpress, Inc','565',1,'{\"fid\":\"10876\",\"org\":\"10876\",\"url\":\"https:\\/\\/ofx.optionsxpress.com\\/cgi-bin\\/ox.exe\"}'),(142,'Prudential Retirement','567',1,'{\"fid\":\"1271\",\"org\":\"Prudential Retirement Services\",\"url\":\"https:\\/\\/ofx.prudential.com\\/eftxweb\\/EFTXWebRedirector\"}'),(143,'Wells Fargo Investments, LLC','568',1,'{\"fid\":\"10762\",\"org\":\"wellsfargo.com\",\"url\":\"https:\\/\\/invmnt.wellsfargo.com\\/inv\\/directConnect\"}'),(144,'Penson Financial Services','570',1,'{\"fid\":\"10780\",\"org\":\"Penson Financial Services Inc\",\"url\":\"https:\\/\\/ofx.penson.com\"}'),(145,'Tri Boro Federal Credit Union','571',1,'{\"fid\":\"243382747\",\"org\":\"Tri Boro Federal Credit Union\",\"url\":\"https:\\/\\/tri.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(146,'Hewitt Associates LLC','572',1,'{\"fid\":\"242\",\"org\":\"hewitt.com\",\"url\":\"https:\\/\\/seven.was.hewitt.com\\/eftxweb\\/access.ofx\"}'),(147,'Delta Community Credit Union','573',1,'{\"fid\":\"3328\",\"org\":\"decu.org\",\"url\":\"https:\\/\\/appweb.deltacommunitycu.com\\/ofxroot\\/directtocore.asp\"}'),(148,'Huntington National Bank','574',1,'{\"fid\":\"3701\",\"org\":\"Huntington\",\"url\":\"https:\\/\\/onlinebanking.huntington.com\\/scripts\\/serverext.dll\"}'),(149,'WSECU','575',1,'{\"fid\":\"325181028\",\"org\":\"WSECU\",\"url\":\"https:\\/\\/ssl3.wsecu.org\\/ofxserver\\/ofxsrvr.dll\"}'),(150,'Baton Rouge City Parish Emp FCU','576',1,'{\"fid\":\"265473333\",\"org\":\"Baton Rouge City Parish EFCU\",\"url\":\"https:\\/\\/bat.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(151,'Schools Financial Credit Union','577',1,'{\"fid\":\"90001\",\"org\":\"Teknowledge\",\"url\":\"https:\\/\\/ofx.schools.org\\/TekPortalOFX\\/servlet\\/TP_OFX_Controller\"}'),(152,'Charles Schwab Bank, N.A.','578',1,'{\"fid\":\"101\",\"org\":\"ISC\",\"url\":\"https:\\/\\/ofx.schwab.com\\/bankcgi_dev\\/ofx_server\"}'),(153,'NW Preferred Federal Credit Union','579',1,'{\"fid\":\"323076575\",\"org\":\"NW Preferred FCU\",\"url\":\"https:\\/\\/nwf.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(154,'Camino FCU','580',1,'{\"fid\":\"322279975\",\"org\":\"Camino FCU\",\"url\":\"https:\\/\\/homebanking.caminofcu.org\\/isaofx\\/isaofx.dll\"}'),(155,'Novartis Federal Credit Union','581',1,'{\"fid\":\"221278556\",\"org\":\"Novartis FCU\",\"url\":\"https:\\/\\/cib.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(156,'U.S. First FCU','582',1,'{\"fid\":\"321076289\",\"org\":\"US First FCU\",\"url\":\"https:\\/\\/uff.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(157,'FAA Technical Center FCU','583',1,'{\"fid\":\"231277440\",\"org\":\"FAA Technical Center FCU\",\"url\":\"https:\\/\\/ftc.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(158,'Municipal Employees Credit Union of Baltimore, Inc.','584',1,'{\"fid\":\"252076468\",\"org\":\"Municipal ECU of Baltimore,Inc.\",\"url\":\"https:\\/\\/mec.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(159,'Day Air Credit Union','585',1,'{\"fid\":\"242277808\",\"org\":\"Day Air Credit Union\",\"url\":\"https:\\/\\/pcu.dayair.org\\/scripts\\/isaofx.dll\"}'),(160,'Texas State Bank - McAllen','586',1,'{\"fid\":\"114909013\",\"org\":\"Texas State Bank\",\"url\":\"https:\\/\\/www.tsb-a.com\\/OFXServer\\/ofxsrvr.dll\"}'),(161,'OCTFCU','587',1,'{\"fid\":\"17600\",\"org\":\"OCTFCU\",\"url\":\"https:\\/\\/ofx.octfcu.org\"}'),(162,'Hawaii State FCU','588',1,'{\"fid\":\"321379041\",\"org\":\"Hawaii State FCU\",\"url\":\"https:\\/\\/hse.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(163,'Community First Credit Union','592',1,'{\"fid\":\"275982801\",\"org\":\"Community First Credit Union\",\"url\":\"https:\\/\\/pcu.communityfirstcu.org\\/scripts\\/isaofx.dll\"}'),(164,'MTC Federal Credit Union','593',1,'{\"fid\":\"053285173\",\"org\":\"MTC Federal Credit Union\",\"url\":\"https:\\/\\/mic.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(165,'Home Federal Savings Bank(MN/IA)','594',1,'{\"fid\":\"291270050\",\"org\":\"VOneTwentySevenG\",\"url\":\"https:\\/\\/ofx1.evault.ws\\/ofxserver\\/ofxsrvr.dll\"}'),(166,'Reliant Community Credit Union','595',1,'{\"fid\":\"222382438\",\"org\":\"W.C.T.A Federal Credit Union\",\"url\":\"https:\\/\\/wct.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(167,'Patriots Federal Credit Union','596',1,'{\"fid\":\"322281963\",\"org\":\"PAT FCU\",\"url\":\"https:\\/\\/pat.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(168,'SafeAmerica Credit Union','597',1,'{\"fid\":\"321171757\",\"org\":\"SafeAmerica Credit Union\",\"url\":\"https:\\/\\/saf.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(169,'Mayo Employees Federal Credit Union','598',1,'{\"fid\":\"291975478\",\"org\":\"Mayo Employees FCU\",\"url\":\"https:\\/\\/homebank.mayocreditunion.org\\/ofx\\/ofx.dll\"}'),(170,'FivePoint Credit Union','599',1,'{\"fid\":\"313187571\",\"org\":\"FivePoint Credit Union\",\"url\":\"https:\\/\\/tfcu-nfuse01.texacocommunity.org\\/internetconnector\\/isaofx.dll\"}'),(171,'Community Resource Bank','600',1,'{\"fid\":\"091917160\",\"org\":\"CNB\",\"url\":\"https:\\/\\/www.cnbinternet.com\\/OFXServer\\/ofxsrvr.dll\"}'),(172,'Security 1st FCU','601',1,'{\"fid\":\"314986292\",\"org\":\"Security 1st FCU\",\"url\":\"https:\\/\\/sec.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(173,'First Alliance Credit Union','602',1,'{\"fid\":\"291975481\",\"org\":\"First Alliance Credit Union\",\"url\":\"https:\\/\\/fia.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(174,'Billings Federal Credit Union','603',1,'{\"fid\":\"6217\",\"org\":\"Billings Federal Credit Union\",\"url\":\"https:\\/\\/bfcuonline.billingsfcu.org\\/ofx\\/ofx.dll\"}'),(175,'Windward Community FCU','604',1,'{\"fid\":\"321380315\",\"org\":\"Windward Community FCU\",\"url\":\"https:\\/\\/wwc.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(176,'Siouxland Federal Credit Union','606',1,'{\"fid\":\"304982235\",\"org\":\"SIOUXLAND FCU\",\"url\":\"https:\\/\\/sio.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(177,'The Queen\'s Federal Credit Union','607',1,'{\"fid\":\"321379504\",\"org\":\"The Queens Federal Credit Union\",\"url\":\"https:\\/\\/que.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(178,'Edward Jones','608',1,'{\"fid\":\"823\",\"org\":\"Edward Jones\",\"url\":\"https:\\/\\/ofx.edwardjones.com\"}'),(179,'Merck Sharp&Dohme FCU','609',1,'{\"fid\":\"231386645\",\"org\":\"MERCK, SHARPE&DOHME FCU\",\"url\":\"https:\\/\\/msd.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(180,'Credit Union 1 - IL','610',1,'{\"fid\":\"271188081\",\"org\":\"Credit Union 1\",\"url\":\"https:\\/\\/pcu.creditunion1.org\\/scripts\\/isaofx.dll\"}'),(181,'Bossier Federal Credit Union','611',1,'{\"fid\":\"311175129\",\"org\":\"Bossier Federal Credit Union\",\"url\":\"https:\\/\\/bos.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(182,'First Florida Credit Union','612',1,'{\"fid\":\"263079014\",\"org\":\"First Llorida Credit Union\",\"url\":\"https:\\/\\/pcu2.gecuf.org\\/scripts\\/isaofx.dll\"}'),(183,'NorthEast Alliance FCU','613',1,'{\"fid\":\"221982130\",\"org\":\"NorthEast Alliance FCU\",\"url\":\"https:\\/\\/nea.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(184,'ShareBuilder','614',1,'{\"fid\":\"5575\",\"org\":\"ShareBuilder\",\"url\":\"https:\\/\\/ofx.sharebuilder.com\"}'),(185,'Weitz Funds','616',1,'{\"fid\":\"weitz.com\",\"org\":\"weitz.com\",\"url\":\"https:\\/\\/www3.financialtrans.com\\/tf\\/OFXServer?tx=OFXController&cz=702110804131918&cl=52204081925\"}'),(186,'JPMorgan Retirement Plan Services','617',1,'{\"fid\":\"6313\",\"org\":\"JPMORGAN\",\"url\":\"https:\\/\\/ofx.retireonline.com\\/eftxweb\\/access.ofx\"}'),(187,'Credit Union ONE','618',1,'{\"fid\":\"14412\",\"org\":\"Credit Union ONE\",\"url\":\"https:\\/\\/cuhome.cuone.org\\/ofx\\/ofx.dll\"}'),(188,'Salt Lake City Credit Union','619',1,'{\"fid\":\"324079186\",\"org\":\"Salt Lake City Credit Union\",\"url\":\"https:\\/\\/slc.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(189,'First Southwest Company','620',1,'{\"fid\":\"7048\",\"org\":\"AFS\",\"url\":\"https:\\/\\/fswofx.automatedfinancial.com\"}'),(190,'Wells Fargo Trust-Investment Mgt','622',1,'{\"fid\":\"6955\",\"org\":\"Wells Fargo Trust\",\"url\":\"https:\\/\\/trust.wellsfargo.com\\/trust\\/directConnect\"}'),(191,'Scottrade, Inc.','623',1,'{\"fid\":\"777\",\"org\":\"Scottrade\",\"url\":\"https:\\/\\/ofxstl.scottsave.com\"}'),(192,'Silver State Schools CU','624',1,'{\"fid\":\"322484265\",\"org\":\"SSSCU\",\"url\":\"https:\\/\\/www.silverstatecu.com\\/OFXServer\\/ofxsrvr.dll\"}'),(193,'VISA Information Source','626',1,'{\"fid\":\"10942\",\"org\":\"VISA\",\"url\":\"https:\\/\\/vis.informationmanagement.visa.com\\/eftxweb\\/access.ofx\"}'),(194,'National City','627',1,'{\"fid\":\"5860\",\"org\":\"NATIONAL CITY\",\"url\":\"https:\\/\\/ofx.nationalcity.com\\/ofx\\/OFXConsumer.aspx\"}'),(195,'Capital One','628',1,'{\"fid\":\"1001\",\"org\":\"Hibernia\",\"url\":\"https:\\/\\/onlinebanking.capitalone.com\\/scripts\\/serverext.dll\"}'),(196,'Citi Credit Card','629',1,'{\"fid\":\"24909\",\"org\":\"Citigroup\",\"url\":\"https:\\/\\/www.accountonline.com\\/cards\\/svc\\/CitiOfxManager.do\"}'),(197,'Zions Bank','630',1,'{\"fid\":\"1115\",\"org\":\"244-3\",\"url\":\"https:\\/\\/quicken.metavante.com\\/ofx\\/OFXServlet\"}'),(198,'Capital One Bank','631',1,'{\"fid\":\"1001\",\"org\":\"Hibernia\",\"url\":\"https:\\/\\/onlinebanking.capitalone.com\\/scripts\\/serverext.dll\"}'),(199,'Redstone Federal Credit Union','633',1,'{\"fid\":\"2143\",\"org\":\"Harland Financial Solutions\",\"url\":\"https:\\/\\/remotebanking.redfcu.org\\/ofx\\/ofx.dll\"}'),(200,'PNC Bank','634',1,'{\"fid\":\"4501\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/04501.ofx\"}'),(201,'Bank of America (California)','635',1,'{\"fid\":\"6805\",\"org\":\"HAN\",\"url\":\"https:\\/\\/ofx.bankofamerica.com\\/cgi-forte\\/ofx?servicename=ofx_2-3&pagename=bofa\"}'),(202,'Chase (credit card) ','636',1,'{\"fid\":\"10898\",\"org\":\"B1\",\"url\":\"https:\\/\\/ofx.chase.com\"}'),(203,'Arizona Federal Credit Union','637',1,'{\"fid\":\"322172797\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(204,'UW Credit Union','638',1,'{\"fid\":\"1001\",\"org\":\"UWCU\",\"url\":\"https:\\/\\/ofx.uwcu.org\\/serverext.dll\"}'),(205,'Bank of America','639',1,'{\"fid\":\"5959\",\"org\":\"HAN\",\"url\":\"https:\\/\\/eftx.bankofamerica.com\\/eftxweb\\/access.ofx\"}'),(206,'Commerce Bank','640',1,'{\"fid\":\"1001\",\"org\":\"CommerceBank\",\"url\":\"https:\\/\\/ofx.tdbank.com\\/scripts\\/serverext.dll\"}'),(207,'Securities America','641',1,'{\"fid\":\"7784\",\"org\":\"Fidelity\",\"url\":\"https:\\/\\/ofx.ibgstreetscape.com:443\"}'),(208,'First Internet Bank of Indiana','642',1,'{\"fid\":\"074014187\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(209,'Alpine Banks of Colorado','643',1,'{\"fid\":\"1451\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline.netteller.com\"}'),(210,'BancFirst','644',1,'{\"fid\":\"103003632\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(211,'Desert Schools Federal Credit Union','645',1,'{\"fid\":\"1001\",\"org\":\"DSFCU\",\"url\":\"https:\\/\\/epal.desertschools.org\\/scripts\\/serverext.dll\"}'),(212,'Kinecta Federal Credit Union','646',1,'{\"fid\":\"322278073\",\"org\":\"KINECTA\",\"url\":\"https:\\/\\/ofx.kinecta.org\\/OFXServer\\/ofxsrvr.dll\"}'),(213,'Boeing Employees Credit Union','647',1,'{\"fid\":\"1001\",\"org\":\"becu\",\"url\":\"https:\\/\\/www.becuonlinebanking.org\\/scripts\\/serverext.dll\"}'),(214,'Capital One Bank - 2','648',1,'{\"fid\":\"1001\",\"org\":\"Hibernia\",\"url\":\"https:\\/\\/onlinebanking.capitalone.com\\/ofx\\/process.ofx\"}'),(215,'Michigan State University Federal CU','649',1,'{\"fid\":\"272479663\",\"org\":\"MSUFCU\",\"url\":\"https:\\/\\/ofx.msufcu.org\\/ofxserver\\/ofxsrvr.dll\"}'),(216,'The Community Bank','650',1,'{\"fid\":\"211371476\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(217,'Sacramento Credit Union','651',1,'{\"fid\":\"1\",\"org\":\"SACRAMENTO CREDIT UNION\",\"url\":\"https:\\/\\/homebank.sactocu.org\\/ofx\\/ofx.dll\"}'),(218,'TD Bank','652',1,'{\"fid\":\"1001\",\"org\":\"CommerceBank\",\"url\":\"https:\\/\\/onlinebanking.tdbank.com\\/scripts\\/serverext.dll\"}'),(219,'Suncoast Schools FCU','653',1,'{\"fid\":\"1001\",\"org\":\"SunCoast\",\"url\":\"https:\\/\\/ofx.suncoastfcu.org\"}'),(220,'Metro Bank','654',1,'{\"fid\":\"9970\",\"org\":\"MTRO\",\"url\":\"https:\\/\\/ofx.mymetrobank.com\\/ofx\\/ofx.ofx\"}'),(221,'First National Bank (Texas)','655',1,'{\"fid\":\"12840\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline.netteller.com\"}'),(222,'Bank of the West','656',1,'{\"fid\":\"5809\",\"org\":\"BancWest Corp\",\"url\":\"https:\\/\\/olbp.bankofthewest.com\\/ofx0002\\/ofx_isapi.dll\"}'),(223,'Mountain America Credit Union','657',1,'{\"fid\":\"324079555\",\"org\":\"MACU\",\"url\":\"https:\\/\\/ofx.macu.org\\/OFXServer\\/ofxsrvr.dll\"}'),(224,'ING DIRECT','658',1,'{\"fid\":\"031176110\",\"org\":\"ING DIRECT\",\"url\":\"https:\\/\\/ofx.ingdirect.com\\/OFX\\/ofx.html\"}'),(225,'Santa Barbara Bank & Trust','659',1,'{\"fid\":\"5524\",\"org\":\"pfm-l3g\",\"url\":\"https:\\/\\/pfm.metavante.com\\/ofx\\/OFXServlet\"}'),(226,'UMB','660',1,'{\"fid\":\"468\",\"org\":\"UMBOFX\",\"url\":\"https:\\/\\/ofx.umb.com\"}'),(227,'Bank Of America(All except CA,WA,&ID ','661',1,'{\"fid\":\"6812\",\"org\":\"HAN\",\"url\":\"Https:\\/\\/ofx.bankofamerica.com\\/cgi-forte\\/fortecgi?servicename=ofx_2-3&pagename=ofx \"}'),(228,'Centra Credit Union2','662',1,'{\"fid\":\"274972883\",\"org\":\"Centra CU\",\"url\":\"https:\\/\\/www.centralink.org\\/scripts\\/isaofx.dll\"}'),(229,'Mainline National Bank','663',1,'{\"fid\":\"9869\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline.netteller.com\"}'),(230,'Citizens Bank','664',1,'{\"fid\":\"4639\",\"org\":\"CheckFree OFX\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/04639.ofxgp\"}'),(231,'USAA Investment Mgmt Co','665',1,'{\"fid\":\"24592\",\"org\":\"USAA\",\"url\":\"https:\\/\\/service2.usaa.com\\/ofx\\/OFXServlet\"}'),(232,'121 Financial Credit Union','666',1,'{\"fid\":\"000001155\",\"org\":\"121 Financial Credit Union\",\"url\":\"https:\\/\\/ppc.121fcu.org\\/scripts\\/isaofx.dll\"}'),(233,'Abbott Laboratories Employee CU','667',1,'{\"fid\":\"35MXN\",\"org\":\"Abbott Laboratories ECU - ALEC\",\"url\":\"https:\\/\\/www.netit.financial-net.com\\/ofx\\/\"}'),(234,'Achieva Credit Union','668',1,'{\"fid\":\"4491\",\"org\":\"Achieva Credit Union\",\"url\":\"https:\\/\\/rbserver.achievacu.com\\/ofx\\/ofx.dll\"}'),(235,'American National Bank','669',1,'{\"fid\":\"4201\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/04201.ofx\"}'),(236,'Andrews Federal Credit Union','670',1,'{\"fid\":\"AFCUSMD\",\"org\":\"FundsXpress\",\"url\":\"https:\\/\\/ofx.fundsxpress.com\\/piles\\/ofx.pile\\/\"}'),(237,'Citi Personal Wealth Management','671',1,'{\"fid\":\"060\",\"org\":\"Citigroup\",\"url\":\"https:\\/\\/uat-ofx.netxclient.inautix.com\\/cgi\\/OFXNetx\"}'),(238,'Bank One (Chicago)','672',1,'{\"fid\":\"1501\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/01501.ofx\"}'),(239,'Bank One (Michigan and Florida)','673',1,'{\"fid\":\"6001\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/06001.ofx\"}'),(240,'Bank of America (Formerly Fleet)','674',1,'{\"fid\":\"1803\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/01803.ofx\"}'),(241,'BankBoston PC Banking','675',1,'{\"fid\":\"1801\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/01801.ofx\"}'),(242,'Beverly Co-Operative Bank','676',1,'{\"fid\":\"531\",\"org\":\"orcc\",\"url\":\"https:\\/\\/www19.onlinebank.com\\/OROFX16Listener\"}'),(243,'Cambridge Portuguese Credit Union','677',1,'{\"fid\":\"983\",\"org\":\"orcc\",\"url\":\"https:\\/\\/www20.onlinebank.com\\/OROFX16Listener\"}'),(244,'Citibank','678',1,'{\"fid\":\"2101\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/02101.ofx\"}'),(245,'Community Bank, N.A.','679',1,'{\"fid\":\"11517\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline2.netteller.com\"}'),(246,'Consumers Credit Union','680',1,'{\"fid\":\"12541\",\"org\":\"Consumers Credit Union\",\"url\":\"https:\\/\\/ofx.lanxtra.com\\/ofx\\/servlet\\/Teller\"}'),(247,'CPM Federal Credit Union','681',1,'{\"fid\":\"253279536\",\"org\":\"USERS, Inc.\",\"url\":\"https:\\/\\/cpm.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(248,'DATCU','682',1,'{\"fid\":\"311980725\",\"org\":\"DATCU\",\"url\":\"https:\\/\\/online.datcu.coop\\/ofxserver\\/ofxsrvr.dll\"}'),(249,'Denver Community Federal Credit Union','683',1,'{\"fid\":\"10524\",\"org\":\"Denver Community FCU\",\"url\":\"https:\\/\\/pccu.dcfcu.coop\\/ofx\\/ofx.dll\"}'),(250,'Discover Platinum','684',1,'{\"fid\":\"7102\",\"org\":\"Discover Financial Services\",\"url\":\"https:\\/\\/ofx.discovercard.com\\/\"}'),(251,'EAB','685',1,'{\"fid\":\"6505\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/06505.ofx\"}'),(252,'FAA Credit Union','686',1,'{\"fid\":\"114\",\"org\":\"FAA Credit Union\",\"url\":\"https:\\/\\/flightline.faaecu.org\\/ofx\\/ofx.dll\"}'),(253,'Fairwinds Credit Union','687',1,'{\"fid\":\"4842\",\"org\":\"OSI 2\",\"url\":\"https:\\/\\/OFX.opensolutionsTOC.com\\/eftxweb\\/access.ofx\"}'),(254,'FedChoice FCU','688',1,'{\"fid\":\"254074785\",\"org\":\"FEDCHOICE\",\"url\":\"https:\\/\\/ofx.fedchoice.org\\/ofxserver\\/ofxsrvr.dll\"}'),(255,'First Clearing, LLC','689',1,'{\"fid\":\"10033\",\"org\":\"First Clearing, LLC\",\"url\":\"https:\\/\\/pfmpw.wachovia.com\\/cgi-forte\\/fortecgi?servicename=ofxbrk&pagename=PFM\"}'),(256,'First Citizens','690',1,'{\"fid\":\"1849\",\"org\":\"First Citizens\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/01849.ofx\"}'),(257,'First Hawaiian Bank','691',1,'{\"fid\":\"3501\",\"org\":\"BancWest Corp\",\"url\":\"https:\\/\\/olbp.fhb.com\\/ofx0001\\/ofx_isapi.dll\"}'),(258,'First National Bank of St. Louis','692',1,'{\"fid\":\"162\",\"org\":\"81004601\",\"url\":\"https:\\/\\/ofx.centralbancompany.com\\/ofxserver\\/ofxsrvr.dll\"}'),(259,'First Interstate Bank','693',1,'{\"fid\":\"092901683\",\"org\":\"FIB\",\"url\":\"https:\\/\\/ofx.firstinterstatebank.com\\/OFXServer\\/ofxsrvr.dll\"}'),(260,'Goldman Sachs','694',1,'{\"fid\":\"1234\",\"org\":\"gs.com\",\"url\":\"https:\\/\\/portfolio-ofx.gs.com:446\\/ofx\\/ofx.eftx\"}'),(261,'Hudson Valley FCU','695',1,'{\"fid\":\"10767\",\"org\":\"Hudson Valley FCU\",\"url\":\"https:\\/\\/internetbanking.hvfcu.org\\/ofx\\/ofx.dll\"}'),(262,'IBM Southeast Employees Federal Credit Union','696',1,'{\"fid\":\"1779\",\"org\":\"IBM Southeast EFCU\",\"url\":\"https:\\/\\/rb.ibmsecu.org\\/ofx\\/ofx.dll\"}'),(263,'Insight CU','697',1,'{\"fid\":\"10764\",\"org\":\"Insight Credit Union\",\"url\":\"https:\\/\\/secure.insightcreditunion.com\\/ofx\\/ofx.dll\"}'),(264,'Janney Montgomery Scott LLC','698',1,'{\"fid\":\"11326\",\"org\":\"AFS\",\"url\":\"https:\\/\\/jmsofx.automatedfinancial.com\"}'),(265,'JSC Federal Credit Union','699',1,'{\"fid\":\"10491\",\"org\":\"JSC Federal Credit Union\",\"url\":\"https:\\/\\/starpclegacy.jscfcu.org\\/ofx\\/ofx.dll\"}'),(266,'J.P. Morgan','700',1,'{\"fid\":\"4701\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/04701.ofx\"}'),(267,'J.P. Morgan Clearing Corp.','701',1,'{\"fid\":\"7315\",\"org\":\"GCS\",\"url\":\"https:\\/\\/ofxgcs.toolkit.clearco.com\"}'),(268,'M & T Bank','702',1,'{\"fid\":\"2601\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/02601.ofx\"}'),(269,'Marquette Banks','703',1,'{\"fid\":\"1301\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/01301.ofx\"}'),(270,'Mercer','704',1,'{\"fid\":\"8007527525\",\"org\":\"PutnamDefinedContributions\",\"url\":\"https:\\/\\/ofx.mercerhrs.com\\/eftxweb\\/access.ofx\"}'),(271,'Merrill Lynch Online Payment','705',1,'{\"fid\":\"7301\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/07301.ofx\"}'),(272,'Missoula Federal Credit Union','706',1,'{\"fid\":\"5097\",\"org\":\"Missoula Federal Credit Union\",\"url\":\"https:\\/\\/secure.missoulafcu.org\\/ofx\\/ofx.dll\"}'),(273,'Morgan Stanley (Smith Barney)','707',1,'{\"fid\":\"5207\",\"org\":\"Smithbarney.com\",\"url\":\"https:\\/\\/ofx.smithbarney.com\\/app-bin\\/ofx\\/servlets\\/access.ofx\"}'),(274,'Nevada State Bank - OLD','708',1,'{\"fid\":\"5401\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/05401.ofx\"}'),(275,'New England Federal Credit Union','709',1,'{\"fid\":\"2104\",\"org\":\"New England Federal Credit Union\",\"url\":\"https:\\/\\/pcaccess.nefcu.com\\/ofx\\/ofx.dll\"}'),(276,'Norwest','710',1,'{\"fid\":\"4601\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/04601.ofx\"}'),(277,'Oppenheimer & Co. Inc.','711',1,'{\"fid\":\"125\",\"org\":\"Oppenheimer\",\"url\":\"https:\\/\\/ofx.opco.com\\/eftxweb\\/access.ofx\"}'),(278,'Oregon College Savings Plan','712',1,'{\"fid\":\"51498\",\"org\":\"tiaaoregon\",\"url\":\"https:\\/\\/ofx3.financialtrans.com\\/tf\\/OFXServer?tx=OFXController&cz=702110804131918&cl=b1908000027141704061413\"}'),(279,'RBC Dain Rauscher','713',1,'{\"fid\":\"8035\",\"org\":\"RBC Dain Rauscher\",\"url\":\"https:\\/\\/ofx.rbcdain.com\\/\"}'),(280,'Robert W. Baird & Co.','714',1,'{\"fid\":\"1109\",\"org\":\"Robert W. Baird & Co.\",\"url\":\"https:\\/\\/ofx.rwbaird.com\"}'),(281,'Sears Card','715',1,'{\"fid\":\"26810\",\"org\":\"CITIGROUP\",\"url\":\"https:\\/\\/secureofx.bankhost.com\\/tuxofx\\/cgi-bin\\/cgi_chip\"}'),(282,'South Trust Bank','716',1,'{\"fid\":\"6101\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/06101.ofx\"}'),(283,'Standard Federal Bank','717',1,'{\"fid\":\"6507\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/06507.ofx\"}'),(284,'United California Bank','718',1,'{\"fid\":\"2701\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/02701.ofx\"}'),(285,'United Federal CU - PowerLink','719',1,'{\"fid\":\"1908\",\"org\":\"United Federal Credit Union\",\"url\":\"https:\\/\\/remotebanking.unitedfcu.com\\/ofx\\/ofx.dll\"}'),(286,'VALIC','720',1,'{\"fid\":\"77019\",\"org\":\"valic.com\",\"url\":\"https:\\/\\/ofx.valic.com\\/eftxweb\\/access.ofx\"}'),(287,'Van Kampen Funds, Inc.','721',1,'{\"fid\":\"3625\",\"org\":\"Van Kampen Funds, Inc.\",\"url\":\"https:\\/\\/ofx3.financialtrans.com\\/tf\\/OFXServer?tx=OFXController&cz=702110804131918&cl=9210013100012150413\"}'),(288,'Vanguard Group','722',1,'{\"fid\":\"1358\",\"org\":\"The Vanguard Group\",\"url\":\"https:\\/\\/vesnc.vanguard.com\\/us\\/OfxProfileServlet\"}'),(289,'Velocity Credit Union','723',1,'{\"fid\":\"9909\",\"org\":\"Velocity Credit Union\",\"url\":\"https:\\/\\/rbserver.velocitycu.com\\/ofx\\/ofx.dll\"}'),(290,'Waddell & Reed - Ivy Funds','724',1,'{\"fid\":\"49623\",\"org\":\"waddell\",\"url\":\"https:\\/\\/ofx3.financialtrans.com\\/tf\\/OFXServer?tx=OFXController&cz=702110804131918&cl=722000303041111\"}'),(291,'Umpqua Bank','725',1,'{\"fid\":\"1001\",\"org\":\"Umpqua\",\"url\":\"https:\\/\\/ofx.umpquabank.com\\/ofx\\/process.ofx\"}'),(292,'Discover Bank','726',1,'{\"fid\":\"12610\",\"org\":\"Discover Bank\",\"url\":\"https:\\/\\/ofx.discovercard.com\"}'),(293,'Elevations Credit Union','727',1,'{\"fid\":\"1001\",\"org\":\"uocfcu\",\"url\":\"https:\\/\\/ofx.elevationscu.com\\/scripts\\/serverext.dll\"}'),(294,'Kitsap Community Credit Union','728',1,'{\"fid\":\"325180223\",\"org\":\"Kitsap Community Federal Credit\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(295,'Charles Schwab Retirement','729',1,'{\"fid\":\"1234\",\"org\":\"SchwabRPS\",\"url\":\"https:\\/\\/ofx.schwab.com\\/cgi_dev\\/ofx_server\"}'),(296,'Charles Schwab Retirement Plan Services','730',1,'{\"fid\":\"1234\",\"org\":\"SchwabRPS\",\"url\":\"https:\\/\\/ofx.schwab.com\\/cgi_dev\\/ofx_server\"}'),(297,'First Tech Federal Credit Union','731',1,'{\"fid\":\"3169\",\"org\":\"First Tech Federal Credit Union\",\"url\":\"https:\\/\\/ofx.firsttechfed.com\"}'),(298,'Affinity Plus Federal Credit Union','732',1,'{\"fid\":\"75\",\"org\":\"Affinity Plus FCU\",\"url\":\"https:\\/\\/hb.affinityplus.org\\/ofx\\/ofx.dll\"}'),(299,'Bank of George','733',1,'{\"fid\":\"122402366\",\"org\":\"122402366\",\"url\":\"https:\\/\\/ofx.internet-ebanking.com\\/CCOFXServer\\/servlet\\/TP_OFX_Controller\"}'),(300,'Franklin Templeton Investments','734',1,'{\"fid\":\"9444\",\"org\":\"franklintempleton.com\",\"url\":\"https:\\/\\/ofx.franklintempleton.com\\/eftxweb\\/access.ofx\"}'),(301,'ING Institutional Plan Services ','735',1,'{\"fid\":\"1289\",\"org\":\"ing-usa.com\",\"url\":\"https:\\/\\/ofx.ingplans.com\\/ofx\\/Server\"}'),(302,'Sterne Agee','736',1,'{\"fid\":\"2170\",\"org\":\"AFS\",\"url\":\"https:\\/\\/salofx.automatedfinancial.com\"}'),(303,'Wells Fargo Advisors','737',1,'{\"fid\":\"12748\",\"org\":\"WF\",\"url\":\"https:\\/\\/ofxdc.wellsfargo.com\\/ofxbrokerage\\/process.ofx\"}'),(304,'Community 1st Credit Union','738',1,'{\"fid\":\"325082017\",\"org\":\"Community 1st Credit Union\",\"url\":\"https:\\/\\/ib.comm1stcu.org\\/scripts\\/isaofx.dll\"}'),(305,'J.P. Morgan Private Banking','740',1,'{\"fid\":\"0417\",\"org\":\"jpmorgan.com\",\"url\":\"https:\\/\\/ofx.jpmorgan.com\\/jpmredirector\"}'),(306,'Northwest Community CU','741',1,'{\"fid\":\"1948\",\"org\":\"Cavion\",\"url\":\"https:\\/\\/ofx.lanxtra.com\\/ofx\\/servlet\\/Teller\"}'),(307,'North Carolina State Employees Credit Union','742',1,'{\"fid\":\"1001\",\"org\":\"SECU\",\"url\":\"https:\\/\\/onlineaccess.ncsecu.org\\/secuofx\\/secu.ofx \"}'),(308,'International Bank of Commerce','743',1,'{\"fid\":\"1001\",\"org\":\"IBC\",\"url\":\"https:\\/\\/ibcbankonline2.ibc.com\\/scripts\\/serverext.dll\"}'),(309,'RaboBank America','744',1,'{\"fid\":\"11540\",\"org\":\"RBB\",\"url\":\"https:\\/\\/ofx.rabobankamerica.com\\/ofx\\/process.ofx\"}'),(310,'Hughes Federal Credit Union','745',1,'{\"fid\":\"1951\",\"org\":\"Cavion\",\"url\":\"https:\\/\\/ofx.lanxtra.com\\/ofx\\/servlet\\/Teller\"}'),(311,'Apple FCU','746',1,'{\"fid\":\"256078514\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(312,'Chemical Bank','747',1,'{\"fid\":\"072410013\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(313,'Local Government Federal Credit Union','748',1,'{\"fid\":\"1001\",\"org\":\"SECU\",\"url\":\"https:\\/\\/onlineaccess.ncsecu.org\\/lgfcuofx\\/lgfcu.ofx\"}'),(314,'Wells Fargo Bank','749',1,'{\"fid\":\"3000\",\"org\":\"WF\",\"url\":\"https:\\/\\/ofxdc.wellsfargo.com\\/ofx\\/process.ofx\"}'),(315,'Schwab Retirement Plan Services','750',1,'{\"fid\":\"11811\",\"org\":\"The 401k Company\",\"url\":\"https:\\/\\/ofx1.401kaccess.com\"}'),(316,'Southern Community Bank and Trust (SCB&T)','751',1,'{\"fid\":\"053112097\",\"org\":\"MOneFortyEight\",\"url\":\"https:\\/\\/ofx1.evault.ws\\/OFXServer\\/ofxsrvr.dll\"}'),(317,'Elevations Credit Union IB WC-DC','752',1,'{\"fid\":\"307074580\",\"org\":\"uofcfcu\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx \"}'),(318,'Credit Suisse Securities USA LLC','753',1,'{\"fid\":\"001\",\"org\":\"Credit Suisse Securities USA LLC\",\"url\":\"https:\\/\\/ofx.netxclient.com\\/cgi\\/OFXNetx\"}'),(319,'North Country FCU','754',1,'{\"fid\":\"211691004\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(320,'South Carolina Bank and Trust','755',1,'{\"fid\":\"053200983\",\"org\":\"MZeroOneZeroSCBT\",\"url\":\"https:\\/\\/ofx1.evault.ws\\/ofxserver\\/ofxsrvr.dll\"}'),(321,'Wings Financial','756',1,'{\"fid\":\"296076152\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(322,'Haverhill Bank','757',1,'{\"fid\":\"93\",\"org\":\"orcc\",\"url\":\"https:\\/\\/www20.onlinebank.com\\/OROFX16Listener\"}'),(323,'Mission Federal Credit Union','758',1,'{\"fid\":\"1001\",\"org\":\"mission\",\"url\":\"https:\\/\\/missionlink.missionfcu.org\\/scripts\\/serverext.dll\"}'),(324,'Southwest Missouri Bank','759',1,'{\"fid\":\"101203641\",\"org\":\"Jack Henry\",\"url\":\"https:\\/\\/directline.netteller.com\"}'),(325,'Cambridge Savings Bank','760',1,'{\"fid\":\"211371120\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(326,'NetxClient UAT','761',1,'{\"fid\":\"1023\",\"org\":\"NetxClient\",\"url\":\"https:\\/\\/uat-ofx.netxclient.inautix.com\\/cgi\\/OFXNetx\"}'),(327,'bankfinancial','762',1,'{\"fid\":\"271972899\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(328,'AXA Equitable','763',1,'{\"fid\":\"7199\",\"org\":\"AXA\",\"url\":\"https:\\/\\/ofx.netxclient.com\\/cgi\\/OFXNetx\"}'),(329,'Premier America Credit Union','764',1,'{\"fid\":\"322283990\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(330,'Bank of America - 5959','765',1,'{\"fid\":\"5959\",\"org\":\"HAN\",\"url\":\"https:\\/\\/ofx.bankofamerica.com\\/cgi-forte\\/fortecgi?servicename=ofx_2-3&pagename=ofx\"}'),(331,'First Command Bank','766',1,'{\"fid\":\"188\",\"org\":\"First Command Bank\",\"url\":\"https:\\/\\/www19.onlinebank.com\\/OROFX16Listener\"}'),(332,'TIAA-CREF','767',1,'{\"fid\":\"041\",\"org\":\"tiaa-cref.org\",\"url\":\"https:\\/\\/ofx.netxclient.com\\/cgi\\/OFXNetx\"}'),(333,'Citizens National Bank','768',1,'{\"fid\":\"111903151\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(334,'Tower Federal Credit Union','769',1,'{\"fid\":\"255077370\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(335,'First Republic Bank','770',1,'{\"fid\":\"321081669\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(336,'Texans Credit Union','771',1,'{\"fid\":\"-1\",\"org\":\"TexansCU\",\"url\":\"https:\\/\\/www.netit.financial-net.com\\/ofx\"}'),(337,'AltaOne','772',1,'{\"fid\":\"322274462\",\"org\":\"AltaOneFCU\",\"url\":\"https:\\/\\/msconline.altaone.net\\/scripts\\/isaofx.dll\"}'),(338,'CenterState Bank','773',1,'{\"fid\":\"1942\",\"org\":\"ORCC\",\"url\":\"https:\\/\\/www20.onlinebank.com\\/OROFX16Listener\"}'),(339,'5 Star Bank','774',1,'{\"fid\":\"307087713\",\"org\":\"5 Star Bank\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(340,'Belmont Savings Bank','775',1,'{\"fid\":\"211371764\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(341,'UNIVERSITY & STATE EMPLOYEES CU','776',1,'{\"fid\":\"322281691\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(342,'Wells Fargo Bank 2013','777',1,'{\"fid\":\"3001\",\"org\":\"Wells Fargo\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/3001.ofxgp\"}'),(343,'The Golden1 Credit Union','778',1,'{\"fid\":\"1001\",\"org\":\"Golden1\",\"url\":\"https:\\/\\/homebanking.golden1.com\\/scripts\\/serverext.dll\"}'),(344,'Woodsboro Bank','779',1,'{\"fid\":\"7479\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline.netteller.com\\/\"}'),(345,'Sandia Laboratory Federal Credit Union','780',1,'{\"fid\":\"1001\",\"org\":\"SLFCU\",\"url\":\"https:\\/\\/ofx-prod.slfcu.org\\/ofx\\/process.ofx \"}'),(346,'Oregon Community Credit Union','781',1,'{\"fid\":\"2077\",\"org\":\"ORCC\",\"url\":\"https:\\/\\/www20.onlinebank.com\\/OROFX16Listener\"}'),(347,'Advantis Credit Union','782',1,'{\"fid\":\"323075097\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(348,'Capital One 360','783',1,'{\"fid\":\"031176110\",\"org\":\"ING DIRECT\",\"url\":\"https:\\/\\/ofx.capitalone360.com\\/OFX\\/ofx.html\"}'),(349,'Flagstar Bank','784',1,'{\"fid\":\"272471852\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(350,'Arizona State Credit Union','785',1,'{\"fid\":\"322172496\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(351,'AmegyBank','786',1,'{\"fid\":\"1165\",\"org\":\"292-3\",\"url\":\"https:\\/\\/pfm.metavante.com\\/ofx\\/OFXServlet\"}'),(352,'Bank of Internet, USA','787',1,'{\"fid\":\"122287251\",\"org\":\"Bank of Internet\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(353,'Amplify Federal Credit Union','788',1,'{\"fid\":\"1\",\"org\":\"Harland Financial Solutions\",\"url\":\"https:\\/\\/ezonline.goamplify.com\\/ofx\\/ofx.dll\"}'),(354,'Capitol Federal Savings Bank','789',1,'{\"fid\":\"1001\",\"org\":\"CapFed\",\"url\":\"https:\\/\\/ofx-prod.capfed.com\\/ofx\\/process.ofx\"}'),(355,'Bank of America - access.ofx','790',1,'{\"fid\":\"5959\",\"org\":\"HAN\",\"url\":\"https:\\/\\/eftx.bankofamerica.com\\/eftxweb\\/access.ofx\"}'),(356,'SVB','791',1,'{\"fid\":\"944\",\"org\":\"SVB\",\"url\":\"https:\\/\\/ofx.svbconnect.com\\/eftxweb\\/access.ofx\"}'),(357,'Iinvestor360','792',1,'{\"fid\":\"7784\",\"org\":\"Fidelity\",\"url\":\"https:\\/\\/www.investor360.net\\/OFX\\/FinService.asmx\\/GetData\"}'),(358,'Sound CU','793',1,'{\"fid\":\"325183220\",\"org\":\"SOUNDCUDC\",\"url\":\"https:\\/\\/mb.soundcu.com\\/OFXServer\\/ofxsrvr.dll\"}'),(359,'Tangerine (Canada)','794',1,'{\"fid\":\"10951\",\"org\":\"TangerineBank\",\"url\":\"https:\\/\\/ofx.tangerine.ca\"}'),(360,'First Tennessee','795',1,'{\"fid\":\"2250\",\"org\":\"Online Financial Services \",\"url\":\"https:\\/\\/ofx.firsttennessee.com\\/ofx\\/ofx_isapi.dll \"}'),(361,'Alaska Air Visa (Bank of America)','796',1,'{\"fid\":\"1142\",\"org\":\"BofA\",\"url\":\"https:\\/\\/akairvisa.iglooware.com\\/visa.php\"}'),(362,'TIAA-CREF Retirement Services','797',1,'{\"fid\":\"1304\",\"org\":\"TIAA-CREF\",\"url\":\"https:\\/\\/ofx-service.tiaa-cref.org\\/public\\/ofx\"}'),(363,'Bofi federal bank','798',1,'{\"fid\":\"122287251\",\"org\":\"Bofi Federal Bank - Business\",\"url\":\"https:\\/\\/directline.netteller.com\"}'),(364,'Vanguard','799',1,'{\"fid\":\"15103\",\"org\":\"Vanguard\",\"url\":\"https:\\/\\/vesnc.vanguard.com\\/us\\/OfxDirectConnectServlet\"}'),(365,'Wright Patt CU','800',1,'{\"fid\":\"242279408\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(366,'Technology Credit Union','801',1,'{\"fid\":\"15079\",\"org\":\"TECHCUDC\",\"url\":\"https:\\/\\/m.techcu.com\\/ofxserver\\/ofxsrvr.dll\"}'),(367,'Capital One Bank (after 12-15-13)','802',1,'{\"fid\":\"1001\",\"org\":\"Capital One\",\"url\":\"https:\\/\\/ofx.capitalone.com\\/ofx\\/103\\/process.ofx\"}'),(368,'Bancorpsouth','803',1,'{\"fid\":\"1001\",\"org\":\"BXS\",\"url\":\"https:\\/\\/ofx-prod.bancorpsouthonline.com\\/ofx\\/process.ofx\"}'),(369,'Monterey Credit Union','804',1,'{\"fid\":\"2059\",\"org\":\"orcc\",\"url\":\"https:\\/\\/www20.onlinebank.com\\/OROFX16Listener\"}'),(370,'D. A. Davidson','805',1,'{\"fid\":\"59401\",\"org\":\"dadco.com\",\"url\":\"https:\\/\\/pfm.davidsoncompanies.com\\/eftxweb\\/access.ofx\"}'),(371,'Morgan Stanley ClientServ - Quicken Win Format','806',1,'{\"fid\":\"1235\",\"org\":\"msdw.com\",\"url\":\"https:\\/\\/ofx.morganstanleyclientserv.com\\/ofx\\/QuickenWinProfile.ofx\"}'),(372,'Star One Credit Union','807',1,'{\"fid\":\"321177968\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(373,'Scottrade Brokerage','808',1,'{\"fid\":\"777\",\"org\":\"Scottrade\",\"url\":\"https:\\/\\/ofx.scottrade.com\"}'),(374,'Mutual Bank','809',1,'{\"fid\":\"88\",\"org\":\"ORCC\",\"url\":\"https:\\/\\/www20.onlinebank.com\\/OROFX16Listener\"}'),(375,'Affinity Plus Federal Credit Union-New','810',1,'{\"fid\":\"15268\",\"org\":\"Affinity Plus Federal Credit Uni\",\"url\":\"https:\\/\\/mobile.affinityplus.org\\/OFX\\/OFXServer.aspx\"}'),(376,'Suncoast Credit Union','811',1,'{\"fid\":\"15469\",\"org\":\"SunCoast\",\"url\":\"https:\\/\\/ofx.suncoastcreditunion.com\"}'),(377,'Think Mutual Bank','812',1,'{\"fid\":\"10139\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline2.netteller.com\"}'),(378,'La Banque Postale','813',1,'{\"fid\":\"0\",\"org\":\"0\",\"url\":\"https:\\/\\/ofx.videoposte.com\\/\"}'),(379,'Pennsylvania State Employees Credit Union','814',1,'{\"fid\":\"231381116\",\"org\":\"PENNSTATEEMPLOYEES\",\"url\":\"https:\\/\\/directconnect.psecu.com\\/ofxserver\\/ofxsrvr.dll\"}'),(380,'St. Mary\'s Credit Union','815',1,'{\"fid\":\"211384214\",\"org\":\"MSevenThirtySeven\",\"url\":\"https:\\/\\/ofx1.evault.ws\\/OFXServer\\/ofxsrvr.dll\"}'),(381,'Institution For Savings','816',1,'{\"fid\":\"59466\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline2.netteller.com\"}'),(382,'PNC Online Banking','817',1,'{\"fid\":\"4501\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/4501.ofxgp\"}'),(383,'PNC Banking Online','818',1,'{\"fid\":\"4501\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/4501.ofx\"}'),(384,'Central Bank Utah','820',1,'{\"fid\":\"124300327\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(385,'nuVision Financial FCU','821',1,'{\"fid\":\"322282399\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(386,'Landings Credit Union','822',1,'{\"fid\":\"02114\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline.netteller.com\"}'),(387,'Boeing Employees Credit Union','325081403',1,'{\"fid\":\"3670\",\"org\":\"BECU\",\"url\":\"https:\\/\\/onlinebanking.becu.org\\/ofx\\/ofxprocessor.asp\"}');
/*!40000 ALTER TABLE `banks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `clients`
--

DROP TABLE IF EXISTS `clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `clients` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `currency_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `city` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `state` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `postal_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `country_id` int(10) unsigned DEFAULT NULL,
  `work_phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `private_notes` text COLLATE utf8_unicode_ci,
  `balance` decimal(13,2) DEFAULT NULL,
  `paid_to_date` decimal(13,2) DEFAULT NULL,
  `last_login` timestamp NULL DEFAULT NULL,
  `website` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `industry_id` int(10) unsigned DEFAULT NULL,
  `size_id` int(10) unsigned DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `payment_terms` int(11) DEFAULT NULL,
  `public_id` int(10) unsigned NOT NULL,
  `custom_value1` text COLLATE utf8_unicode_ci,
  `custom_value2` text COLLATE utf8_unicode_ci,
  `vat_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `id_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `language_id` int(10) unsigned DEFAULT NULL,
  `invoice_number_counter` int(11) DEFAULT '1',
  `quote_number_counter` int(11) DEFAULT '1',
  `public_notes` text COLLATE utf8_unicode_ci,
  `credit_number_counter` int(11) DEFAULT '1',
  `task_rate` decimal(12,4) NOT NULL DEFAULT '0.0000',
  `shipping_address1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `shipping_address2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `shipping_city` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `shipping_state` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `shipping_postal_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `shipping_country_id` int(10) unsigned DEFAULT NULL,
  `show_tasks_in_portal` tinyint(1) NOT NULL DEFAULT '0',
  `send_reminders` tinyint(1) NOT NULL DEFAULT '1',
  `custom_messages` mediumtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `clients_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `clients_user_id_foreign` (`user_id`),
  KEY `clients_country_id_foreign` (`country_id`),
  KEY `clients_industry_id_foreign` (`industry_id`),
  KEY `clients_size_id_foreign` (`size_id`),
  KEY `clients_currency_id_foreign` (`currency_id`),
  KEY `clients_account_id_index` (`account_id`),
  KEY `clients_public_id_index` (`public_id`),
  KEY `clients_language_id_foreign` (`language_id`),
  KEY `clients_shipping_country_id_foreign` (`shipping_country_id`),
  CONSTRAINT `clients_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `clients_country_id_foreign` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`),
  CONSTRAINT `clients_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `currencies` (`id`),
  CONSTRAINT `clients_industry_id_foreign` FOREIGN KEY (`industry_id`) REFERENCES `industries` (`id`),
  CONSTRAINT `clients_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`),
  CONSTRAINT `clients_shipping_country_id_foreign` FOREIGN KEY (`shipping_country_id`) REFERENCES `countries` (`id`),
  CONSTRAINT `clients_size_id_foreign` FOREIGN KEY (`size_id`) REFERENCES `sizes` (`id`),
  CONSTRAINT `clients_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `clients`
--

LOCK TABLES `clients` WRITE;
/*!40000 ALTER TABLE `clients` DISABLE KEYS */;
INSERT INTO `clients` (`id`, `user_id`, `account_id`, `currency_id`, `created_at`, `updated_at`, `deleted_at`, `name`, `address1`, `address2`, `city`, `state`, `postal_code`, `country_id`, `work_phone`, `private_notes`, `balance`, `paid_to_date`, `last_login`, `website`, `industry_id`, `size_id`, `is_deleted`, `payment_terms`, `public_id`, `custom_value1`, `custom_value2`, `vat_number`, `id_number`, `language_id`, `invoice_number_counter`, `quote_number_counter`, `public_notes`, `credit_number_counter`, `task_rate`, `shipping_address1`, `shipping_address2`, `shipping_city`, `shipping_state`, `shipping_postal_code`, `shipping_country_id`, `show_tasks_in_portal`, `send_reminders`, `custom_messages`) VALUES (1,1,1,NULL,'2018-04-15 05:02:48','2019-05-18 03:08:27','2019-05-18 03:08:27','MRI Technologies (M) Sdn. Bhd','No.11C, Jalan Suarasa 8/5','Bandar Tun Hussein Onn','Cheras','Selangor Darul Ehsan','43200',458,'+603-90819885','',0.00,0.00,NULL,'https://www.mri-tech.com.my',16,4,1,16,1,NULL,NULL,'001806622720','499224-T',NULL,1,1,'',1,0.0000,'No.11C, Jalan Suarasa 8/5','Bandar Tun Hussein Onn','Cheras','Selangor Darul Ehsan','43200',458,0,1,NULL),(2,1,1,NULL,'2018-04-15 05:12:58','2021-08-20 08:39:23',NULL,'Tepat Consulting','Zehn Jalan Bukit Pantai','Bukit Pantai','Kuala Lumpur','Wilayah Persekutuan','59100',458,'+61406709860','',0.00,1405.00,'2020-09-28 17:41:16','http://www.tepatconsult.com',11,3,0,30,2,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'Zehn Jalan Bukit Pantai','Bukit Pantai','Kuala Lumpur','Wilayah Persekutuan','59100',458,0,1,NULL),(3,1,1,NULL,'2019-07-12 23:23:11','2019-10-15 15:15:40',NULL,'Norsobah Mashitah','No.29, Jalan Sentosa 3/57','','Petaling Jaya','Selangor Darul Ehsan','46000',458,'+6016261233','',0.00,0.00,'2019-07-13 03:04:24','http://www.tourguide.asia',29,1,0,30,3,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'No.29, Jalan Sentosa 3/57','','Petaling Jaya','Selangor Darul Ehsan','46000',458,0,1,NULL),(4,1,1,NULL,'2019-07-13 07:27:47','2024-09-19 12:09:38',NULL,'Mobtel Hub','No.9, Jalan Bullion Mewah 3,','Taman Bullion','Batu Caves','Selangor Darul Ehsan','68100',458,'+60192220293','',0.00,36.63,'2022-08-27 19:34:00','https://www.m-hub.asia',11,1,0,30,4,NULL,NULL,'','201703164951',NULL,1,1,'',1,0.0000,'No.9, Jalan Bullion Mewah 3,','','Batu Caves','SELANGOR DARUL EHSAN','68100',458,1,1,NULL),(6,2,1,NULL,'2021-09-09 10:32:24','2021-09-09 10:34:31','2021-09-09 10:34:31','Hanim Mohamad Ismail','Jalan Tun Teja 35/7A, Alam Impian, Seksyen 35,','No 42,','Shah Alam','Selangor','40470',458,'','',NULL,NULL,NULL,'',NULL,NULL,1,30,5,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(7,2,1,NULL,'2021-09-09 10:32:25','2021-10-12 20:12:50',NULL,'Hanim Mohamad Ismail','No 42, Jalan Tun Teja 35/7A, Alam Impian, Seksyen 35,','','Shah Alam','Selangor','40470',458,'','',0.00,170.00,NULL,'',NULL,NULL,0,30,6,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(8,2,1,NULL,'2021-09-09 17:13:20','2022-03-13 04:14:31',NULL,'Aida Maria Daud','No. 8, Jalan 3/66, Seksyen 3, Bandar Baru Bangi,','','Bangi','Selangor','43650',458,'','',0.00,380.00,NULL,'',NULL,NULL,0,30,7,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(9,2,1,NULL,'2021-09-09 17:17:17','2021-10-12 20:14:55',NULL,'Rini Lidyawati Abd Razak','96 Jalan Dillenia 3, Nilai Impian,','','Nilai','Negeri Sembilan','71800',458,'','',0.00,170.00,NULL,'',NULL,NULL,0,30,8,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(10,2,1,NULL,'2021-09-09 17:18:48','2022-03-13 04:09:07',NULL,'Noraini Kasbon','28 Jalan SSD/6 Kelana Jaya','','Petaling Jaya','Selangor','47301',458,'','',0.00,170.00,NULL,'',NULL,NULL,0,30,9,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(11,2,1,NULL,'2021-09-09 17:21:02','2021-10-12 20:22:26',NULL,'Ainul Farqhana','Bayu Sentul Condominiums, Blok A-11-2, Taman Dato Senu 3','','Kuala Lumpur','','51000',458,'','',0.00,185.00,NULL,'',NULL,NULL,0,30,10,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(12,2,1,NULL,'2021-10-12 15:22:10','2021-10-12 20:09:35',NULL,'Suriyati Kamaruzzaman','','','','','',458,'','',0.00,100.00,NULL,'',NULL,NULL,0,30,11,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(13,2,1,NULL,'2021-10-12 19:02:26','2022-03-13 04:05:59',NULL,'ZAHID MOHD DIN','Apartmen Sri Pinang Villa, Jalan Pandan Bersih , Taman Nirwana,','','Ampang','Selangor','68000',458,'','',0.00,100.00,NULL,'',NULL,NULL,0,30,12,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(14,2,1,NULL,'2021-10-12 20:32:03','2021-10-12 20:34:00',NULL,'Sharifah Athirah Auni','no 15,Jalan SG9/16, Taman Sri Gombak','','Gombak','Selangor','68100',458,'','',0.00,140.00,NULL,'',NULL,NULL,0,30,13,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(15,2,1,NULL,'2021-10-12 20:37:51','2021-10-12 20:49:18',NULL,'Sharifah Yuliana Syed Ali Hanafiah','No 19, Jalan Selayang Baru 27/69, Taman Alam Megah, Seksyen 27,','','Shah Alam','Selangor','40400',458,'','',0.00,200.00,NULL,'',NULL,NULL,0,30,14,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(16,2,1,NULL,'2021-10-12 20:51:24','2022-02-27 10:17:58',NULL,'Marzia Jaludin','','','','','',NULL,'','',0.00,92.00,NULL,'',NULL,NULL,0,30,15,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(17,2,1,NULL,'2021-10-12 21:10:26','2024-09-19 12:10:56',NULL,'Suri Kasbon','Unit 11-10-2, Desa Damansara, Jalan Setiakasih, Bukit Damansara,','','Bukit Damansara','Kuala Lumpur','50490',458,'0122221006','',0.00,290.00,NULL,'',NULL,NULL,0,30,16,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(18,1,1,NULL,'2021-12-14 10:39:36','2024-08-21 17:03:28',NULL,'Mohamad Bin Arshad','','','','','',NULL,'+60123994187','',0.00,5029.00,NULL,'',NULL,NULL,0,30,17,NULL,NULL,'','821025-08-6663',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(19,2,1,NULL,'2022-03-12 22:48:35','2022-03-12 22:48:35',NULL,'NORAINI KASBON','28 Jalan SSD/6,','','KELANA JAYA','PETALING JAYA','47301',458,'013- 2053115','',NULL,NULL,NULL,'',NULL,NULL,0,30,18,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(20,2,1,NULL,'2022-03-13 04:02:28','2022-03-13 04:02:28',NULL,'SURI KASBON','','','','','',NULL,'','',NULL,NULL,NULL,'',NULL,NULL,0,0,19,NULL,NULL,'','',NULL,1,1,NULL,1,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL),(21,2,1,NULL,'2022-03-13 05:41:44','2022-03-13 05:45:28',NULL,'ROSMELIA TAIB','','','','','',NULL,'017- 2513439','',NULL,NULL,NULL,'',NULL,NULL,0,30,20,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(22,2,1,NULL,'2022-03-13 05:57:40','2022-03-13 06:02:04',NULL,'RINI LIDYAWATI','','','','','',NULL,'013- 2088771','',NULL,NULL,NULL,'',NULL,NULL,0,30,21,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(23,2,1,NULL,'2022-03-13 06:03:21','2022-03-13 06:10:04',NULL,'MURNI MAT NASRI','','','','','',NULL,'011-32000434','',NULL,NULL,NULL,'',NULL,NULL,0,30,22,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(24,2,1,NULL,'2022-03-13 06:11:26','2022-03-13 06:16:20',NULL,'NABILAH NUWAIRI','','','','','',NULL,'010-2002962','',NULL,NULL,NULL,'',NULL,NULL,0,30,23,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(25,2,1,NULL,'2022-03-13 06:14:56','2022-03-13 06:14:56',NULL,'SITI ROHANI BINTI A KADIR','','','','','',NULL,'012- 3578507','',NULL,NULL,NULL,'',NULL,NULL,0,30,24,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'','','','','',NULL,0,1,NULL),(26,1,1,NULL,'2024-09-19 12:17:08','2024-09-19 13:02:44',NULL,'FARAH ATELIER','Lorong SKD 8, Taman PSJ','No.54','Kuantan','Pahang','26150',458,'','',2000.00,2000.00,NULL,'',33,1,0,30,25,NULL,NULL,'','',NULL,1,1,'',1,0.0000,'Lorong SKD 8, Taman PSJ','No.54','Kuantan','Pahang','26150',458,0,1,NULL),(27,2,1,NULL,'2025-06-10 03:43:51','2025-07-24 01:30:13',NULL,'VDL Technologies Limited','','','','','',NULL,'','',6812.72,708.75,NULL,'',NULL,NULL,0,0,26,NULL,NULL,'','',NULL,1,1,NULL,1,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL);
/*!40000 ALTER TABLE `clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `companies`
--

DROP TABLE IF EXISTS `companies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `companies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `plan` enum('pro','enterprise','white_label') COLLATE utf8_unicode_ci DEFAULT NULL,
  `plan_term` enum('month','year') COLLATE utf8_unicode_ci DEFAULT NULL,
  `plan_started` date DEFAULT NULL,
  `plan_paid` date DEFAULT NULL,
  `plan_expires` date DEFAULT NULL,
  `payment_id` int(10) unsigned DEFAULT NULL,
  `trial_started` date DEFAULT NULL,
  `trial_plan` enum('pro','enterprise') COLLATE utf8_unicode_ci DEFAULT NULL,
  `pending_plan` enum('pro','enterprise','free') COLLATE utf8_unicode_ci DEFAULT NULL,
  `pending_term` enum('month','year') COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `plan_price` decimal(7,2) DEFAULT NULL,
  `pending_plan_price` decimal(7,2) DEFAULT NULL,
  `num_users` smallint(6) NOT NULL DEFAULT '1',
  `pending_num_users` smallint(6) NOT NULL DEFAULT '1',
  `utm_source` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `utm_medium` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `utm_campaign` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `utm_term` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `utm_content` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `discount` double(8,2) NOT NULL,
  `discount_expires` date DEFAULT NULL,
  `promo_expires` date DEFAULT NULL,
  `bluevine_status` enum('ignored','signed_up') COLLATE utf8_unicode_ci DEFAULT NULL,
  `referral_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `app_store_order_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `is_migrated` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `companies_payment_id_index` (`payment_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `companies`
--

LOCK TABLES `companies` WRITE;
/*!40000 ALTER TABLE `companies` DISABLE KEYS */;
INSERT INTO `companies` (`id`, `plan`, `plan_term`, `plan_started`, `plan_paid`, `plan_expires`, `payment_id`, `trial_started`, `trial_plan`, `pending_plan`, `pending_term`, `created_at`, `updated_at`, `deleted_at`, `plan_price`, `pending_plan_price`, `num_users`, `pending_num_users`, `utm_source`, `utm_medium`, `utm_campaign`, `utm_term`, `utm_content`, `discount`, `discount_expires`, `promo_expires`, `bluevine_status`, `referral_code`, `app_store_order_id`, `is_migrated`) VALUES (1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-04-15 19:25:16','2018-04-15 19:25:16',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0.00,NULL,NULL,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `companies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `contacts`
--

DROP TABLE IF EXISTS `contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contacts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `client_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT '0',
  `send_invoice` tinyint(1) NOT NULL DEFAULT '0',
  `first_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `last_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `last_login` timestamp NULL DEFAULT NULL,
  `public_id` int(10) unsigned DEFAULT NULL,
  `password` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `confirmation_code` tinyint(1) DEFAULT NULL,
  `remember_token` tinyint(1) DEFAULT NULL,
  `contact_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `bot_user_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `custom_value1` text COLLATE utf8_unicode_ci,
  `custom_value2` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `contacts_account_id_public_id_unique` (`account_id`,`public_id`),
  UNIQUE KEY `contacts_contact_key_unique` (`contact_key`),
  KEY `contacts_user_id_foreign` (`user_id`),
  KEY `contacts_client_id_index` (`client_id`),
  CONSTRAINT `contacts_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
  CONSTRAINT `contacts_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contacts`
--

LOCK TABLES `contacts` WRITE;
/*!40000 ALTER TABLE `contacts` DISABLE KEYS */;
INSERT INTO `contacts` (`id`, `account_id`, `user_id`, `client_id`, `created_at`, `updated_at`, `deleted_at`, `is_primary`, `send_invoice`, `first_name`, `last_name`, `email`, `phone`, `last_login`, `public_id`, `password`, `confirmation_code`, `remember_token`, `contact_key`, `bot_user_id`, `custom_value1`, `custom_value2`) VALUES (1,1,1,1,'2018-04-15 05:02:48','2018-05-14 20:18:25',NULL,1,1,'','','','',NULL,1,NULL,NULL,NULL,'mns0srtodcrfvs1dyt5zalg7lrwesxo7',NULL,NULL,NULL),(2,1,1,2,'2018-04-15 05:12:59','2021-08-19 10:45:15',NULL,1,0,'Richard','Ranking','richard.j.rankin@gmail.com','+61406709860',NULL,2,'$2y$10$LqvBgbAg/Ib9TBjePn1EyOow9hGIA7/LUKeReqKF2t1YbkwUFX2sC',NULL,NULL,'chmbpz8l2cd2ja6qytauzcrutwiphffj',NULL,NULL,NULL),(3,1,1,2,'2019-05-18 02:53:39','2021-08-19 10:45:15',NULL,0,0,'Richard','Ranking','richard@tepatconsult.com','+61406709860',NULL,3,'$2y$10$MdrGN2VdhU7pu3dlTMAIxuMz2mSJKC65nWVkM7gebv3tegkftzkS2',NULL,0,'snh3xlr8t2eexkjqtrjm9plgc8mpyjtu',NULL,NULL,NULL),(4,1,1,2,'2019-05-18 02:53:39','2020-09-24 00:21:07','2020-09-24 00:21:07',0,1,'Bill','Millar','millarw@gmail.com','+60123386689',NULL,4,'$2y$10$oXaxM4zq1CSy7DtqbKHMOuJlhsBmOz9V3aeV750f9MpsrBsKtKAlG',NULL,127,'fm1omdbbvqy4alqgzip3a2zxdvtn9owd',NULL,NULL,NULL),(5,1,1,2,'2019-05-18 02:53:39','2020-09-24 00:21:07','2020-09-24 00:21:07',0,1,'Bill','Millar','bill@tepatconsult.com','+60123386689',NULL,5,'$2y$10$0Q3E1vkAkQDRqCgKwqLhWeaeVp2GNqH4dzEKP4Km9aRJndcJfPjHy',NULL,NULL,'71wd2hxl2b7qxwjfo6ewc8bq1qz6becx',NULL,NULL,NULL),(6,1,1,3,'2019-07-12 23:23:11','2019-08-30 21:18:58',NULL,1,1,'Norsobah Mashitah','Misrul','aksara.nordanie@gmail.com','+6016261233',NULL,6,'$2y$10$YYplCrXYRHyR/7c1BEa07ugY37WPA8d07WZVMt.RGlLf8idgp0oG2',NULL,0,'g3lbmswfyekx24qvsgrsqd9iqhja7gog',NULL,NULL,NULL),(7,1,1,3,'2019-07-12 23:23:11','2019-09-08 23:43:51',NULL,0,1,'Shovkat Hamidov','','shovkatkhamidov@gmail.com','+60172789317',NULL,7,'$2y$10$FXhme4D2Kih5oYKvHES//.SvC8XZeglh9MmCIAGQDusMt03Ta3imO',NULL,NULL,'a6knemzcagbqevmcxqe5oktvghaiwvyy',NULL,NULL,NULL),(8,1,1,4,'2019-07-13 07:27:47','2024-08-21 17:42:44',NULL,1,0,'Khedir','Yaakub','khedir@m-hub.asia','+60192220598',NULL,8,'$2y$10$xlskoVxXDRm7rgAOQB53ze1KNZVlDW9geoIOdOb1RIFSwSs.mnuri',NULL,NULL,'zsyde8nag4ckifbybsi6kzdpfbnoiohc',NULL,NULL,NULL),(9,1,1,4,'2019-07-13 07:27:47','2024-08-21 17:42:44',NULL,0,1,'Muhammad Alif','Armia','admin@m-hub.asia','+60192220293',NULL,9,'$2y$10$leEA6efepGG/DXW7vyD2O.NEkIj3I3BvlUwXP.5CmZmEDdl.B2.5O',NULL,0,'j8ia1s5d1ul8qwcrhxvbxtwldpzvbnsh',NULL,NULL,NULL),(12,1,1,4,'2019-10-15 15:42:37','2019-10-21 08:14:18','2019-10-21 08:14:18',0,0,'Testing','Testing','','01234567890',NULL,10,'$2y$10$/UBQ1psOcKwg40vFsE1zT.OCyZTWmRUOg3bBvxQe4pmru8NPPHBe2',NULL,NULL,'gdhfq0ibiswhvx1wqewuypginehrrmew',NULL,NULL,NULL),(13,1,2,6,'2021-09-09 10:32:25','2021-09-09 10:32:25',NULL,1,1,'Hanim','Mohamad Ismail','hanimismail@upnm.edu.my','017-6215211',NULL,11,NULL,NULL,NULL,'54lkm7xr4wxnpcnfunwdo9fd3zpebgbi',NULL,NULL,NULL),(14,1,2,7,'2021-09-09 10:32:25','2021-10-12 20:11:44',NULL,1,1,'Hanim','Mohamad Ismail','hanimismail@upnm.edu.my','017-6215211',NULL,12,'$2y$10$QDRGm95zQARj1S1g73pgB.vWIBuTVuPD2KiZLNBSj.Prk048qyYNO',NULL,NULL,'ocuh8opzd3jbjtxps5dg67fqbj3wx1b3',NULL,NULL,NULL),(15,1,2,8,'2021-09-09 17:13:20','2022-03-13 04:14:32',NULL,1,1,'Aida Maria','Daud','countessmary@hotmail.com','012-6786001',NULL,13,'$2y$10$Hc93eifCfttOqE/0X6sy7.yvOE50MxIjkoBsYogvWXJD5.Rqzo.xS',NULL,NULL,'kua0l8puijkisapulir4d5mdpa29w4nb',NULL,NULL,NULL),(16,1,2,9,'2021-09-09 17:17:17','2021-10-12 20:14:36',NULL,1,1,'Rini Lidyawati','Abd Razak','erinz0156@gmail.com','013- 2088771',NULL,14,'$2y$10$moUORNbubmR1hs2.FEvF0u8Pdm4kMQJAVzh/WXDTrAUBisGfMviV6',NULL,NULL,'weabjytosh3k5fll84kfugrbrwzygv4l',NULL,NULL,NULL),(17,1,2,10,'2021-09-09 17:18:49','2022-03-13 04:09:07',NULL,1,1,'Noraini','Kasbon','nani.kasbon@gmail.com','013- 2053115',NULL,15,'$2y$10$mt.psYd9SbKHQ6NpWvyXUuv3LZWkiJP0AHkLH4zVxqSIqWeuNF7c2',NULL,NULL,'xz4ktgmtenihrdmczc1v0pwsg4etsvwd',NULL,NULL,NULL),(18,1,2,11,'2021-09-09 17:21:02','2021-10-12 20:22:10',NULL,1,1,'Ainul Farqhana','','farqhana@gmail.com','012-249 2499',NULL,16,'$2y$10$aOEQMur48UGyXNaWTCvD6O7g5joFaAcDIMbpoOzBHLiTbeGUIjT3S',NULL,NULL,'9teaotlwgxgoblobvnsvndbg7gdsbyvf',NULL,NULL,NULL),(19,1,2,12,'2021-10-12 15:22:10','2021-10-12 20:08:40',NULL,1,1,'Suriyati','Kamaruzzaman','Suriyati.Kamaruzzaman@wct.my','0192626806',NULL,17,NULL,NULL,NULL,'xb98bebmz3lvjpeop5lqnxmvr8a4klb5',NULL,NULL,NULL),(20,1,2,13,'2021-10-12 19:02:26','2022-03-13 04:06:01',NULL,1,1,'ZAHID','MOHD DIN','johanpublic321@gmail.com','0122273530',NULL,18,NULL,NULL,NULL,'roufwzupvcrnkdrfx0uy98gxd4q0fyql',NULL,NULL,NULL),(21,1,2,14,'2021-10-12 20:32:03','2021-10-12 20:33:27',NULL,1,1,'Sharifah Athirah Auni','','madamathirahauni@gmail.com','0132212106',NULL,19,NULL,NULL,NULL,'y7wzv3vefuxhjntfh1nye8wtrlouho9p',NULL,NULL,NULL),(22,1,2,15,'2021-10-12 20:37:51','2021-10-12 20:49:18',NULL,1,1,'Sharifah Yuliana','Syed Ali Hanafiah','aaashayu@gmail.com','0182944597',NULL,20,NULL,NULL,NULL,'36blx41zrmc4rruf9dekl8rsm2snesww',NULL,NULL,NULL),(23,1,2,16,'2021-10-12 20:51:24','2022-02-27 10:17:59',NULL,1,1,'Marzia','Jaludin','marziaj@iwk.com.my','0193588823',NULL,21,NULL,NULL,NULL,'y3jyzjn5knjqbgh6suwl1at3fyyxliwr',NULL,NULL,NULL),(24,1,2,17,'2021-10-12 21:10:26','2022-02-27 09:45:49',NULL,1,1,'Suri','Kasbon','sitizahra.mohdfairuz@gmail.com','0327284676',NULL,22,NULL,NULL,NULL,'ctsuesh3ingzkccdxncwmnacm8cznqd1',NULL,NULL,NULL),(25,1,1,18,'2021-12-14 10:39:36','2024-08-21 17:02:33',NULL,1,1,'Mohamad','Arshad','mohamadarshad828@gmail.com','+60123994187',NULL,23,NULL,NULL,NULL,'izi6rfoilidxmysfbpszrvuaye5giwwv',NULL,NULL,NULL),(26,1,2,19,'2022-03-12 22:48:38','2022-03-12 22:48:38',NULL,1,1,'NORAINI','KASBON','nani.kasbon@gmail.com','013- 2053115',NULL,24,NULL,NULL,NULL,'57vb9zrmzx2qzd0yvq8kzks4ean8ijjj',NULL,NULL,NULL),(27,1,2,20,'2022-03-13 04:02:30','2022-03-13 04:02:30',NULL,1,1,'SURI','KASBON','sitizahra.mohdfairuz@gmail.com','012-222 1006',NULL,25,NULL,NULL,NULL,'ykpmssehpgvvy7mokepi48jvgzyxjgka',NULL,NULL,NULL),(28,1,2,21,'2022-03-13 05:41:45','2022-03-13 05:45:31',NULL,1,1,'ROSMELIA','TAIB','melliyya77@gmail.com','017- 2513439',NULL,26,NULL,NULL,NULL,'zdzedwgicld5dzwr2wd6fmyygvq4dbge',NULL,NULL,NULL),(29,1,2,22,'2022-03-13 05:57:40','2022-03-13 06:02:04',NULL,1,1,'RINI LIDYAWATI','ABD RAZAK','erinz0156@gmail.com','013- 2088771',NULL,27,NULL,NULL,NULL,'aaxnt4jxosdd87mlcc5ztdgwsqdjrdrv',NULL,NULL,NULL),(30,1,2,23,'2022-03-13 06:03:21','2022-03-13 06:10:05',NULL,1,1,'MURNI','MAT NASRI','murninasri@gmail.com','011-32000434',NULL,28,NULL,NULL,NULL,'2vlcednwgccnsisxpbsu4soky9n72elv',NULL,NULL,NULL),(31,1,2,24,'2022-03-13 06:11:26','2022-03-13 06:16:20',NULL,1,1,'NABILAH','NUWAIRI','nblh2021@gmail.com','010-2002962',NULL,29,NULL,NULL,NULL,'bla4abzkszjairxiyi7upvqkdvnvvqpf',NULL,NULL,NULL),(32,1,2,25,'2022-03-13 06:14:56','2022-03-13 06:14:56',NULL,1,1,'SITI ROHANI','A KADIR','bfg8655@yahoo.com','012- 3578507',NULL,30,NULL,NULL,NULL,'mysc1brmr0d7flvy2fcuzp9ewwn0e1ud',NULL,NULL,NULL),(33,1,1,26,'2024-09-19 12:17:08','2024-09-19 12:58:16',NULL,1,1,'Farah Nuruljannah','Dahli','farahdahli90@gmail.com','+60192226172',NULL,31,'$2y$10$mQwsu3LS48mAnokevtVxVOruJuLKNmQG8tWdNx9niHrVxr9P.dyAa',NULL,NULL,'euywrva6nt0qj4nz2l9vhnt7saqu2rph',NULL,NULL,NULL),(34,1,2,27,'2025-06-10 03:43:51','2025-07-24 01:30:15',NULL,1,1,'Sam','Olayemi','sam@vdltechnologies.com','+234 8167904675',NULL,32,'$2y$10$TbQMmThTG4msxmQPK/19devZt4mnlLvQCUNKNc6HmxPJwSfMb//Ae',NULL,NULL,'jayt70vvurxqmhiauig8l5tosa94ugc1',NULL,NULL,NULL);
/*!40000 ALTER TABLE `contacts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `countries`
--

DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `countries` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `capital` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `citizenship` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `country_code` varchar(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `currency` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `currency_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `currency_sub_unit` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `full_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `iso_3166_2` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `iso_3166_3` varchar(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `region_code` varchar(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `sub_region_code` varchar(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `eea` tinyint(1) NOT NULL DEFAULT '0',
  `swap_postal_code` tinyint(1) NOT NULL DEFAULT '0',
  `swap_currency_symbol` tinyint(1) NOT NULL DEFAULT '0',
  `thousand_separator` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `decimal_separator` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=895 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `countries`
--

LOCK TABLES `countries` WRITE;
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
INSERT INTO `countries` (`id`, `capital`, `citizenship`, `country_code`, `currency`, `currency_code`, `currency_sub_unit`, `full_name`, `iso_3166_2`, `iso_3166_3`, `name`, `region_code`, `sub_region_code`, `eea`, `swap_postal_code`, `swap_currency_symbol`, `thousand_separator`, `decimal_separator`) VALUES (4,'Kabul','Afghan','004','afghani','AFN','pul','Islamic Republic of Afghanistan','AF','AFG','Afghanistan','142','034',0,0,0,NULL,NULL),(8,'Tirana','Albanian','008','lek','ALL','(qindar (pl. qindarka))','Republic of Albania','AL','ALB','Albania','150','039',0,0,0,NULL,NULL),(10,'Antartica','of Antartica','010','','','','Antarctica','AQ','ATA','Antarctica','','',0,0,0,NULL,NULL),(12,'Algiers','Algerian','012','Algerian dinar','DZD','centime','People’s Democratic Republic of Algeria','DZ','DZA','Algeria','002','015',0,0,0,NULL,NULL),(16,'Pago Pago','American Samoan','016','US dollar','USD','cent','Territory of American','AS','ASM','American Samoa','009','061',0,0,0,NULL,NULL),(20,'Andorra la Vella','Andorran','020','euro','EUR','cent','Principality of Andorra','AD','AND','Andorra','150','039',0,0,0,NULL,NULL),(24,'Luanda','Angolan','024','kwanza','AOA','cêntimo','Republic of Angola','AO','AGO','Angola','002','017',0,0,0,NULL,NULL),(28,'St John’s','of Antigua and Barbuda','028','East Caribbean dollar','XCD','cent','Antigua and Barbuda','AG','ATG','Antigua and Barbuda','019','029',0,0,0,NULL,NULL),(31,'Baku','Azerbaijani','031','Azerbaijani manat','AZN','kepik (inv.)','Republic of Azerbaijan','AZ','AZE','Azerbaijan','142','145',0,0,0,NULL,NULL),(32,'Buenos Aires','Argentinian','032','Argentine peso','ARS','centavo','Argentine Republic','AR','ARG','Argentina','019','005',0,1,0,NULL,NULL),(36,'Canberra','Australian','036','Australian dollar','AUD','cent','Commonwealth of Australia','AU','AUS','Australia','009','053',0,0,0,NULL,NULL),(40,'Vienna','Austrian','040','euro','EUR','cent','Republic of Austria','AT','AUT','Austria','150','155',1,1,1,NULL,NULL),(44,'Nassau','Bahamian','044','Bahamian dollar','BSD','cent','Commonwealth of the Bahamas','BS','BHS','Bahamas','019','029',0,0,0,NULL,NULL),(48,'Manama','Bahraini','048','Bahraini dinar','BHD','fils (inv.)','Kingdom of Bahrain','BH','BHR','Bahrain','142','145',0,0,0,NULL,NULL),(50,'Dhaka','Bangladeshi','050','taka (inv.)','BDT','poisha (inv.)','People’s Republic of Bangladesh','BD','BGD','Bangladesh','142','034',0,0,0,NULL,NULL),(51,'Yerevan','Armenian','051','dram (inv.)','AMD','luma','Republic of Armenia','AM','ARM','Armenia','142','145',0,0,0,NULL,NULL),(52,'Bridgetown','Barbadian','052','Barbados dollar','BBD','cent','Barbados','BB','BRB','Barbados','019','029',0,0,0,NULL,NULL),(56,'Brussels','Belgian','056','euro','EUR','cent','Kingdom of Belgium','BE','BEL','Belgium','150','155',1,1,0,NULL,NULL),(60,'Hamilton','Bermudian','060','Bermuda dollar','BMD','cent','Bermuda','BM','BMU','Bermuda','019','021',0,0,0,NULL,NULL),(64,'Thimphu','Bhutanese','064','ngultrum (inv.)','BTN','chhetrum (inv.)','Kingdom of Bhutan','BT','BTN','Bhutan','142','034',0,0,0,NULL,NULL),(68,'Sucre (BO1)','Bolivian','068','boliviano','BOB','centavo','Plurinational State of Bolivia','BO','BOL','Bolivia, Plurinational State of','019','005',0,0,0,NULL,NULL),(70,'Sarajevo','of Bosnia and Herzegovina','070','convertible mark','BAM','fening','Bosnia and Herzegovina','BA','BIH','Bosnia and Herzegovina','150','039',0,0,0,NULL,NULL),(72,'Gaborone','Botswanan','072','pula (inv.)','BWP','thebe (inv.)','Republic of Botswana','BW','BWA','Botswana','002','018',0,0,0,NULL,NULL),(74,'Bouvet island','of Bouvet island','074','','','','Bouvet Island','BV','BVT','Bouvet Island','','',0,0,0,NULL,NULL),(76,'Brasilia','Brazilian','076','real (pl. reais)','BRL','centavo','Federative Republic of Brazil','BR','BRA','Brazil','019','005',0,0,0,NULL,NULL),(84,'Belmopan','Belizean','084','Belize dollar','BZD','cent','Belize','BZ','BLZ','Belize','019','013',0,0,0,NULL,NULL),(86,'Diego Garcia','Changosian','086','US dollar','USD','cent','British Indian Ocean Territory','IO','IOT','British Indian Ocean Territory','','',0,0,0,NULL,NULL),(90,'Honiara','Solomon Islander','090','Solomon Islands dollar','SBD','cent','Solomon Islands','SB','SLB','Solomon Islands','009','054',0,0,0,NULL,NULL),(92,'Road Town','British Virgin Islander;','092','US dollar','USD','cent','British Virgin Islands','VG','VGB','Virgin Islands, British','019','029',0,0,0,NULL,NULL),(96,'Bandar Seri Begawan','Bruneian','096','Brunei dollar','BND','sen (inv.)','Brunei Darussalam','BN','BRN','Brunei Darussalam','142','035',0,0,0,NULL,NULL),(100,'Sofia','Bulgarian','100','lev (pl. leva)','BGN','stotinka','Republic of Bulgaria','BG','BGR','Bulgaria','150','151',1,0,1,NULL,NULL),(104,'Yangon','Burmese','104','kyat','MMK','pya','Union of Myanmar/','MM','MMR','Myanmar','142','035',0,0,0,NULL,NULL),(108,'Bujumbura','Burundian','108','Burundi franc','BIF','centime','Republic of Burundi','BI','BDI','Burundi','002','014',0,0,0,NULL,NULL),(112,'Minsk','Belarusian','112','Belarusian rouble','BYR','kopek','Republic of Belarus','BY','BLR','Belarus','150','151',0,0,0,NULL,NULL),(116,'Phnom Penh','Cambodian','116','riel','KHR','sen (inv.)','Kingdom of Cambodia','KH','KHM','Cambodia','142','035',0,0,0,NULL,NULL),(120,'Yaoundé','Cameroonian','120','CFA franc (BEAC)','XAF','centime','Republic of Cameroon','CM','CMR','Cameroon','002','017',0,0,0,NULL,NULL),(124,'Ottawa','Canadian','124','Canadian dollar','CAD','cent','Canada','CA','CAN','Canada','019','021',0,0,0,',','.'),(132,'Praia','Cape Verdean','132','Cape Verde escudo','CVE','centavo','Republic of Cape Verde','CV','CPV','Cape Verde','002','011',0,0,0,NULL,NULL),(136,'George Town','Caymanian','136','Cayman Islands dollar','KYD','cent','Cayman Islands','KY','CYM','Cayman Islands','019','029',0,0,0,NULL,NULL),(140,'Bangui','Central African','140','CFA franc (BEAC)','XAF','centime','Central African Republic','CF','CAF','Central African Republic','002','017',0,0,0,NULL,NULL),(144,'Colombo','Sri Lankan','144','Sri Lankan rupee','LKR','cent','Democratic Socialist Republic of Sri Lanka','LK','LKA','Sri Lanka','142','034',0,0,0,NULL,NULL),(148,'N’Djamena','Chadian','148','CFA franc (BEAC)','XAF','centime','Republic of Chad','TD','TCD','Chad','002','017',0,0,0,NULL,NULL),(152,'Santiago','Chilean','152','Chilean peso','CLP','centavo','Republic of Chile','CL','CHL','Chile','019','005',0,0,0,NULL,NULL),(156,'Beijing','Chinese','156','renminbi-yuan (inv.)','CNY','jiao (10)','People’s Republic of China','CN','CHN','China','142','030',0,0,0,',','.'),(158,'Taipei','Taiwanese','158','new Taiwan dollar','TWD','fen (inv.)','Republic of China, Taiwan (TW1)','TW','TWN','Taiwan, Province of China','142','030',0,0,0,NULL,NULL),(162,'Flying Fish Cove','Christmas Islander','162','Australian dollar','AUD','cent','Christmas Island Territory','CX','CXR','Christmas Island','','',0,0,0,NULL,NULL),(166,'Bantam','Cocos Islander','166','Australian dollar','AUD','cent','Territory of Cocos (Keeling) Islands','CC','CCK','Cocos (Keeling) Islands','','',0,0,0,NULL,NULL),(170,'Santa Fe de Bogotá','Colombian','170','Colombian peso','COP','centavo','Republic of Colombia','CO','COL','Colombia','019','005',0,0,0,NULL,NULL),(174,'Moroni','Comorian','174','Comorian franc','KMF','','Union of the Comoros','KM','COM','Comoros','002','014',0,0,0,NULL,NULL),(175,'Mamoudzou','Mahorais','175','euro','EUR','cent','Departmental Collectivity of Mayotte','YT','MYT','Mayotte','002','014',0,0,0,NULL,NULL),(178,'Brazzaville','Congolese','178','CFA franc (BEAC)','XAF','centime','Republic of the Congo','CG','COG','Congo','002','017',0,0,0,NULL,NULL),(180,'Kinshasa','Congolese','180','Congolese franc','CDF','centime','Democratic Republic of the Congo','CD','COD','Congo, the Democratic Republic of the','002','017',0,0,0,NULL,NULL),(184,'Avarua','Cook Islander','184','New Zealand dollar','NZD','cent','Cook Islands','CK','COK','Cook Islands','009','061',0,0,0,NULL,NULL),(188,'San José','Costa Rican','188','Costa Rican colón (pl. colones)','CRC','céntimo','Republic of Costa Rica','CR','CRI','Costa Rica','019','013',0,0,0,NULL,NULL),(191,'Zagreb','Croatian','191','kuna (inv.)','HRK','lipa (inv.)','Republic of Croatia','HR','HRV','Croatia','150','039',1,0,1,NULL,NULL),(192,'Havana','Cuban','192','Cuban peso','CUP','centavo','Republic of Cuba','CU','CUB','Cuba','019','029',0,0,0,NULL,NULL),(196,'Nicosia','Cypriot','196','euro','EUR','cent','Republic of Cyprus','CY','CYP','Cyprus','142','145',1,0,0,NULL,NULL),(203,'Prague','Czech','203','Czech koruna (pl. koruny)','CZK','halér','Czech Republic','CZ','CZE','Czech Republic','150','151',1,0,1,NULL,NULL),(204,'Porto Novo (BJ1)','Beninese','204','CFA franc (BCEAO)','XOF','centime','Republic of Benin','BJ','BEN','Benin','002','011',0,0,0,NULL,NULL),(208,'Copenhagen','Danish','208','Danish krone','DKK','øre (inv.)','Kingdom of Denmark','DK','DNK','Denmark','150','154',1,1,0,NULL,NULL),(212,'Roseau','Dominican','212','East Caribbean dollar','XCD','cent','Commonwealth of Dominica','DM','DMA','Dominica','019','029',0,0,0,NULL,NULL),(214,'Santo Domingo','Dominican','214','Dominican peso','DOP','centavo','Dominican Republic','DO','DOM','Dominican Republic','019','029',0,0,0,NULL,NULL),(218,'Quito','Ecuadorian','218','US dollar','USD','cent','Republic of Ecuador','EC','ECU','Ecuador','019','005',0,0,0,NULL,NULL),(222,'San Salvador','Salvadoran','222','Salvadorian colón (pl. colones)','SVC','centavo','Republic of El Salvador','SV','SLV','El Salvador','019','013',0,0,0,NULL,NULL),(226,'Malabo','Equatorial Guinean','226','CFA franc (BEAC)','XAF','centime','Republic of Equatorial Guinea','GQ','GNQ','Equatorial Guinea','002','017',0,0,0,NULL,NULL),(231,'Addis Ababa','Ethiopian','231','birr (inv.)','ETB','cent','Federal Democratic Republic of Ethiopia','ET','ETH','Ethiopia','002','014',0,0,0,NULL,NULL),(232,'Asmara','Eritrean','232','nakfa','ERN','cent','State of Eritrea','ER','ERI','Eritrea','002','014',0,0,0,NULL,NULL),(233,'Tallinn','Estonian','233','euro','EUR','cent','Republic of Estonia','EE','EST','Estonia','150','154',1,0,1,NULL,NULL),(234,'Tórshavn','Faeroese','234','Danish krone','DKK','øre (inv.)','Faeroe Islands','FO','FRO','Faroe Islands','150','154',0,0,0,NULL,NULL),(238,'Stanley','Falkland Islander','238','Falkland Islands pound','FKP','new penny','Falkland Islands','FK','FLK','Falkland Islands (Malvinas)','019','005',0,0,0,NULL,NULL),(239,'King Edward Point (Grytviken)','of South Georgia and the South Sandwich Islands','239','','','','South Georgia and the South Sandwich Islands','GS','SGS','South Georgia and the South Sandwich Islands','','',0,0,0,NULL,NULL),(242,'Suva','Fijian','242','Fiji dollar','FJD','cent','Republic of Fiji','FJ','FJI','Fiji','009','054',0,0,0,NULL,NULL),(246,'Helsinki','Finnish','246','euro','EUR','cent','Republic of Finland','FI','FIN','Finland','150','154',1,1,1,NULL,NULL),(248,'Mariehamn','Åland Islander','248','euro','EUR','cent','Åland Islands','AX','ALA','Åland Islands','150','154',0,0,0,NULL,NULL),(250,'Paris','French','250','euro','EUR','cent','French Republic','FR','FRA','France','150','155',1,1,1,NULL,NULL),(254,'Cayenne','Guianese','254','euro','EUR','cent','French Guiana','GF','GUF','French Guiana','019','005',0,0,0,NULL,NULL),(258,'Papeete','Polynesian','258','CFP franc','XPF','centime','French Polynesia','PF','PYF','French Polynesia','009','061',0,0,0,NULL,NULL),(260,'Port-aux-Francais','of French Southern and Antarctic Lands','260','euro','EUR','cent','French Southern and Antarctic Lands','TF','ATF','French Southern Territories','','',0,0,0,NULL,NULL),(262,'Djibouti','Djiboutian','262','Djibouti franc','DJF','','Republic of Djibouti','DJ','DJI','Djibouti','002','014',0,0,0,NULL,NULL),(266,'Libreville','Gabonese','266','CFA franc (BEAC)','XAF','centime','Gabonese Republic','GA','GAB','Gabon','002','017',0,0,0,NULL,NULL),(268,'Tbilisi','Georgian','268','lari','GEL','tetri (inv.)','Georgia','GE','GEO','Georgia','142','145',0,0,0,NULL,NULL),(270,'Banjul','Gambian','270','dalasi (inv.)','GMD','butut','Republic of the Gambia','GM','GMB','Gambia','002','011',0,0,0,NULL,NULL),(275,NULL,'Palestinian','275',NULL,NULL,NULL,NULL,'PS','PSE','Palestinian Territory, Occupied','142','145',0,0,0,NULL,NULL),(276,'Berlin','German','276','euro','EUR','cent','Federal Republic of Germany','DE','DEU','Germany','150','155',1,1,1,NULL,NULL),(288,'Accra','Ghanaian','288','Ghana cedi','GHS','pesewa','Republic of Ghana','GH','GHA','Ghana','002','011',0,0,0,NULL,NULL),(292,'Gibraltar','Gibraltarian','292','Gibraltar pound','GIP','penny','Gibraltar','GI','GIB','Gibraltar','150','039',0,0,0,NULL,NULL),(296,'Tarawa','Kiribatian','296','Australian dollar','AUD','cent','Republic of Kiribati','KI','KIR','Kiribati','009','057',0,0,0,NULL,NULL),(300,'Athens','Greek','300','euro','EUR','cent','Hellenic Republic','GR','GRC','Greece','150','039',1,0,1,NULL,NULL),(304,'Nuuk','Greenlander','304','Danish krone','DKK','øre (inv.)','Greenland','GL','GRL','Greenland','019','021',0,1,0,NULL,NULL),(308,'St George’s','Grenadian','308','East Caribbean dollar','XCD','cent','Grenada','GD','GRD','Grenada','019','029',0,0,0,NULL,NULL),(312,'Basse Terre','Guadeloupean','312','euro','EUR','cent','Guadeloupe','GP','GLP','Guadeloupe','019','029',0,0,0,NULL,NULL),(316,'Agaña (Hagåtña)','Guamanian','316','US dollar','USD','cent','Territory of Guam','GU','GUM','Guam','009','057',0,0,0,NULL,NULL),(320,'Guatemala City','Guatemalan','320','quetzal (pl. quetzales)','GTQ','centavo','Republic of Guatemala','GT','GTM','Guatemala','019','013',0,0,0,NULL,NULL),(324,'Conakry','Guinean','324','Guinean franc','GNF','','Republic of Guinea','GN','GIN','Guinea','002','011',0,0,0,NULL,NULL),(328,'Georgetown','Guyanese','328','Guyana dollar','GYD','cent','Cooperative Republic of Guyana','GY','GUY','Guyana','019','005',0,0,0,NULL,NULL),(332,'Port-au-Prince','Haitian','332','gourde','HTG','centime','Republic of Haiti','HT','HTI','Haiti','019','029',0,0,0,NULL,NULL),(334,'Territory of Heard Island and McDonald Islands','of Territory of Heard Island and McDonald Islands','334','','','','Territory of Heard Island and McDonald Islands','HM','HMD','Heard Island and McDonald Islands','','',0,0,0,NULL,NULL),(336,'Vatican City','of the Holy See/of the Vatican','336','euro','EUR','cent','the Holy See/ Vatican City State','VA','VAT','Holy See (Vatican City State)','150','039',0,0,0,NULL,NULL),(340,'Tegucigalpa','Honduran','340','lempira','HNL','centavo','Republic of Honduras','HN','HND','Honduras','019','013',0,0,0,NULL,NULL),(344,'(HK3)','Hong Kong Chinese','344','Hong Kong dollar','HKD','cent','Hong Kong Special Administrative Region of the People’s Republic of China (HK2)','HK','HKG','Hong Kong','142','030',0,0,0,NULL,NULL),(348,'Budapest','Hungarian','348','forint (inv.)','HUF','(fillér (inv.))','Republic of Hungary','HU','HUN','Hungary','150','151',1,0,1,NULL,NULL),(352,'Reykjavik','Icelander','352','króna (pl. krónur)','ISK','','Republic of Iceland','IS','ISL','Iceland','150','154',0,1,1,NULL,NULL),(356,'New Delhi','Indian','356','Indian rupee','INR','paisa','Republic of India','IN','IND','India','142','034',0,0,0,NULL,NULL),(360,'Jakarta','Indonesian','360','Indonesian rupiah (inv.)','IDR','sen (inv.)','Republic of Indonesia','ID','IDN','Indonesia','142','035',0,0,0,NULL,NULL),(364,'Tehran','Iranian','364','Iranian rial','IRR','(dinar) (IR1)','Islamic Republic of Iran','IR','IRN','Iran, Islamic Republic of','142','034',0,0,0,NULL,NULL),(368,'Baghdad','Iraqi','368','Iraqi dinar','IQD','fils (inv.)','Republic of Iraq','IQ','IRQ','Iraq','142','145',0,0,0,NULL,NULL),(372,'Dublin','Irish','372','euro','EUR','cent','Ireland (IE1)','IE','IRL','Ireland','150','154',1,0,0,',','.'),(376,'(IL1)','Israeli','376','shekel','ILS','agora','State of Israel','IL','ISR','Israel','142','145',0,1,0,NULL,NULL),(380,'Rome','Italian','380','euro','EUR','cent','Italian Republic','IT','ITA','Italy','150','039',1,1,1,NULL,NULL),(384,'Yamoussoukro (CI1)','Ivorian','384','CFA franc (BCEAO)','XOF','centime','Republic of Côte d’Ivoire','CI','CIV','Côte d\'Ivoire','002','011',0,0,0,NULL,NULL),(388,'Kingston','Jamaican','388','Jamaica dollar','JMD','cent','Jamaica','JM','JAM','Jamaica','019','029',0,0,0,NULL,NULL),(392,'Tokyo','Japanese','392','yen (inv.)','JPY','(sen (inv.)) (JP1)','Japan','JP','JPN','Japan','142','030',0,1,1,NULL,NULL),(398,'Astana','Kazakh','398','tenge (inv.)','KZT','tiyn','Republic of Kazakhstan','KZ','KAZ','Kazakhstan','142','143',0,0,0,NULL,NULL),(400,'Amman','Jordanian','400','Jordanian dinar','JOD','100 qirsh','Hashemite Kingdom of Jordan','JO','JOR','Jordan','142','145',0,0,0,NULL,NULL),(404,'Nairobi','Kenyan','404','Kenyan shilling','KES','cent','Republic of Kenya','KE','KEN','Kenya','002','014',0,0,0,NULL,NULL),(408,'Pyongyang','North Korean','408','North Korean won (inv.)','KPW','chun (inv.)','Democratic People’s Republic of Korea','KP','PRK','Korea, Democratic People\'s Republic of','142','030',0,0,0,NULL,NULL),(410,'Seoul','South Korean','410','South Korean won (inv.)','KRW','(chun (inv.))','Republic of Korea','KR','KOR','Korea, Republic of','142','030',0,0,0,NULL,NULL),(414,'Kuwait City','Kuwaiti','414','Kuwaiti dinar','KWD','fils (inv.)','State of Kuwait','KW','KWT','Kuwait','142','145',0,0,0,NULL,NULL),(417,'Bishkek','Kyrgyz','417','som','KGS','tyiyn','Kyrgyz Republic','KG','KGZ','Kyrgyzstan','142','143',0,0,0,NULL,NULL),(418,'Vientiane','Lao','418','kip (inv.)','LAK','(at (inv.))','Lao People’s Democratic Republic','LA','LAO','Lao People\'s Democratic Republic','142','035',0,0,0,NULL,NULL),(422,'Beirut','Lebanese','422','Lebanese pound','LBP','(piastre)','Lebanese Republic','LB','LBN','Lebanon','142','145',0,0,0,NULL,NULL),(426,'Maseru','Basotho','426','loti (pl. maloti)','LSL','sente','Kingdom of Lesotho','LS','LSO','Lesotho','002','018',0,0,0,NULL,NULL),(428,'Riga','Latvian','428','euro','EUR','cent','Republic of Latvia','LV','LVA','Latvia','150','154',1,0,0,NULL,NULL),(430,'Monrovia','Liberian','430','Liberian dollar','LRD','cent','Republic of Liberia','LR','LBR','Liberia','002','011',0,0,0,NULL,NULL),(434,'Tripoli','Libyan','434','Libyan dinar','LYD','dirham','Socialist People’s Libyan Arab Jamahiriya','LY','LBY','Libya','002','015',0,0,0,NULL,NULL),(438,'Vaduz','Liechtensteiner','438','Swiss franc','CHF','centime','Principality of Liechtenstein','LI','LIE','Liechtenstein','150','155',0,0,0,NULL,NULL),(440,'Vilnius','Lithuanian','440','euro','EUR','cent','Republic of Lithuania','LT','LTU','Lithuania','150','154',1,0,1,NULL,NULL),(442,'Luxembourg','Luxembourger','442','euro','EUR','cent','Grand Duchy of Luxembourg','LU','LUX','Luxembourg','150','155',1,1,0,NULL,NULL),(446,'Macao (MO3)','Macanese','446','pataca','MOP','avo','Macao Special Administrative Region of the People’s Republic of China (MO2)','MO','MAC','Macao','142','030',0,0,0,NULL,NULL),(450,'Antananarivo','Malagasy','450','ariary','MGA','iraimbilanja (inv.)','Republic of Madagascar','MG','MDG','Madagascar','002','014',0,0,0,NULL,NULL),(454,'Lilongwe','Malawian','454','Malawian kwacha (inv.)','MWK','tambala (inv.)','Republic of Malawi','MW','MWI','Malawi','002','014',0,0,0,NULL,NULL),(458,'Kuala Lumpur (MY1)','Malaysian','458','ringgit (inv.)','MYR','sen (inv.)','Malaysia','MY','MYS','Malaysia','142','035',0,1,0,NULL,NULL),(462,'Malé','Maldivian','462','rufiyaa','MVR','laari (inv.)','Republic of Maldives','MV','MDV','Maldives','142','034',0,0,0,NULL,NULL),(466,'Bamako','Malian','466','CFA franc (BCEAO)','XOF','centime','Republic of Mali','ML','MLI','Mali','002','011',0,0,0,NULL,NULL),(470,'Valletta','Maltese','470','euro','EUR','cent','Republic of Malta','MT','MLT','Malta','150','039',1,0,0,',','.'),(474,'Fort-de-France','Martinican','474','euro','EUR','cent','Martinique','MQ','MTQ','Martinique','019','029',0,0,0,NULL,NULL),(478,'Nouakchott','Mauritanian','478','ouguiya','MRO','khoum','Islamic Republic of Mauritania','MR','MRT','Mauritania','002','011',0,0,0,NULL,NULL),(480,'Port Louis','Mauritian','480','Mauritian rupee','MUR','cent','Republic of Mauritius','MU','MUS','Mauritius','002','014',0,0,0,NULL,NULL),(484,'Mexico City','Mexican','484','Mexican peso','MXN','centavo','United Mexican States','MX','MEX','Mexico','019','013',0,1,0,NULL,NULL),(492,'Monaco','Monegasque','492','euro','EUR','cent','Principality of Monaco','MC','MCO','Monaco','150','155',0,0,0,NULL,NULL),(496,'Ulan Bator','Mongolian','496','tugrik','MNT','möngö (inv.)','Mongolia','MN','MNG','Mongolia','142','030',0,0,0,NULL,NULL),(498,'Chisinau','Moldovan','498','Moldovan leu (pl. lei)','MDL','ban','Republic of Moldova','MD','MDA','Moldova, Republic of','150','151',0,0,0,NULL,NULL),(499,'Podgorica','Montenegrin','499','euro','EUR','cent','Montenegro','ME','MNE','Montenegro','150','039',0,0,0,NULL,NULL),(500,'Plymouth (MS2)','Montserratian','500','East Caribbean dollar','XCD','cent','Montserrat','MS','MSR','Montserrat','019','029',0,0,0,NULL,NULL),(504,'Rabat','Moroccan','504','Moroccan dirham','MAD','centime','Kingdom of Morocco','MA','MAR','Morocco','002','015',0,0,0,NULL,NULL),(508,'Maputo','Mozambican','508','metical','MZN','centavo','Republic of Mozambique','MZ','MOZ','Mozambique','002','014',0,0,0,NULL,NULL),(512,'Muscat','Omani','512','Omani rial','OMR','baiza','Sultanate of Oman','OM','OMN','Oman','142','145',0,0,0,NULL,NULL),(516,'Windhoek','Namibian','516','Namibian dollar','NAD','cent','Republic of Namibia','NA','NAM','Namibia','002','018',0,0,0,NULL,NULL),(520,'Yaren','Nauruan','520','Australian dollar','AUD','cent','Republic of Nauru','NR','NRU','Nauru','009','057',0,0,0,NULL,NULL),(524,'Kathmandu','Nepalese','524','Nepalese rupee','NPR','paisa (inv.)','Nepal','NP','NPL','Nepal','142','034',0,0,0,NULL,NULL),(528,'Amsterdam (NL2)','Dutch','528','euro','EUR','cent','Kingdom of the Netherlands','NL','NLD','Netherlands','150','155',1,1,0,NULL,NULL),(531,'Willemstad','Curaçaoan','531','Netherlands Antillean guilder (CW1)','ANG','cent','Curaçao','CW','CUW','Curaçao','019','029',0,0,0,NULL,NULL),(533,'Oranjestad','Aruban','533','Aruban guilder','AWG','cent','Aruba','AW','ABW','Aruba','019','029',0,0,0,NULL,NULL),(534,'Philipsburg','Sint Maartener','534','Netherlands Antillean guilder (SX1)','ANG','cent','Sint Maarten','SX','SXM','Sint Maarten (Dutch part)','019','029',0,0,0,NULL,NULL),(535,NULL,'of Bonaire, Sint Eustatius and Saba','535','US dollar','USD','cent',NULL,'BQ','BES','Bonaire, Sint Eustatius and Saba','019','029',0,0,0,NULL,NULL),(540,'Nouméa','New Caledonian','540','CFP franc','XPF','centime','New Caledonia','NC','NCL','New Caledonia','009','054',0,0,0,NULL,NULL),(548,'Port Vila','Vanuatuan','548','vatu (inv.)','VUV','','Republic of Vanuatu','VU','VUT','Vanuatu','009','054',0,0,0,NULL,NULL),(554,'Wellington','New Zealander','554','New Zealand dollar','NZD','cent','New Zealand','NZ','NZL','New Zealand','009','053',0,0,0,NULL,NULL),(558,'Managua','Nicaraguan','558','córdoba oro','NIO','centavo','Republic of Nicaragua','NI','NIC','Nicaragua','019','013',0,0,0,NULL,NULL),(562,'Niamey','Nigerien','562','CFA franc (BCEAO)','XOF','centime','Republic of Niger','NE','NER','Niger','002','011',0,0,0,NULL,NULL),(566,'Abuja','Nigerian','566','naira (inv.)','NGN','kobo (inv.)','Federal Republic of Nigeria','NG','NGA','Nigeria','002','011',0,0,0,NULL,NULL),(570,'Alofi','Niuean','570','New Zealand dollar','NZD','cent','Niue','NU','NIU','Niue','009','061',0,0,0,NULL,NULL),(574,'Kingston','Norfolk Islander','574','Australian dollar','AUD','cent','Territory of Norfolk Island','NF','NFK','Norfolk Island','009','053',0,0,0,NULL,NULL),(578,'Oslo','Norwegian','578','Norwegian krone (pl. kroner)','NOK','øre (inv.)','Kingdom of Norway','NO','NOR','Norway','150','154',0,0,0,NULL,NULL),(580,'Saipan','Northern Mariana Islander','580','US dollar','USD','cent','Commonwealth of the Northern Mariana Islands','MP','MNP','Northern Mariana Islands','009','057',0,0,0,NULL,NULL),(581,'United States Minor Outlying Islands','of United States Minor Outlying Islands','581','US dollar','USD','cent','United States Minor Outlying Islands','UM','UMI','United States Minor Outlying Islands','','',0,0,0,NULL,NULL),(583,'Palikir','Micronesian','583','US dollar','USD','cent','Federated States of Micronesia','FM','FSM','Micronesia, Federated States of','009','057',0,0,0,NULL,NULL),(584,'Majuro','Marshallese','584','US dollar','USD','cent','Republic of the Marshall Islands','MH','MHL','Marshall Islands','009','057',0,0,0,NULL,NULL),(585,'Melekeok','Palauan','585','US dollar','USD','cent','Republic of Palau','PW','PLW','Palau','009','057',0,0,0,NULL,NULL),(586,'Islamabad','Pakistani','586','Pakistani rupee','PKR','paisa','Islamic Republic of Pakistan','PK','PAK','Pakistan','142','034',0,0,0,NULL,NULL),(591,'Panama City','Panamanian','591','balboa','PAB','centésimo','Republic of Panama','PA','PAN','Panama','019','013',0,0,0,NULL,NULL),(598,'Port Moresby','Papua New Guinean','598','kina (inv.)','PGK','toea (inv.)','Independent State of Papua New Guinea','PG','PNG','Papua New Guinea','009','054',0,0,0,NULL,NULL),(600,'Asunción','Paraguayan','600','guaraní','PYG','céntimo','Republic of Paraguay','PY','PRY','Paraguay','019','005',0,0,0,NULL,NULL),(604,'Lima','Peruvian','604','new sol','PEN','céntimo','Republic of Peru','PE','PER','Peru','019','005',0,0,0,NULL,NULL),(608,'Manila','Filipino','608','Philippine peso','PHP','centavo','Republic of the Philippines','PH','PHL','Philippines','142','035',0,0,0,NULL,NULL),(612,'Adamstown','Pitcairner','612','New Zealand dollar','NZD','cent','Pitcairn Islands','PN','PCN','Pitcairn','009','061',0,0,0,NULL,NULL),(616,'Warsaw','Polish','616','zloty','PLN','grosz (pl. groszy)','Republic of Poland','PL','POL','Poland','150','151',1,1,1,NULL,NULL),(620,'Lisbon','Portuguese','620','euro','EUR','cent','Portuguese Republic','PT','PRT','Portugal','150','039',1,1,1,NULL,NULL),(624,'Bissau','Guinea-Bissau national','624','CFA franc (BCEAO)','XOF','centime','Republic of Guinea-Bissau','GW','GNB','Guinea-Bissau','002','011',0,0,0,NULL,NULL),(626,'Dili','East Timorese','626','US dollar','USD','cent','Democratic Republic of East Timor','TL','TLS','Timor-Leste','142','035',0,0,0,NULL,NULL),(630,'San Juan','Puerto Rican','630','US dollar','USD','cent','Commonwealth of Puerto Rico','PR','PRI','Puerto Rico','019','029',0,0,0,NULL,NULL),(634,'Doha','Qatari','634','Qatari riyal','QAR','dirham','State of Qatar','QA','QAT','Qatar','142','145',0,0,0,NULL,NULL),(638,'Saint-Denis','Reunionese','638','euro','EUR','cent','Réunion','RE','REU','Réunion','002','014',0,0,0,NULL,NULL),(642,'Bucharest','Romanian','642','Romanian leu (pl. lei)','RON','ban (pl. bani)','Romania','RO','ROU','Romania','150','151',1,0,1,NULL,NULL),(643,'Moscow','Russian','643','Russian rouble','RUB','kopek','Russian Federation','RU','RUS','Russian Federation','150','151',0,0,0,NULL,NULL),(646,'Kigali','Rwandan; Rwandese','646','Rwandese franc','RWF','centime','Republic of Rwanda','RW','RWA','Rwanda','002','014',0,0,0,NULL,NULL),(652,'Gustavia','of Saint Barthélemy','652','euro','EUR','cent','Collectivity of Saint Barthélemy','BL','BLM','Saint Barthélemy','019','029',0,0,0,NULL,NULL),(654,'Jamestown','Saint Helenian','654','Saint Helena pound','SHP','penny','Saint Helena, Ascension and Tristan da Cunha','SH','SHN','Saint Helena, Ascension and Tristan da Cunha','002','011',0,0,0,NULL,NULL),(659,'Basseterre','Kittsian; Nevisian','659','East Caribbean dollar','XCD','cent','Federation of Saint Kitts and Nevis','KN','KNA','Saint Kitts and Nevis','019','029',0,0,0,NULL,NULL),(660,'The Valley','Anguillan','660','East Caribbean dollar','XCD','cent','Anguilla','AI','AIA','Anguilla','019','029',0,0,0,NULL,NULL),(662,'Castries','Saint Lucian','662','East Caribbean dollar','XCD','cent','Saint Lucia','LC','LCA','Saint Lucia','019','029',0,0,0,NULL,NULL),(663,'Marigot','of Saint Martin','663','euro','EUR','cent','Collectivity of Saint Martin','MF','MAF','Saint Martin (French part)','019','029',0,0,0,NULL,NULL),(666,'Saint-Pierre','St-Pierrais; Miquelonnais','666','euro','EUR','cent','Territorial Collectivity of Saint Pierre and Miquelon','PM','SPM','Saint Pierre and Miquelon','019','021',0,0,0,NULL,NULL),(670,'Kingstown','Vincentian','670','East Caribbean dollar','XCD','cent','Saint Vincent and the Grenadines','VC','VCT','Saint Vincent and the Grenadines','019','029',0,0,0,NULL,NULL),(674,'San Marino','San Marinese','674','euro','EUR','cent','Republic of San Marino','SM','SMR','San Marino','150','039',0,0,0,NULL,NULL),(678,'São Tomé','São Toméan','678','dobra','STD','centavo','Democratic Republic of São Tomé and Príncipe','ST','STP','Sao Tome and Principe','002','017',0,0,0,NULL,NULL),(682,'Riyadh','Saudi Arabian','682','riyal','SAR','halala','Kingdom of Saudi Arabia','SA','SAU','Saudi Arabia','142','145',0,0,0,NULL,NULL),(686,'Dakar','Senegalese','686','CFA franc (BCEAO)','XOF','centime','Republic of Senegal','SN','SEN','Senegal','002','011',0,0,0,NULL,NULL),(688,'Belgrade','Serb','688','Serbian dinar','RSD','para (inv.)','Republic of Serbia','RS','SRB','Serbia','150','039',0,0,0,NULL,NULL),(690,'Victoria','Seychellois','690','Seychelles rupee','SCR','cent','Republic of Seychelles','SC','SYC','Seychelles','002','014',0,0,0,NULL,NULL),(694,'Freetown','Sierra Leonean','694','leone','SLL','cent','Republic of Sierra Leone','SL','SLE','Sierra Leone','002','011',0,0,0,NULL,NULL),(702,'Singapore','Singaporean','702','Singapore dollar','SGD','cent','Republic of Singapore','SG','SGP','Singapore','142','035',0,0,0,NULL,NULL),(703,'Bratislava','Slovak','703','euro','EUR','cent','Slovak Republic','SK','SVK','Slovakia','150','151',1,0,1,NULL,NULL),(704,'Hanoi','Vietnamese','704','dong','VND','(10 hào','Socialist Republic of Vietnam','VN','VNM','Viet Nam','142','035',0,0,0,NULL,NULL),(705,'Ljubljana','Slovene','705','euro','EUR','cent','Republic of Slovenia','SI','SVN','Slovenia','150','039',1,0,1,NULL,NULL),(706,'Mogadishu','Somali','706','Somali shilling','SOS','cent','Somali Republic','SO','SOM','Somalia','002','014',0,0,0,NULL,NULL),(710,'Pretoria (ZA1)','South African','710','rand','ZAR','cent','Republic of South Africa','ZA','ZAF','South Africa','002','018',0,0,0,NULL,NULL),(716,'Harare','Zimbabwean','716','Zimbabwe dollar (ZW1)','ZWL','cent','Republic of Zimbabwe','ZW','ZWE','Zimbabwe','002','014',0,0,0,NULL,NULL),(724,'Madrid','Spaniard','724','euro','EUR','cent','Kingdom of Spain','ES','ESP','Spain','150','039',1,1,1,NULL,NULL),(728,'Juba','South Sudanese','728','South Sudanese pound','SSP','piaster','Republic of South Sudan','SS','SSD','South Sudan','002','015',0,0,0,NULL,NULL),(729,'Khartoum','Sudanese','729','Sudanese pound','SDG','piastre','Republic of the Sudan','SD','SDN','Sudan','002','015',0,0,0,NULL,NULL),(732,'Al aaiun','Sahrawi','732','Moroccan dirham','MAD','centime','Western Sahara','EH','ESH','Western Sahara','002','015',0,0,0,NULL,NULL),(740,'Paramaribo','Surinamese','740','Surinamese dollar','SRD','cent','Republic of Suriname','SR','SUR','Suriname','019','005',0,0,1,NULL,NULL),(744,'Longyearbyen','of Svalbard','744','Norwegian krone (pl. kroner)','NOK','øre (inv.)','Svalbard and Jan Mayen','SJ','SJM','Svalbard and Jan Mayen','150','154',0,0,0,NULL,NULL),(748,'Mbabane','Swazi','748','lilangeni','SZL','cent','Kingdom of Swaziland','SZ','SWZ','Swaziland','002','018',0,0,0,NULL,NULL),(752,'Stockholm','Swedish','752','krona (pl. kronor)','SEK','öre (inv.)','Kingdom of Sweden','SE','SWE','Sweden','150','154',1,1,1,NULL,NULL),(756,'Berne','Swiss','756','Swiss franc','CHF','centime','Swiss Confederation','CH','CHE','Switzerland','150','155',0,1,0,NULL,NULL),(760,'Damascus','Syrian','760','Syrian pound','SYP','piastre','Syrian Arab Republic','SY','SYR','Syrian Arab Republic','142','145',0,0,0,NULL,NULL),(762,'Dushanbe','Tajik','762','somoni','TJS','diram','Republic of Tajikistan','TJ','TJK','Tajikistan','142','143',0,0,0,NULL,NULL),(764,'Bangkok','Thai','764','baht (inv.)','THB','satang (inv.)','Kingdom of Thailand','TH','THA','Thailand','142','035',0,0,0,NULL,NULL),(768,'Lomé','Togolese','768','CFA franc (BCEAO)','XOF','centime','Togolese Republic','TG','TGO','Togo','002','011',0,0,0,NULL,NULL),(772,'(TK2)','Tokelauan','772','New Zealand dollar','NZD','cent','Tokelau','TK','TKL','Tokelau','009','061',0,0,0,NULL,NULL),(776,'Nuku’alofa','Tongan','776','pa’anga (inv.)','TOP','seniti (inv.)','Kingdom of Tonga','TO','TON','Tonga','009','061',0,0,0,NULL,NULL),(780,'Port of Spain','Trinidadian; Tobagonian','780','Trinidad and Tobago dollar','TTD','cent','Republic of Trinidad and Tobago','TT','TTO','Trinidad and Tobago','019','029',0,0,0,NULL,NULL),(784,'Abu Dhabi','Emirian','784','UAE dirham','AED','fils (inv.)','United Arab Emirates','AE','ARE','United Arab Emirates','142','145',0,0,0,NULL,NULL),(788,'Tunis','Tunisian','788','Tunisian dinar','TND','millime','Republic of Tunisia','TN','TUN','Tunisia','002','015',0,0,0,NULL,NULL),(792,'Ankara','Turk','792','Turkish lira (inv.)','TRY','kurus (inv.)','Republic of Turkey','TR','TUR','Turkey','142','145',0,0,0,NULL,NULL),(795,'Ashgabat','Turkmen','795','Turkmen manat (inv.)','TMT','tenge (inv.)','Turkmenistan','TM','TKM','Turkmenistan','142','143',0,0,0,NULL,NULL),(796,'Cockburn Town','Turks and Caicos Islander','796','US dollar','USD','cent','Turks and Caicos Islands','TC','TCA','Turks and Caicos Islands','019','029',0,0,0,NULL,NULL),(798,'Funafuti','Tuvaluan','798','Australian dollar','AUD','cent','Tuvalu','TV','TUV','Tuvalu','009','061',0,0,0,NULL,NULL),(800,'Kampala','Ugandan','800','Uganda shilling','UGX','cent','Republic of Uganda','UG','UGA','Uganda','002','014',0,0,0,NULL,NULL),(804,'Kiev','Ukrainian','804','hryvnia','UAH','kopiyka','Ukraine','UA','UKR','Ukraine','150','151',0,0,0,NULL,NULL),(807,'Skopje','of the former Yugoslav Republic of Macedonia','807','denar (pl. denars)','MKD','deni (inv.)','the former Yugoslav Republic of Macedonia','MK','MKD','Macedonia, the former Yugoslav Republic of','150','039',0,0,0,NULL,NULL),(818,'Cairo','Egyptian','818','Egyptian pound','EGP','piastre','Arab Republic of Egypt','EG','EGY','Egypt','002','015',0,0,0,NULL,NULL),(826,'London','British','826','pound sterling','GBP','penny (pl. pence)','United Kingdom of Great Britain and Northern Ireland','GB','GBR','United Kingdom','150','154',1,0,0,NULL,NULL),(831,'St Peter Port','of Guernsey','831','Guernsey pound (GG2)','GGP (GG2)','penny (pl. pence)','Bailiwick of Guernsey','GG','GGY','Guernsey','150','154',0,0,0,NULL,NULL),(832,'St Helier','of Jersey','832','Jersey pound (JE2)','JEP (JE2)','penny (pl. pence)','Bailiwick of Jersey','JE','JEY','Jersey','150','154',0,0,0,NULL,NULL),(833,'Douglas','Manxman; Manxwoman','833','Manx pound (IM2)','IMP (IM2)','penny (pl. pence)','Isle of Man','IM','IMN','Isle of Man','150','154',0,0,0,NULL,NULL),(834,'Dodoma (TZ1)','Tanzanian','834','Tanzanian shilling','TZS','cent','United Republic of Tanzania','TZ','TZA','Tanzania, United Republic of','002','014',0,0,0,NULL,NULL),(840,'Washington DC','American','840','US dollar','USD','cent','United States of America','US','USA','United States','019','021',0,0,0,',','.'),(850,'Charlotte Amalie','US Virgin Islander','850','US dollar','USD','cent','United States Virgin Islands','VI','VIR','Virgin Islands, U.S.','019','029',0,0,0,NULL,NULL),(854,'Ouagadougou','Burkinabe','854','CFA franc (BCEAO)','XOF','centime','Burkina Faso','BF','BFA','Burkina Faso','002','011',0,0,0,NULL,NULL),(858,'Montevideo','Uruguayan','858','Uruguayan peso','UYU','centésimo','Eastern Republic of Uruguay','UY','URY','Uruguay','019','005',0,1,0,NULL,NULL),(860,'Tashkent','Uzbek','860','sum (inv.)','UZS','tiyin (inv.)','Republic of Uzbekistan','UZ','UZB','Uzbekistan','142','143',0,0,0,NULL,NULL),(862,'Caracas','Venezuelan','862','bolívar fuerte (pl. bolívares fuertes)','VEF','céntimo','Bolivarian Republic of Venezuela','VE','VEN','Venezuela, Bolivarian Republic of','019','005',0,0,0,NULL,NULL),(876,'Mata-Utu','Wallisian; Futunan; Wallis and Futuna Islander','876','CFP franc','XPF','centime','Wallis and Futuna','WF','WLF','Wallis and Futuna','009','061',0,0,0,NULL,NULL),(882,'Apia','Samoan','882','tala (inv.)','WST','sene (inv.)','Independent State of Samoa','WS','WSM','Samoa','009','061',0,0,0,NULL,NULL),(887,'San’a','Yemenite','887','Yemeni rial','YER','fils (inv.)','Republic of Yemen','YE','YEM','Yemen','142','145',0,0,0,NULL,NULL),(894,'Lusaka','Zambian','894','Zambian kwacha (inv.)','ZMW','ngwee (inv.)','Republic of Zambia','ZM','ZMB','Zambia','002','014',0,0,0,NULL,NULL);
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `credits`
--

DROP TABLE IF EXISTS `credits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `credits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `client_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `amount` decimal(13,2) NOT NULL,
  `balance` decimal(13,2) NOT NULL,
  `credit_date` date DEFAULT NULL,
  `credit_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `private_notes` text COLLATE utf8_unicode_ci NOT NULL,
  `public_id` int(10) unsigned NOT NULL,
  `public_notes` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `credits_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `credits_user_id_foreign` (`user_id`),
  KEY `credits_account_id_index` (`account_id`),
  KEY `credits_client_id_index` (`client_id`),
  KEY `credits_public_id_index` (`public_id`),
  CONSTRAINT `credits_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `credits_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
  CONSTRAINT `credits_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `credits`
--

LOCK TABLES `credits` WRITE;
/*!40000 ALTER TABLE `credits` DISABLE KEYS */;
INSERT INTO `credits` (`id`, `account_id`, `client_id`, `user_id`, `created_at`, `updated_at`, `deleted_at`, `is_deleted`, `amount`, `balance`, `credit_date`, `credit_number`, `private_notes`, `public_id`, `public_notes`) VALUES (1,1,4,1,'2019-07-18 09:53:31','2019-07-18 10:28:54','2019-07-18 10:28:54',1,1000.00,1000.00,'2019-07-18',NULL,'Testing',1,'Testing');
/*!40000 ALTER TABLE `credits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `currencies`
--

DROP TABLE IF EXISTS `currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `currencies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `symbol` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `precision` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `thousand_separator` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `decimal_separator` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `code` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `swap_currency_symbol` tinyint(1) NOT NULL DEFAULT '0',
  `exchange_rate` decimal(13,4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=106 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `currencies`
--

LOCK TABLES `currencies` WRITE;
/*!40000 ALTER TABLE `currencies` DISABLE KEYS */;
INSERT INTO `currencies` (`id`, `name`, `symbol`, `precision`, `thousand_separator`, `decimal_separator`, `code`, `swap_currency_symbol`, `exchange_rate`) VALUES (1,'US Dollar','$','2',',','.','USD',0,1.0000),(2,'British Pound','£','2',',','.','GBP',0,1.0000),(3,'Euro','€','2','.',',','EUR',0,1.0000),(4,'South African Rand','R','2',',','.','ZAR',0,1.0000),(5,'Danish Krone','kr','2','.',',','DKK',1,1.0000),(6,'Israeli Shekel','NIS ','2',',','.','ILS',0,1.0000),(7,'Swedish Krona','kr','2','.',',','SEK',1,1.0000),(8,'Kenyan Shilling','KSh ','2',',','.','KES',0,1.0000),(9,'Canadian Dollar','C$','2',',','.','CAD',0,1.0000),(10,'Philippine Peso','P ','2',',','.','PHP',0,1.0000),(11,'Indian Rupee','Rs. ','2',',','.','INR',0,1.0000),(12,'Australian Dollar','$','2',',','.','AUD',0,1.0000),(13,'Singapore Dollar','','2',',','.','SGD',0,1.0000),(14,'Norske Kroner','kr','2','.',',','NOK',1,1.0000),(15,'New Zealand Dollar','$','2',',','.','NZD',0,1.0000),(16,'Vietnamese Dong','','0','.',',','VND',0,1.0000),(17,'Swiss Franc','','2','\'','.','CHF',0,1.0000),(18,'Guatemalan Quetzal','Q','2',',','.','GTQ',0,1.0000),(19,'Malaysian Ringgit','RM','2',',','.','MYR',0,1.0000),(20,'Brazilian Real','R$','2','.',',','BRL',0,1.0000),(21,'Thai Baht','','2',',','.','THB',0,1.0000),(22,'Nigerian Naira','','2',',','.','NGN',0,1.0000),(23,'Argentine Peso','$','2','.',',','ARS',0,1.0000),(24,'Bangladeshi Taka','Tk','2',',','.','BDT',0,1.0000),(25,'United Arab Emirates Dirham','DH ','2',',','.','AED',0,1.0000),(26,'Hong Kong Dollar','','2',',','.','HKD',0,1.0000),(27,'Indonesian Rupiah','Rp','2',',','.','IDR',0,1.0000),(28,'Mexican Peso','$','2',',','.','MXN',0,1.0000),(29,'Egyptian Pound','E£','2',',','.','EGP',0,1.0000),(30,'Colombian Peso','$','2','.',',','COP',0,1.0000),(31,'West African Franc','CFA ','2',',','.','XOF',0,1.0000),(32,'Chinese Renminbi','RMB ','2',',','.','CNY',0,1.0000),(33,'Rwandan Franc','RF ','2',',','.','RWF',0,1.0000),(34,'Tanzanian Shilling','TSh ','2',',','.','TZS',0,1.0000),(35,'Netherlands Antillean Guilder','','2','.',',','ANG',0,1.0000),(36,'Trinidad and Tobago Dollar','TT$','2',',','.','TTD',0,1.0000),(37,'East Caribbean Dollar','EC$','2',',','.','XCD',0,1.0000),(38,'Ghanaian Cedi','','2',',','.','GHS',0,1.0000),(39,'Bulgarian Lev','','2',' ','.','BGN',0,1.0000),(40,'Aruban Florin','Afl. ','2',' ','.','AWG',0,1.0000),(41,'Turkish Lira','TL ','2','.',',','TRY',0,1.0000),(42,'Romanian New Leu','','2',',','.','RON',0,1.0000),(43,'Croatian Kuna','kn','2','.',',','HRK',1,1.0000),(44,'Saudi Riyal','','2',',','.','SAR',0,1.0000),(45,'Japanese Yen','¥','0',',','.','JPY',0,1.0000),(46,'Maldivian Rufiyaa','','2',',','.','MVR',0,1.0000),(47,'Costa Rican Colón','','2',',','.','CRC',0,1.0000),(48,'Pakistani Rupee','Rs ','0',',','.','PKR',0,1.0000),(49,'Polish Zloty','zł','2',' ',',','PLN',1,1.0000),(50,'Sri Lankan Rupee','LKR','2',',','.','LKR',1,1.0000),(51,'Czech Koruna','Kč','2',' ',',','CZK',1,1.0000),(52,'Uruguayan Peso','$','2','.',',','UYU',0,1.0000),(53,'Namibian Dollar','$','2',',','.','NAD',0,1.0000),(54,'Tunisian Dinar','','2',',','.','TND',0,1.0000),(55,'Russian Ruble','','2',',','.','RUB',0,1.0000),(56,'Mozambican Metical','MT','2','.',',','MZN',1,1.0000),(57,'Omani Rial','','2',',','.','OMR',0,1.0000),(58,'Ukrainian Hryvnia','','2',',','.','UAH',0,1.0000),(59,'Macanese Pataca','MOP$','2',',','.','MOP',0,1.0000),(60,'Taiwan New Dollar','NT$','2',',','.','TWD',0,1.0000),(61,'Dominican Peso','RD$','2',',','.','DOP',0,1.0000),(62,'Chilean Peso','$','0','.',',','CLP',0,1.0000),(63,'Icelandic Króna','kr','2','.',',','ISK',1,1.0000),(64,'Papua New Guinean Kina','K','2',',','.','PGK',0,1.0000),(65,'Jordanian Dinar','','2',',','.','JOD',0,1.0000),(66,'Myanmar Kyat','K','2',',','.','MMK',0,1.0000),(67,'Peruvian Sol','S/ ','2',',','.','PEN',0,1.0000),(68,'Botswana Pula','P','2',',','.','BWP',0,1.0000),(69,'Hungarian Forint','Ft','0','.',',','HUF',1,1.0000),(70,'Ugandan Shilling','USh ','2',',','.','UGX',0,1.0000),(71,'Barbadian Dollar','$','2',',','.','BBD',0,1.0000),(72,'Brunei Dollar','B$','2',',','.','BND',0,1.0000),(73,'Georgian Lari','','2',' ',',','GEL',0,1.0000),(74,'Qatari Riyal','QR','2',',','.','QAR',0,1.0000),(75,'Honduran Lempira','L','2',',','.','HNL',0,1.0000),(76,'Surinamese Dollar','SRD','2','.',',','SRD',0,1.0000),(77,'Bahraini Dinar','BD ','2',',','.','BHD',0,1.0000),(78,'Venezuelan Bolivars','Bs.','2','.',',','VES',0,1.0000),(79,'South Korean Won','W ','2','.',',','KRW',0,1.0000),(80,'Moroccan Dirham','MAD ','2',',','.','MAD',0,1.0000),(81,'Jamaican Dollar','$','2',',','.','JMD',0,1.0000),(82,'Angolan Kwanza','Kz','2','.',',','AOA',0,1.0000),(83,'Haitian Gourde','G','2',',','.','HTG',0,1.0000),(84,'Zambian Kwacha','ZK','2',',','.','ZMW',0,1.0000),(85,'Nepalese Rupee','Rs. ','2',',','.','NPR',0,1.0000),(86,'CFP Franc','','2',',','.','XPF',0,1.0000),(87,'Mauritian Rupee','Rs','2',',','.','MUR',0,1.0000),(88,'Cape Verdean Escudo','','2','.','$','CVE',0,1.0000),(89,'Kuwaiti Dinar','KD','2',',','.','KWD',0,1.0000),(90,'Algerian Dinar','DA','2',',','.','DZD',0,1.0000),(91,'Macedonian Denar','ден','2',',','.','MKD',0,1.0000),(92,'Fijian Dollar','FJ$','2',',','.','FJD',0,1.0000),(93,'Bolivian Boliviano','Bs','2',',','.','BOB',0,1.0000),(94,'Albanian Lek','L ','2','.',',','ALL',0,1.0000),(95,'Serbian Dinar','din','2','.',',','RSD',0,1.0000),(96,'Lebanese Pound','LL ','2',',','.','LBP',0,1.0000),(97,'Armenian Dram','','2',',','.','AMD',0,1.0000),(98,'Azerbaijan Manat','','2',',','.','AZN',0,1.0000),(99,'Bosnia and Herzegovina Convertible Mark','','2',',','.','BAM',0,1.0000),(100,'Belarusian Ruble','','2',',','.','BYN',0,1.0000),(101,'Gibraltar Pound','GIP','2',',','.','',0,1.0000),(102,'Gibraltar Pound','','2',',','.','GIP',0,1.0000),(103,'Moldovan Leu','','2',',','.','MDL',0,1.0000),(104,'Kazakhstani Tenge','','2',',','.','KZT',0,1.0000),(105,'Ethiopian Birr','','2',',','.','ETB',0,1.0000);
/*!40000 ALTER TABLE `currencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `date_formats`
--

DROP TABLE IF EXISTS `date_formats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `date_formats` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `format` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `picker_format` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `format_moment` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `format_dart` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `date_formats`
--

LOCK TABLES `date_formats` WRITE;
/*!40000 ALTER TABLE `date_formats` DISABLE KEYS */;
INSERT INTO `date_formats` (`id`, `format`, `picker_format`, `format_moment`, `format_dart`) VALUES (1,'d/M/Y','dd/M/yyyy','DD/MMM/YYYY','dd/MMM/yyyy'),(2,'d-M-Y','dd-M-yyyy','DD-MMM-YYYY','dd-MMM-yyyy'),(3,'d/F/Y','dd/MM/yyyy','DD/MMMM/YYYY','dd/MMMM/yyyy'),(4,'d-F-Y','dd-MM-yyyy','DD-MMMM-YYYY','dd-MMMM-yyyy'),(5,'M j, Y','M d, yyyy','MMM D, YYYY','MMM d, yyyy'),(6,'F j, Y','MM d, yyyy','MMMM D, YYYY','MMMM d, yyyy'),(7,'D M j, Y','D MM d, yyyy','ddd MMM Do, YYYY','EEE MMM d, yyyy'),(8,'Y-m-d','yyyy-mm-dd','YYYY-MM-DD','yyyy-MM-dd'),(9,'d-m-Y','dd-mm-yyyy','DD-MM-YYYY','dd-MM-yyyy'),(10,'m/d/Y','mm/dd/yyyy','MM/DD/YYYY','MM/dd/yyyy'),(11,'d.m.Y','dd.mm.yyyy','D.MM.YYYY','dd.MM.yyyy'),(12,'j. M. Y','d. M. yyyy','DD. MMM. YYYY','d. MMM. yyyy'),(13,'j. F Y','d. MM yyyy','DD. MMMM YYYY','d. MMMM yyyy');
/*!40000 ALTER TABLE `date_formats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `datetime_formats`
--

DROP TABLE IF EXISTS `datetime_formats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `datetime_formats` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `format` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `format_moment` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `format_dart` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `datetime_formats`
--

LOCK TABLES `datetime_formats` WRITE;
/*!40000 ALTER TABLE `datetime_formats` DISABLE KEYS */;
INSERT INTO `datetime_formats` (`id`, `format`, `format_moment`, `format_dart`) VALUES (1,'d/M/Y g:i a','DD/MMM/YYYY h:mm:ss a','dd/MMM/yyyy h:mm a'),(2,'d-M-Y g:i a','DD-MMM-YYYY h:mm:ss a','dd-MMM-yyyy h:mm a'),(3,'d/F/Y g:i a','DD/MMMM/YYYY h:mm:ss a','dd/MMMM/yyyy h:mm a'),(4,'d-F-Y g:i a','DD-MMMM-YYYY h:mm:ss a','dd-MMMM-yyyy h:mm a'),(5,'M j, Y g:i a','MMM D, YYYY h:mm:ss a','MMM d, yyyy h:mm a'),(6,'F j, Y g:i a','MMMM D, YYYY h:mm:ss a','MMMM d, yyyy h:mm a'),(7,'D M jS, Y g:i a','ddd MMM Do, YYYY h:mm:ss a','EEE MMM d, yyyy h:mm a'),(8,'Y-m-d g:i a','YYYY-MM-DD h:mm:ss a','yyyy-MM-dd h:mm a'),(9,'d-m-Y g:i a','DD-MM-YYYY h:mm:ss a','dd-MM-yyyy h:mm a'),(10,'m/d/Y g:i a','MM/DD/YYYY h:mm:ss a','MM/dd/yyyy h:mm a'),(11,'d.m.Y g:i a','D.MM.YYYY h:mm:ss a','dd.MM.yyyy h:mm a'),(12,'j. M. Y g:i a','DD. MMM. YYYY h:mm:ss a','d. MMM. yyyy h:mm a'),(13,'j. F Y g:i a','DD. MMMM YYYY h:mm:ss a','d. MMMM yyyy h:mm a');
/*!40000 ALTER TABLE `datetime_formats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `db_servers`
--

DROP TABLE IF EXISTS `db_servers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `db_servers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `db_servers`
--

LOCK TABLES `db_servers` WRITE;
/*!40000 ALTER TABLE `db_servers` DISABLE KEYS */;
INSERT INTO `db_servers` (`id`, `name`) VALUES (1,'db-ninja-1'),(2,'db-ninja-2');
/*!40000 ALTER TABLE `db_servers` 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 = utf8 */;
CREATE TABLE `documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `public_id` int(10) unsigned DEFAULT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `invoice_id` int(10) unsigned DEFAULT NULL,
  `expense_id` int(10) unsigned DEFAULT NULL,
  `path` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `preview` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `disk` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `hash` varchar(40) COLLATE utf8_unicode_ci NOT NULL,
  `size` int(10) unsigned NOT NULL,
  `width` int(10) unsigned DEFAULT NULL,
  `height` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `is_default` tinyint(1) DEFAULT '0',
  `is_proposal` tinyint(1) NOT NULL DEFAULT '0',
  `document_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `documents_account_id_public_id_unique` (`account_id`,`public_id`),
  UNIQUE KEY `documents_document_key_unique` (`document_key`),
  KEY `documents_user_id_foreign` (`user_id`),
  KEY `documents_invoice_id_foreign` (`invoice_id`),
  KEY `documents_expense_id_foreign` (`expense_id`),
  CONSTRAINT `documents_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `documents_expense_id_foreign` FOREIGN KEY (`expense_id`) REFERENCES `expenses` (`id`) ON DELETE CASCADE,
  CONSTRAINT `documents_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
  CONSTRAINT `documents_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `documents`
--

LOCK TABLES `documents` WRITE;
/*!40000 ALTER TABLE `documents` DISABLE KEYS */;
INSERT INTO `documents` (`id`, `public_id`, `account_id`, `user_id`, `invoice_id`, `expense_id`, `path`, `preview`, `name`, `type`, `disk`, `hash`, `size`, `width`, `height`, `created_at`, `updated_at`, `is_default`, `is_proposal`, `document_key`) VALUES (1,1,1,1,11,NULL,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/69a6dfb5947e70bf18dd83445ab7f248753fccbe.pdf','','1001150_MOBTEL HUB_20190626-100601.pdf','pdf','documents','69a6dfb5947e70bf18dd83445ab7f248753fccbe',55261,NULL,NULL,'2019-07-13 07:41:25','2019-07-13 07:43:11',0,0,NULL),(2,2,1,1,11,NULL,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/c18022582ca0f1233c260d016d7b120a814c9564.xlsx','','Rides Listing - MOBTEL HUB May 2019.xlsx','xlsx','documents','c18022582ca0f1233c260d016d7b120a814c9564',12261,NULL,NULL,'2019-07-13 07:41:42','2019-07-13 07:43:11',0,0,NULL),(3,3,1,1,12,NULL,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/92e0b754eb3b5b61c673241d32b6b07fa4ebdeb7.pdf','','INV_2337919380001_296230_190630.pdf','pdf','documents','92e0b754eb3b5b61c673241d32b6b07fa4ebdeb7',97117,NULL,NULL,'2019-07-13 08:02:27','2019-07-13 08:02:57',0,0,NULL),(4,4,1,1,10,NULL,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/cea6bc624ec501d424610cf6f1a9ca8f49b0f8c0.pdf','','web development deposit.pdf','pdf','documents','cea6bc624ec501d424610cf6f1a9ca8f49b0f8c0',14453,NULL,NULL,'2019-07-13 08:09:32','2019-07-13 08:10:04',0,0,NULL),(5,5,1,1,NULL,9,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/875e24158de03afa4626c87ba49b51e8ba73cf80.pdf','','1000016 MOBTEL HUB.pdf','pdf','documents','875e24158de03afa4626c87ba49b51e8ba73cf80',55079,NULL,NULL,'2019-07-13 08:37:32','2019-07-13 08:37:59',0,0,NULL),(6,6,1,1,NULL,9,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/981bcb53af19a1c841e4369ac87ba5020ee54547.pdf','','Payment_Grab.pdf','pdf','documents','981bcb53af19a1c841e4369ac87ba5020ee54547',14480,NULL,NULL,'2019-07-13 08:37:38','2019-07-13 08:37:59',0,0,NULL),(7,7,1,1,NULL,9,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/72738cdc77d16f1d61ce3cfd47588d92b2637249.xlsx','','Rides Listing - MOBTEL HUB June 2018.xlsx','xlsx','documents','72738cdc77d16f1d61ce3cfd47588d92b2637249',10202,NULL,NULL,'2019-07-13 08:37:43','2019-07-13 08:37:59',0,0,NULL),(8,8,1,1,NULL,10,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/51c1bb52f7edebd18e073e974322e236c53c0f9b.pdf','','1000115 Mobtel Hub.pdf','pdf','documents','51c1bb52f7edebd18e073e974322e236c53c0f9b',54986,NULL,NULL,'2019-07-13 08:40:22','2019-07-13 08:40:51',0,0,NULL),(9,9,1,1,NULL,10,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/b97d4398844a75b6bbfe3120ef75d5f7fa5e01d2.pdf','','Receipt.pdf','pdf','documents','b97d4398844a75b6bbfe3120ef75d5f7fa5e01d2',14480,NULL,NULL,'2019-07-13 08:40:23','2019-07-13 08:40:51',0,0,NULL),(10,10,1,1,NULL,10,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/47e82bc67cc0fc427b535f73478628c163265da1.xlsx','','Rides Listing - MOBTEL HUB July 2018.xlsx','xlsx','documents','47e82bc67cc0fc427b535f73478628c163265da1',16241,NULL,NULL,'2019-07-13 08:40:25','2019-07-13 08:40:51',0,0,NULL),(11,11,1,1,NULL,11,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/0ffc8137df653b25473d4faae268d4b1e3b82b89.pdf','','1000205 MOBTEL HUB.pdf','pdf','documents','0ffc8137df653b25473d4faae268d4b1e3b82b89',55102,NULL,NULL,'2019-07-13 08:43:55','2019-07-13 08:44:10',0,0,NULL),(12,12,1,1,NULL,11,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/a6feedf57fb855e1d6be90bbf1a175cfa737e9fa.pdf','','Grab_1000205.pdf','pdf','documents','a6feedf57fb855e1d6be90bbf1a175cfa737e9fa',14479,NULL,NULL,'2019-07-13 08:43:57','2019-07-13 08:44:10',0,0,NULL),(13,13,1,1,NULL,11,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/57be5c949b9490b448fa74344e3e1c81f2e0a9c3.xlsx','','Rides Listing - MOBTEL HUB August 2018.xlsx','xlsx','documents','57be5c949b9490b448fa74344e3e1c81f2e0a9c3',13219,NULL,NULL,'2019-07-13 08:43:59','2019-07-13 08:44:10',0,0,NULL),(14,14,1,1,NULL,12,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/7abca46dee9b15968af74af840f7791f8b755c72.pdf','','1000319 MOBTEL HUB.pdf','pdf','documents','7abca46dee9b15968af74af840f7791f8b755c72',55105,NULL,NULL,'2019-07-13 08:47:09','2019-07-13 08:47:22',0,0,NULL),(15,15,1,1,NULL,12,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/4a5973097b8c57127a5dec96346f1e5c3e0baa8b.pdf','','Grab_Payment_INV1000319_MOBTELHUB.pdf','pdf','documents','4a5973097b8c57127a5dec96346f1e5c3e0baa8b',14456,NULL,NULL,'2019-07-13 08:47:10','2019-07-13 08:47:22',0,0,NULL),(16,16,1,1,NULL,12,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/53d32cf3184fa3f0e59297e887d34e12f967cf7a.xlsx','','Rides Listing - MOBTEL HUB September 2018.xlsx','xlsx','documents','53d32cf3184fa3f0e59297e887d34e12f967cf7a',15397,NULL,NULL,'2019-07-13 08:47:11','2019-07-13 08:47:22',0,0,NULL),(17,17,1,1,NULL,13,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/3e6b8d4864ed5739a7463e03dc2654ca2631c0de.pdf','','1000417 MOBTEL HUB.pdf','pdf','documents','3e6b8d4864ed5739a7463e03dc2654ca2631c0de',55105,NULL,NULL,'2019-07-13 08:52:53','2019-07-13 08:53:01',0,0,NULL),(18,18,1,1,NULL,13,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/8cf368d4b0feb187e22419a1d86f403177eabfaa.pdf','','Receipt (19).pdf','pdf','documents','8cf368d4b0feb187e22419a1d86f403177eabfaa',14480,NULL,NULL,'2019-07-13 08:52:54','2019-07-13 08:53:01',0,0,NULL),(19,19,1,1,NULL,13,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/b0dbf868441e62c06135f4647f63791d2989a252.xlsx','','Rides Listing - MOBTEL HUB October 2018.xlsx','xlsx','documents','b0dbf868441e62c06135f4647f63791d2989a252',11549,NULL,NULL,'2019-07-13 08:52:56','2019-07-13 08:53:01',0,0,NULL),(20,20,1,1,NULL,14,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/1fe283d3fb267cca15b1092f8f34af8f7c678ff0.pdf','','1000487 MOBTEL HUB.pdf','pdf','documents','1fe283d3fb267cca15b1092f8f34af8f7c678ff0',55104,NULL,NULL,'2019-07-13 08:55:50','2019-07-13 08:56:00',0,0,NULL),(21,21,1,1,NULL,14,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/fd08cac739ce8915df5846bb0921d3d7c302d3fd.pdf','','1000487_MOBTELHUB_Payment Advice.pdf','pdf','documents','fd08cac739ce8915df5846bb0921d3d7c302d3fd',14479,NULL,NULL,'2019-07-13 08:55:52','2019-07-13 08:56:00',0,0,NULL),(22,22,1,1,NULL,14,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/14944fdeb7e8f6ee0845782a090c4f697ac8746d.xlsx','','Rides Listing - MOBTEL HUB November 2018.xlsx','xlsx','documents','14944fdeb7e8f6ee0845782a090c4f697ac8746d',12533,NULL,NULL,'2019-07-13 08:55:53','2019-07-13 08:56:00',0,0,NULL),(23,23,1,1,NULL,15,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/7851c0aa64d07ee38524d97977438b23395d818f.pdf','','1000594 MOBTEL HUB.pdf','pdf','documents','7851c0aa64d07ee38524d97977438b23395d818f',55244,NULL,NULL,'2019-07-13 08:57:47','2019-07-13 08:58:07',0,0,NULL),(24,24,1,1,NULL,15,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/2f0a04d24b27ffa5e5047a4d73823f5608c589c2.pdf','','1000594_MOBTEL HUB_Payment Advice.pdf','pdf','documents','2f0a04d24b27ffa5e5047a4d73823f5608c589c2',14479,NULL,NULL,'2019-07-13 08:57:48','2019-07-13 08:58:07',0,0,NULL),(25,25,1,1,NULL,15,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/a6e0855afa00b81a98f701bbcd557fa39086d81c.xlsx','','Rides Listing - MOBTEL HUB December 2018.xlsx','xlsx','documents','a6e0855afa00b81a98f701bbcd557fa39086d81c',11265,NULL,NULL,'2019-07-13 08:57:49','2019-07-13 08:58:07',0,0,NULL),(26,26,1,1,NULL,16,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/844064d4b40e6a6077eb42cbc6b4e26cadefb42e.pdf','','1000711_MOBTEL HUB_20190222-010202.pdf','pdf','documents','844064d4b40e6a6077eb42cbc6b4e26cadefb42e',55235,NULL,NULL,'2019-07-13 09:00:41','2019-07-13 09:01:01',0,0,NULL),(27,27,1,1,NULL,16,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/8b0aef81c850632dd7291ed6f0e3bca4859fc542.jpeg','xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/8b0aef81c850632dd7291ed6f0e3bca4859fc542.jpeg.x300.jpeg','1000711_MOBTEL HUB_Payment Advice.jpg','jpeg','documents','8b0aef81c850632dd7291ed6f0e3bca4859fc542',121234,1080,1134,'2019-07-13 09:00:46','2019-07-13 09:01:01',0,0,NULL),(28,28,1,1,NULL,16,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/807461e93b6c08ff2dc543dc962f4beaf069b776.xlsx','','Rides Listing - MOBTEL HUB January 2019.xlsx','xlsx','documents','807461e93b6c08ff2dc543dc962f4beaf069b776',10444,NULL,NULL,'2019-07-13 09:00:48','2019-07-13 09:01:01',0,0,NULL),(29,29,1,1,NULL,17,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/d0130f82c3a4b9df3b089709155ce754e9995180.pdf','','1000774_MOBTEL HUB_20190314-070312.pdf','pdf','documents','d0130f82c3a4b9df3b089709155ce754e9995180',55220,NULL,NULL,'2019-07-13 09:02:38','2019-07-13 09:03:01',0,0,NULL),(30,30,1,1,NULL,17,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/f1fb0c8bf2af430d9afe6cf28bb7ae5ad6657863.pdf','','Grab_MOBTEL_HUB.pdf','pdf','documents','f1fb0c8bf2af430d9afe6cf28bb7ae5ad6657863',14479,NULL,NULL,'2019-07-13 09:02:39','2019-07-13 09:03:01',0,0,NULL),(31,31,1,1,NULL,17,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/d49e782bfca98e88b4b3a12dfb259946041508ac.xlsx','','Rides Listing - MOBTEL HUB February 2019.xlsx','xlsx','documents','d49e782bfca98e88b4b3a12dfb259946041508ac',11362,NULL,NULL,'2019-07-13 09:02:40','2019-07-13 09:03:01',0,0,NULL),(32,32,1,1,NULL,18,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/c4ddb6f65df36d0894c1c2b2edc8510343378c09.pdf','','1000879_MOBTEL HUB_20190411-090423.pdf','pdf','documents','c4ddb6f65df36d0894c1c2b2edc8510343378c09',55215,NULL,NULL,'2019-07-13 09:05:16','2019-07-13 09:05:25',0,0,NULL),(33,33,1,1,NULL,18,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/55e07dc0b29a20efca3b4ae44be1223113bf3000.pdf','','Grab_Payment.pdf','pdf','documents','55e07dc0b29a20efca3b4ae44be1223113bf3000',14482,NULL,NULL,'2019-07-13 09:05:17','2019-07-13 09:05:25',0,0,NULL),(34,34,1,1,NULL,18,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/7f5353e7f526c18febce0bfb81e6ab3b1f4cc5e4.xlsx','','Rides Listing - MOBTEL HUB March 2019.xlsx','xlsx','documents','7f5353e7f526c18febce0bfb81e6ab3b1f4cc5e4',13118,NULL,NULL,'2019-07-13 09:05:18','2019-07-13 09:05:25',0,0,NULL),(35,35,1,1,NULL,19,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/e795b8292ec8f2db56f354f3e7a66f6469bb91ac.pdf','','1000995_MOBTEL HUB_20190521-030520.pdf','pdf','documents','e795b8292ec8f2db56f354f3e7a66f6469bb91ac',55370,NULL,NULL,'2019-07-13 09:10:43','2019-07-13 09:11:05',0,0,NULL),(36,36,1,1,NULL,19,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/5a180ed89762e71640ca06141b3b88dc8c85a573.pdf','','Grab_April.pdf','pdf','documents','5a180ed89762e71640ca06141b3b88dc8c85a573',4999,NULL,NULL,'2019-07-13 09:10:44','2019-07-13 09:11:05',0,0,NULL),(37,37,1,1,NULL,19,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/ea1917923069585ea40029f40928e9810273144f.pdf','','Grab_Payment.pdf','pdf','documents','ea1917923069585ea40029f40928e9810273144f',14529,NULL,NULL,'2019-07-13 09:10:47','2019-07-13 09:11:05',0,0,NULL),(38,38,1,1,NULL,19,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/712ede685b8c1656c25604fa565c65e7675a8624.xlsx','','Rides Listing - MOBTEL HUB April 2019.xlsx','xlsx','documents','712ede685b8c1656c25604fa565c65e7675a8624',14502,NULL,NULL,'2019-07-13 09:10:50','2019-07-13 09:11:05',0,0,NULL),(39,39,1,1,NULL,8,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/69a6dfb5947e70bf18dd83445ab7f248753fccbe.pdf','','1001150_MOBTEL HUB_20190626-100601.pdf','pdf','documents','69a6dfb5947e70bf18dd83445ab7f248753fccbe',55261,NULL,NULL,'2019-07-13 09:13:48','2019-07-13 09:13:57',0,0,NULL),(40,40,1,1,NULL,8,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/94528126f69a0b1f2cf5d8f929ce6371bcf7fcb9.pdf','','Grab_May.pdf','pdf','documents','94528126f69a0b1f2cf5d8f929ce6371bcf7fcb9',4997,NULL,NULL,'2019-07-13 09:13:49','2019-07-13 09:13:57',0,0,NULL),(41,41,1,1,NULL,8,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/c18022582ca0f1233c260d016d7b120a814c9564.xlsx','','Rides Listing - MOBTEL HUB May 2019.xlsx','xlsx','documents','c18022582ca0f1233c260d016d7b120a814c9564',12261,NULL,NULL,'2019-07-13 09:13:50','2019-07-13 09:13:57',0,0,NULL),(42,42,1,1,NULL,20,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/879aababf3b23649fde59fd67865a27f8cf5e4fd.pdf','','2018 - November.pdf','pdf','documents','879aababf3b23649fde59fd67865a27f8cf5e4fd',604889,NULL,NULL,'2019-07-13 09:31:40','2019-07-13 09:31:44',0,0,NULL),(43,43,1,1,NULL,21,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/fcd6ed47c766743af29f1dc1c5f763d20d67c73d.pdf','','2018 - December (1).pdf','pdf','documents','fcd6ed47c766743af29f1dc1c5f763d20d67c73d',576930,NULL,NULL,'2019-07-13 09:34:45','2019-07-13 09:35:08',0,0,NULL),(44,44,1,1,NULL,21,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/ee2d6598c4fd8a5135848bf1b41e4228160e3d71.pdf','','2018 - December.pdf','pdf','documents','ee2d6598c4fd8a5135848bf1b41e4228160e3d71',602717,NULL,NULL,'2019-07-13 09:35:00','2019-07-13 09:35:08',0,0,NULL),(45,45,1,1,NULL,4,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/92e0b754eb3b5b61c673241d32b6b07fa4ebdeb7.pdf','','30 Jun 2019.pdf','pdf','documents','92e0b754eb3b5b61c673241d32b6b07fa4ebdeb7',97117,NULL,NULL,'2019-07-13 21:34:10','2019-07-13 21:34:18',0,0,NULL),(46,46,1,1,NULL,23,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/11d1ceb9f1c01a04e44e002f01fe5f5c1901fe3a.pdf','','30 Sep 2018.pdf','pdf','documents','11d1ceb9f1c01a04e44e002f01fe5f5c1901fe3a',194419,NULL,NULL,'2019-07-13 21:40:46','2019-07-13 21:40:52',0,0,NULL),(47,47,1,1,NULL,24,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/534b01a8ceb3ad74549d90d4b005b43fbfcd8033.pdf','','14 Oct 2018.pdf','pdf','documents','534b01a8ceb3ad74549d90d4b005b43fbfcd8033',197316,NULL,NULL,'2019-07-13 21:42:09','2019-07-13 21:42:13',0,0,NULL),(48,48,1,1,NULL,25,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/5327f65d0fffb6483afe7e180091df17656d0c36.pdf','','28 Oct 2018.pdf','pdf','documents','5327f65d0fffb6483afe7e180091df17656d0c36',200732,NULL,NULL,'2019-07-13 21:43:33','2019-07-13 21:43:36',0,0,NULL),(49,49,1,1,NULL,26,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/4a4548b6713b4f50354cb6d0a4feb537c1c50f5b.pdf','','11 Nov 2018.pdf','pdf','documents','4a4548b6713b4f50354cb6d0a4feb537c1c50f5b',198792,NULL,NULL,'2019-07-13 21:44:41','2019-07-13 21:44:48',0,0,NULL),(50,50,1,1,NULL,27,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/482e84e49bcda9b0a08590147fda6d23610bbc84.pdf','','25 Nov 2018.pdf','pdf','documents','482e84e49bcda9b0a08590147fda6d23610bbc84',197102,NULL,NULL,'2019-07-13 21:45:48','2019-07-13 21:46:01',0,0,NULL),(51,51,1,1,NULL,28,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/f292efa534e2a0efe224c2dc48fa29a7a7c614aa.pdf','','09 Dec 2018.pdf','pdf','documents','f292efa534e2a0efe224c2dc48fa29a7a7c614aa',196813,NULL,NULL,'2019-07-13 21:47:10','2019-07-13 21:47:18',0,0,NULL),(52,52,1,1,NULL,29,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/07e90ea9cf4fb51ed8db2ba50c2457b4b8b837b5.pdf','','23 Dec 2018.pdf','pdf','documents','07e90ea9cf4fb51ed8db2ba50c2457b4b8b837b5',197655,NULL,NULL,'2019-07-13 21:50:12','2019-07-13 21:50:16',0,0,NULL),(53,53,1,1,NULL,30,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/e5d1fa6bbc9387c51ffcbd1be24c27e5bdc0f697.pdf','','06 Jan 2019.pdf','pdf','documents','e5d1fa6bbc9387c51ffcbd1be24c27e5bdc0f697',199851,NULL,NULL,'2019-07-13 21:53:50','2019-07-13 21:53:53',0,0,NULL),(54,54,1,1,NULL,31,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/89bf46f22adfb5a98f0fd4cc9e898c1b2d637db3.pdf','','20 Jan 2019.pdf','pdf','documents','89bf46f22adfb5a98f0fd4cc9e898c1b2d637db3',197918,NULL,NULL,'2019-07-13 21:55:14','2019-07-13 21:55:19',0,0,NULL),(55,55,1,1,NULL,32,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/a89fbc6ffb098a6437f967673d3c81887abf2f9a.pdf','','03 Feb 2019.pdf','pdf','documents','a89fbc6ffb098a6437f967673d3c81887abf2f9a',201465,NULL,NULL,'2019-07-13 21:56:23','2019-07-13 21:56:27',0,0,NULL),(56,56,1,1,NULL,33,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/7709b2bbb9d0b04c5e0fcb649a8ea23b063ddbbc.pdf','','17 Feb 2019.pdf','pdf','documents','7709b2bbb9d0b04c5e0fcb649a8ea23b063ddbbc',197369,NULL,NULL,'2019-07-13 21:57:38','2019-07-13 21:57:41',0,0,NULL),(57,57,1,1,NULL,34,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/f5f0a9f19567e6936bec616afb7c90c3a8fca38b.pdf','','31 Mar 2019.pdf','pdf','documents','f5f0a9f19567e6936bec616afb7c90c3a8fca38b',204151,NULL,NULL,'2019-07-13 21:59:00','2019-07-13 21:59:20',0,0,NULL),(58,58,1,1,NULL,35,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/e03aaebf2e36a92dfdaab036699c273b9cdd5463.pdf','','28 Apr 2019.pdf','pdf','documents','e03aaebf2e36a92dfdaab036699c273b9cdd5463',202593,NULL,NULL,'2019-07-13 22:00:15','2019-07-13 22:00:24',0,0,NULL),(59,59,1,2,NULL,40,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/629016e1f66b15ae9d5bbe5c4cdc2776f9dbc185.pdf','','1001255_MOBTEL HUB_20190716-100716.pdf','pdf','documents','629016e1f66b15ae9d5bbe5c4cdc2776f9dbc185',55248,NULL,NULL,'2019-07-18 03:32:53','2019-07-18 03:33:22',0,0,NULL),(60,60,1,2,NULL,40,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/ba3a29c109b628f607a91831017f619a7c7d23ae.xlsx','','Rides Listing - MOBTEL HUB June 2019.xlsx','xlsx','documents','ba3a29c109b628f607a91831017f619a7c7d23ae',12441,NULL,NULL,'2019-07-18 03:33:11','2019-07-18 03:33:22',0,0,NULL),(61,61,1,1,NULL,41,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/629016e1f66b15ae9d5bbe5c4cdc2776f9dbc185.pdf','','1001255_MOBTEL HUB_20190716-100716.pdf','pdf','documents','629016e1f66b15ae9d5bbe5c4cdc2776f9dbc185',55248,NULL,NULL,'2019-07-18 03:37:19','2019-07-18 03:37:29',0,0,NULL),(62,62,1,1,NULL,41,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/ba3a29c109b628f607a91831017f619a7c7d23ae.xlsx','','Rides Listing - MOBTEL HUB June 2019.xlsx','xlsx','documents','ba3a29c109b628f607a91831017f619a7c7d23ae',12441,NULL,NULL,'2019-07-18 03:37:26','2019-07-18 03:37:29',0,0,NULL),(63,63,1,1,NULL,4,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/03861e51f700644e9e92a6aa29bb53e8a10b7d5a.jpeg','xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/03861e51f700644e9e92a6aa29bb53e8a10b7d5a.jpeg.x300.jpeg','Resit.jpg','jpeg','documents','03861e51f700644e9e92a6aa29bb53e8a10b7d5a',117773,606,806,'2019-07-31 08:07:44','2019-07-31 08:07:55',0,0,NULL),(64,64,1,1,NULL,6,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/22a85033702a2072762eb9ed43f1ee3050aa4a91.pdf','','receipt.pdf','pdf','documents','22a85033702a2072762eb9ed43f1ee3050aa4a91',50807,NULL,NULL,'2019-07-31 08:14:21','2019-07-31 08:16:02',0,0,NULL),(65,65,1,1,NULL,44,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/56160a34b2aa1d73a7d34b6eca0663bf6ccc0733.pdf','','2019 - July.pdf','pdf','documents','56160a34b2aa1d73a7d34b6eca0663bf6ccc0733',598426,NULL,NULL,'2019-08-06 12:36:47','2019-08-06 12:36:58',0,0,NULL),(66,66,1,1,NULL,45,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/b4614cc30d197fd0c43e7028a8fd3fef3af0f02b.pdf','','35300003139 - 28 Jul 2019 - Radius Fuel Cards.pdf','pdf','documents','b4614cc30d197fd0c43e7028a8fd3fef3af0f02b',96079,NULL,NULL,'2019-08-06 12:37:35','2019-08-06 12:37:38',0,0,NULL),(67,67,1,1,NULL,49,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/242b720707e5d64520cda64c796d6116245511fb.xlsx','','Rides Listing - MOBTEL HUB August 2019.xlsx','xlsx','documents','242b720707e5d64520cda64c796d6116245511fb',17584,NULL,NULL,'2019-10-08 17:10:53','2019-10-08 17:11:22',0,0,NULL),(68,68,1,1,NULL,49,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/c591572beb82b30792a42b5e2d52fafc5a0dc768.pdf','','1001477_MOBTEL HUB_20190917-140938.pdf','pdf','documents','c591572beb82b30792a42b5e2d52fafc5a0dc768',55251,NULL,NULL,'2019-10-08 17:11:07','2019-10-08 17:11:22',0,0,NULL),(69,69,1,1,NULL,50,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/47ab684dc312e16618e2b67a33a56741a904228d.pdf','','1001360_MOBTEL HUB_20190816-080816.pdf','pdf','documents','47ab684dc312e16618e2b67a33a56741a904228d',55246,NULL,NULL,'2019-10-08 17:14:45','2019-10-08 17:15:19',0,0,NULL),(70,70,1,1,NULL,50,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/060d2f529d66734265e8dfef13846164820121ed.xlsx','','Rides Listing - MOBTEL HUB July 2019.xlsx','xlsx','documents','060d2f529d66734265e8dfef13846164820121ed',18004,NULL,NULL,'2019-10-08 17:14:47','2019-10-08 17:15:19',0,0,NULL),(71,71,1,1,NULL,51,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/1665aedee9e6812e7cc59ff7cad8747419ca62e5.pdf','','2019 - September.pdf','pdf','documents','1665aedee9e6812e7cc59ff7cad8747419ca62e5',601025,NULL,NULL,'2019-10-08 17:54:49','2019-10-08 17:55:08',0,0,NULL),(72,72,1,1,NULL,52,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/3a12a2ecf113ffddea2b981ca6ece622ebf1aeeb.pdf','','2019 - August.pdf','pdf','documents','3a12a2ecf113ffddea2b981ca6ece622ebf1aeeb',590892,NULL,NULL,'2019-10-08 17:58:12','2019-10-08 17:58:26',0,0,NULL),(73,73,1,1,NULL,50,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/f19b2d7ebb2afa68da00a905076ce4c1e8221bc6.pdf','','INV_1001477_Aug_2019.pdf','pdf','documents','f19b2d7ebb2afa68da00a905076ce4c1e8221bc6',5007,NULL,NULL,'2019-12-10 03:58:44','2019-12-10 03:59:28',0,0,NULL),(74,74,1,1,NULL,57,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/5bf148f2ccb02e7d3a1f16caa916b54a651d7ff1.pdf','','Celcom_28_Nov.pdf','pdf','documents','5bf148f2ccb02e7d3a1f16caa916b54a651d7ff1',247103,NULL,NULL,'2019-12-11 03:05:44','2019-12-11 03:07:24',0,0,NULL),(75,75,1,1,NULL,57,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/03ae028062cf93b1352b99158d6b23e73b3f756f.pdf','','2019 - November.pdf','pdf','documents','03ae028062cf93b1352b99158d6b23e73b3f756f',598102,NULL,NULL,'2019-12-11 03:06:17','2019-12-11 03:07:24',0,0,NULL),(76,76,1,1,NULL,58,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/20bb0554a60c7f748795d809014080b0fb5d8f6c.pdf','','2019 - October.pdf','pdf','documents','20bb0554a60c7f748795d809014080b0fb5d8f6c',603028,NULL,NULL,'2019-12-11 03:10:48','2019-12-11 03:10:53',0,0,NULL),(77,77,1,1,NULL,59,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/ea63c39351d8743e674d452af19be48e94a7b09e.pdf','','1001888_MOBTEL HUB.pdf','pdf','documents','ea63c39351d8743e674d452af19be48e94a7b09e',55091,NULL,NULL,'2019-12-27 09:48:07','2019-12-27 09:48:13',0,0,NULL),(78,78,1,1,NULL,59,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/038c6048cd2aee692c78bb53de5b52782fad352e.xlsx','','Rides Listing - MOBTEL HUB November 2019.xlsx','xlsx','documents','038c6048cd2aee692c78bb53de5b52782fad352e',18458,NULL,NULL,'2019-12-27 09:48:08','2019-12-27 09:48:13',0,0,NULL),(79,79,1,1,NULL,60,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/b4614cc30d197fd0c43e7028a8fd3fef3af0f02b.pdf','','INV_2337919380001_382532_190728.pdf','pdf','documents','b4614cc30d197fd0c43e7028a8fd3fef3af0f02b',96079,NULL,NULL,'2019-12-27 09:53:14','2019-12-27 09:54:08',0,0,NULL),(80,80,1,1,NULL,62,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/3c4fdf9ddd13ff3d71480e0197ea511cb983a0d3.pdf','','Electronic ticket receipt, December 26 for MR MUHAMMAD ALIF BIN ARMIA.pdf','pdf','documents','3c4fdf9ddd13ff3d71480e0197ea511cb983a0d3',39435,NULL,NULL,'2019-12-27 10:56:34','2019-12-27 10:58:07',0,0,NULL),(81,81,1,1,NULL,62,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/dd4adf010e890a9697853e6d07f79cd6cbf50be4.pdf','','Travel Reservation December 26 for MR MUHAMMAD ALIF BIN ARMIA.pdf','pdf','documents','dd4adf010e890a9697853e6d07f79cd6cbf50be4',30303,NULL,NULL,'2019-12-27 10:56:36','2019-12-27 10:58:07',0,0,NULL),(82,82,1,1,NULL,62,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/00e1a729bca6deb5d41fe5ea2ec5f660c6fc0b42.pdf','','MR MUHAMMAD ALIF BIN ARMIA.pdf','pdf','documents','00e1a729bca6deb5d41fe5ea2ec5f660c6fc0b42',36147,NULL,NULL,'2019-12-27 10:56:37','2019-12-27 10:58:07',0,0,NULL),(83,83,1,1,NULL,63,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/a329a0c2eba739f2a74da586f0cb0e4e1ba05bb4.pdf','','Celcom.pdf','pdf','documents','a329a0c2eba739f2a74da586f0cb0e4e1ba05bb4',247019,NULL,NULL,'2020-01-01 08:24:43','2020-01-01 08:24:49',0,0,NULL),(84,84,1,1,NULL,66,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/fd57a86e199d97eb84bd7a21b7d12f98f5e36127.pdf','','Invoice-323868.pdf','pdf','documents','fd57a86e199d97eb84bd7a21b7d12f98f5e36127',15152,NULL,NULL,'2021-08-20 09:01:25','2021-08-20 09:01:55',0,0,NULL),(85,85,1,1,NULL,67,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/fda451c24d0db9df2835aaf76bf6dd9f32aee9ed.pdf','','307929695.pdf','pdf','documents','fda451c24d0db9df2835aaf76bf6dd9f32aee9ed',50846,NULL,NULL,'2021-08-20 09:29:55','2021-08-20 09:30:05',0,0,NULL),(86,86,1,1,NULL,67,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/25302b3cf62878f9fdf5e307507378cfdc546690.pdf','','20210628.pdf','pdf','documents','25302b3cf62878f9fdf5e307507378cfdc546690',522846,NULL,NULL,'2021-08-20 09:29:56','2021-08-20 09:30:05',0,0,NULL),(87,87,1,1,NULL,68,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/b0b416cdccff9c23ac7a71b4d5bf4bf3d1529bc2.pdf','','20210628.pdf','pdf','documents','b0b416cdccff9c23ac7a71b4d5bf4bf3d1529bc2',510967,NULL,NULL,'2021-08-20 09:34:51','2021-08-20 09:34:57',0,0,NULL),(88,88,1,1,NULL,68,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/9bdf907024ed80be825aef4644a9edc1cdfa1992.pdf','','521699603.pdf','pdf','documents','9bdf907024ed80be825aef4644a9edc1cdfa1992',50847,NULL,NULL,'2021-08-20 09:34:52','2021-08-20 09:34:57',0,0,NULL),(89,89,1,1,NULL,69,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/2866e4f8939c52938bc9ff330026f83228125dbd.pdf','','20210728.pdf','pdf','documents','2866e4f8939c52938bc9ff330026f83228125dbd',526557,NULL,NULL,'2021-08-20 09:36:32','2021-08-20 09:36:38',0,0,NULL),(90,90,1,1,NULL,70,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/9bcc13a23b2107e662b8114de8a5efea8de763b1.pdf','','20210728.pdf','pdf','documents','9bcc13a23b2107e662b8114de8a5efea8de763b1',511017,NULL,NULL,'2021-08-20 09:37:51','2021-08-20 09:37:56',0,0,NULL),(91,91,1,1,NULL,66,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/af847d310f00f37ba0fd61bd3d7abc69289f2839.pdf','','Receipt_Invoice #323868.pdf','pdf','documents','af847d310f00f37ba0fd61bd3d7abc69289f2839',4987,NULL,NULL,'2021-08-20 14:10:50','2021-08-20 14:10:52',0,0,NULL),(92,92,1,1,NULL,70,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/80ae26e095c5cb9d78d02cd6bf6c2a77fe61abf4.pdf','','Celcom Wireless 27th Aug 21.pdf','pdf','documents','80ae26e095c5cb9d78d02cd6bf6c2a77fe61abf4',4969,NULL,NULL,'2021-09-03 00:45:37','2021-09-03 00:46:19',0,0,NULL),(93,93,1,1,NULL,74,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/ab1b100c65ae442e4e00d56e70f7a8648cde9e62.pdf','','1006505_INV_MOBTEL HUB.pdf','pdf','documents','ab1b100c65ae442e4e00d56e70f7a8648cde9e62',55408,NULL,NULL,'2021-09-03 00:50:03','2021-09-03 00:50:16',0,0,NULL),(94,94,1,1,NULL,74,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/0f1588e50f8718001dfb6ed4712e8b1533de4371.pdf','','Grab 1006505.pdf','pdf','documents','0f1588e50f8718001dfb6ed4712e8b1533de4371',4918,NULL,NULL,'2021-09-03 00:50:09','2021-09-03 00:50:17',0,0,NULL),(95,95,1,1,NULL,75,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/72df4559048b6a5479701fc9bd41d517d8b4dd9e.pdf','','1006161_INV_MOBTEL HUB.pdf','pdf','documents','72df4559048b6a5479701fc9bd41d517d8b4dd9e',55317,NULL,NULL,'2021-09-03 00:52:54','2021-09-03 00:54:44',0,0,NULL),(96,96,1,1,NULL,75,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/479d998443393e4ca97989e169e94e2644370db6.pdf','','Grab 1006161.pdf','pdf','documents','479d998443393e4ca97989e169e94e2644370db6',4922,NULL,NULL,'2021-09-03 00:54:16','2021-09-03 00:54:44',0,0,NULL),(97,97,1,1,NULL,76,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/bb502e4e9b880fe69b38cadfac1f7424333adb4d.pdf','','Receipt.pdf','pdf','documents','bb502e4e9b880fe69b38cadfac1f7424333adb4d',14571,NULL,NULL,'2021-09-03 00:56:14','2021-09-03 00:56:18',0,0,NULL),(98,98,1,1,NULL,60,'xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/0dda4c7ea8c2678a43d40ab3b0e57a3f8c24d36a.jpeg','xHoej5C4paOkBvBo6hjRtoTjkcvAn7LA/0dda4c7ea8c2678a43d40ab3b0e57a3f8c24d36a.jpeg.x300.jpeg','9261E209-0048-41A9-A664-D0C3C4E87151.jpeg','jpeg','documents','0dda4c7ea8c2678a43d40ab3b0e57a3f8c24d36a',203634,1059,968,'2021-10-08 08:25:41','2021-10-08 08:26:08',0,0,NULL);
/*!40000 ALTER TABLE `documents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `expense_categories`
--

DROP TABLE IF EXISTS `expense_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `expense_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `public_id` int(10) unsigned NOT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `expense_categories_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `expense_categories_account_id_index` (`account_id`),
  KEY `expense_categories_public_id_index` (`public_id`),
  KEY `expense_categories_user_id_foreign` (`user_id`),
  CONSTRAINT `expense_categories_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `expense_categories_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `expense_categories`
--

LOCK TABLES `expense_categories` WRITE;
/*!40000 ALTER TABLE `expense_categories` DISABLE KEYS */;
INSERT INTO `expense_categories` (`id`, `user_id`, `account_id`, `created_at`, `updated_at`, `deleted_at`, `name`, `public_id`, `is_deleted`) VALUES (1,1,1,'2018-04-15 05:19:44','2018-04-15 05:19:44',NULL,'Fuel',1,0),(2,1,1,'2018-04-15 05:21:20','2021-08-20 09:42:47',NULL,'Food & Beverage',2,0),(3,1,1,'2019-07-13 03:55:09','2019-07-13 03:55:09',NULL,'Mobile Phone',3,0),(4,1,1,'2019-07-13 03:55:44','2019-07-13 03:55:44',NULL,'Land Transportation',4,0),(5,1,1,'2019-07-13 03:56:12','2019-07-13 03:56:12',NULL,'Air Transportation',5,0),(6,1,1,'2019-07-13 07:19:37','2019-07-13 07:19:37',NULL,'Server Hosting',6,0),(7,1,1,'2019-07-13 10:34:41','2019-07-13 10:34:41',NULL,'3rd Party Expenses / Support',7,0),(13,1,1,'2019-12-27 10:31:38','2019-12-27 10:31:38',NULL,'Banking Service Charges',8,0),(14,1,1,'2021-08-20 09:33:22','2021-08-20 09:33:22',NULL,'Internet Services',9,0),(15,1,1,'2021-08-20 14:11:44','2021-08-20 14:11:44',NULL,'SSM License Fee',10,0);
/*!40000 ALTER TABLE `expense_categories` 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 = utf8 */;
CREATE TABLE `expenses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `vendor_id` int(10) unsigned DEFAULT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `invoice_id` int(10) unsigned DEFAULT NULL,
  `client_id` int(10) unsigned DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `amount` decimal(13,2) NOT NULL,
  `exchange_rate` decimal(13,4) NOT NULL DEFAULT '1.0000',
  `expense_date` date DEFAULT NULL,
  `private_notes` text COLLATE utf8_unicode_ci NOT NULL,
  `public_notes` text COLLATE utf8_unicode_ci NOT NULL,
  `invoice_currency_id` int(10) unsigned NOT NULL,
  `should_be_invoiced` tinyint(1) NOT NULL DEFAULT '1',
  `public_id` int(10) unsigned NOT NULL,
  `transaction_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `bank_id` int(10) unsigned DEFAULT NULL,
  `expense_currency_id` int(10) unsigned DEFAULT NULL,
  `expense_category_id` int(10) unsigned DEFAULT NULL,
  `tax_name1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `tax_rate1` decimal(13,3) NOT NULL,
  `tax_name2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `tax_rate2` decimal(13,3) NOT NULL,
  `payment_type_id` int(10) unsigned DEFAULT NULL,
  `payment_date` date DEFAULT NULL,
  `transaction_reference` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `invoice_documents` tinyint(1) NOT NULL DEFAULT '1',
  `recurring_expense_id` int(10) unsigned DEFAULT NULL,
  `custom_value1` text COLLATE utf8_unicode_ci,
  `custom_value2` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `expenses_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `expenses_user_id_foreign` (`user_id`),
  KEY `expenses_account_id_index` (`account_id`),
  KEY `expenses_public_id_index` (`public_id`),
  KEY `expenses_expense_currency_id_index` (`expense_currency_id`),
  KEY `expenses_invoice_currency_id_foreign` (`invoice_currency_id`),
  KEY `expenses_expense_category_id_index` (`expense_category_id`),
  KEY `expenses_payment_type_id_foreign` (`payment_type_id`),
  KEY `expenses_client_id_foreign` (`client_id`),
  CONSTRAINT `expenses_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `expenses_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
  CONSTRAINT `expenses_expense_category_id_foreign` FOREIGN KEY (`expense_category_id`) REFERENCES `expense_categories` (`id`) ON DELETE CASCADE,
  CONSTRAINT `expenses_expense_currency_id_foreign` FOREIGN KEY (`expense_currency_id`) REFERENCES `currencies` (`id`),
  CONSTRAINT `expenses_invoice_currency_id_foreign` FOREIGN KEY (`invoice_currency_id`) REFERENCES `currencies` (`id`),
  CONSTRAINT `expenses_payment_type_id_foreign` FOREIGN KEY (`payment_type_id`) REFERENCES `payment_types` (`id`),
  CONSTRAINT `expenses_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `expenses`
--

LOCK TABLES `expenses` WRITE;
/*!40000 ALTER TABLE `expenses` DISABLE KEYS */;
INSERT INTO `expenses` (`id`, `created_at`, `updated_at`, `deleted_at`, `account_id`, `vendor_id`, `user_id`, `invoice_id`, `client_id`, `is_deleted`, `amount`, `exchange_rate`, `expense_date`, `private_notes`, `public_notes`, `invoice_currency_id`, `should_be_invoiced`, `public_id`, `transaction_id`, `bank_id`, `expense_currency_id`, `expense_category_id`, `tax_name1`, `tax_rate1`, `tax_name2`, `tax_rate2`, `payment_type_id`, `payment_date`, `transaction_reference`, `invoice_documents`, `recurring_expense_id`, `custom_value1`, `custom_value2`) VALUES (1,'2018-04-15 05:19:44','2018-04-15 05:57:56','2018-04-15 05:57:56',1,1,1,NULL,1,1,100.00,1.0000,'2018-04-14','','',19,0,1,NULL,NULL,19,1,'',0.000,'',0.000,NULL,NULL,'',0,NULL,NULL,NULL),(2,'2018-04-15 05:21:20','2018-04-15 05:58:04','2018-04-15 05:58:04',1,2,1,NULL,1,1,15.00,1.0000,'2018-04-14','','',19,0,2,NULL,NULL,19,2,'',0.000,'',0.000,NULL,NULL,'',0,NULL,NULL,NULL),(3,'2019-07-13 03:50:18','2019-07-13 07:37:20',NULL,1,1,1,NULL,4,0,547.03,1.0000,'2019-05-26','','',19,0,3,NULL,NULL,19,1,'',0.000,'',0.000,2,'2019-06-28','0597',0,NULL,NULL,NULL),(4,'2019-07-13 03:52:13','2019-07-31 08:08:02',NULL,1,1,1,NULL,4,0,963.34,1.0000,'2019-06-30','','',19,0,4,NULL,NULL,19,1,'',0.000,'',0.000,3,'2019-07-31','CIMB CDM SEQ 1133 - RM970.00',1,NULL,NULL,NULL),(5,'2019-07-13 03:54:30','2019-07-13 22:00:58','2019-07-13 22:00:58',1,1,1,NULL,4,1,788.19,1.0000,'2019-04-28','','',19,0,5,NULL,NULL,19,1,'',0.000,'',0.000,2,'2019-05-29','5416',1,NULL,NULL,NULL),(6,'2019-07-13 04:27:12','2019-07-31 08:16:02',NULL,1,4,1,NULL,4,0,693.92,1.0000,'2019-07-29','','',19,0,6,NULL,NULL,19,3,'',0.000,'',0.000,13,'2019-07-31','Credit Card Enterprise Portal',1,NULL,NULL,NULL),(7,'2019-07-13 07:21:59','2019-07-13 07:31:59',NULL,1,5,1,NULL,4,0,200.00,1.0000,'2019-03-17','','',19,0,7,NULL,NULL,19,6,'',0.000,'',0.000,2,'2019-03-17','Maybank Mobtel Hub',1,NULL,NULL,NULL),(8,'2019-07-13 07:35:30','2019-07-31 08:10:15',NULL,1,3,1,NULL,4,0,588.95,1.0000,'2019-06-26','','',19,0,8,NULL,NULL,19,4,'',0.000,'',0.000,2,'2019-07-31','Transfer',1,NULL,NULL,NULL),(9,'2019-07-13 08:37:58','2019-07-13 08:37:58',NULL,1,3,1,NULL,4,0,116.55,1.0000,'2018-07-19','','',19,0,9,NULL,NULL,19,4,'',0.000,'',0.000,2,'2018-08-14','Maybank - 5726483329',0,NULL,NULL,NULL),(10,'2019-07-13 08:40:51','2019-07-13 08:40:51',NULL,1,3,1,NULL,4,0,753.06,1.0000,'2018-08-10','','',19,0,10,NULL,NULL,19,4,'',0.000,'',0.000,2,'2018-08-28','Maybank - 5756742420',0,NULL,NULL,NULL),(11,'2019-07-13 08:44:10','2019-07-13 08:44:10',NULL,1,3,1,NULL,4,0,620.13,1.0000,'2018-09-12','','',19,0,11,NULL,NULL,19,4,'',0.000,'',0.000,2,'2018-10-01','Maybank - 5843444181',0,NULL,NULL,NULL),(12,'2019-07-13 08:47:22','2019-07-13 08:47:22',NULL,1,3,1,NULL,4,0,962.96,1.0000,'2018-10-16','','',19,0,12,NULL,NULL,19,4,'',0.000,'',0.000,2,'2018-10-30','Maybank - 5912791672',0,NULL,NULL,NULL),(13,'2019-07-13 08:53:01','2019-07-13 08:53:01',NULL,1,3,1,NULL,4,0,155.40,1.0000,'2018-11-16','','',19,0,13,NULL,NULL,19,4,'',0.000,'',0.000,2,'2018-11-30','Maybank - 5993879993',0,NULL,NULL,NULL),(14,'2019-07-13 08:55:13','2019-07-13 08:56:00',NULL,1,3,1,NULL,4,0,820.58,1.0000,'2018-12-20','','',19,0,14,NULL,NULL,19,4,'',0.000,'',0.000,2,'2019-01-02','Maybank - 6085451085',1,NULL,NULL,NULL),(15,'2019-07-13 08:58:07','2019-07-13 08:58:07',NULL,1,3,1,NULL,4,0,408.14,1.0000,'2019-01-18','','',19,0,15,NULL,NULL,19,4,'',0.000,'',0.000,2,'2019-01-31','Maybank - 6167283212',0,NULL,NULL,NULL),(16,'2019-07-13 09:01:00','2019-07-13 09:01:00',NULL,1,3,1,NULL,4,0,121.80,1.0000,'2019-02-21','','',19,0,16,NULL,NULL,19,4,'',0.000,'',0.000,2,'2019-02-28','Maybank - 6244738632',0,NULL,NULL,NULL),(17,'2019-07-13 09:03:01','2019-07-13 09:03:01',NULL,1,3,1,NULL,4,0,301.35,1.0000,'2019-03-13','','',19,0,17,NULL,NULL,19,4,'',0.000,'',0.000,2,'2019-03-30','Maybank - 6333358429',0,NULL,NULL,NULL),(18,'2019-07-13 09:05:25','2019-07-13 09:05:25',NULL,1,3,1,NULL,4,0,1080.24,1.0000,'2019-04-10','','',19,0,18,NULL,NULL,19,4,'',0.000,'',0.000,2,'2019-04-30','Maybank - 6422618720',0,NULL,NULL,NULL),(19,'2019-07-13 09:11:05','2019-07-13 09:11:05',NULL,1,3,1,NULL,4,0,1176.44,1.0000,'2019-05-15','','',19,0,19,NULL,NULL,19,4,'',0.000,'',0.000,2,'2019-05-30','Maybank - 6517002947, 6622193840',0,NULL,NULL,NULL),(20,'2019-07-13 09:31:44','2019-07-13 22:10:53',NULL,1,4,1,NULL,4,0,380.00,1.0000,'2018-11-18','','',19,0,20,NULL,NULL,19,3,'',0.000,'',0.000,13,'2018-11-30','Credit Card - MYR 380',1,NULL,NULL,NULL),(21,'2019-07-13 09:35:08','2019-07-13 22:20:16',NULL,1,4,1,NULL,4,0,873.80,1.0000,'2018-12-28','','',19,0,21,NULL,NULL,19,3,'',0.000,'',0.000,2,'2019-01-30','Transfer',1,NULL,NULL,NULL),(22,'2019-07-13 09:36:34','2019-07-13 09:37:41','2019-07-13 09:37:41',1,4,1,NULL,4,1,1443.00,1.0000,'2019-01-28','','',19,0,22,NULL,NULL,19,3,'',0.000,'',0.000,2,'2019-01-31','',0,NULL,NULL,NULL),(23,'2019-07-13 21:40:51','2019-07-13 21:40:51',NULL,1,1,1,NULL,4,0,48.45,1.0000,'2018-09-30','','',19,0,23,NULL,NULL,19,1,'',0.000,'',0.000,3,'2018-09-30','CDM',0,NULL,NULL,NULL),(24,'2019-07-13 21:42:12','2019-07-13 21:42:12',NULL,1,1,1,NULL,4,0,394.72,1.0000,'2018-10-14','','',19,0,24,NULL,NULL,19,1,'',0.000,'',0.000,3,'2018-10-14','CDM',0,NULL,NULL,NULL),(25,'2019-07-13 21:43:36','2019-07-13 21:43:36',NULL,1,1,1,NULL,4,0,691.73,1.0000,'2018-10-28','','',19,0,25,NULL,NULL,19,1,'',0.000,'',0.000,3,'2018-10-28','CDM',0,NULL,NULL,NULL),(26,'2019-07-13 21:44:48','2019-07-13 21:44:48',NULL,1,1,1,NULL,4,0,374.37,1.0000,'2018-11-11','','',19,0,26,NULL,NULL,19,1,'',0.000,'',0.000,3,'2018-11-11','CDM',0,NULL,NULL,NULL),(27,'2019-07-13 21:46:01','2019-07-13 21:46:01',NULL,1,1,1,NULL,4,0,297.90,1.0000,'2018-11-25','','',19,0,27,NULL,NULL,19,1,'',0.000,'',0.000,3,'2018-11-25','CDM',0,NULL,NULL,NULL),(28,'2019-07-13 21:47:18','2019-07-13 21:47:18',NULL,1,1,1,NULL,4,0,194.89,1.0000,'2018-12-09','','',19,0,28,NULL,NULL,19,1,'',0.000,'',0.000,3,'2018-12-09','CDM',0,NULL,NULL,NULL),(29,'2019-07-13 21:50:16','2019-07-13 21:50:16',NULL,1,1,1,NULL,4,0,235.66,1.0000,'2018-12-23','','',19,0,29,NULL,NULL,19,1,'',0.000,'',0.000,3,'2018-12-23','CDM',0,NULL,NULL,NULL),(30,'2019-07-13 21:53:53','2019-07-13 21:53:53',NULL,1,1,1,NULL,4,0,396.32,1.0000,'2019-01-06','','',19,0,30,NULL,NULL,19,1,'',0.000,'',0.000,3,'2019-01-06','CDM',0,NULL,NULL,NULL),(31,'2019-07-13 21:55:18','2019-07-13 21:55:18',NULL,1,1,1,NULL,4,0,390.84,1.0000,'2019-01-20','','',19,0,31,NULL,NULL,19,1,'',0.000,'',0.000,3,'2019-01-20','CDM',0,NULL,NULL,NULL),(32,'2019-07-13 21:56:27','2019-07-13 21:56:27',NULL,1,1,1,NULL,4,0,586.53,1.0000,'2019-02-03','','',19,0,32,NULL,NULL,19,1,'',0.000,'',0.000,3,'2019-02-03','CDM',0,NULL,NULL,NULL),(33,'2019-07-13 21:57:41','2019-07-13 21:57:41',NULL,1,1,1,NULL,4,0,259.33,1.0000,'2019-02-17','','',19,0,33,NULL,NULL,19,1,'',0.000,'',0.000,3,'2019-02-17','CDM',0,NULL,NULL,NULL),(34,'2019-07-13 21:59:18','2019-07-13 21:59:18',NULL,1,1,1,NULL,4,0,946.72,1.0000,'2019-03-31','','',19,0,34,NULL,NULL,19,1,'',0.000,'',0.000,3,'2019-03-31','CDM',0,NULL,NULL,NULL),(35,'2019-07-13 22:00:23','2019-07-13 22:00:23',NULL,1,1,1,NULL,4,0,788.19,1.0000,'2019-04-28','','',19,0,35,NULL,NULL,19,1,'',0.000,'',0.000,3,'2019-04-28','CDM',0,NULL,NULL,NULL),(36,'2019-07-13 22:13:38','2019-07-13 22:13:38',NULL,1,4,1,NULL,4,0,817.93,1.0000,'2019-03-28','','',19,0,36,NULL,NULL,19,3,'',0.000,'',0.000,2,'2019-03-28','Transfer',0,NULL,NULL,NULL),(37,'2019-07-13 22:14:19','2019-07-13 22:14:19',NULL,1,4,1,NULL,4,0,585.37,1.0000,'2019-04-30','','',19,0,37,NULL,NULL,19,3,'',0.000,'',0.000,2,'2019-04-30','Transfer',0,NULL,NULL,NULL),(38,'2019-07-13 22:15:04','2019-07-13 22:15:04',NULL,1,4,1,NULL,4,0,573.35,1.0000,'2019-05-28','','',19,0,38,NULL,NULL,19,3,'',0.000,'',0.000,2,'2019-05-28','Transfer',0,NULL,NULL,NULL),(39,'2019-07-13 22:15:43','2019-07-31 08:13:04',NULL,1,4,1,NULL,4,0,595.38,1.0000,'2019-05-28','','',19,0,39,NULL,NULL,19,3,'',0.000,'',0.000,2,'2019-05-28','Transfer',1,NULL,NULL,NULL),(40,'2019-07-18 03:33:21','2019-07-18 03:35:03','2019-07-18 03:35:03',1,3,2,NULL,4,1,508.41,1.0000,'2019-07-16','','',19,1,40,NULL,NULL,19,NULL,'',0.000,'',0.000,NULL,NULL,'',1,NULL,NULL,NULL),(41,'2019-07-18 03:37:29','2019-07-31 08:18:31',NULL,1,3,1,NULL,4,0,508.41,1.0000,'2019-07-16','','',19,0,41,NULL,NULL,19,4,'',0.000,'',0.000,2,'2019-07-31','Transfer Half Payment RM254.21',1,NULL,NULL,NULL),(44,'2019-08-06 12:32:42','2019-08-30 21:22:02',NULL,1,4,1,NULL,4,0,639.00,1.0000,'2019-07-28','','',19,0,42,NULL,NULL,19,3,'',0.000,'',0.000,2,'2019-07-29','Celcom Portal',1,NULL,NULL,NULL),(45,'2019-08-06 12:34:23','2019-12-27 09:52:11','2019-12-27 09:52:11',1,1,1,NULL,4,1,286.38,1.0000,'2019-07-28','','',19,0,43,NULL,NULL,19,1,'',0.000,'',0.000,3,'2019-07-29','CDM CIMB',1,NULL,NULL,NULL),(48,'2019-10-03 09:14:54','2019-10-03 09:14:54',NULL,1,5,1,NULL,2,0,159.00,1.0000,'2019-10-03','','',19,0,44,NULL,NULL,19,6,'',0.000,'',0.000,2,'2019-10-03','MyClear FPX',0,NULL,NULL,NULL),(49,'2019-10-08 17:11:22','2019-12-10 04:02:43',NULL,1,3,1,NULL,4,0,1473.99,1.0000,'2019-09-17','','',19,0,45,NULL,NULL,19,4,'',0.000,'',0.000,2,'2019-09-28','Bank Transfer',1,NULL,NULL,NULL),(50,'2019-10-08 17:15:19','2019-12-10 04:03:06',NULL,1,3,1,NULL,4,0,1246.46,1.0000,'2019-08-16','','',19,0,46,NULL,NULL,19,4,'',0.000,'',0.000,2,'2019-08-28','Bank Transfer',1,NULL,NULL,NULL),(51,'2019-10-08 17:55:08','2019-10-08 17:55:08',NULL,1,4,1,NULL,4,0,642.98,1.0000,'2019-09-28','','',19,0,47,NULL,NULL,19,3,'',0.000,'',0.000,13,'2019-09-28','Business Portal - Visa / Mastercard Update',0,NULL,NULL,NULL),(52,'2019-10-08 17:58:26','2019-10-08 17:58:26',NULL,1,4,1,NULL,4,0,639.00,1.0000,'2019-08-28','','',19,0,48,NULL,NULL,19,3,'',0.000,'',0.000,13,'2019-08-28','Payment via CPK - Credit Card',0,NULL,NULL,NULL),(55,'2019-12-10 03:53:03','2019-12-10 04:03:53',NULL,1,3,1,NULL,4,0,1115.63,1.0000,'2019-10-18','','',19,0,49,NULL,NULL,19,4,'',0.000,'',0.000,2,'2019-10-28','Bank Transfer',1,NULL,NULL,NULL),(56,'2019-12-10 03:54:37','2021-08-19 09:59:55',NULL,1,3,1,NULL,4,0,1751.19,1.0000,'2019-11-20','','',19,0,50,NULL,NULL,19,4,'',0.000,'',0.000,2,'2021-08-19','Transfer',0,NULL,NULL,NULL),(57,'2019-12-11 03:07:24','2019-12-11 03:08:16',NULL,1,4,1,NULL,4,0,734.92,1.0000,'2019-11-28','','',19,0,51,NULL,NULL,19,3,'',0.000,'',0.000,13,'2019-11-28','Via Celcom Business Portal',1,NULL,NULL,NULL),(58,'2019-12-11 03:10:53','2019-12-11 03:11:22',NULL,1,4,1,NULL,4,0,764.37,1.0000,'2019-10-28','','',19,0,52,NULL,NULL,19,3,'',0.000,'',0.000,13,'2019-10-28','Via Celcom Business Portal',1,NULL,NULL,NULL),(59,'2019-12-27 09:47:54','2021-08-19 10:00:24',NULL,1,3,1,NULL,4,0,1399.34,1.0000,'2019-12-20','','',19,0,53,NULL,NULL,19,4,'',0.000,'',0.000,2,'2021-08-19','Transfer',0,NULL,NULL,NULL),(60,'2019-12-27 09:50:28','2021-10-08 08:26:08',NULL,1,1,1,NULL,4,0,286.38,1.0000,'2019-07-28','','No Payment due account banned / terminated without agreement.',19,0,54,NULL,NULL,19,1,'',0.000,'',0.000,2,'2021-10-08','Maybank2u - 0762099009',1,NULL,NULL,NULL),(61,'2019-12-27 10:32:42','2019-12-27 10:34:15',NULL,1,9,1,NULL,4,0,10.00,1.0000,'2019-12-26','','HALF-YEARLY SERVICE CHARGE',19,0,55,NULL,NULL,19,13,'',0.000,'',0.000,4,'2019-12-26','HALF-YEARLY SERVICE CHARGE',1,NULL,NULL,NULL),(62,'2019-12-27 10:56:20','2019-12-27 11:00:22',NULL,1,10,1,NULL,4,0,118.00,1.0000,'2019-12-26','','TGG - SZB',19,0,56,NULL,NULL,19,5,'',0.000,'',0.000,13,'2019-12-26','Self Paid',1,NULL,NULL,NULL),(63,'2020-01-01 08:23:27','2020-01-01 08:24:49',NULL,1,4,1,NULL,4,0,764.38,1.0000,'2019-12-28','','',19,0,57,NULL,NULL,19,3,'',0.000,'',0.000,13,'2019-12-30','P20191230145443444',1,NULL,NULL,NULL),(65,'2020-03-28 23:43:08','2021-08-19 09:59:21',NULL,1,5,1,NULL,4,0,200.00,1.0000,'2020-03-28','','',19,0,58,NULL,NULL,19,6,'',0.000,'',0.000,2,'2021-08-19','Transfer',0,1,NULL,NULL),(66,'2021-08-20 09:01:55','2021-08-20 14:10:52',NULL,1,5,1,NULL,2,0,160.00,1.0000,'2021-08-20','Add funds','',19,0,59,NULL,NULL,19,6,'',0.000,'',0.000,2,'2021-08-20','Maybank Transfer Invoice #323868',0,NULL,NULL,NULL),(67,'2021-08-20 09:30:05','2021-08-20 09:30:05',NULL,1,4,1,NULL,4,0,531.50,1.0000,'2021-06-28','','',19,0,60,NULL,NULL,19,3,'',0.000,'',0.000,2,'2021-06-27','Business Portal - FPX Update',0,NULL,NULL,NULL),(68,'2021-08-20 09:34:57','2021-08-20 09:34:57',NULL,1,4,1,NULL,4,0,159.00,1.0000,'2021-06-28','','',19,0,61,NULL,NULL,19,14,'',0.000,'',0.000,2,'2021-06-27','Business Portal - FPX Update',0,NULL,NULL,NULL),(69,'2021-08-20 09:36:38','2021-08-20 09:36:38',NULL,1,4,1,NULL,4,0,530.00,1.0000,'2021-07-28','','',19,1,62,NULL,NULL,19,3,'',0.000,'',0.000,NULL,NULL,'',0,NULL,NULL,NULL),(70,'2021-08-20 09:37:55','2021-09-03 00:46:19',NULL,1,4,1,NULL,4,0,159.00,1.0000,'2021-07-28','','',19,0,63,NULL,NULL,19,14,'',0.000,'',0.000,2,'2021-09-03','JomPay 88SAK99S',0,NULL,NULL,NULL),(71,'2021-08-20 14:28:53','2021-08-20 14:28:53',NULL,1,12,1,NULL,4,0,70.00,1.0000,'2021-07-01','','',19,0,64,NULL,NULL,19,15,'',0.000,'',0.000,2,'2021-07-01','Maybank Transfer',0,NULL,NULL,NULL),(72,'2021-09-03 00:47:06','2021-09-03 00:47:06',NULL,1,4,1,NULL,4,0,530.00,1.0000,'2021-08-28','','',19,1,65,NULL,NULL,19,3,'',0.000,'',0.000,NULL,NULL,'',0,NULL,NULL,NULL),(73,'2021-09-03 00:48:06','2021-09-03 00:48:06',NULL,1,4,1,NULL,4,0,159.00,1.0000,'2021-08-28','','',19,1,66,NULL,NULL,19,3,'',0.000,'',0.000,NULL,NULL,'',0,NULL,NULL,NULL),(74,'2021-09-03 00:50:16','2021-09-03 00:50:16',NULL,1,3,1,NULL,4,0,748.42,1.0000,'2021-08-13','','',19,0,67,NULL,NULL,19,4,'',0.000,'',0.000,2,'2021-09-01','Maybank Transfer 0511072680',0,NULL,NULL,NULL),(75,'2021-09-03 00:54:43','2021-09-03 00:54:43',NULL,1,3,1,NULL,4,0,1137.36,1.0000,'2021-07-08','','',19,0,68,NULL,NULL,19,4,'',0.000,'',0.000,2,'2021-09-03','Maybank Transfer 0267378466',0,NULL,NULL,NULL),(76,'2021-09-03 00:56:17','2021-09-03 00:56:17',NULL,1,1,1,NULL,4,0,1.00,1.0000,'2021-08-17','','',19,0,69,NULL,NULL,19,1,'',0.000,'',0.000,2,'2021-08-17','Maybank Transfer 0410306215',0,NULL,NULL,NULL);
/*!40000 ALTER TABLE `expenses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `failed_jobs`
--

DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `failed_jobs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `connection` text COLLATE utf8_unicode_ci NOT NULL,
  `queue` text COLLATE utf8_unicode_ci NOT NULL,
  `payload` longtext COLLATE utf8_unicode_ci NOT NULL,
  `exception` longtext COLLATE utf8_unicode_ci NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `failed_jobs`
--

LOCK TABLES `failed_jobs` WRITE;
/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fonts`
--

DROP TABLE IF EXISTS `fonts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fonts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `folder` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `css_stack` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `css_weight` smallint(6) NOT NULL DEFAULT '400',
  `google_font` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `normal` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `bold` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `italics` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `bolditalics` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `sort_order` int(10) unsigned NOT NULL DEFAULT '10000',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fonts`
--

LOCK TABLES `fonts` WRITE;
/*!40000 ALTER TABLE `fonts` DISABLE KEYS */;
INSERT INTO `fonts` (`id`, `name`, `folder`, `css_stack`, `css_weight`, `google_font`, `normal`, `bold`, `italics`, `bolditalics`, `sort_order`) VALUES (1,'Roboto','roboto','\'Roboto\', Arial, Helvetica, sans-serif',400,'Roboto:400,700,900,100','Roboto-Regular.ttf','Roboto-Medium.ttf','Roboto-Italic.ttf','Roboto-Italic.ttf',100),(2,'Abril Fatface','abril_fatface','\'Abril Fatface\', Georgia, serif',400,'Abril+Fatface','AbrilFatface-Regular.ttf','AbrilFatface-Regular.ttf','AbrilFatface-Regular.ttf','AbrilFatface-Regular.ttf',200),(3,'Arvo','arvo','\'Arvo\', Georgia, serif',400,'Arvo:400,700','Arvo-Regular.ttf','Arvo-Bold.ttf','Arvo-Italic.ttf','Arvo-Italic.ttf',300),(4,'Josefin Sans','josefin_sans','\'Josefin Sans\', Arial, Helvetica, sans-serif',400,'Josefin Sans:400,700,900,100','JosefinSans-Regular.ttf','JosefinSans-Bold.ttf','JosefinSans-Italic.ttf','JosefinSans-Italic.ttf',400),(5,'Josefin Sans Light','josefin_sans_light','\'Josefin Sans\', Arial, Helvetica, sans-serif',300,'Josefin+Sans:300,700,900,100','JosefinSans-Light.ttf','JosefinSans-SemiBold.ttf','JosefinSans-LightItalic.ttf','JosefinSans-LightItalic.ttf',600),(6,'Josefin Slab','josefin_slab','\'Josefin Slab\', Arial, Helvetica, sans-serif',400,'Josefin Sans:400,700,900,100','JosefinSlab-Regular.ttf','JosefinSlab-Bold.ttf','JosefinSlab-Italic.ttf','JosefinSlab-Italic.ttf',700),(7,'Josefin Slab Light','josefin_slab_light','\'Josefin Slab\', Georgia, serif',300,'Josefin+Sans:400,700,900,100','JosefinSlab-Light.ttf','JosefinSlab-SemiBold.ttf','JosefinSlab-LightItalic.ttf','JosefinSlab-LightItalic.ttf',800),(8,'Open Sans','open_sans','\'Open Sans\', Arial, Helvetica, sans-serif',400,'Open+Sans:400,700,900,100','OpenSans-Regular.ttf','OpenSans-Semibold.ttf','OpenSans-Italic.ttf','OpenSans-Italic.ttf',900),(9,'Open Sans Light','open_sans_light','\'Open Sans\', Arial, Helvetica, sans-serif',300,'Open+Sans:300,700,900,100','OpenSans-Light.ttf','OpenSans-Regular.ttf','OpenSans-LightItalic.ttf','OpenSans-LightItalic.ttf',1000),(10,'PT Sans','pt_sans','\'PT Sans\', Arial, Helvetica, sans-serif',400,'PT+Sans:400,700,900,100','PTSans-Regular.ttf','PTSans-Bold.ttf','PTSans-Italic.ttf','PTSans-Italic.ttf',1100),(11,'PT Serif','pt_serif','\'PT Serif\', Georgia, serif',400,'PT+Serif:400,700,900,100','PTSerif-Regular.ttf','PTSerif-Bold.ttf','PTSerif-Italic.ttf','PTSerif-Italic.ttf',1200),(12,'Raleway','raleway','\'Raleway\', Arial, Helvetica, sans-serif',400,'Raleway:400,700,900,100','Raleway-Regular.ttf','Raleway-Medium.ttf','Raleway-Italic.ttf','Raleway-Italic.ttf',1300),(13,'Raleway Light','raleway_light','\'Raleway\', Arial, Helvetica, sans-serif',300,'Raleway:300,700,900,100','Raleway-Light.ttf','Raleway-Medium.ttf','Raleway-LightItalic.ttf','Raleway-LightItalic.ttf',1400),(14,'Titillium','titillium','\'Titillium Web\', Arial, Helvetica, sans-serif',400,'Titillium+Web:400,700,900,100','TitilliumWeb-Regular.ttf','TitilliumWeb-Bold.ttf','TitilliumWeb-Italic.ttf','TitilliumWeb-Italic.ttf',1500),(15,'Titillium Light','titillium_light','\'Titillium Web\', Arial, Helvetica, sans-serif',300,'Titillium+Web:300,700,900,100','TitilliumWeb-Light.ttf','TitilliumWeb-SemiBold.ttf','TitilliumWeb-LightItalic.ttf','TitilliumWeb-LightItalic.ttf',1600),(16,'Ubuntu','ubuntu','\'Ubuntu\', Arial, Helvetica, sans-serif',400,'Ubuntu:400,700,900,100','Ubuntu-Regular.ttf','Ubuntu-Bold.ttf','Ubuntu-Italic.ttf','Ubuntu-Italic.ttf',1700),(17,'Ubuntu Light','ubuntu_light','\'Ubuntu\', Arial, Helvetica, sans-serif',300,'Ubuntu:200,700,900,100','Ubuntu-Light.ttf','Ubuntu-Medium.ttf','Ubuntu-LightItalic.ttf','Ubuntu-LightItalic.ttf',1800),(18,'UKai - Chinese','ukai','',400,'','UKai.ttf','UKai.ttf','UKai.ttf','UKai.ttf',1800),(19,'GenshinGothic P - Japanese','gensha_gothic_p','',400,'','GenShinGothic-P-Regular.ttf','GenShinGothic-P-Regular.ttf','GenShinGothic-P-Regular.ttf','GenShinGothic-P-Regular.ttf',1800),(20,'GenshinGothic - Japanese','gensha_gothic','',400,'','GenShinGothic-Regular.ttf','GenShinGothic-Regular.ttf','GenShinGothic-Regular.ttf','GenShinGothic-Regular.ttf',1800);
/*!40000 ALTER TABLE `fonts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frequencies`
--

DROP TABLE IF EXISTS `frequencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `frequencies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `date_interval` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frequencies`
--

LOCK TABLES `frequencies` WRITE;
/*!40000 ALTER TABLE `frequencies` DISABLE KEYS */;
INSERT INTO `frequencies` (`id`, `name`, `date_interval`) VALUES (1,'Weekly','1 week'),(2,'Two weeks','2 weeks'),(3,'Four weeks','4 weeks'),(4,'Monthly','1 month'),(5,'Two months','2 months'),(6,'Three months','3 months'),(7,'Four months','4 months'),(8,'Six months','6 months'),(9,'Annually','1 year'),(10,'Two years','2 years');
/*!40000 ALTER TABLE `frequencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `gateway_types`
--

DROP TABLE IF EXISTS `gateway_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gateway_types` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `alias` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gateway_types`
--

LOCK TABLES `gateway_types` WRITE;
/*!40000 ALTER TABLE `gateway_types` DISABLE KEYS */;
INSERT INTO `gateway_types` (`id`, `alias`, `name`) VALUES (1,'credit_card','Credit Card'),(2,'bank_transfer','Bank Transfer'),(3,'paypal','PayPal'),(4,'bitcoin','Bitcoin'),(5,'dwolla','Dwolla'),(6,'custom1','Custom'),(7,'alipay','Alipay'),(8,'sofort','Sofort'),(9,'sepa','SEPA'),(10,'gocardless','GoCardless'),(11,'apple_pay','Apple Pay'),(12,'custom2','Custom'),(13,'custom3','Custom');
/*!40000 ALTER TABLE `gateway_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `gateways`
--

DROP TABLE IF EXISTS `gateways`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gateways` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `provider` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `visible` tinyint(1) NOT NULL DEFAULT '1',
  `payment_library_id` int(10) unsigned NOT NULL DEFAULT '1',
  `sort_order` int(10) unsigned NOT NULL DEFAULT '10000',
  `recommended` tinyint(1) NOT NULL DEFAULT '0',
  `site_url` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `is_offsite` tinyint(1) NOT NULL,
  `is_secure` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `gateways_payment_library_id_foreign` (`payment_library_id`),
  CONSTRAINT `gateways_payment_library_id_foreign` FOREIGN KEY (`payment_library_id`) REFERENCES `payment_libraries` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gateways`
--

LOCK TABLES `gateways` WRITE;
/*!40000 ALTER TABLE `gateways` DISABLE KEYS */;
INSERT INTO `gateways` (`id`, `created_at`, `updated_at`, `name`, `provider`, `visible`, `payment_library_id`, `sort_order`, `recommended`, `site_url`, `is_offsite`, `is_secure`) VALUES (1,'2018-04-15 19:25:16','2018-04-15 19:25:16','Authorize.Net AIM','AuthorizeNet_AIM',1,1,5,0,NULL,0,0),(2,'2018-04-15 19:25:16','2018-04-15 19:25:16','Authorize.Net SIM','AuthorizeNet_SIM',1,2,10000,0,NULL,0,0),(3,'2018-04-15 19:25:16','2018-04-15 19:25:16','CardSave','CardSave',1,1,10000,0,NULL,0,0),(4,'2018-04-15 19:25:16','2022-08-29 04:25:24','Eway Rapid','Eway_RapidShared',1,1,10000,0,NULL,1,0),(5,'2018-04-15 19:25:16','2018-04-15 19:25:16','FirstData Connect','FirstData_Connect',1,1,10000,0,NULL,0,0),(6,'2018-04-15 19:25:16','2022-08-29 04:25:24','GoCardless','GoCardless',1,2,10000,0,NULL,1,0),(7,'2018-04-15 19:25:16','2018-04-15 19:25:16','Migs ThreeParty','Migs_ThreeParty',1,1,10000,0,NULL,0,0),(8,'2018-04-15 19:25:16','2018-04-15 19:25:16','Migs TwoParty','Migs_TwoParty',1,1,10000,0,NULL,0,0),(9,'2018-04-15 19:25:16','2022-08-29 04:25:24','Mollie','Mollie',1,1,8,0,NULL,1,0),(10,'2018-04-15 19:25:16','2018-04-15 19:25:16','MultiSafepay','MultiSafepay',1,1,10000,0,NULL,0,0),(11,'2018-04-15 19:25:16','2018-04-15 19:25:16','Netaxept','Netaxept',1,1,10000,0,NULL,0,0),(12,'2018-04-15 19:25:16','2018-04-15 19:25:16','NetBanx','NetBanx',1,1,10000,0,NULL,0,0),(13,'2018-04-15 19:25:16','2022-08-29 04:25:24','PayFast','PayFast',1,1,10000,0,NULL,1,0),(14,'2018-04-15 19:25:16','2018-04-15 19:25:16','Payflow Pro','Payflow_Pro',1,1,10000,0,NULL,0,0),(15,'2018-04-15 19:25:16','2018-04-15 19:25:16','PaymentExpress PxPay','PaymentExpress_PxPay',1,1,10000,0,NULL,0,0),(16,'2018-04-15 19:25:16','2018-04-15 19:25:16','PaymentExpress PxPost','PaymentExpress_PxPost',1,1,10000,0,NULL,0,0),(17,'2018-04-15 19:25:16','2022-08-29 04:25:24','PayPal Express','PayPal_Express',1,1,4,0,NULL,1,0),(18,'2018-04-15 19:25:16','2018-04-15 19:25:16','PayPal Pro','PayPal_Pro',1,1,10000,0,NULL,0,0),(19,'2018-04-15 19:25:16','2018-04-15 19:25:16','Pin','Pin',1,1,10000,0,NULL,0,0),(20,'2018-04-15 19:25:16','2018-04-15 19:25:16','SagePay Direct','SagePay_Direct',1,1,10000,0,NULL,0,0),(21,'2018-04-15 19:25:16','2022-08-29 04:25:24','SagePay Server','SagePay_Server',1,2,10000,0,NULL,1,0),(22,'2018-04-15 19:25:16','2018-04-15 19:25:16','SecurePay DirectPost','SecurePay_DirectPost',1,1,10000,0,NULL,0,0),(23,'2018-04-15 19:25:16','2018-04-15 19:25:16','Stripe','Stripe',1,1,1,0,NULL,0,0),(24,'2018-04-15 19:25:16','2018-04-15 19:25:16','TargetPay Direct eBanking','TargetPay_Directebanking',1,1,10000,0,NULL,0,0),(25,'2018-04-15 19:25:16','2018-04-15 19:25:16','TargetPay Ideal','TargetPay_Ideal',1,1,10000,0,NULL,0,0),(26,'2018-04-15 19:25:16','2018-04-15 19:25:16','TargetPay Mr Cash','TargetPay_Mrcash',1,1,10000,0,NULL,0,0),(27,'2018-04-15 19:25:16','2022-08-29 04:25:24','TwoCheckout','TwoCheckout',1,1,10000,0,NULL,1,0),(28,'2018-04-15 19:25:16','2022-08-29 04:25:24','WorldPay','WorldPay',1,1,10000,0,NULL,1,0),(29,'2018-04-15 19:25:16','2018-04-15 19:25:16','BeanStream','BeanStream',1,2,10000,0,NULL,0,0),(30,'2018-04-15 19:25:16','2018-04-15 19:25:16','Psigate','Psigate',1,2,10000,0,NULL,0,0),(31,'2018-04-15 19:25:16','2018-04-15 19:25:16','moolah','AuthorizeNet_AIM',1,1,10000,0,NULL,0,0),(32,'2018-04-15 19:25:16','2018-04-15 19:25:16','Alipay','Alipay_Express',1,1,10000,0,NULL,0,0),(33,'2018-04-15 19:25:16','2018-04-15 19:25:16','Buckaroo','Buckaroo_CreditCard',1,1,10000,0,NULL,0,0),(34,'2018-04-15 19:25:16','2022-08-29 04:25:24','Coinbase','Coinbase',1,1,10000,0,NULL,1,0),(35,'2018-04-15 19:25:16','2018-04-15 19:25:16','DataCash','DataCash',1,1,10000,0,NULL,0,0),(36,'2018-04-15 19:25:16','2018-04-15 19:25:16','Neteller','Neteller',1,2,10000,0,NULL,0,0),(37,'2018-04-15 19:25:16','2018-04-15 19:25:16','Pacnet','Pacnet',1,1,10000,0,NULL,0,0),(38,'2018-04-15 19:25:16','2018-04-15 19:25:16','PaymentSense','PaymentSense',1,2,10000,0,NULL,0,0),(39,'2018-04-15 19:25:16','2018-04-15 19:25:16','Realex','Realex_Remote',1,1,10000,0,NULL,0,0),(40,'2018-04-15 19:25:16','2018-04-15 19:25:16','Sisow','Sisow',1,1,10000,0,NULL,0,0),(41,'2018-04-15 19:25:16','2022-08-29 04:25:24','Skrill','Skrill',1,2,10000,0,NULL,1,0),(42,'2018-04-15 19:25:16','2022-08-29 04:25:24','BitPay','BitPay',1,1,7,0,NULL,1,0),(43,'2018-04-15 19:25:16','2022-08-29 04:25:24','Dwolla','Dwolla',1,2,6,0,NULL,1,0),(44,'2018-04-15 19:25:16','2018-04-15 19:25:16','AGMS','Agms',1,1,10000,0,NULL,0,0),(45,'2018-04-15 19:25:16','2018-04-15 19:25:16','Barclays','BarclaysEpdq\\Essential',1,1,10000,0,NULL,0,0),(46,'2018-04-15 19:25:16','2018-04-15 19:25:16','Cardgate','Cardgate',1,1,10000,0,NULL,0,0),(47,'2018-04-15 19:25:16','2018-04-15 19:25:16','Checkout.com','CheckoutCom',1,1,10000,0,NULL,0,0),(48,'2018-04-15 19:25:16','2018-04-15 19:25:16','Creditcall','Creditcall',1,1,10000,0,NULL,0,0),(49,'2018-04-15 19:25:16','2021-06-02 23:45:16','Cybersource','Cybersource',1,2,10000,0,NULL,0,0),(50,'2018-04-15 19:25:16','2018-04-15 19:25:16','ecoPayz','Ecopayz',1,1,10000,0,NULL,0,0),(51,'2018-04-15 19:25:16','2018-04-15 19:25:16','Fasapay','Fasapay',1,1,10000,0,NULL,0,0),(52,'2018-04-15 19:25:16','2018-04-15 19:25:16','Komoju','Komoju',1,1,10000,0,NULL,0,0),(53,'2018-04-15 19:25:16','2018-04-15 19:25:16','Multicards','Multicards',1,2,10000,0,NULL,0,0),(54,'2018-04-15 19:25:16','2018-04-15 19:25:16','Pagar.Me','Pagarme',1,2,10000,0,NULL,0,0),(55,'2018-04-15 19:25:16','2018-04-15 19:25:16','Paysafecard','Paysafecard',1,1,10000,0,NULL,0,0),(56,'2018-04-15 19:25:16','2018-04-15 19:25:16','Paytrace','Paytrace_CreditCard',1,1,10000,0,NULL,0,0),(57,'2018-04-15 19:25:16','2018-04-15 19:25:16','Secure Trading','SecureTrading',1,1,10000,0,NULL,0,0),(58,'2018-04-15 19:25:16','2018-04-15 19:25:16','SecPay','SecPay',1,1,10000,0,NULL,0,0),(59,'2018-04-15 19:25:16','2018-04-15 19:25:16','WeChat Express','WeChat_Express',1,2,10000,0,NULL,0,0),(60,'2018-04-15 19:25:16','2022-08-29 04:25:24','WePay','WePay',1,1,3,0,NULL,0,0),(61,'2018-04-15 19:25:16','2018-04-15 19:25:16','Braintree','Braintree',1,1,3,0,NULL,0,0),(62,'2018-04-15 19:25:16','2022-08-29 04:25:24','Custom','Custom1',1,1,20,0,NULL,1,0),(63,'2018-04-15 19:25:16','2018-04-15 19:25:16','FirstData Payeezy','FirstData_Payeezy',1,1,10000,0,NULL,0,0),(64,'2018-04-15 19:25:16','2022-08-29 04:25:24','GoCardless','GoCardlessV2\\Redirect',1,1,9,0,NULL,1,0),(65,'2018-04-15 19:25:16','2018-04-15 19:25:16','PagSeguro','PagSeguro',1,1,10000,0,NULL,0,0),(66,'2018-04-15 19:25:16','2018-04-15 19:25:16','PAYMILL','Paymill',1,1,10000,0,NULL,0,0),(67,'2018-05-03 05:46:04','2022-08-29 04:25:24','Custom','Custom2',1,1,21,0,NULL,1,0),(68,'2018-05-03 05:46:04','2022-08-29 04:25:24','Custom','Custom3',1,1,22,0,NULL,1,0);
/*!40000 ALTER TABLE `gateways` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `industries`
--

DROP TABLE IF EXISTS `industries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `industries` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `industries`
--

LOCK TABLES `industries` WRITE;
/*!40000 ALTER TABLE `industries` DISABLE KEYS */;
INSERT INTO `industries` (`id`, `name`) VALUES (1,'Accounting & Legal'),(2,'Advertising'),(3,'Aerospace'),(4,'Agriculture'),(5,'Automotive'),(6,'Banking & Finance'),(7,'Biotechnology'),(8,'Broadcasting'),(9,'Business Services'),(10,'Commodities & Chemicals'),(11,'Communications'),(12,'Computers & Hightech'),(13,'Defense'),(14,'Energy'),(15,'Entertainment'),(16,'Government'),(17,'Healthcare & Life Sciences'),(18,'Insurance'),(19,'Manufacturing'),(20,'Marketing'),(21,'Media'),(22,'Nonprofit & Higher Ed'),(23,'Pharmaceuticals'),(24,'Professional Services & Consulting'),(25,'Real Estate'),(26,'Retail & Wholesale'),(27,'Sports'),(28,'Transportation'),(29,'Travel & Luxury'),(30,'Other'),(31,'Photography'),(32,'Construction'),(33,'Restaurant & Catering');
/*!40000 ALTER TABLE `industries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `invitations`
--

DROP TABLE IF EXISTS `invitations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `invitations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `contact_id` int(10) unsigned NOT NULL,
  `invoice_id` int(10) unsigned NOT NULL,
  `invitation_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `transaction_reference` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `sent_date` timestamp NULL DEFAULT NULL,
  `viewed_date` timestamp NULL DEFAULT NULL,
  `public_id` int(10) unsigned NOT NULL,
  `opened_date` timestamp NULL DEFAULT NULL,
  `message_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `email_error` text COLLATE utf8_unicode_ci,
  `signature_base64` text COLLATE utf8_unicode_ci,
  `signature_date` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `invitations_account_id_public_id_unique` (`account_id`,`public_id`),
  UNIQUE KEY `invitations_invitation_key_unique` (`invitation_key`),
  KEY `invitations_user_id_foreign` (`user_id`),
  KEY `invitations_contact_id_foreign` (`contact_id`),
  KEY `invitations_invoice_id_index` (`invoice_id`),
  KEY `invitations_public_id_index` (`public_id`),
  CONSTRAINT `invitations_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `invitations_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
  CONSTRAINT `invitations_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=107 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `invitations`
--

LOCK TABLES `invitations` WRITE;
/*!40000 ALTER TABLE `invitations` DISABLE KEYS */;
INSERT INTO `invitations` (`id`, `account_id`, `user_id`, `contact_id`, `invoice_id`, `invitation_key`, `created_at`, `updated_at`, `deleted_at`, `transaction_reference`, `sent_date`, `viewed_date`, `public_id`, `opened_date`, `message_id`, `email_error`, `signature_base64`, `signature_date`) VALUES (1,1,1,1,1,'qcpcpqzhj6kkpyagpqizyqokwjyned0f','2018-04-15 05:27:25','2018-04-15 05:27:25',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL),(2,1,1,1,2,'vulsfmi9k1xq9bhurr2pgnswoek2optp','2018-04-15 05:45:34','2018-04-15 05:50:59',NULL,'EC-9F4451645F940633P','2018-04-15 05:45:34',NULL,2,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTg1IiBoZWlnaHQ9IjU2Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSAxMiBjIDAuMDUgLTAuMDQgMS45MyAtMS42MiAzIC0yIGMgNC4zMyAtMS41MyA5LjIyIC0zLjIzIDE0IC00IGMgMTMuODcgLTIuMjMgMjcuNzcgLTQuNDUgNDIgLTUgYyAyOS42MiAtMS4xNCA1OS4xNSAtMC44NCA4OCAwIGMgNS4wMiAwLjE1IDEwLjU5IDEuMyAxNSAzIGMgMy43NiAxLjQ1IDcuNjMgNC40MiAxMSA3IGMgMi4xOSAxLjY4IDQuMzMgMy45MiA2IDYgYyAwLjg4IDEuMSAxLjQ0IDIuNjEgMiA0IGMgMC43OCAxLjk2IDEuNjQgNC4wNSAyIDYgYyAwLjI4IDEuNTUgMC43OCAzLjk4IDAgNSBjIC0yLjc3IDMuNjMgLTguMjQgMTAuNDcgLTEzIDEyIGMgLTExLjY3IDMuNzUgLTI4LjI4IDMuNjIgLTQzIDYgYyAtOC42NCAxLjQgLTE2LjY1IDQuNTggLTI1IDUgYyAtMjQuMjQgMS4yMiAtNzEuNzEgMC4wNyAtNzQgMCBjIC0wLjIzIC0wLjAxIDQuNjMgLTEuNzcgNyAtMiBjIDIxLjU3IC0yLjA3IDQzLjQxIC00LjEgNjYgLTUgYyAyMC40OCAtMC44MSA2MCAtMS4wNSA2MCAwIGMgMCAxLjA1IC0zOS4zMiAyLjM4IC02MCAzIGMgLTEzLjc3IDAuNDEgLTM2LjM3IDEuNzUgLTQwIDAgYyAtMS42MiAtMC43OCA2LjYgLTExLjQ0IDExIC0xNCBjIDguMzcgLTQuODcgMzMuMTYgLTEwLjM3IDMyIC0xMSBjIC0xLjg1IC0xLjAxIC01MS45NiAtMC44MiAtNTQgLTEgbCA5IC0zIi8+PC9zdmc+','2018-04-15 05:50:57'),(3,1,1,1,3,'6iizcjtitl8qvf19qrcki4gw2qxjfhf7','2018-05-14 16:19:27','2018-05-14 16:19:27',NULL,NULL,NULL,NULL,3,NULL,NULL,NULL,NULL,NULL),(4,1,1,1,4,'g62eeggeigklnu6egx6v4hqfty35of42','2018-05-14 19:40:05','2018-05-14 19:40:05',NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,NULL),(5,1,1,1,5,'ps6mv9zckuk6rqakp3j5grqwnpyuvgqb','2018-05-14 19:42:05','2018-05-14 19:43:34',NULL,'EC-91707610V6609245B',NULL,NULL,5,NULL,NULL,NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTI5IiBoZWlnaHQ9IjcxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gNTAgMSBjIC0wLjAyIDAuMDcgLTAuMzQgMy4wMSAtMSA0IGMgLTEuMTQgMS43IC0zLjU4IDMuMTMgLTUgNSBjIC01Ljg5IDcuNzYgLTExLjc5IDE1LjkzIC0xNyAyNCBjIC0xLjM1IDIuMDkgLTEuNyA0Ljg0IC0zIDcgYyAtNC42NyA3Ljc5IC0xMC42MiAxNS42MSAtMTUgMjMgYyAtMC42NiAxLjExIC0wLjkyIDQuMDggLTEgNCBjIC0wLjEgLTAuMSAtMC4yNSAtMy40MSAwIC01IGMgMC40IC0yLjYzIDAuOTcgLTUuNTIgMiAtOCBjIDIuMjQgLTUuMzggNC45MSAtMTAuODQgOCAtMTYgYyA0Ljk5IC04LjMxIDEwLjY0IC0xNi43NiAxNiAtMjQgYyAwLjkzIC0xLjI1IDMuMDMgLTEuODcgNCAtMyBjIDAuODcgLTEuMDEgMS4xIC0yLjk4IDIgLTQgYyAxLjU4IC0xLjc3IDQuOTUgLTUuNDIgNiAtNSBjIDEuMzIgMC41MyAzLjQ3IDUuOTcgNCA5IGMgMS4zNiA3LjcxIDEuNzEgMTYuNDUgMiAyNSBjIDAuMzkgMTEuMjUgLTAuMDcgMzIuNDMgMCAzMyBjIDAuMDMgMC4yOCAwLjcyIC0xMC44OSAyIC0xNiBjIDEuNjggLTYuNzEgNS4zOSAtMTMuNTggNyAtMjAgYyAwLjYxIC0yLjQzIC0wLjQ3IC01LjQ3IDAgLTggYyAxLjE1IC02LjIxIDQuNjEgLTE4LjA5IDUgLTE5IGMgMC4xIC0wLjI0IDAuOTYgMy4zMyAxIDUgYyAwLjI5IDEzLjEyIDAuNDcgMjYuNTMgMCA0MCBjIC0wLjIgNS43NiAtMi4wNSAxNi42MSAtMiAxNyBjIDAuMDMgMC4yMSAyLjM4IC02LjA5IDMgLTkgYyAwLjMzIC0xLjU0IC0wLjMyIC0zLjU0IDAgLTUgYyAwLjI5IC0xLjMgMS40NCAtNC4wOSAyIC00IGMgMC44IDAuMTMgMy4yIDMuMiA0IDUgYyAxLjcgMy44MyAzLjA2IDExLjY1IDQgMTMgYyAwLjI5IDAuNDIgMi41MiAtMS45MSAzIC0zIGMgMC42OSAtMS41NiAwLjQzIC00LjA2IDEgLTYgYyAxLjc3IC02LjA2IDQuOSAtMTIuMDMgNiAtMTggYyAxLjE2IC02LjMgLTAuMTcgLTEzLjk0IDEgLTIwIGMgMC43MSAtMy42NSAyLjkgLTkuMDYgNSAtMTEgYyAxLjQgLTEuMjkgNS4yOSAtMC45IDggLTEgbCAxOSAwIi8+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDEyOCA0MCBjIC0wLjkzIC0wLjAyIC0zNS41NSAwLjY3IC01MyAtMSBjIC0xMy43NSAtMS4zMiAtMjcuMDkgLTUuNjQgLTQxIC04IGMgLTQuMDEgLTAuNjggLTcuOTcgLTAuMzkgLTEyIC0xIGMgLTcuMTUgLTEuMDggLTIxIC00IC0yMSAtNCIvPjxwYXRoIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9InJnYig1MSwgNTEsIDUxKSIgZmlsbD0ibm9uZSIgZD0iTSA3NyAxNSBsIDEgMSIvPjwvc3ZnPg==','2018-05-14 19:43:32'),(6,1,1,1,6,'rwszfg95s38t7aiofsitaatfs4l9esgj','2018-05-14 20:16:22','2018-05-14 20:16:22',NULL,NULL,NULL,NULL,6,NULL,NULL,NULL,NULL,NULL),(7,1,1,1,7,'eq0pqhxsihqrie3x5rs5p4bltu7dcjnq','2018-05-14 20:16:44','2018-05-14 20:16:44',NULL,NULL,NULL,NULL,7,NULL,NULL,NULL,NULL,NULL),(8,1,1,2,8,'yapsfp5vpejx8nhunelwpcnff1kqylxk','2019-05-18 02:49:16','2019-05-18 02:56:36',NULL,NULL,'2019-05-18 02:56:36',NULL,8,NULL,'0',NULL,NULL,NULL),(9,1,1,3,8,'yvgdwjzd13oble3awthlqeql9kz3ftqe','2019-05-18 02:56:36','2019-05-18 02:56:36',NULL,NULL,'2019-05-18 02:56:36',NULL,9,NULL,'0',NULL,NULL,NULL),(10,1,1,4,8,'popz8kdkucnkrfebp7niqdzs7tbohkf3','2019-05-18 02:56:36','2019-05-18 02:56:36',NULL,NULL,'2019-05-18 02:56:36',NULL,10,NULL,'0',NULL,NULL,NULL),(11,1,1,5,8,'prnmvmngc8mxzniodijw9wxr368bhjah','2019-05-18 02:56:36','2019-05-18 02:56:36',NULL,NULL,'2019-05-18 02:56:36',NULL,11,NULL,'0',NULL,NULL,NULL),(12,1,1,6,9,'k3aoh2nuy1szsopzui329tnkdie0e8ti','2019-07-12 23:30:30','2019-07-13 03:04:24',NULL,NULL,'2019-07-12 23:36:35','2019-07-13 03:04:24',12,NULL,'0',NULL,NULL,NULL),(13,1,1,7,9,'dnqvfdizkvm0sbp64ybsoe0fqthtv26o','2019-07-12 23:33:42','2019-07-12 23:34:12','2019-07-12 23:34:12',NULL,NULL,NULL,13,NULL,NULL,NULL,NULL,NULL),(14,1,1,6,10,'vdfhhxhvys3oew1zytks5tb7pppmtvse','2019-07-13 04:49:10','2019-07-13 04:49:33',NULL,NULL,'2019-07-13 04:49:33',NULL,14,NULL,'0',NULL,NULL,NULL),(15,1,1,8,11,'1kqowdrq827dm3omxez9zsi8mleq6myn','2019-07-13 07:43:11','2019-07-13 07:43:21',NULL,NULL,'2019-07-13 07:43:21',NULL,15,NULL,'0',NULL,NULL,NULL),(16,1,1,8,12,'ic0xtp6o5ytsdmrhewok6iuhfjl1ry7s','2019-07-13 08:02:57','2019-07-13 08:03:15',NULL,NULL,'2019-07-13 08:03:15',NULL,16,NULL,'0',NULL,NULL,NULL),(17,1,1,2,13,'wyckolxwcnqodtbrnqdjnp9jldyfuxtr','2019-07-13 10:20:24','2019-07-13 10:20:41',NULL,NULL,'2019-07-13 10:20:41',NULL,17,NULL,'0',NULL,NULL,NULL),(18,1,1,2,14,'ybyetzo3mwncf3jpbk2iykuko8u8fwxg','2019-07-13 10:21:04','2019-07-13 10:23:13',NULL,NULL,'2019-07-13 10:23:13',NULL,18,NULL,'0',NULL,NULL,NULL),(19,1,1,6,15,'wcwizl9z8mtt6dh4wezfudvuwt2hq2j2','2019-07-13 11:00:34','2019-07-13 11:02:30',NULL,NULL,'2019-07-13 11:02:30',NULL,19,NULL,'0',NULL,NULL,NULL),(20,1,1,7,15,'gre68qwfhg3ig4eckpckh2fzbi0lms3a','2019-07-13 11:00:34','2019-07-13 11:02:30',NULL,NULL,'2019-07-13 11:02:30',NULL,20,NULL,'0',NULL,NULL,NULL),(21,1,1,8,16,'z9yqwrbttsk8e3c3v687yuhcpeab4olc','2019-07-14 10:04:39','2019-07-14 10:06:43','2019-07-14 10:06:43',NULL,NULL,NULL,21,NULL,NULL,NULL,NULL,NULL),(22,1,1,9,16,'uufsdh4w35p6naasofenjwm7r0hoqrqb','2019-07-14 10:04:39','2019-07-14 10:07:54',NULL,NULL,'2019-07-14 10:06:43',NULL,22,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTkxIiBoZWlnaHQ9IjEyMyI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDgzIDE0IGMgLTAuMDkgMC4xOSAtMy4wNyA3LjQzIC01IDExIGMgLTIuNDQgNC41MSAtNS4wMyA4LjcgLTggMTMgYyAtMTAuNzQgMTUuNTcgLTIxLjU5IDI5LjM4IC0zMiA0NSBjIC01LjI0IDcuODYgLTguOSAxNi45IC0xNCAyNCBjIC0yLjIxIDMuMDggLTYuMTUgNS4xNSAtOSA4IGMgLTIuMTggMi4xOCAtNS44MSA3LjI4IC02IDcgYyAtMC4yMiAtMC4zMyAzLjIxIC02LjY3IDQgLTEwIGMgMC44MSAtMy40MSAwLjA0IC03LjYgMSAtMTEgYyAxLjk0IC02LjkxIDQuNDMgLTE0LjU5IDggLTIxIGMgNy41OCAtMTMuNiAxNi45NyAtMjYuODYgMjYgLTQwIGMgMi4wMSAtMi45MyA0Ljk0IC01LjE5IDcgLTggYyAxLjU2IC0yLjEzIDIuMzcgLTQuODkgNCAtNyBjIDYuMzIgLTguMTYgMTQuNSAtMjEuNDEgMjAgLTI0IGMgMi44NCAtMS4zNCAxMS43NCA0LjgzIDE0IDggYyAxLjgzIDIuNTYgMC45MSA4LjU1IDEgMTMgYyAwLjI1IDExLjYxIDAuNTMgMjIuNDggMCAzNCBjIC0wLjQ5IDEwLjU1IC0xLjI5IDIwLjk2IC0zIDMxIGMgLTAuOTIgNS40IC0zLjgzIDEwLjgzIC01IDE2IGMgLTAuNDIgMS44NSAwLjI2IDQuMDYgMCA2IGMgLTAuNCAyLjk4IC0xLjk5IDkuMjIgLTIgOSBjIC0wLjA2IC0xLjI3IC0wLjg0IC0zNC41NiAwIC01MiBjIDAuNTEgLTEwLjQ4IDEuNjYgLTIxIDQgLTMxIGMgMi42MSAtMTEuMTIgOS40NiAtMzEuNzcgMTEgLTMzIGMgMC45NSAtMC43NiAzLjUyIDEzLjk4IDQgMjEgYyAwLjg0IDEyLjE1IDAuODEgMjQuNzkgMCAzNyBjIC0wLjUxIDcuNzEgLTMuMzMgMTUuMzEgLTQgMjMgYyAtMC42NiA3LjU4IC0wLjA0IDIzLjQgMCAyMyBjIDAuMDUgLTAuNTkgMC4yNSAtMjIuNjkgMSAtMzQgYyAwLjI1IC0zLjcyIDEuMDYgLTcuMzYgMiAtMTEgYyAxLjQxIC01LjQ2IDQuMzEgLTE0LjkyIDUgLTE2IGMgMC4yMiAtMC4zNSAxLjY5IDMuMjggMiA1IGMgMi45NSAxNi4yMSA1LjEgNDIuNDIgOCA1MCBjIDAuNiAxLjU2IDYuODQgLTEuNTcgMTAgLTMgYyAxNC40NyAtNi41NSAyOS43NyAtMTMuOTYgNDMgLTIxIGMgMS41NiAtMC44MyAyLjk3IC0yLjUgNCAtNCBjIDIuNTMgLTMuNjggNS4wOCAtNy45NiA3IC0xMiBjIDEgLTIuMTIgMS4wNiAtNC44IDIgLTcgYyAyLjAzIC00Ljc0IDUuNzQgLTkuNSA3IC0xNCBjIDAuODggLTMuMTYgMS44OCAtMTAuNTggMCAtMTEgYyAtOC4zNyAtMS44OCAtMzIuODEgLTAuOSAtNDkgMCBjIC03LjcxIDAuNDMgLTE1LjM0IDIuMTUgLTIzIDQgYyAtMTAuNiAyLjU1IC0yMC41OSA2LjcxIC0zMSA5IGMgLTYuMTYgMS4zNiAtMTIuNTQgMS4wNSAtMTkgMiBjIC03LjU2IDEuMTEgLTE0LjY4IDMuMTEgLTIyIDQgYyAtMy42IDAuNDQgLTcuMzkgLTAuMzMgLTExIDAgYyAtMy42NyAwLjMzIC03LjI3IDEuNjcgLTExIDIgbCAtMjMgMSIvPjwvc3ZnPg==','2019-07-14 10:07:54'),(23,1,1,9,17,'s4dinml9jsswpodeyjjr2ugit7bohfwn','2019-07-14 10:20:41','2019-07-14 10:22:20',NULL,NULL,'2019-07-14 10:20:52',NULL,23,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTM5IiBoZWlnaHQ9IjExMCI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDg2IDEyIGMgLTAuMyAwLjQ3IC0xMC45NyAxOC41NiAtMTcgMjcgYyAtMi4xNCAyLjk5IC01LjU3IDUuMDggLTggOCBjIC01Ljk4IDcuMTcgLTExLjEzIDE0Ljc0IC0xNyAyMiBjIC0xLjE5IDEuNDggLTIuNTQgMi45OCAtNCA0IGMgLTEuNzMgMS4yMSAtNC4zNCAxLjcgLTYgMyBjIC0yLjc5IDIuMiAtNS4yNyA1LjcyIC04IDggYyAtMS4wOCAwLjkgLTMuMDYgMS4wNiAtNCAyIGMgLTEuOCAxLjggLTMuMjMgNS4wMSAtNSA3IGMgLTAuNzQgMC44MyAtMy4wOCAyLjE5IC0zIDIgYyAwLjQ1IC0xLjEgNi40IC0xMy4yNCAxMCAtMTkgYyAxLjE5IC0xLjkgMy42NCAtMy4xOSA1IC01IGMgMS41NSAtMi4wNyAyLjM5IC00Ljg5IDQgLTcgYyAzLjY4IC00LjgyIDguMjIgLTkuMjEgMTIgLTE0IGMgMS4yIC0xLjUyIDEuODIgLTMuNjUgMyAtNSBjIDEuMDEgLTEuMTUgMi45NyAtMS44IDQgLTMgYyAyLjggLTMuMjcgNS4yNyAtNy43OCA4IC0xMSBjIDAuNzIgLTAuODUgMi40MSAtMS4xMSAzIC0yIGMgMi40MiAtMy42MyA0LjQgLTguNzEgNyAtMTMgYyAzLjE4IC01LjIzIDkuNzkgLTE1Ljg4IDEwIC0xNSBjIDAuNDIgMS43NyAtMi42MSAyNC4yNiAtNSAzNiBjIC0xLjI1IDYuMTMgLTQuNjYgMTEuOTUgLTYgMTggYyAtMS4yOCA1Ljc3IC0xLjc3IDExLjg5IC0yIDE4IGMgLTAuNDUgMTIuMTUgLTAuMyAzNC43NCAwIDM2IGMgMC4xMyAwLjU1IDMuMDQgLTEwLjA5IDUgLTE1IGMgMS4zOSAtMy40NyAzLjgxIC02LjU2IDUgLTEwIGMgMS43NiAtNS4wOCAyLjM0IC0xMC44MSA0IC0xNiBjIDAuOTkgLTMuMSAzLjA2IC01Ljg4IDQgLTkgYyAyLjM3IC03LjgzIDQuMjggLTE1Ljc2IDYgLTI0IGMgMS4zNCAtNi40IDIuOTggLTE5LjM0IDMgLTE5IGMgMC4wNiAwLjkxIC0wLjE2IDM0Ljk3IC0xIDUyIGMgLTAuMTUgMy4wMiAtMS42IDYuMDIgLTIgOSBjIC0wLjI2IDEuOTQgMC4zNyA0LjMzIDAgNiBjIC0wLjIyIDEgLTEuODQgMS45OSAtMiAzIGMgLTAuNDMgMi44MSAwLjA0IDkuNzMgMCAxMCBjIC0wLjAyIDAuMTEgLTEgLTIuNzUgLTEgLTQgYyAwIC0xLjg1IDAuNDYgLTQuMDUgMSAtNiBjIDEuMTMgLTQuMDUgMy4wOSAtOC4xMyA0IC0xMiBjIDAuMzYgLTEuNTMgLTAuMzQgLTMuNjIgMCAtNSBjIDAuMjUgLTEgMS40NSAtMyAyIC0zIGMgMC42NSAwIDIuNTcgMS44NSAzIDMgYyAxLjY1IDQuNDggMyAxMC43NyA0IDE2IGMgMC4zIDEuNTkgLTAuNTYgNC4xNiAwIDUgYyAwLjQ2IDAuNjkgMy41IDEuNyA0IDEgYyA3LjM2IC0xMC40MyAzOC4xOCAtNDguNzUgMzIgLTUyIGMgLTEzLjQ3IC03LjA3IC04OS45NyAtMC4zNyAtMTMzIC0xIGwgLTQgLTEiLz48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMzggNjggYyAwLjA5IDAuMDIgMy4zOSAxLjA3IDUgMSBjIDUuNzEgLTAuMjUgMTIuMDcgLTEuMDUgMTggLTIgYyAyLjM4IC0wLjM4IDQuNjcgLTEuODkgNyAtMiBjIDE3LjMyIC0wLjg1IDU0IC0xIDU0IC0xIi8+PC9zdmc+','2019-07-14 10:22:20'),(24,1,1,9,18,'uizes6ysqfaj1zcihlmmgxnn4fix1q3t','2019-07-14 10:30:41','2019-07-14 10:44:37',NULL,NULL,'2019-07-14 10:30:49',NULL,24,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTc1IiBoZWlnaHQ9IjExMiI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDY4IDEyIGMgLTAuNCAwLjYgLTE0LjYzIDIzLjE1IC0yMyAzNCBjIC02LjM1IDguMjMgLTEzLjY3IDE1LjQzIC0yMSAyMyBjIC0yLjgzIDIuOTMgLTYuMzcgNS4wMyAtOSA4IGMgLTQuOTggNS42MyAtMTIuOTIgMTcuMTcgLTE0IDE4IGMgLTAuMzggMC4yOSAwLjA5IC01LjYyIDEgLTggYyAzLjIzIC04LjQ0IDcuNTUgLTE3LjUyIDEyIC0yNiBjIDIuNTkgLTQuOTMgNS40OSAtOS43MiA5IC0xNCBjIDEwLjE2IC0xMi4zOSAyMC45MyAtMjQuOTMgMzIgLTM2IGMgMy45NSAtMy45NSAxMS42MyAtOS40MSAxNCAtMTAgYyAwLjg3IC0wLjIyIDEuOSA0LjAyIDIgNiBjIDAuNTMgMTAuMzUgMS4wMSAyMi40NCAwIDMzIGMgLTAuNiA2LjI4IC0yLjUyIDEzLjA3IC01IDE5IGMgLTUuMDggMTIuMTQgLTExLjUyIDIzLjk3IC0xOCAzNiBjIC0zLjA0IDUuNjQgLTkuMjEgMTUuMTMgLTEwIDE2IGMgLTAuMjEgMC4yMyAtMC4zOCAtMy40OSAwIC01IGMgMC44OCAtMy41MyAyLjAyIC03Ljg4IDQgLTExIGMgNC43MSAtNy40IDEwLjg5IC0xNS4xIDE3IC0yMiBjIDQuMiAtNC43NCA5LjAzIC04LjgzIDE0IC0xMyBjIDUuNTYgLTQuNjcgMTEuMDMgLTkuMDggMTcgLTEzIGMgNS43NCAtMy43NyAxMS42NyAtNy4xIDE4IC0xMCBjIDE4LjA1IC04LjI3IDM1LjgyIC0xNC44OSA1NCAtMjMgYyAzLjg4IC0xLjczIDkuMjcgLTYgMTEgLTYgYyAwLjg0IDAgMS44IDQuNjYgMSA2IGMgLTQuMDUgNi43NSAtMTIuMjUgMTYuMDUgLTE5IDI0IGMgLTQuODQgNS42OSAtOS40NSAxMS44IC0xNSAxNiBjIC03LjU5IDUuNzQgLTE2LjkgMTAuMTYgLTI2IDE1IGMgLTEyLjg4IDYuODQgLTI0LjkxIDEyLjkyIC0zOCAxOSBjIC01Ljk1IDIuNzYgLTExLjggNC44NyAtMTggNyBjIC00LjY4IDEuNjEgLTkuNDUgMy4wOSAtMTQgNCBjIC0xLjg4IDAuMzggLTUuNSAwLjkyIC02IDAgYyAtMC45MiAtMS42OSAtMC45IC04IDAgLTExIGMgMC44OCAtMi45NSAzLjUxIC03LjEgNiAtOSBjIDMuODEgLTIuOSA5Ljk5IC01LjYzIDE1IC03IGMgNS40OCAtMS40OSAxMS44MyAtMS42IDE4IC0yIGMgOS41NSAtMC42MiAyMC43NyAtMS40NyAyOCAtMSBjIDEuMDkgMC4wNyAzLjQzIDIuOSAzIDMgYyAtNC4zNiAwLjk4IC0yOC41OCA0LjI3IC00MyA2IGMgLTIuMzMgMC4yOCAtNy4xMiAwLjY4IC03IDAgYyAwLjI1IC0xLjM4IDUuNTUgLTguODIgOSAtMTEgYyA0LjYxIC0yLjkgMTEuOSAtNC44MyAxOCAtNiBjIDExIC0yLjEyIDM0LjYgLTMuOTcgMzQgLTQgYyAtMS44OSAtMC4xIC0xMDUuMDUgMC4wNiAtMTA4IDAgYyAtMC4yMyAwIDUuMjYgLTEuNTggOCAtMiBjIDguMzcgLTEuMjcgMTYuNTMgLTIuNzEgMjUgLTMgYyAyMS41NCAtMC43MyA2NCAwIDY0IDAiLz48L3N2Zz4=','2019-07-14 10:44:37'),(25,1,1,9,19,'to9p6m1nutuwrp5mpnjqvz0r6gqdrdbh','2019-07-14 11:27:01','2019-07-14 11:48:43',NULL,'EC-8XM37316LG792121N','2019-07-14 11:27:24',NULL,25,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDM5IiBoZWlnaHQ9IjkxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gOCA3OSBjIDAuMjYgLTAuMjMgOS42NSAtOS4xNCAxNSAtMTMgYyA2LjY1IC00LjggMTMuNjEgLTkuOTIgMjEgLTEzIGMgMTYuMDggLTYuNyAzMy4zOCAtMTIuNjkgNTEgLTE3IGMgNDUuODkgLTExLjIzIDkwLjk2IC0yNC4xNyAxMzcgLTI5IGMgNjcuNzYgLTcuMTEgMTk0LjM3IC02Ljk0IDIwNiAtNyBjIDAuNjYgMCAtNi40NiA0LjYgLTEwIDYgYyAtMTIuMTkgNC44MyAtMjQuOTkgMTAuMDMgLTM4IDEzIGMgLTI0Ljk3IDUuNjkgLTQ5LjYyIDkuMDcgLTc2IDEzIGMgLTM2LjI0IDUuNDEgLTY4LjczIDguNDggLTEwNSAxNCBjIC00Ny45MSA3LjI5IC05MS4xMiAxNC4wNiAtMTM4IDIzIGMgLTE5LjM0IDMuNjkgLTM3LjU2IDguNzMgLTU2IDE0IGMgLTQuODcgMS4zOSAtMTQuNjkgNS45OCAtMTQgNiBjIDExLjkxIDAuMjkgMjU5LjM4IDAgMjY0IDAgbCAtOCAwIi8+PC9zdmc+','2019-07-14 11:48:32'),(26,1,1,9,20,'asxwhlptcn1srxmyklu4gmdas32hyyou','2019-07-14 11:59:08','2019-07-14 12:06:08',NULL,'EC-2W2007851B8033056','2019-07-14 11:59:18','2019-07-14 12:05:40',26,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjkxIiBoZWlnaHQ9IjczIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMTcgNDYgYyAwLjAyIC0wLjA3IDAuMDkgLTMuNzEgMSAtNCBjIDE0LjU3IC00LjcxIDQxLjkyIC0xMi4zOSA2NCAtMTcgYyAzOS45NyAtOC4zNSA3Ny4zOCAtMTQuMTggMTE4IC0yMSBjIDguNTMgLTEuNDMgMjAuOTQgLTMuMzIgMjUgLTMgYyAwLjgxIDAuMDYgMC44OCA0LjIyIDAgNSBjIC0zLjcyIDMuMzEgLTExLjcyIDguMTMgLTE4IDExIGMgLTguODUgNC4wNCAtMTguMzQgNy4yIC0yOCAxMCBjIC0xMy43MiAzLjk4IC0yNy4wNCA3LjgyIC00MSAxMCBjIC0yMi42MSAzLjUzIC00NC43IDMuOTQgLTY4IDcgYyAtMjMuODIgMy4xMyAtNzAuMTggMTAuNjcgLTY5IDExIGMgMS44MyAwLjUyIDcxLjI1IC0xLjQ2IDEwOCAwIGMgMzIuMSAxLjI3IDYxLjMyIDQuOTMgOTQgOCBjIDMwLjMgMi44NSA4NyA5IDg3IDkiLz48L3N2Zz4=','2019-07-14 12:06:03'),(27,1,1,9,21,'dl2acwjb5iqtn11kzvleicypox1atf10','2019-07-14 12:28:54','2019-07-14 12:40:59',NULL,NULL,'2019-07-14 12:29:06',NULL,27,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzgwIiBoZWlnaHQ9IjExOSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDExNSA0NiBjIDAuMjQgLTAuMjMgOC45MSAtOS42MSAxNCAtMTMgYyA3LjUgLTUgMTYuMjYgLTguOSAyNSAtMTMgYyAxMy44OSAtNi41MiAyNy40NiAtMTYuMiA0MSAtMTggYyAzMC44NCAtNC4xIDc3LjYzIC00LjIzIDEwMiAtMSBjIDQuNjQgMC42MiA3LjczIDEwLjM5IDExIDE2IGMgMy43NyA2LjQ2IDcuOTUgMTMuNjUgMTAgMjAgYyAxLjAxIDMuMTIgMS44OCAxMC4yNSAwIDExIGMgLTYuMDIgMi40MSAtMjMuMDQgMi43NSAtMzUgMyBjIC0zNy40NCAwLjc3IC03MS44OSAwLjQ0IC0xMTAgMCBjIC0yMS44NCAtMC4yNSAtNDEuODUgLTAuMzQgLTYzIC0yIGMgLTEzLjI0IC0xLjA0IC0zNy45MSAtNSAtMzkgLTYgYyAtMC43NiAtMC42OSAxNy45NSAtNC44MiAyNyAtNSBjIDcyLjE3IC0xLjQ3IDIwNy42OSAwLjExIDIxOSAwIGMgMC4yMyAwIC0yLjY3IC0xLjkxIC00IC0yIGMgLTcuNzQgLTAuNTIgLTE3LjIgLTAuNTMgLTI2IDAgYyAtMTMuOTUgMC44MyAtMjguMzYgMS4zMSAtNDEgNCBjIC02LjczIDEuNDMgLTEzLjYyIDUuODEgLTIwIDkgYyAtMS40NiAwLjczIC0zLjU0IDMuMjMgLTQgMyBjIC0wLjQ2IC0wLjIzIC0wLjQ0IC0zLjU3IDAgLTUgYyAwLjc4IC0yLjU1IDMuMDkgLTUuMjggNCAtOCBjIDEuMDMgLTMuMSAyLjgyIC03Ljk2IDIgLTEwIGMgLTAuNzUgLTEuODkgLTUuMjEgLTQuNDUgLTggLTUgYyAtMTQuMzIgLTIuODEgLTMxLjc4IC00Ljg3IC00OCAtNiBjIC0xMi43NCAtMC44OSAtMjUuNTQgLTAuMjkgLTM4IDAgYyAtMS42NyAwLjA0IC00Ljc0IDAuMDMgLTUgMSBjIC0wLjkgMy40MyAtMC45MSAxMi41NyAwIDE4IGMgMC42NSAzLjkyIDMuMDkgOC4xOCA1IDEyIGMgMS4wNiAyLjEyIDIuOSAzLjg1IDQgNiBjIDUuMjcgMTAuMjUgOS40IDIxLjA0IDE1IDMxIGMgMy4zOCA2LjAyIDcuMTcgMTMuMTYgMTIgMTcgYyA3LjA3IDUuNjIgMTguMjggMTAuOTYgMjcgMTQgYyA0LjYgMS42IDEwLjUgMC44NiAxNiAxIGMgNy41NCAwLjIgMTUuNTIgMS41OSAyMiAwIGMgOC43MSAtMi4xMyAxNy44IC03LjYyIDI3IC0xMiBjIDExLjg0IC01LjYzIDIyLjEgLTExLjc3IDM0IC0xNyBjIDI0LjcgLTEwLjg1IDQ4LjE4IC0xOS40NCA3MyAtMzAgYyA0LjkyIC0yLjA5IDEyLjI4IC01LjI4IDE0IC03IGMgMC41NSAtMC41NSAtMS43NyAtMy45OSAtMyAtNCBjIC05Mi41IC0wLjk4IC0zNjYuNzUgMC4wOSAtMzc1IDAgYyAtMC40NSAtMC4wMSAxMy4wOSAtMi45OSAyMCAtNCBjIDIzLjU4IC0zLjQ0IDQ1LjM3IC02Ljk5IDY5IC05IGMgMjguNTYgLTIuNDMgNTUuMDIgLTMuNTMgODQgLTQgYyA1NS40OSAtMC45MSAxNjEgMCAxNjEgMCIvPjwvc3ZnPg==','2019-07-14 12:40:59'),(28,1,2,9,22,'afy9ki0lgkiz5si9ht2pw2g0ulz2nxmm','2019-07-14 13:10:01','2019-07-14 13:12:16',NULL,'EC-20E152986H262661N','2019-07-14 13:10:11','2019-07-14 13:11:41',28,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDMxIiBoZWlnaHQ9IjcxIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA0NCBjIDAuMTYgLTAuMDkgNS44MSAtMy44NyA5IC01IGMgMjIuODQgLTguMSA0Ni4xNCAtMTYuOTUgNzAgLTIzIGMgMjIuMzYgLTUuNjcgNDQuOTUgLTkuMyA2OCAtMTIgYyAyMC4wNSAtMi4zNSAzOS4zMSAtMi42NSA2MCAtMyBjIDQwLjI5IC0wLjY4IDc2LjgxIC0wLjcxIDExNyAwIGMgMTcuODkgMC4zMiAzNS4yNSAwLjU4IDUyIDMgYyAxMC4zOCAxLjUgMjEuMSA1LjM0IDMxIDkgYyA1LjIxIDEuOTMgMTAuOTYgNS4wMiAxNSA4IGMgMS43MSAxLjI2IDMuNTUgNCA0IDYgYyAwLjc0IDMuMzMgMS43MiA5LjYyIDAgMTIgYyAtMy4xNyA0LjQxIC0xMS42IDExLjc2IC0xOCAxMyBjIC0zNi41NiA3LjExIC04My4wNyAxMS41NiAtMTI2IDE1IGMgLTI5LjEgMi4zMyAtNTYuMTIgMS43MiAtODYgMiBjIC00My43NyAwLjQxIC04NC44NyAwLjg4IC0xMjYgMCBjIC00LjY3IC0wLjEgLTE0LjYzIC0yLjc5IC0xNCAtMyBjIDIuNTkgLTAuODggMzguMDYgLTguOTQgNTggLTEyIGMgMzEuMTkgLTQuNzggNjAuNDkgLTguNTggOTIgLTExIGMgMzUuMDUgLTIuNyA2Ny4zNyAtMy4zMyAxMDMgLTQgYyAzOC4zNiAtMC43MiA3NC44NiAtMC42IDExMSAwIGMgMyAwLjA1IDkuMSAxLjM5IDkgMiBjIC0wLjEyIDAuNzEgLTYuNTYgMy4yOCAtMTAgNCBjIC0xNi44NyAzLjU0IC0zNC4wNCA2LjY2IC01MiA5IGMgLTM3LjMxIDQuODcgLTcxLjM0IDguNDggLTEwOSAxMiBjIC0yMS4zNCAyIC00MC43MiAzLjIxIC02MiA0IGMgLTE1Ljc2IDAuNTggLTQ0LjU1IDAuNDQgLTQ2IDAgYyAtMC43NiAtMC4yMyAxNS4xNCAtNS41OSAyMyAtNyBjIDIxLjc4IC0zLjkyIDQzLjg2IC02LjIzIDY2IC05IGwgNiAwIi8+PC9zdmc+','2019-07-14 13:12:11'),(29,1,2,9,23,'qcujl2skf3s0mjgpkwprmtc4kbqa15p5','2019-07-14 13:16:25','2019-07-14 13:17:44',NULL,'EC-6GA53234NK716294E','2019-07-14 13:16:48',NULL,29,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjk2IiBoZWlnaHQ9IjkwIj48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA4MSBjIDAuMTIgLTAuMyA0LjM4IC0xMS4zNyA3IC0xNyBjIDEuNzggLTMuODQgMy41OSAtNy42NCA2IC0xMSBjIDUuMiAtNy4yNCAxMC4zOCAtMTYuMDEgMTcgLTIxIGMgMTEuMTggLTguNDQgMjYuMzQgLTE2LjAxIDQwIC0yMiBjIDEwLjMyIC00LjUyIDIyLjI5IC05LjY4IDMzIC0xMCBjIDMyLjA1IC0wLjk0IDc5LjIxIDIuNDcgMTAzIDYgYyAyLjU4IDAuMzggNC4wMSA2LjY5IDUgMTAgYyAwLjg5IDIuOTggMC44NSA2LjYgMSAxMCBjIDAuMTkgNC40IDAuNDggOC44MSAwIDEzIGMgLTAuNSA0LjMgLTAuNjYgMTAuMiAtMyAxMyBjIC00Ljg3IDUuODQgLTE0LjIgMTIuODMgLTIyIDE3IGMgLTEwLjgzIDUuNzkgLTIzLjkxIDEwLjk0IC0zNiAxNCBjIC0xMi4zMSAzLjEyIC0yNS44MyA0LjA1IC0zOSA1IGMgLTEwLjA1IDAuNzMgLTE5Ljc2IDAuMzcgLTMwIDAgYyAtOC45IC0wLjMyIC0xOC4yNCAtMC4wNiAtMjYgLTIgYyAtNS45OSAtMS41IC0xMi4zNiAtNS43MSAtMTggLTkgYyAtMi4xOSAtMS4yOCAtNC45MiAtMy4wOCAtNiAtNSBjIC0xLjU4IC0yLjggLTIuNDYgLTcuMzkgLTMgLTExIGMgLTAuNDMgLTIuODUgLTAuOTYgLTYuNzIgMCAtOSBjIDEuMzcgLTMuMjQgNC44MSAtOCA4IC0xMCBjIDYuNDkgLTQuMDUgMTUuNzYgLTcuODYgMjQgLTEwIGMgMTguMzkgLTQuNzcgMzcuNjYgLTguNTggNTcgLTExIGMgMjEuMDQgLTIuNjMgNDEuMzYgLTMuMzIgNjMgLTQgYyAyMS45NCAtMC42OSA0Mi42IC0wLjkyIDY0IDAgYyA5Ljc5IDAuNDIgMTkuOTIgMS43OCAyOSA0IGMgNS40MiAxLjMyIDEwLjkzIDQuNDcgMTYgNyBjIDEuNDUgMC43MyAzLjY0IDEuODIgNCAzIGMgMC43MyAyLjM2IDAuODggNy4zNiAwIDEwIGMgLTAuODggMi42NCAtMy42MSA2LjA0IC02IDggYyAtNC41MSAzLjY5IC0xMC41MSA3LjcxIC0xNiAxMCBjIC02IDIuNSAtMTMuMjQgMy4wNCAtMjAgNSBjIC02LjIyIDEuOCAtMTEuOTIgNC40MyAtMTggNiBsIC0xMyAyIi8+PC9zdmc+','2019-07-14 13:17:40'),(30,1,1,8,24,'exlhvr7gaw4pspjmt9ktlc5ajtfgmtwm','2019-07-15 04:45:48','2019-07-15 04:59:49',NULL,'EC-85H79159MR175941D','2019-07-15 04:45:48',NULL,30,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iNDEwIiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDM0IDcyIGMgLTAuNDIgMC4wMiAtMTcuMTEgMS44MyAtMjQgMSBjIC0yLjk1IC0wLjM2IC04LjM4IC0yLjc1IC05IC01IGMgLTEuNDUgLTUuMjUgLTIuMjQgLTE4LjU3IDEgLTI0IGMgNS41MyAtOS4yOCAxOS41OCAtMTguNjIgMzAgLTI4IGMgMy4yNSAtMi45MyA2LjQ2IC01LjU0IDEwIC04IGMgNC4yMSAtMi45MyA4LjcgLTggMTMgLTggYyAzNS41NCAwIDg2Ljk5IDEuMTIgMTI2IDggYyAyMC4zNyAzLjU5IDU4IDIzLjAzIDYxIDI1IGMgMC45MSAwLjYgLTEzLjMgMS4wOCAtMjAgMiBjIC0zLjA4IDAuNDIgLTYuMSAwLjk1IC05IDIgYyAtMjQuODYgOC45OCAtNDguOTQgMjAuOTkgLTc0IDI4IGMgLTIyLjE4IDYuMiAtNDYuMDIgOS4wNCAtNjkgMTIgYyAtNy44NyAxLjAyIC0xNi40OCAwLjUgLTI0IDAgYyAtMS45OCAtMC4xMyAtNC45OCAtMC44NiAtNiAtMiBjIC0xLjE3IC0xLjMyIC0xLjY2IC00LjY0IC0yIC03IGMgLTAuNjUgLTQuNTQgLTEuNzMgLTEwLjM2IC0xIC0xNCBjIDAuNDEgLTIuMDMgMi45NSAtNC44OSA1IC02IGMgOS43NyAtNS4yNiAyMi4yNSAtMTAuNDEgMzQgLTE1IGMgMTAgLTMuOTEgMTkuNjIgLTYuOTEgMzAgLTEwIGMgOS4xNSAtMi43MyAxOC4wNiAtNi4yMSAyNyAtNyBjIDE2LjY3IC0xLjQ4IDM1LjgzIC0xLjIyIDUyIDAgYyA0LjYyIDAuMzUgMTAuMzYgMi4zNCAxNCA1IGMgNy44IDUuNjkgMTkuNDUgMTYuMjEgMjMgMjIgYyAxLjEgMS43OSAtMS44OCA3LjMxIC00IDkgYyAtNS4xIDQuMDggLTEzLjY3IDguMjUgLTIxIDExIGMgLTE2LjUyIDYuMiAtMzMuNDQgMTEuMSAtNTEgMTYgYyAtMTEuOCAzLjI5IC0yMy4yOCA2LjA1IC0zNSA4IGMgLTYuMjEgMS4wMyAtMTkuMzIgMS4xIC0xOSAxIGMgMC40OSAtMC4xNSAxOS4wMSAtMi45MSAyOSAtNCBjIDguOSAtMC45NyAxNy4wNSAtMS42NiAyNiAtMiBjIDE4LjIgLTAuNjkgMzUuNiAtMi4zMSA1MyAtMSBjIDE3LjY0IDEuMzMgMzQuOCA1LjU5IDUzIDkgYyA5LjM2IDEuNzYgMTguMzEgMy4zNyAyNyA2IGMgNS40OSAxLjY2IDE2LjY2IDYuNjcgMTYgNyBjIC0xLjA1IDAuNTMgLTE4LjYzIC0wLjA1IC0yOCAtMSBjIC0xMC41IC0xLjA3IC0yMC4yOCAtMy44IC0zMSAtNSBjIC01MC40NCAtNS42NyAtOTcuMzUgLTkuMzIgLTE0NyAtMTUgYyAtNi41MiAtMC43NSAtMTMuMDEgLTEuODYgLTE5IC00IGMgLTEyLjQ0IC00LjQ0IC0zNC4wOCAtMTMuNjQgLTM3IC0xNiBjIC0wLjg3IC0wLjcxIDcuMjEgLTMuODIgMTEgLTUgYyA2Ljc3IC0yLjEyIDEzLjggLTQuMSAyMSAtNSBjIDQ5LjMxIC02LjE2IDk2LjMgLTExLjczIDE0NyAtMTYgYyA0My4yNyAtMy42NSA4Mi42NCAtNS40MiAxMjYgLTcgYyAyMi42OCAtMC44MyA0NC43IC0wLjMgNjYgMCBjIDEuMzMgMC4wMiA0LjExIDAuOTkgNCAxIGMgLTAuNTcgMC4wMyAtMTMuOCAtMC4zNCAtMjEgMCBjIC0yOC44NiAxLjM3IC01NS4yMSAyLjQ4IC04NCA1IGMgLTI2LjE5IDIuMjkgLTQ5Ljg3IDUuMzUgLTc2IDkgYyAtMjAuNzcgMi45IC0zOS4yOSA2Ljg3IC02MCAxMCBjIC04LjkxIDEuMzUgLTE3LjE4IDIuNjIgLTI2IDMgYyAtMTQuNDkgMC42MyAtMjguNzIgLTAuNjkgLTQzIDAgYyAtNi4zOSAwLjMxIC0xMi42MiAyLjUgLTE5IDMgbCAtMTkgMCIvPjwvc3ZnPg==','2019-07-15 04:59:45'),(31,1,2,8,25,'py1rekavqmorbzlwbilbba3y73pvhjt8','2019-07-17 06:19:35','2019-07-17 06:31:56',NULL,'H9MVLuzbg1VXBR18UWGXQo','2019-07-17 06:19:35',NULL,31,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMTQwIiBoZWlnaHQ9IjEwNSI+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0icmdiKDUxLCA1MSwgNTEpIiBmaWxsPSJub25lIiBkPSJNIDIwIDU3IGMgMC4zNSAtMC4yMyAxMi45MiAtOS4wMSAyMCAtMTMgYyAyMi41OCAtMTIuNzIgNDQuMjUgLTI0LjYzIDY3IC0zNiBjIDYuMDYgLTMuMDMgMTIuOTYgLTUuMjQgMTkgLTcgYyAxLjQ5IC0wLjQzIDMuMzUgLTAuMTUgNSAwIGMgMi4wMSAwLjE4IDQuODUgMC4xNCA2IDEgYyAxLjAyIDAuNzYgMi42NSAzLjk1IDIgNSBjIC0zLjMxIDUuMzkgLTExLjM2IDE1LjMxIC0xOCAyMSBjIC02Ljc5IDUuODIgLTE1LjU5IDEwLjUxIC0yNCAxNSBjIC0xMS4xNiA1Ljk3IC0yMi45MiA5Ljk5IC0zNCAxNiBjIC04Ljc2IDQuNzUgLTE2Ljg1IDEwLjA4IC0yNSAxNiBjIC0xMi45MSA5LjM3IC0zNi4zOCAyOC40NiAtMzcgMjkgYyAtMC4xOCAwLjE2IDcuNzQgLTUuMzEgMTIgLTcgYyAxOS44NyAtNy44OSA0MC4zNyAtMTUuNTIgNjEgLTIyIGMgOC4xMSAtMi41NSAxNi44MiAtMi44MSAyNSAtNSBjIDUuNDggLTEuNDcgMTAuNDkgLTQuMjIgMTYgLTYgbCAxNSAtNCIvPjwvc3ZnPg==','2019-07-17 06:31:56'),(32,1,1,8,26,'pwhtut9wfdr65irigipoxk6bac8puyyq','2019-07-18 09:08:51','2019-07-18 09:13:11',NULL,'BSaDUeHWjPiLVWy8xoSxw8','2019-07-18 09:08:51',NULL,32,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzA4IiBoZWlnaHQ9IjQ3Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSAxNyBjIDEuNzUgLTAuMTcgNjUuMzEgLTYuOTMgMTAwIC0xMCBjIDIwLjA3IC0xLjc4IDM3Ljg5IC0yLjk0IDU4IC00IGMgMTkuMzggLTEuMDIgMzYuNjIgLTEuNTcgNTYgLTIgYyAxMi4xMSAtMC4yNyAyNy4xMSAtMC44NSAzNSAwIGMgMS4wMSAwLjExIDIuMzEgMyAyIDQgYyAtMC43NCAyLjQxIC0zLjU1IDYuOCAtNiA5IGMgLTMuNzYgMy4zOSAtOS4xMSA2LjU1IC0xNCA5IGMgLTYuMzMgMy4xNyAtMTMuMTggNi4wMyAtMjAgOCBjIC04LjA3IDIuMzMgLTE2LjQ0IDMuOTIgLTI1IDUgYyAtMTguMiAyLjMgLTM2Ljg4IDIuOTcgLTU0IDUgYyAtMS43IDAuMiAtNS4zMSAxLjgzIC01IDIgYyAwLjgyIDAuNDYgOS4zNSAyLjkgMTQgMyBjIDI2IDAuNTUgNTMuMDQgMC41OSA4MCAtMSBjIDE5LjAyIC0xLjEyIDM3LjIxIC0zLjkgNTYgLTcgYyA5LjkzIC0xLjY0IDI5Ljg2IC02LjgyIDI5IC03IGMgLTIuMDUgLTAuNDQgLTQ4LjkxIC0yLjI4IC03MSAtMiBjIC0yLjk1IDAuMDQgLTYuNyAxLjc0IC05IDMgbCAtMiAzIi8+PC9zdmc+','2019-07-18 09:13:09'),(33,1,1,9,27,'g211bkypfm8ybztqnrzphy88oiv8snph','2019-07-18 09:18:22','2019-07-18 09:19:03',NULL,'3g4TcFvsR4zQmc1XCtnShC','2019-07-18 09:18:22',NULL,33,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjc0IiBoZWlnaHQ9IjU1Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMTIgMzQgYyAtMC4xMSAtMC4wNyAtNC42NCAtMi40OCAtNiAtNCBjIC0xLjAxIC0xLjE0IC0xLjg5IC0zLjQxIC0yIC01IGMgLTAuMTkgLTIuNjcgMC4xMyAtNi41NSAxIC05IGMgMC42MiAtMS43MyAyLjQzIC0zLjg4IDQgLTUgYyAyLjc1IC0xLjk2IDYuNTkgLTMuOTEgMTAgLTUgYyA0LjY3IC0xLjQ5IDkuODUgLTIuMjIgMTUgLTMgYyA2LjA5IC0wLjkyIDExLjg5IC0xLjczIDE4IC0yIGMgOS4xMSAtMC40IDE3LjgxIC0wLjY1IDI3IDAgYyA2My40OCA0LjQ3IDEyOC45MyA5LjQxIDE4NiAxNSBjIDIuNzQgMC4yNyA3LjkgMi42NCA4IDQgYyAwLjEzIDEuNzQgLTQuMDggNy42NyAtNyA5IGMgLTEwLjQ2IDQuNzggLTI1LjkyIDEwLjEzIC0zOSAxMiBjIC0yNS42OSAzLjY3IC01Mi4xNCAzLjUxIC04MCA1IGMgLTMwLjYyIDEuNjQgLTU3LjYzIDMuMDggLTg4IDQgYyAtMTUuMTcgMC40NiAtMjkuNjggMC41NCAtNDQgMCBjIC0zIC0wLjExIC04LjY0IC0xLjAzIC05IC0yIGMgLTAuMzMgLTAuODkgMy43OCAtNC44MyA2IC02IGMgMy41NiAtMS44NyA4LjU0IC0zLjAxIDEzIC00IGMgNy42NiAtMS43IDE1LjA3IC0yLjk2IDIzIC00IGMgMTIuOTggLTEuNyAyNSAtMy4xOCAzOCAtNCBjIDEzLjk2IC0wLjg4IDI3LjM5IC0xLjcgNDEgLTEgYyAxMi4zOSAwLjY0IDI1Ljc1IDIuMyAzNyA1IGMgNC40NSAxLjA3IDkuMzcgNC41OCAxMyA3IGMgMC44OSAwLjU5IDIuNDIgMi43NSAyIDMgYyAtMS40NSAwLjg3IC03Ljk5IDIuODUgLTEyIDMgYyAtNDAuODYgMS40OCAtODMuNDYgMC4yMSAtMTI2IDIgYyAtMTMuNjEgMC41NyAtMzkuMyA0Ljk1IC00MCA1IGMgLTAuMjMgMC4wMiA4LjU4IC0yLjQ3IDEzIC0zIGMgMTIuMyAtMS40OCAyNC4zMSAtMi42NiAzNyAtMyBjIDM4LjI5IC0xLjAzIDExMiAtMSAxMTIgLTEiLz48L3N2Zz4=','2019-07-18 09:19:01'),(34,1,1,9,28,'evwtfnuofkaniij7qe58avplsts0gc8u','2019-07-18 10:09:21','2019-07-18 10:27:26',NULL,'CG9MV6t47xwpGhEoh2buQp','2019-07-18 10:09:21',NULL,34,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzUzIiBoZWlnaHQ9IjU4Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMSA1NiBjIDAuMDkgLTAuMDUgMy4yMiAtMi40MyA1IC0zIGMgMTMuMzUgLTQuMjYgMjcuNDggLTguNDUgNDIgLTEyIGMgMTcuNjcgLTQuMzIgMzMuOTEgLTcuNjYgNTIgLTExIGMgNDkuNCAtOS4xMiA5NC4zNCAtMTcuODcgMTQzIC0yNSBjIDE4LjQ5IC0yLjcxIDM2LjE2IC0zLjMxIDU1IC00IGMgMTguNDUgLTAuNjggNDUuMjcgLTIuMTQgNTQgMCBjIDIuMTEgMC41MiAwLjkyIDEwLjAzIC0xIDEzIGMgLTQuMzcgNi43NiAtMTMuMjggMTYuNSAtMjEgMjEgYyAtMTAuNzcgNi4yOCAtMjUuOTIgMTIuMzEgLTM5IDE0IGMgLTQxLjQ0IDUuMzYgLTg2Ljc5IDcuMTIgLTEzMSA4IGMgLTIzLjk2IDAuNDcgLTQ2Ljc0IC0xLjk2IC03MSAtNCBjIC0xNi41MSAtMS4zOSAtMzMuMDcgLTIuOTIgLTQ4IC02IGMgLTUuMTEgLTEuMDUgLTE1IC01LjQ5IC0xNSAtNyBjIDAgLTEuNDcgOS45IC00LjkgMTUgLTYgYyAxMS40OCAtMi40OCAyMy42NCAtNC4wNCAzNiAtNSBjIDM1Ljc1IC0yLjc5IDczLjY5IC02LjI2IDEwNSAtNiBjIDUuMiAwLjA0IDEzLjAzIDQuMjEgMTYgNyBjIDEuNTQgMS40NSAxLjIgNi41NCAxIDkgbCAtMiAzIi8+PC9zdmc+','2019-07-18 10:27:24'),(35,1,1,9,29,'9pewllbvhnmctoexv3c0snw3kkoz0dwj','2019-07-18 12:47:19','2019-07-18 12:50:57',NULL,'MFiEvQNqmqeA1vm9mhRXoU','2019-07-18 12:47:19',NULL,35,NULL,'0',NULL,'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMzE5IiBoZWlnaHQ9IjQ4Ij48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZ2IoNTEsIDUxLCA1MSkiIGZpbGw9Im5vbmUiIGQ9Ik0gMjAzIDEgYyAtMC4zOCAwLjEgLTE0LjYyIDQuOTggLTIyIDYgYyAtMTEuNjYgMS42MSAtMjMuNjggMC43NyAtMzYgMiBjIC0zOS4yMiAzLjkyIC03NS40NyA5LjM0IC0xMTQgMTMgYyAtNy43MiAwLjczIC0xNS4zMiAtMC4yNiAtMjMgMCBjIC0yLjM2IDAuMDggLTcuMTIgMS4wMSAtNyAxIGMgMi44OSAtMC4yIDEwNy45MSAtOC45NCAxNjUgLTEyIGMgNTIuNDggLTIuODEgMTQ1Ljg3IC01IDE1MiAtNSBjIDAuNTIgMCAtNy45IDMuODggLTEyIDUgYyAtNi43NCAxLjg0IC0xMy44NiAyLjM2IC0yMSA0IGMgLTkuMzIgMi4xNCAtMTcuOSA0LjE3IC0yNyA3IGMgLTE2LjIgNS4wNCAtNDMuNCAxNC40NiAtNDcgMTYgYyAtMC4zOSAwLjE3IDUuMzEgMS43OCA1IDIgYyAtMC43IDAuNSAtNy45MiAyLjUgLTEyIDMgYyAtMTQuOTEgMS44MyAtNDUgNCAtNDUgNCIvPjwvc3ZnPg==','2019-07-18 12:50:55'),(36,1,1,9,30,'iutdwxioq3sxmclex5w4zkmiqauwpoja','2019-07-23 23:18:45','2019-07-23 23:18:45',NULL,NULL,'2019-07-23 23:18:45',NULL,36,NULL,'0',NULL,NULL,NULL),(37,1,1,6,31,'pt7gyubpogqvuytt5gegm7yqfuaaqms4','2019-09-08 23:43:11','2019-09-08 23:43:44',NULL,NULL,'2019-09-08 23:43:44',NULL,37,NULL,'0',NULL,NULL,NULL),(38,1,1,7,31,'wgpsxdszgybqqxeajj1d9gh0ofv59mog','2019-09-08 23:43:11','2019-09-08 23:44:00',NULL,NULL,'2019-09-08 23:44:00',NULL,38,NULL,'0',NULL,NULL,NULL),(39,1,1,2,32,'8trrw6jousrjr9e0pmfljf3c9tgmfkff','2019-09-30 23:43:35','2019-09-30 23:44:15',NULL,NULL,'2019-09-30 23:44:15',NULL,39,NULL,'0',NULL,NULL,NULL),(40,1,1,3,32,'xoyoqsprpzitm3yvd22rkeod10eqhmc1','2019-09-30 23:43:35','2020-09-28 17:41:16',NULL,NULL,'2019-09-30 23:44:23','2020-09-28 17:41:16',40,NULL,'0',NULL,NULL,NULL),(41,1,1,4,32,'asij7hfmbeagt7dkflfaxxo82mhqovyt','2019-09-30 23:43:35','2019-10-03 01:21:14',NULL,NULL,'2019-09-30 23:44:39','2019-10-03 01:21:14',41,NULL,'0',NULL,NULL,NULL),(42,1,1,5,32,'gsjbuikqiv5dzneueo4qncv4qhzoqzkg','2019-09-30 23:43:35','2019-09-30 23:44:47',NULL,NULL,'2019-09-30 23:44:47',NULL,42,NULL,'0',NULL,NULL,NULL),(43,1,1,9,33,'i8rdqsuat2lxooownwxup6own0lkmxuz','2019-10-14 06:23:58','2022-08-27 17:33:17',NULL,NULL,'2019-10-14 06:23:58','2022-08-27 17:33:17',43,NULL,'0',NULL,NULL,NULL),(44,1,1,9,34,'lrprszgziq8frsebobibjoh4p9imivee','2019-10-15 15:22:14','2019-10-15 15:37:40','2019-10-15 15:37:40','EC-0PN23902H6100511W','2019-10-15 15:22:14',NULL,44,NULL,'0',NULL,NULL,NULL),(45,1,1,8,34,'tztieornljmviy3klsopgkj0glhv95fj','2019-10-15 15:37:40','2019-10-15 15:43:00','2019-10-15 15:43:00','EC-1ET652944L664053D','2019-10-15 15:37:40',NULL,45,NULL,'0',NULL,NULL,NULL),(46,1,1,12,34,'r3um9mmsovodrhzwbtojtdoljtksx886','2019-10-15 15:43:00','2019-10-15 16:09:24',NULL,'EC-2YC92427P4425843K','2019-10-15 15:43:00',NULL,46,NULL,'0',NULL,NULL,NULL),(47,1,1,12,35,'0kehwrfk88f2bj6zkp936z9fskyudgkk','2019-10-15 16:59:02','2019-10-15 16:59:02',NULL,NULL,'2019-10-15 16:59:02',NULL,47,NULL,'0',NULL,NULL,NULL),(48,1,1,9,36,'q4cljo1dceuimzu4hcyp6rydkdjznzgl','2019-10-21 07:53:05','2019-10-21 07:53:05',NULL,NULL,'2019-10-21 07:53:05',NULL,48,NULL,'0',NULL,NULL,NULL),(49,1,1,9,37,'tzwgzw08fqgn0cyibupxfkvhjdckzn6g','2019-10-21 07:58:48','2019-10-21 07:58:49',NULL,NULL,'2019-10-21 07:58:49',NULL,49,NULL,'0',NULL,NULL,NULL),(50,1,1,9,38,'ivflt4xjv1kch1q9tmljef71yv5ot2ti','2019-10-21 08:03:44','2019-10-21 08:03:44',NULL,NULL,'2019-10-21 08:03:44',NULL,50,NULL,'0',NULL,NULL,NULL),(51,1,1,2,39,'dzlsotbuqgqs0smxyvzik6skjnr0h8mn','2021-08-17 22:47:55','2021-08-17 22:47:55',NULL,NULL,NULL,NULL,51,NULL,NULL,NULL,NULL,NULL),(52,1,1,3,39,'09n4haswah4bjzsiuq4imb9m567h0emy','2021-08-17 22:47:55','2021-08-17 22:47:55',NULL,NULL,NULL,NULL,52,NULL,NULL,NULL,NULL,NULL),(53,1,1,2,40,'zfix60rf1qsk5ljvwb9rsqlbrg3gj3ba','2021-08-17 23:13:30','2021-08-17 23:13:30',NULL,NULL,NULL,NULL,53,NULL,NULL,NULL,NULL,NULL),(54,1,1,3,40,'sth7qrt1spek6ptwblohlx2kic73m2os','2021-08-17 23:13:30','2021-08-17 23:13:30',NULL,NULL,NULL,NULL,54,NULL,NULL,NULL,NULL,NULL),(55,1,1,2,41,'m5l007jpt7lfwps1xrlddc0yv6miscmm','2021-08-17 23:26:32','2021-08-17 23:40:31',NULL,NULL,'2021-08-17 23:40:31',NULL,55,NULL,'0',NULL,NULL,NULL),(56,1,1,3,41,'a1wtumjabw6nbktsgbdpnxnsfwzf37tg','2021-08-17 23:26:32','2021-08-17 23:40:39',NULL,NULL,'2021-08-17 23:40:39',NULL,56,NULL,'0',NULL,NULL,NULL),(57,1,1,9,42,'1y9jkmtenmxdrpme0uwjjzialdprhbnv','2021-08-19 10:14:40','2021-08-19 10:16:33',NULL,NULL,'2021-08-19 10:14:49','2021-08-19 10:16:33',57,NULL,'0',NULL,NULL,NULL),(58,1,1,2,43,'xrutvs9g2qilbtggv0lynqql9fbcmxos','2021-08-19 10:45:15','2021-08-19 10:45:43',NULL,NULL,'2021-08-19 10:45:43',NULL,58,NULL,'0',NULL,NULL,NULL),(59,1,2,9,44,'iknnstrkjz2yc6j3daraqoesikrjlhyo','2021-09-02 20:04:53','2021-09-02 20:05:09',NULL,NULL,'2021-09-02 20:05:09',NULL,59,NULL,'0',NULL,NULL,NULL),(60,1,2,9,45,'espn8s6lnv2lrg2gui9tcyx8jwh80vxi','2021-09-02 21:29:42','2021-09-02 21:29:51',NULL,NULL,'2021-09-02 21:29:51',NULL,60,NULL,'0',NULL,NULL,NULL),(61,1,2,9,46,'w5ha2ueu94aaeonn4a5lm3312lzxt2ab','2021-09-02 23:10:00','2021-09-02 23:10:08',NULL,NULL,'2021-09-02 23:10:08',NULL,61,NULL,'0',NULL,NULL,NULL),(62,1,2,9,47,'lq1ko9k9elqc63ud4unwnywv8lu0xwxv','2021-09-02 23:44:05','2021-09-02 23:44:05',NULL,NULL,'2021-09-02 23:44:05',NULL,62,NULL,'0',NULL,NULL,NULL),(63,1,2,14,48,'zrflvbaqjc9qlrv9ki6il56de8us9gpz','2021-09-09 17:44:03','2021-09-09 17:44:18',NULL,NULL,'2021-09-09 17:44:18',NULL,63,NULL,'0',NULL,NULL,NULL),(64,1,2,15,49,'wdicul0ql7gzfyifkn7wjw7qvixyfycy','2021-09-09 17:56:52','2021-09-09 17:57:07',NULL,NULL,'2021-09-09 17:57:07',NULL,64,NULL,'0',NULL,NULL,NULL),(65,1,2,16,50,'dmtokmolr1vs37lmesbtr3oi5zogprmy','2021-09-09 18:02:39','2021-09-09 18:02:54',NULL,NULL,'2021-09-09 18:02:54',NULL,65,NULL,'0',NULL,NULL,NULL),(66,1,2,17,51,'xmjr5mgulw1cib4knhy8ikri50csc4hm','2021-09-09 18:08:35','2021-09-09 18:08:50',NULL,NULL,'2021-09-09 18:08:50',NULL,66,NULL,'0',NULL,NULL,NULL),(67,1,2,18,52,'vlor5njay1sdcf9inczavl8kr895mqeh','2021-09-09 18:14:37','2021-09-09 18:14:52',NULL,NULL,'2021-09-09 18:14:52',NULL,67,NULL,'0',NULL,NULL,NULL),(68,1,2,17,53,'7e4j1wavp9xeescgf3rjxydbth3a7riv','2021-10-12 14:25:46','2021-10-12 14:25:46',NULL,NULL,NULL,NULL,68,NULL,NULL,NULL,NULL,NULL),(69,1,2,19,54,'qpsgjwyrykurbawsjrndxb3b0jgct1j9','2021-10-12 15:29:13','2021-10-12 15:29:13',NULL,NULL,NULL,NULL,69,NULL,NULL,NULL,NULL,NULL),(70,1,2,14,55,'rpgsijzqjg4iltnuhftwkggheediggkz','2021-10-12 18:36:33','2021-10-12 18:36:33',NULL,NULL,NULL,NULL,70,NULL,NULL,NULL,NULL,NULL),(71,1,2,16,56,'ggxkywyq4ynaoghxslxo2arigfh8rcgf','2021-10-12 18:43:09','2021-10-12 18:43:09',NULL,NULL,NULL,NULL,71,NULL,NULL,NULL,NULL,NULL),(72,1,2,20,57,'ncmwksox0vnt6eillff6iglurfq8cbzl','2021-10-12 19:21:22','2021-10-12 19:21:22',NULL,NULL,NULL,NULL,72,NULL,NULL,NULL,NULL,NULL),(73,1,2,17,58,'o3v9mriyhec8pf3evouknxp5fsc4lqgd','2021-10-12 20:04:35','2021-10-12 20:06:54',NULL,NULL,'2021-10-12 20:06:54',NULL,73,NULL,'0',NULL,NULL,NULL),(74,1,2,19,59,'inpaeruvgoocecjhwq6uybovdmdjysts','2021-10-12 20:08:40','2021-10-12 20:09:35',NULL,NULL,'2021-10-12 20:09:35',NULL,74,NULL,'0',NULL,NULL,NULL),(75,1,2,14,60,'rjp7jhutdqzvzcf5msgwmvzubihuorqn','2021-10-12 20:11:44','2021-10-12 20:12:50',NULL,NULL,'2021-10-12 20:12:50',NULL,75,NULL,'0',NULL,NULL,NULL),(76,1,2,16,61,'ceaspwzqrhfky7xma8fbgccvbfsty3us','2021-10-12 20:14:36','2021-10-12 20:14:55',NULL,NULL,'2021-10-12 20:14:55',NULL,76,NULL,'0',NULL,NULL,NULL),(77,1,2,20,62,'qh2ljljel4catkwjortohfojcjzqhqzv','2021-10-12 20:18:14','2021-10-12 20:18:39',NULL,NULL,'2021-10-12 20:18:39',NULL,77,NULL,'0',NULL,NULL,NULL),(78,1,2,18,63,'jfwhyhy05q1paa8enzyvmkfuujrs5wjo','2021-10-12 20:22:10','2021-10-12 20:22:26',NULL,NULL,'2021-10-12 20:22:26',NULL,78,NULL,'0',NULL,NULL,NULL),(79,1,2,21,64,'ysxopl4klavnbwy1yjxbogbjadlvflni','2021-10-12 20:33:27','2021-10-12 20:34:00',NULL,NULL,'2021-10-12 20:34:00',NULL,79,NULL,'0',NULL,NULL,NULL),(80,1,2,22,65,'fdtnwt7nah2rpwwqet4sfpfu7krgjdih','2021-10-12 20:45:51','2021-10-12 20:47:52',NULL,NULL,'2021-10-12 20:47:52',NULL,80,NULL,'0',NULL,NULL,NULL),(81,1,2,22,66,'n6q6gcornird4rgrxawdhga1hfhw5u3b','2021-10-12 20:49:18','2021-10-12 20:49:18',NULL,NULL,NULL,NULL,81,NULL,NULL,NULL,NULL,NULL),(82,1,2,23,67,'cpkliuel56mmjqs6p3d5jfyra3d5htka','2021-10-12 20:58:05','2021-10-12 20:58:48',NULL,NULL,'2021-10-12 20:58:48',NULL,82,NULL,'0',NULL,NULL,NULL),(83,1,2,23,68,'ve8vkstxioqdbpnpfld251kvo9egkfo6','2021-10-12 21:01:38','2021-10-12 21:01:38',NULL,NULL,NULL,NULL,83,NULL,NULL,NULL,NULL,NULL),(84,1,2,24,69,'yn0al1dgaxweec81uuhsac6tdfr5ijux','2021-10-21 15:44:13','2021-10-21 15:46:09',NULL,NULL,'2021-10-21 15:46:09',NULL,84,NULL,'0',NULL,NULL,NULL),(85,1,1,25,70,'oaltvctkhhv55racan3uq4wurgfdvgfx','2021-12-14 10:45:25','2021-12-14 10:45:25',NULL,NULL,'2021-12-14 10:45:25',NULL,85,NULL,'0',NULL,NULL,NULL),(86,1,2,24,71,'imw2paglocwwpzz8cqa6rvlctatvx7ep','2022-02-27 04:23:52','2022-02-27 04:35:18',NULL,NULL,'2022-02-27 04:35:18',NULL,86,NULL,'0',NULL,NULL,NULL),(87,1,2,24,72,'ylprozltc7mgqthbif5r7aiprdimoljn','2022-02-27 04:32:45','2022-02-27 04:32:45',NULL,NULL,NULL,NULL,87,NULL,NULL,NULL,NULL,NULL),(88,1,2,24,73,'lxn2sshhoyoard9bebieeqclag1h4bjh','2022-02-27 09:45:50','2022-02-27 09:45:50',NULL,NULL,NULL,NULL,88,NULL,NULL,NULL,NULL,NULL),(89,1,2,17,74,'rzwatjmguoc0lgqvoxmamn3xqacvfcrf','2022-02-27 10:02:56','2022-02-27 10:02:56',NULL,NULL,NULL,NULL,89,NULL,NULL,NULL,NULL,NULL),(90,1,2,20,75,'jbtm6dujnihzko9r18siqe0jakog1a6t','2022-02-27 10:11:27','2022-02-27 10:11:27',NULL,NULL,NULL,NULL,90,NULL,NULL,NULL,NULL,NULL),(91,1,2,23,76,'4hnwp73dqbwsxph7lbmyarr08yfpzo92','2022-02-27 10:18:00','2022-02-27 10:18:00',NULL,NULL,NULL,NULL,91,NULL,NULL,NULL,NULL,NULL),(92,1,2,27,77,'fpcpp0crvuy71lczocdzloehlt5rrsvw','2022-03-13 04:02:39','2022-03-13 04:02:39',NULL,NULL,NULL,NULL,92,NULL,NULL,NULL,NULL,NULL),(93,1,2,15,78,'s9pwp9fcvnl6zdsrepukavgev97ibq7b','2022-03-13 04:14:42','2022-03-13 04:14:42',NULL,NULL,NULL,NULL,93,NULL,NULL,NULL,NULL,NULL),(94,1,2,28,79,'chx04c71n9tospkgowcj8libbjwgarjm','2022-03-13 05:45:37','2022-03-13 05:45:37',NULL,NULL,NULL,NULL,94,NULL,NULL,NULL,NULL,NULL),(95,1,2,29,80,'4u8v5ja9ncsb6v9xjs5txpytu5bp4hfk','2022-03-13 06:02:05','2022-03-13 06:02:05',NULL,NULL,NULL,NULL,95,NULL,NULL,NULL,NULL,NULL),(96,1,2,31,81,'is8bxvwltehcedf75jgaamirpunf71om','2022-03-13 06:12:46','2022-03-13 06:12:46',NULL,NULL,NULL,NULL,96,NULL,NULL,NULL,NULL,NULL),(97,1,2,31,82,'sjqehvj5vghuighihk2q9kjndkozxqax','2022-03-13 06:15:49','2022-03-13 06:15:49',NULL,NULL,NULL,NULL,97,NULL,NULL,NULL,NULL,NULL),(98,1,1,9,83,'slv10kjq77j44ubal9dbdlmujdsbgu0v','2022-08-27 17:11:55','2022-08-27 17:18:30',NULL,NULL,'2022-08-27 17:12:07','2022-08-27 17:18:30',98,NULL,'0',NULL,NULL,NULL),(99,1,1,9,84,'15e49i0lywq0bsvbfjvhpgegybbe7qnz','2022-08-27 17:21:47','2022-08-27 17:23:02',NULL,NULL,'2022-08-27 17:21:54','2022-08-27 17:23:02',99,NULL,'0',NULL,NULL,NULL),(100,1,1,9,85,'tbgbjvj3c2armoqhzqzdwsgxwbuijncx','2022-08-27 17:27:00','2022-08-27 19:19:42',NULL,NULL,'2022-08-27 17:27:11','2022-08-27 19:19:42',100,NULL,'0',NULL,NULL,NULL),(101,1,1,9,86,'4qhjqwbwtyo4ghlfxa6hcinfbenicul8','2022-08-27 19:01:46','2022-08-27 19:35:43',NULL,'EC-0JM9615638941783L','2022-08-27 19:02:01','2022-08-27 19:33:59',101,NULL,'0',NULL,NULL,NULL),(102,1,1,25,87,'6uxklbrdvzmf28adqyqfwcunxa0fqhmr','2024-08-21 17:02:33','2024-08-21 17:02:33',NULL,NULL,'2024-08-21 17:02:33',NULL,102,NULL,'0',NULL,NULL,NULL),(103,1,1,9,88,'lkwecr8oqdhfu4vdixh7edjietrd7ayy','2024-08-21 17:42:44','2024-08-21 17:42:53',NULL,NULL,'2024-08-21 17:42:53',NULL,103,NULL,'0',NULL,NULL,NULL),(104,1,1,33,89,'j7lnwr3zsiprfp0i7evgshcwyjjrd6sj','2024-09-19 12:37:04','2024-09-19 12:58:18',NULL,NULL,'2024-09-19 12:58:18',NULL,104,NULL,'0',NULL,NULL,NULL),(105,1,2,34,90,'12nwitc61jnq3jazppljficeqiq9ulte','2025-06-10 03:43:52','2025-06-10 03:49:15',NULL,NULL,'2025-06-10 03:49:15',NULL,105,NULL,'0',NULL,NULL,NULL),(106,1,2,34,91,'naaajcl5kkrwdoltjjxfkzeubevaqguo','2025-07-19 02:00:01','2025-07-24 01:30:24',NULL,NULL,'2025-07-24 01:30:24',NULL,106,NULL,'0',NULL,NULL,NULL);
/*!40000 ALTER TABLE `invitations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `invoice_designs`
--

DROP TABLE IF EXISTS `invoice_designs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `invoice_designs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `javascript` mediumtext COLLATE utf8_unicode_ci,
  `pdfmake` mediumtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `invoice_designs`
--

LOCK TABLES `invoice_designs` WRITE;
/*!40000 ALTER TABLE `invoice_designs` DISABLE KEYS */;
INSERT INTO `invoice_designs` (`id`, `name`, `javascript`, `pdfmake`) VALUES (1,'Clean','var GlobalY=0;//Y position of line at current page\n\n	    var client = invoice.client;\n	    var account = invoice.account;\n	    var currencyId = client.currency_id;\n\n	    layout.headerRight = 550;\n	    layout.rowHeight = 15;\n\n	    doc.setFontSize(9);\n\n	    if (invoice.image)\n	    {\n	      var left = layout.headerRight - invoice.imageWidth;\n	      doc.addImage(invoice.image, \'JPEG\', layout.marginLeft, 30);\n	    }\n	  \n	    if (!invoice.is_pro && logoImages.imageLogo1)\n	    {\n	      pageHeight=820;\n	      y=pageHeight-logoImages.imageLogoHeight1;\n	      doc.addImage(logoImages.imageLogo1, \'JPEG\', layout.marginLeft, y, logoImages.imageLogoWidth1, logoImages.imageLogoHeight1);\n	    }\n\n	    doc.setFontSize(9);\n	    SetPdfColor(\'LightBlue\', doc, \'primary\');\n	    displayAccount(doc, invoice, 220, layout.accountTop, layout);\n\n	    SetPdfColor(\'LightBlue\', doc, \'primary\');\n	    doc.setFontSize(\'11\');\n	    doc.text(50, layout.headerTop, (invoice.is_quote ? invoiceLabels.quote : invoiceLabels.invoice).toUpperCase());\n\n\n	    SetPdfColor(\'Black\',doc); //set black color\n	    doc.setFontSize(9);\n\n	    var invoiceHeight = displayInvoice(doc, invoice, 50, 170, layout);\n	    var clientHeight = displayClient(doc, invoice, 220, 170, layout);\n	    var detailsHeight = Math.max(invoiceHeight, clientHeight);\n	    layout.tableTop = Math.max(layout.tableTop, layout.headerTop + detailsHeight + (3 * layout.rowHeight));\n	   \n	    doc.setLineWidth(0.3);        \n	    doc.setDrawColor(200,200,200);\n	    doc.line(layout.marginLeft - layout.tablePadding, layout.headerTop + 6, layout.marginRight + layout.tablePadding, layout.headerTop + 6);\n	    doc.line(layout.marginLeft - layout.tablePadding, layout.headerTop + detailsHeight + 14, layout.marginRight + layout.tablePadding, layout.headerTop + detailsHeight + 14);\n\n	    doc.setFontSize(10);\n	    doc.setFontType(\'bold\');\n	    displayInvoiceHeader(doc, invoice, layout);\n	    var y = displayInvoiceItems(doc, invoice, layout);\n\n	    doc.setFontSize(9);\n	    doc.setFontType(\'bold\');\n\n	    GlobalY=GlobalY+25;\n\n\n	    doc.setLineWidth(0.3);\n	    doc.setDrawColor(241,241,241);\n	    doc.setFillColor(241,241,241);\n	    var x1 = layout.marginLeft - 12;\n	    var y1 = GlobalY-layout.tablePadding;\n\n	    var w2 = 510 + 24;\n	    var h2 = doc.internal.getFontSize()*3+layout.tablePadding*2;\n\n	    if (invoice.discount) {\n	        h2 += doc.internal.getFontSize()*2;\n	    }\n	    if (invoice.tax_amount) {\n	        h2 += doc.internal.getFontSize()*2;\n	    }\n\n	    //doc.rect(x1, y1, w2, h2, \'FD\');\n\n	    doc.setFontSize(9);\n	    displayNotesAndTerms(doc, layout, invoice, y);\n	    y += displaySubtotals(doc, layout, invoice, y, layout.unitCostRight);\n\n\n	    doc.setFontSize(10);\n	    Msg = invoice.is_quote ? invoiceLabels.total : invoiceLabels.balance_due;\n	    var TmpMsgX = layout.unitCostRight-(doc.getStringUnitWidth(Msg) * doc.internal.getFontSize());\n	    \n	    doc.text(TmpMsgX, y, Msg);\n\n	    SetPdfColor(\'LightBlue\', doc, \'primary\');\n	    AmountText = formatMoney(invoice.balance_amount, currencyId);\n	    headerLeft=layout.headerRight+400;\n	    var AmountX = layout.lineTotalRight - (doc.getStringUnitWidth(AmountText) * doc.internal.getFontSize());\n	    doc.text(AmountX, y, AmountText);','{\"content\":[{\"columns\":[{\"image\":\"$accountLogo\",\"fit\":[120,80]},{\"stack\":\"$accountDetails\",\"margin\":[7,0,0,0]},{\"stack\":\"$accountAddress\"}]},{\"text\":\"$entityTypeUC\",\"margin\":[8,30,8,5],\"style\":\"entityTypeLabel\"},{\"table\":{\"headerRows\":1,\"widths\":[\"auto\",\"auto\",\"*\"],\"body\":[[{\"table\":{\"body\":\"$invoiceDetails\"},\"margin\":[0,0,12,0],\"layout\":\"noBorders\"},{\"stack\":\"$clientDetails\"},{\"text\":\"\"}]]},\"layout\":{\"hLineWidth\":\"$firstAndLast:.5\",\"vLineWidth\":\"$none\",\"hLineColor\":\"#D8D8D8\",\"paddingLeft\":\"$amount:8\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:6\",\"paddingBottom\":\"$amount:6\"}},{\"style\":\"invoiceLineItemsTable\",\"table\":{\"headerRows\":1,\"widths\":\"$invoiceLineItemColumns\",\"body\":\"$invoiceLineItems\"},\"layout\":{\"hLineWidth\":\"$notFirst:.5\",\"vLineWidth\":\"$none\",\"hLineColor\":\"#D8D8D8\",\"paddingLeft\":\"$amount:8\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:14\",\"paddingBottom\":\"$amount:14\"}},{\"columns\":[\"$notesAndTerms\",{\"table\":{\"widths\":[\"*\",\"40%\"],\"body\":\"$subtotals\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$none\",\"paddingLeft\":\"$amount:34\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:4\",\"paddingBottom\":\"$amount:4\"}}]},\"$signature\",{\"stack\":[\"$invoiceDocuments\"],\"style\":\"invoiceDocuments\"}],\"defaultStyle\":{\"font\":\"$bodyFont\",\"fontSize\":\"$fontSize\",\"margin\":[8,4,8,4]},\"footer\":{\"columns\":[{\"text\":\"$invoiceFooter\",\"alignment\":\"left\"}],\"margin\":[40,-20,40,0]},\"styles\":{\"entityTypeLabel\":{\"font\":\"$headerFont\",\"fontSize\":\"$fontSizeLargest\",\"color\":\"$primaryColor:#37a3c6\"},\"primaryColor\":{\"color\":\"$primaryColor:#37a3c6\"},\"accountName\":{\"color\":\"$primaryColor:#37a3c6\",\"bold\":true},\"invoiceDetails\":{\"margin\":[0,0,8,0]},\"accountDetails\":{\"margin\":[0,2,0,2]},\"clientDetails\":{\"margin\":[0,2,0,2]},\"notesAndTerms\":{\"margin\":[0,2,0,2]},\"accountAddress\":{\"margin\":[0,2,0,2]},\"odd\":{\"fillColor\":\"#fbfbfb\"},\"productKey\":{\"color\":\"$primaryColor:#37a3c6\",\"bold\":true},\"subtotalsBalanceDueLabel\":{\"fontSize\":\"$fontSizeLarger\"},\"subtotalsBalanceDue\":{\"fontSize\":\"$fontSizeLarger\",\"color\":\"$primaryColor:#37a3c6\"},\"invoiceNumber\":{\"bold\":true},\"tableHeader\":{\"bold\":true,\"fontSize\":\"$fontSizeLarger\"},\"costTableHeader\":{\"alignment\":\"right\"},\"qtyTableHeader\":{\"alignment\":\"right\"},\"taxTableHeader\":{\"alignment\":\"right\"},\"lineTotalTableHeader\":{\"alignment\":\"right\"},\"invoiceLineItemsTable\":{\"margin\":[0,16,0,16]},\"clientName\":{\"bold\":true},\"cost\":{\"alignment\":\"right\"},\"quantity\":{\"alignment\":\"right\"},\"tax\":{\"alignment\":\"right\"},\"lineTotal\":{\"alignment\":\"right\"},\"subtotals\":{\"alignment\":\"right\"},\"termsLabel\":{\"bold\":true},\"fullheader\":{\"font\":\"$headerFont\",\"fontSize\":\"$fontSizeLargest\",\"bold\":true},\"subheader\":{\"font\":\"$headerFont\",\"fontSize\":\"$fontSizeLarger\"},\"help\":{\"fontSize\":\"$fontSizeSmaller\",\"color\":\"#737373\"},\"invoiceDocuments\":{\"margin\":[7,0,7,0]},\"invoiceDocument\":{\"margin\":[0,10,0,10]}},\"pageMargins\":[40,40,40,60],\"background\":[{\"image\":\"$accountBackground\",\"alignment\":\"center\"}]}'),(2,'Bold','  var GlobalY=0;//Y position of line at current page\n\n			  var client = invoice.client;\n			  var account = invoice.account;\n			  var currencyId = client.currency_id;\n\n			  layout.headerRight = 150;\n			  layout.rowHeight = 15;\n			  layout.headerTop = 125;\n			  layout.tableTop = 300;\n\n			  doc.setLineWidth(0.5);\n\n			  if (NINJA.primaryColor) {\n			    setDocHexFill(doc, NINJA.primaryColor);\n			    setDocHexDraw(doc, NINJA.primaryColor);\n			  } else {\n			    doc.setFillColor(46,43,43);\n			  }  \n\n			  var x1 =0;\n			  var y1 = 0;\n			  var w2 = 595;\n			  var h2 = 100;\n			  doc.rect(x1, y1, w2, h2, \'FD\');\n\n			  if (invoice.image)\n			  {\n			    var left = layout.headerRight - invoice.imageWidth;\n			    doc.addImage(invoice.image, \'JPEG\', layout.marginLeft, 30);\n			  }\n\n			  doc.setLineWidth(0.5);\n			  if (NINJA.primaryColor) {\n			    setDocHexFill(doc, NINJA.primaryColor);\n			    setDocHexDraw(doc, NINJA.primaryColor);\n			  } else {\n			    doc.setFillColor(46,43,43);\n			    doc.setDrawColor(46,43,43);\n			  }  \n\n			  // return doc.setTextColor(240,240,240);//select color Custom Report GRAY Colour\n			  var x1 = 0;//tableLeft-tablePadding ;\n			  var y1 = 750;\n			  var w2 = 596;\n			  var h2 = 94;//doc.internal.getFontSize()*length+length*1.1;//+h;//+tablePadding;\n\n			  doc.rect(x1, y1, w2, h2, \'FD\');\n			  if (!invoice.is_pro && logoImages.imageLogo2)\n			  {\n			      pageHeight=820;\n			      var left = 250;//headerRight ;\n			      y=pageHeight-logoImages.imageLogoHeight2;\n			      var headerRight=370;\n\n			      var left = headerRight - logoImages.imageLogoWidth2;\n			      doc.addImage(logoImages.imageLogo2, \'JPEG\', left, y, logoImages.imageLogoWidth2, logoImages.imageLogoHeight2);\n			  }\n\n			  doc.setFontSize(7);\n			  doc.setFontType(\'bold\');\n			  SetPdfColor(\'White\',doc);\n\n			  displayAccount(doc, invoice, 300, layout.accountTop, layout);\n\n\n			  var y = layout.accountTop;\n			  var left = layout.marginLeft;\n			  var headerY = layout.headerTop;\n\n			  SetPdfColor(\'GrayLogo\',doc); //set black color\n			  doc.setFontSize(7);\n\n			  //show left column\n			  SetPdfColor(\'Black\',doc); //set black color\n			  doc.setFontType(\'normal\');\n\n			  //publish filled box\n			  doc.setDrawColor(200,200,200);\n\n			  if (NINJA.secondaryColor) {\n			    setDocHexFill(doc, NINJA.secondaryColor);\n			  } else {\n			    doc.setFillColor(54,164,152);  \n			  }  \n\n			  GlobalY=190;\n			  doc.setLineWidth(0.5);\n\n			  var BlockLenght=220;\n			  var x1 =595-BlockLenght;\n			  var y1 = GlobalY-12;\n			  var w2 = BlockLenght;\n			  var h2 = getInvoiceDetailsHeight(invoice, layout) + layout.tablePadding + 2;\n\n			  doc.rect(x1, y1, w2, h2, \'FD\');\n\n			  SetPdfColor(\'SomeGreen\', doc, \'secondary\');\n			  doc.setFontSize(\'14\');\n			  doc.setFontType(\'bold\');\n			  doc.text(50, GlobalY, (invoice.is_quote ? invoiceLabels.your_quote : invoiceLabels.your_invoice).toUpperCase());\n\n\n			  var z=GlobalY;\n			  z=z+30;\n\n			  doc.setFontSize(\'8\');        \n			  SetPdfColor(\'Black\',doc);			  \n        var clientHeight = displayClient(doc, invoice, layout.marginLeft, z, layout);\n        layout.tableTop += Math.max(0, clientHeight - 75);\n			  marginLeft2=395;\n\n			  //publish left side information\n			  SetPdfColor(\'White\',doc);\n			  doc.setFontSize(\'8\');\n			  var detailsHeight = displayInvoice(doc, invoice, marginLeft2, z-25, layout) + 75;\n			  layout.tableTop = Math.max(layout.tableTop, layout.headerTop + detailsHeight + (2 * layout.tablePadding));\n\n			  y=z+60;\n			  x = GlobalY + 100;\n			  doc.setFontType(\'bold\');\n\n			  doc.setFontSize(12);\n			  doc.setFontType(\'bold\');\n			  SetPdfColor(\'Black\',doc);\n			  displayInvoiceHeader(doc, invoice, layout);\n\n			  var y = displayInvoiceItems(doc, invoice, layout);\n			  doc.setLineWidth(0.3);\n			  displayNotesAndTerms(doc, layout, invoice, y);\n			  y += displaySubtotals(doc, layout, invoice, y, layout.unitCostRight);\n\n			  doc.setFontType(\'bold\');\n\n			  doc.setFontSize(12);\n			  x += doc.internal.getFontSize()*4;\n			  Msg = invoice.is_quote ? invoiceLabels.total : invoiceLabels.balance_due;\n			  var TmpMsgX = layout.unitCostRight-(doc.getStringUnitWidth(Msg) * doc.internal.getFontSize());\n\n			  doc.text(TmpMsgX, y, Msg);\n\n			  //SetPdfColor(\'LightBlue\',doc);\n			  AmountText = formatMoney(invoice.balance_amount , currencyId);\n			  headerLeft=layout.headerRight+400;\n			  var AmountX = headerLeft - (doc.getStringUnitWidth(AmountText) * doc.internal.getFontSize());\n			  SetPdfColor(\'SomeGreen\', doc, \'secondary\');\n			  doc.text(AmountX, y, AmountText);','{\"content\":[{\"columns\":[{\"width\":380,\"stack\":[{\"text\":\"$yourInvoiceLabelUC\",\"style\":\"yourInvoice\"},\"$clientDetails\"],\"margin\":[60,100,0,10]},{\"canvas\":[{\"type\":\"rect\",\"x\":0,\"y\":0,\"w\":225,\"h\":\"$invoiceDetailsHeight\",\"r\":0,\"lineWidth\":1,\"color\":\"$primaryColor:#36a498\"}],\"width\":10,\"margin\":[-10,100,0,10]},{\"table\":{\"body\":\"$invoiceDetails\"},\"layout\":\"noBorders\",\"margin\":[0,110,0,0]}]},{\"style\":\"invoiceLineItemsTable\",\"table\":{\"headerRows\":1,\"widths\":\"$invoiceLineItemColumns\",\"body\":\"$invoiceLineItems\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$none\",\"paddingLeft\":\"$amount:8\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:14\",\"paddingBottom\":\"$amount:14\"}},{\"columns\":[{\"width\":46,\"text\":\" \"},\"$notesAndTerms\",{\"table\":{\"widths\":[\"*\",\"40%\"],\"body\":\"$subtotals\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$none\",\"paddingLeft\":\"$amount:8\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:4\",\"paddingBottom\":\"$amount:4\"}}]},\"$signature\",{\"stack\":[\"$invoiceDocuments\"],\"style\":\"invoiceDocuments\"}],\"footer\":[{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":0,\"x2\":600,\"y2\":0,\"lineWidth\":100,\"lineColor\":\"$secondaryColor:#292526\"}]},{\"columns\":[{\"text\":\"$invoiceFooter\",\"margin\":[40,-40,40,0],\"alignment\":\"left\",\"color\":\"#FFFFFF\"}]}],\"header\":[{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":0,\"x2\":600,\"y2\":0,\"lineWidth\":200,\"lineColor\":\"$secondaryColor:#292526\"}],\"width\":10},{\"columns\":[{\"image\":\"$accountLogo\",\"fit\":[120,60],\"margin\":[30,16,0,0]},{\"stack\":\"$accountDetails\",\"margin\":[0,16,0,0],\"width\":140},{\"stack\":\"$accountAddress\",\"margin\":[20,16,0,0]}]}],\"defaultStyle\":{\"font\":\"$bodyFont\",\"fontSize\":\"$fontSize\",\"margin\":[8,4,8,4]},\"styles\":{\"primaryColor\":{\"color\":\"$primaryColor:#36a498\"},\"accountName\":{\"bold\":true,\"margin\":[4,2,4,1],\"color\":\"$primaryColor:#36a498\"},\"accountDetails\":{\"margin\":[4,2,4,1],\"color\":\"#FFFFFF\"},\"accountAddress\":{\"margin\":[4,2,4,1],\"color\":\"#FFFFFF\"},\"clientDetails\":{\"margin\":[0,2,0,1]},\"odd\":{\"fillColor\":\"#ebebeb\"},\"subtotalsBalanceDueLabel\":{\"fontSize\":\"$fontSizeLargest\",\"bold\":true},\"subtotalsBalanceDue\":{\"fontSize\":\"$fontSizeLargest\",\"color\":\"$primaryColor:#36a498\",\"bold\":true},\"invoiceDetails\":{\"color\":\"#ffffff\"},\"invoiceNumber\":{\"bold\":true},\"tableHeader\":{\"fontSize\":12,\"bold\":true},\"costTableHeader\":{\"alignment\":\"right\"},\"qtyTableHeader\":{\"alignment\":\"right\"},\"taxTableHeader\":{\"alignment\":\"right\"},\"lineTotalTableHeader\":{\"alignment\":\"right\",\"margin\":[0,0,40,0]},\"firstColumn\":{\"margin\":[40,0,0,0]},\"lastColumn\":{\"margin\":[0,0,40,0]},\"productKey\":{\"color\":\"$primaryColor:#36a498\",\"bold\":true},\"yourInvoice\":{\"font\":\"$headerFont\",\"bold\":true,\"fontSize\":14,\"color\":\"$primaryColor:#36a498\",\"margin\":[0,0,0,8]},\"invoiceLineItemsTable\":{\"margin\":[0,26,0,16]},\"clientName\":{\"bold\":true},\"cost\":{\"alignment\":\"right\"},\"quantity\":{\"alignment\":\"right\"},\"tax\":{\"alignment\":\"right\"},\"lineTotal\":{\"alignment\":\"right\"},\"subtotals\":{\"alignment\":\"right\",\"margin\":[0,0,40,0]},\"termsLabel\":{\"bold\":true,\"margin\":[0,0,0,4]},\"fullheader\":{\"font\":\"$headerFont\",\"fontSize\":\"$fontSizeLargest\",\"bold\":true},\"subheader\":{\"font\":\"$headerFont\",\"fontSize\":\"$fontSizeLarger\"},\"help\":{\"fontSize\":\"$fontSizeSmaller\",\"color\":\"#737373\"},\"invoiceDocuments\":{\"margin\":[47,0,47,0]},\"invoiceDocument\":{\"margin\":[0,10,0,10]}},\"pageMargins\":[0,80,0,40],\"background\":[{\"image\":\"$accountBackground\",\"alignment\":\"center\"}]}'),(3,'Modern','    var client = invoice.client;\n	    var account = invoice.account;\n	    var currencyId = client.currency_id;\n\n	    layout.headerRight = 400;\n	    layout.rowHeight = 15;\n\n\n	    doc.setFontSize(7);\n\n	    // add header\n	    doc.setLineWidth(0.5);\n\n	    if (NINJA.primaryColor) {\n	      setDocHexFill(doc, NINJA.primaryColor);\n	      setDocHexDraw(doc, NINJA.primaryColor);\n	    } else {\n	      doc.setDrawColor(242,101,34);\n	      doc.setFillColor(242,101,34);\n	    }  \n\n	    var x1 =0;\n	    var y1 = 0;\n	    var w2 = 595;\n	    var h2 = Math.max(110, getInvoiceDetailsHeight(invoice, layout) + 30);\n	    doc.rect(x1, y1, w2, h2, \'FD\');\n\n	    SetPdfColor(\'White\',doc);\n\n	    //second column\n	    doc.setFontType(\'bold\');\n	    var name = invoice.account.name;    \n	    if (name) {\n	        doc.setFontSize(\'30\');\n	        doc.setFontType(\'bold\');\n	        doc.text(40, 50, name);\n	    }\n\n	    if (invoice.image)\n	    {\n	        y=130;\n	        var left = layout.headerRight - invoice.imageWidth;\n	        doc.addImage(invoice.image, \'JPEG\', layout.marginLeft, y);\n	    }\n\n	    // add footer \n	    doc.setLineWidth(0.5);\n\n	    if (NINJA.primaryColor) {\n	      setDocHexFill(doc, NINJA.primaryColor);\n	      setDocHexDraw(doc, NINJA.primaryColor);\n	    } else {\n	      doc.setDrawColor(242,101,34);\n	      doc.setFillColor(242,101,34);\n	    }  \n\n	    var x1 = 0;//tableLeft-tablePadding ;\n	    var y1 = 750;\n	    var w2 = 596;\n	    var h2 = 94;//doc.internal.getFontSize()*length+length*1.1;//+h;//+tablePadding;\n\n	    doc.rect(x1, y1, w2, h2, \'FD\');\n\n	    if (!invoice.is_pro && logoImages.imageLogo3)\n	    {\n	        pageHeight=820;\n	      // var left = 25;//250;//headerRight ;\n	        y=pageHeight-logoImages.imageLogoHeight3;\n	        //var headerRight=370;\n\n	        //var left = headerRight - invoice.imageLogoWidth3;\n	        doc.addImage(logoImages.imageLogo3, \'JPEG\', 40, y, logoImages.imageLogoWidth3, logoImages.imageLogoHeight3);\n	    }\n\n	    doc.setFontSize(10);  \n	    var marginLeft = 340;\n	    displayAccount(doc, invoice, marginLeft, 780, layout);\n\n\n	    SetPdfColor(\'White\',doc);    \n	    doc.setFontSize(\'8\');\n	    var detailsHeight = displayInvoice(doc, invoice, layout.headerRight, layout.accountTop-10, layout);\n	    layout.headerTop = Math.max(layout.headerTop, detailsHeight + 50);\n	    layout.tableTop = Math.max(layout.tableTop, detailsHeight + 150);\n\n	    SetPdfColor(\'Black\',doc); //set black color\n	    doc.setFontSize(7);\n	    doc.setFontType(\'normal\');\n	    displayClient(doc, invoice, layout.headerRight, layout.headerTop, layout);\n\n\n	      \n	    SetPdfColor(\'White\',doc);    \n	    doc.setFontType(\'bold\');\n\n	    doc.setLineWidth(0.3);\n	    if (NINJA.secondaryColor) {\n	      setDocHexFill(doc, NINJA.secondaryColor);\n	      setDocHexDraw(doc, NINJA.secondaryColor);\n	    } else {\n	      doc.setDrawColor(63,60,60);\n	      doc.setFillColor(63,60,60);\n	    }  \n\n	    var left = layout.marginLeft - layout.tablePadding;\n	    var top = layout.tableTop - layout.tablePadding;\n	    var width = layout.marginRight - (2 * layout.tablePadding);\n	    var height = 20;\n	    doc.rect(left, top, width, height, \'FD\');\n	    \n\n	    displayInvoiceHeader(doc, invoice, layout);\n	    SetPdfColor(\'Black\',doc);\n	    var y = displayInvoiceItems(doc, invoice, layout);\n\n\n	    var height1 = displayNotesAndTerms(doc, layout, invoice, y);\n	    var height2 = displaySubtotals(doc, layout, invoice, y, layout.unitCostRight);\n	    y += Math.max(height1, height2);\n\n\n	    var left = layout.marginLeft - layout.tablePadding;\n	    var top = y - layout.tablePadding;\n	    var width = layout.marginRight - (2 * layout.tablePadding);\n	    var height = 20;\n	    if (NINJA.secondaryColor) {\n	      setDocHexFill(doc, NINJA.secondaryColor);\n	      setDocHexDraw(doc, NINJA.secondaryColor);\n	    } else {\n	      doc.setDrawColor(63,60,60);\n	      doc.setFillColor(63,60,60);\n	    }  \n	    doc.rect(left, top, width, height, \'FD\');\n	    \n	    doc.setFontType(\'bold\');\n	    SetPdfColor(\'White\', doc);\n	    doc.setFontSize(12);\n	    \n	    var label = invoice.is_quote ? invoiceLabels.total : invoiceLabels.balance_due;\n	    var labelX = layout.unitCostRight-(doc.getStringUnitWidth(label) * doc.internal.getFontSize());\n	    doc.text(labelX, y+2, label);\n\n\n	    doc.setFontType(\'normal\');\n	    var amount = formatMoney(invoice.balance_amount , currencyId);\n	    headerLeft=layout.headerRight+400;\n	    var amountX = layout.lineTotalRight - (doc.getStringUnitWidth(amount) * doc.internal.getFontSize());\n	    doc.text(amountX, y+2, amount);','{\"content\":[{\"columns\":[{\"image\":\"$accountLogo\",\"fit\":[120,80],\"margin\":[0,60,0,30]},{\"stack\":\"$clientDetails\",\"margin\":[0,60,0,0]}]},{\"style\":\"invoiceLineItemsTable\",\"table\":{\"headerRows\":1,\"widths\":\"$invoiceLineItemColumns\",\"body\":\"$invoiceLineItems\"},\"layout\":{\"hLineWidth\":\"$notFirst:.5\",\"vLineWidth\":\"$notFirstAndLastColumn:.5\",\"hLineColor\":\"#888888\",\"vLineColor\":\"#FFFFFF\",\"paddingLeft\":\"$amount:8\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:8\",\"paddingBottom\":\"$amount:8\"}},{\"columns\":[\"$notesAndTerms\",{\"table\":{\"widths\":[\"*\",\"40%\"],\"body\":\"$subtotalsWithoutBalance\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$none\",\"paddingLeft\":\"$amount:34\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:4\",\"paddingBottom\":\"$amount:4\"}}]},{\"columns\":[{\"canvas\":[{\"type\":\"rect\",\"x\":0,\"y\":0,\"w\":515,\"h\":26,\"r\":0,\"lineWidth\":1,\"color\":\"$secondaryColor:#403d3d\"}],\"width\":10,\"margin\":[0,10,0,0]},{\"text\":\"$balanceDueLabel\",\"style\":\"subtotalsBalanceDueLabel\",\"margin\":[0,16,0,0],\"width\":370},{\"text\":\"$balanceDue\",\"style\":\"subtotalsBalanceDue\",\"margin\":[0,16,8,0]}]},\"$signature\",{\"stack\":[\"$invoiceDocuments\"],\"style\":\"invoiceDocuments\"}],\"footer\":[{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":0,\"x2\":600,\"y2\":0,\"lineWidth\":100,\"lineColor\":\"$primaryColor:#f26621\"}],\"width\":10},{\"columns\":[{\"width\":350,\"stack\":[{\"text\":\"$invoiceFooter\",\"margin\":[40,-40,40,0],\"alignment\":\"left\",\"color\":\"#FFFFFF\"}]},{\"stack\":\"$accountDetails\",\"margin\":[0,-40,0,0],\"width\":\"*\"},{\"stack\":\"$accountAddress\",\"margin\":[0,-40,0,0],\"width\":\"*\"}]}],\"header\":[{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":0,\"x2\":600,\"y2\":0,\"lineWidth\":200,\"lineColor\":\"$primaryColor:#f26621\"}],\"width\":10},{\"columns\":[{\"text\":\"$accountName\",\"bold\":true,\"font\":\"$headerFont\",\"fontSize\":30,\"color\":\"#ffffff\",\"margin\":[40,20,0,0],\"width\":350}]},{\"width\":300,\"table\":{\"body\":\"$invoiceDetails\"},\"layout\":\"noBorders\",\"margin\":[400,-40,0,0]}],\"defaultStyle\":{\"font\":\"$bodyFont\",\"fontSize\":\"$fontSize\",\"margin\":[8,4,8,4]},\"styles\":{\"primaryColor\":{\"color\":\"$primaryColor:#299CC2\"},\"accountName\":{\"margin\":[4,2,4,2],\"color\":\"$primaryColor:#299CC2\"},\"accountDetails\":{\"margin\":[4,2,4,2],\"color\":\"#FFFFFF\"},\"accountAddress\":{\"margin\":[4,2,4,2],\"color\":\"#FFFFFF\"},\"clientDetails\":{\"margin\":[0,2,4,2]},\"invoiceDetails\":{\"color\":\"#FFFFFF\"},\"invoiceLineItemsTable\":{\"margin\":[0,0,0,16]},\"productKey\":{\"bold\":true},\"clientName\":{\"bold\":true},\"tableHeader\":{\"bold\":true,\"color\":\"#FFFFFF\",\"fontSize\":\"$fontSizeLargest\",\"fillColor\":\"$secondaryColor:#403d3d\"},\"costTableHeader\":{\"alignment\":\"right\"},\"qtyTableHeader\":{\"alignment\":\"right\"},\"taxTableHeader\":{\"alignment\":\"right\"},\"lineTotalTableHeader\":{\"alignment\":\"right\"},\"subtotalsBalanceDueLabel\":{\"fontSize\":\"$fontSizeLargest\",\"color\":\"#FFFFFF\",\"alignment\":\"right\",\"bold\":true},\"subtotalsBalanceDue\":{\"fontSize\":\"$fontSizeLargest\",\"color\":\"#FFFFFF\",\"bold\":true,\"alignment\":\"right\"},\"cost\":{\"alignment\":\"right\"},\"quantity\":{\"alignment\":\"right\"},\"tax\":{\"alignment\":\"right\"},\"lineTotal\":{\"alignment\":\"right\"},\"subtotals\":{\"alignment\":\"right\"},\"termsLabel\":{\"bold\":true,\"margin\":[0,0,0,4]},\"invoiceNumberLabel\":{\"bold\":true},\"invoiceNumber\":{\"bold\":true},\"fullheader\":{\"font\":\"$headerFont\",\"fontSize\":\"$fontSizeLargest\",\"bold\":true},\"subheader\":{\"font\":\"$headerFont\",\"fontSize\":\"$fontSizeLarger\"},\"help\":{\"fontSize\":\"$fontSizeSmaller\",\"color\":\"#737373\"},\"invoiceDocuments\":{\"margin\":[7,0,7,0]},\"invoiceDocument\":{\"margin\":[0,10,0,10]}},\"pageMargins\":[40,120,40,50],\"background\":[{\"image\":\"$accountBackground\",\"alignment\":\"center\"}]}'),(4,'Plain','  var client = invoice.client;\n		  var account = invoice.account;\n		  var currencyId = client.currency_id;  \n		  \n      layout.accountTop += 25;\n      layout.headerTop += 25;\n      layout.tableTop += 25;\n\n		  if (invoice.image)\n		  {\n		    var left = layout.headerRight - invoice.imageWidth;\n		    doc.addImage(invoice.image, \'JPEG\', left, 50);\n		  } \n		  \n		  /* table header */\n		  doc.setDrawColor(200,200,200);\n		  doc.setFillColor(230,230,230);\n		  \n		  var detailsHeight = getInvoiceDetailsHeight(invoice, layout);\n		  var left = layout.headerLeft - layout.tablePadding;\n		  var top = layout.headerTop + detailsHeight - layout.rowHeight - layout.tablePadding;\n		  var width = layout.headerRight - layout.headerLeft + (2 * layout.tablePadding);\n		  var height = layout.rowHeight + 1;\n		  doc.rect(left, top, width, height, \'FD\'); \n\n		  doc.setFontSize(10);\n		  doc.setFontType(\'normal\');\n\n		  displayAccount(doc, invoice, layout.marginLeft, layout.accountTop, layout);\n		  displayClient(doc, invoice, layout.marginLeft, layout.headerTop, layout);\n\n		  displayInvoice(doc, invoice, layout.headerLeft, layout.headerTop, layout, layout.headerRight);\n		  layout.tableTop = Math.max(layout.tableTop, layout.headerTop + detailsHeight + (2 * layout.tablePadding));\n\n		  var headerY = layout.headerTop;\n		  var total = 0;\n\n		  doc.setDrawColor(200,200,200);\n		  doc.setFillColor(230,230,230);\n		  var left = layout.marginLeft - layout.tablePadding;\n		  var top = layout.tableTop - layout.tablePadding;\n		  var width = layout.headerRight - layout.marginLeft + (2 * layout.tablePadding);\n		  var height = layout.rowHeight + 2;\n		  doc.rect(left, top, width, height, \'FD\');   \n\n		  displayInvoiceHeader(doc, invoice, layout);\n		  var y = displayInvoiceItems(doc, invoice, layout);\n\n		  doc.setFontSize(10);\n\n		  displayNotesAndTerms(doc, layout, invoice, y+20);\n\n		  y += displaySubtotals(doc, layout, invoice, y+20, 480) + 20;\n\n		  doc.setDrawColor(200,200,200);\n		  doc.setFillColor(230,230,230);\n		  \n		  var left = layout.footerLeft - layout.tablePadding;\n		  var top = y - layout.tablePadding;\n		  var width = layout.headerRight - layout.footerLeft + (2 * layout.tablePadding);\n		  var height = layout.rowHeight + 2;\n		  doc.rect(left, top, width, height, \'FD\'); \n		  \n		  doc.setFontType(\'bold\');\n		  doc.text(layout.footerLeft, y, invoice.is_quote ? invoiceLabels.total : invoiceLabels.balance_due);\n\n		  total = formatMoney(invoice.balance_amount, currencyId);\n		  var totalX = layout.headerRight - (doc.getStringUnitWidth(total) * doc.internal.getFontSize());\n		  doc.text(totalX, y, total);   \n\n		  if (!invoice.is_pro) {\n		    doc.setFontType(\'normal\');\n		    doc.text(layout.marginLeft, 790, \'Created by InvoiceNinja.com\');\n		  }','{\"content\":[{\"columns\":[{\"stack\":\"$accountDetails\"},{\"stack\":\"$accountAddress\"},[{\"image\":\"$accountLogo\",\"fit\":[120,80]}]]},{\"columns\":[{\"width\":340,\"stack\":\"$clientDetails\",\"margin\":[0,40,0,0]},{\"width\":200,\"table\":{\"body\":\"$invoiceDetails\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$none\",\"hLineColor\":\"#E6E6E6\",\"paddingLeft\":\"$amount:10\",\"paddingRight\":\"$amount:10\"}}]},{\"canvas\":[{\"type\":\"rect\",\"x\":0,\"y\":0,\"w\":515,\"h\":25,\"r\":0,\"lineWidth\":1,\"color\":\"#e6e6e6\"}],\"width\":10,\"margin\":[0,30,0,-43]},{\"style\":\"invoiceLineItemsTable\",\"table\":{\"headerRows\":1,\"widths\":\"$invoiceLineItemColumns\",\"body\":\"$invoiceLineItems\"},\"layout\":{\"hLineWidth\":\"$notFirst:1\",\"vLineWidth\":\"$none\",\"hLineColor\":\"#e6e6e6\",\"paddingLeft\":\"$amount:8\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:8\",\"paddingBottom\":\"$amount:8\"}},{\"columns\":[\"$notesAndTerms\",{\"width\":160,\"style\":\"subtotals\",\"table\":{\"widths\":[60,60],\"body\":\"$subtotals\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$none\",\"paddingLeft\":\"$amount:10\",\"paddingRight\":\"$amount:10\",\"paddingTop\":\"$amount:4\",\"paddingBottom\":\"$amount:4\"}}]},\"$signature\",{\"stack\":[\"$invoiceDocuments\"],\"style\":\"invoiceDocuments\"}],\"footer\":{\"columns\":[{\"text\":\"$invoiceFooter\",\"alignment\":\"left\",\"margin\":[0,0,0,12]}],\"margin\":[40,-20,40,40]},\"defaultStyle\":{\"font\":\"$bodyFont\",\"fontSize\":\"$fontSize\",\"margin\":[8,4,8,4]},\"styles\":{\"primaryColor\":{\"color\":\"$primaryColor:#299CC2\"},\"accountDetails\":{\"margin\":[0,2,0,1]},\"accountAddress\":{\"margin\":[0,2,0,1]},\"clientDetails\":{\"margin\":[0,2,0,1]},\"tableHeader\":{\"bold\":true},\"costTableHeader\":{\"alignment\":\"right\"},\"qtyTableHeader\":{\"alignment\":\"right\"},\"lineTotalTableHeader\":{\"alignment\":\"right\"},\"invoiceLineItemsTable\":{\"margin\":[0,16,0,16]},\"cost\":{\"alignment\":\"right\"},\"quantity\":{\"alignment\":\"right\"},\"tax\":{\"alignment\":\"right\"},\"lineTotal\":{\"alignment\":\"right\"},\"subtotals\":{\"alignment\":\"right\"},\"termsLabel\":{\"bold\":true,\"margin\":[0,0,0,4]},\"terms\":{\"margin\":[0,0,20,0]},\"invoiceDetailBalanceDueLabel\":{\"fillColor\":\"#e6e6e6\"},\"invoiceDetailBalanceDue\":{\"fillColor\":\"#e6e6e6\"},\"subtotalsBalanceDueLabel\":{\"fillColor\":\"#e6e6e6\"},\"subtotalsBalanceDue\":{\"fillColor\":\"#e6e6e6\"},\"fullheader\":{\"font\":\"$headerFont\",\"fontSize\":\"$fontSizeLargest\",\"bold\":true},\"subheader\":{\"font\":\"$headerFont\",\"fontSize\":\"$fontSizeLarger\"},\"help\":{\"fontSize\":\"$fontSizeSmaller\",\"color\":\"#737373\"},\"invoiceDocuments\":{\"margin\":[7,0,7,0]},\"invoiceDocument\":{\"margin\":[0,10,0,10]}},\"pageMargins\":[40,40,40,60],\"background\":[{\"image\":\"$accountBackground\",\"alignment\":\"center\"}]}'),(5,'Business',NULL,'{\"content\":[{\"columns\":[{\"image\":\"$accountLogo\",\"fit\":[120,80]},{\"width\":300,\"stack\":\"$accountDetails\",\"margin\":[140,0,0,0]},{\"width\":150,\"stack\":\"$accountAddress\"}]},{\"columns\":[{\"width\":120,\"stack\":[{\"text\":\"$invoiceIssuedToLabel\",\"style\":\"issuedTo\"},\"$clientDetails\"],\"margin\":[0,20,0,0]},{\"canvas\":[{\"type\":\"rect\",\"x\":20,\"y\":0,\"w\":174,\"h\":\"$invoiceDetailsHeight\",\"r\":10,\"lineWidth\":1,\"color\":\"$primaryColor:#eb792d\"}],\"width\":30,\"margin\":[200,25,0,0]},{\"table\":{\"widths\":[70,76],\"body\":\"$invoiceDetails\"},\"layout\":\"noBorders\",\"margin\":[200,34,0,0]}]},{\"canvas\":[{\"type\":\"rect\",\"x\":0,\"y\":0,\"w\":515,\"h\":32,\"r\":8,\"lineWidth\":1,\"color\":\"$secondaryColor:#374e6b\"}],\"width\":10,\"margin\":[0,20,0,-45]},{\"style\":\"invoiceLineItemsTable\",\"table\":{\"headerRows\":1,\"widths\":\"$invoiceLineItemColumns\",\"body\":\"$invoiceLineItems\"},\"layout\":{\"hLineWidth\":\"$notFirst:1\",\"vLineWidth\":\"$notFirst:.5\",\"hLineColor\":\"#FFFFFF\",\"vLineColor\":\"#FFFFFF\",\"paddingLeft\":\"$amount:8\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:12\",\"paddingBottom\":\"$amount:12\"}},{\"columns\":[\"$notesAndTerms\",{\"stack\":[{\"style\":\"subtotals\",\"table\":{\"widths\":[\"*\",\"35%\"],\"body\":\"$subtotalsWithoutBalance\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$none\",\"paddingLeft\":\"$amount:34\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:4\",\"paddingBottom\":\"$amount:4\"}},{\"canvas\":[{\"type\":\"rect\",\"x\":60,\"y\":20,\"w\":198,\"h\":30,\"r\":7,\"lineWidth\":1,\"color\":\"$secondaryColor:#374e6b\"}]},{\"style\":\"subtotalsBalance\",\"table\":{\"widths\":[\"*\",\"45%\"],\"body\":\"$subtotalsBalance\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$none\",\"paddingLeft\":\"$amount:34\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:4\",\"paddingBottom\":\"$amount:4\"}}]}]},\"$signature\",{\"stack\":[\"$invoiceDocuments\"],\"style\":\"invoiceDocuments\"}],\"footer\":{\"columns\":[{\"text\":\"$invoiceFooter\",\"alignment\":\"left\"}],\"margin\":[40,-20,40,0]},\"defaultStyle\":{\"fontSize\":\"$fontSize\",\"margin\":[8,4,8,4]},\"styles\":{\"primaryColor\":{\"color\":\"$primaryColor:#299CC2\"},\"accountName\":{\"bold\":true},\"accountDetails\":{\"color\":\"#AAA9A9\",\"margin\":[0,2,0,1]},\"accountAddress\":{\"color\":\"#AAA9A9\",\"margin\":[0,2,0,1]},\"even\":{\"fillColor\":\"#E8E8E8\"},\"odd\":{\"fillColor\":\"#F7F7F7\"},\"productKey\":{\"bold\":true},\"subtotalsBalanceDueLabel\":{\"fontSize\":\"$fontSizeLargest\",\"color\":\"#ffffff\",\"bold\":true},\"subtotalsBalanceDue\":{\"fontSize\":\"$fontSizeLargest\",\"bold\":true,\"color\":\"#ffffff\",\"alignment\":\"right\",\"noWrap\":true},\"invoiceDetails\":{\"color\":\"#ffffff\"},\"tableHeader\":{\"color\":\"#ffffff\",\"fontSize\":\"$fontSizeLargest\",\"bold\":true},\"secondTableHeader\":{\"color\":\"$secondaryColor:#374e6b\"},\"costTableHeader\":{\"alignment\":\"right\"},\"qtyTableHeader\":{\"alignment\":\"right\"},\"taxTableHeader\":{\"alignment\":\"right\"},\"lineTotalTableHeader\":{\"alignment\":\"right\"},\"issuedTo\":{\"margin\":[0,2,0,1],\"bold\":true,\"color\":\"#374e6b\"},\"clientDetails\":{\"margin\":[0,2,0,1]},\"clientName\":{\"color\":\"$primaryColor:#eb792d\"},\"invoiceLineItemsTable\":{\"margin\":[0,10,0,10]},\"invoiceDetailsValue\":{\"alignment\":\"right\"},\"cost\":{\"alignment\":\"right\"},\"quantity\":{\"alignment\":\"right\"},\"tax\":{\"alignment\":\"right\"},\"lineTotal\":{\"alignment\":\"right\"},\"subtotals\":{\"alignment\":\"right\"},\"subtotalsBalance\":{\"alignment\":\"right\",\"margin\":[0,-25,0,0]},\"termsLabel\":{\"bold\":true,\"margin\":[0,0,0,4]},\"fullheader\":{\"fontSize\":\"$fontSizeLargest\",\"bold\":true},\"subheader\":{\"fontSize\":\"$fontSizeLarger\"},\"help\":{\"fontSize\":\"$fontSizeSmaller\",\"color\":\"#737373\"}},\"pageMargins\":[40,40,40,40],\"background\":[{\"image\":\"$accountBackground\",\"alignment\":\"center\"}]}'),(6,'Creative',NULL,'{\"content\":[{\"columns\":[{\"stack\":\"$clientDetails\"},{\"stack\":\"$accountDetails\"},{\"stack\":\"$accountAddress\"},{\"image\":\"$accountLogo\",\"fit\":[120,80],\"alignment\":\"right\"}],\"margin\":[0,0,0,20]},{\"columns\":[{\"text\":[{\"text\":\"$entityTypeUC\",\"style\":\"header1\"},{\"text\":\" #\",\"style\":\"header2\"},{\"text\":\"$invoiceNumber\",\"style\":\"header2\"}],\"width\":\"*\"},{\"width\":200,\"table\":{\"body\":\"$invoiceDetails\"},\"layout\":\"noBorders\",\"margin\":[16,4,0,0]}],\"margin\":[0,0,0,20]},{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":5,\"x2\":515,\"y2\":5,\"lineWidth\":3,\"lineColor\":\"$primaryColor:#AE1E54\"}]},{\"style\":\"invoiceLineItemsTable\",\"table\":{\"headerRows\":1,\"widths\":\"$invoiceLineItemColumns\",\"body\":\"$invoiceLineItems\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$none\",\"hLineColor\":\"$primaryColor:#E8E8E8\",\"paddingLeft\":\"$amount:8\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:8\",\"paddingBottom\":\"$amount:8\"}},{\"columns\":[\"$notesAndTerms\",{\"style\":\"subtotals\",\"table\":{\"widths\":[\"*\",\"40%\"],\"body\":\"$subtotalsWithoutBalance\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$none\",\"paddingLeft\":\"$amount:34\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:4\",\"paddingBottom\":\"$amount:4\"}}]},{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":20,\"x2\":515,\"y2\":20,\"lineWidth\":3,\"lineColor\":\"$primaryColor:#AE1E54\"}],\"margin\":[0,-8,0,-8]},{\"text\":\"$balanceDueLabel\",\"style\":\"subtotalsBalanceDueLabel\"},{\"text\":\"$balanceDue\",\"style\":\"subtotalsBalanceDue\"},\"$signature\",{\"stack\":[\"$invoiceDocuments\"],\"style\":\"invoiceDocuments\"}],\"footer\":{\"columns\":[{\"text\":\"$invoiceFooter\",\"alignment\":\"left\"}],\"margin\":[40,-20,40,0]},\"defaultStyle\":{\"fontSize\":\"$fontSize\",\"margin\":[8,4,8,4]},\"styles\":{\"primaryColor\":{\"color\":\"$primaryColor:#AE1E54\"},\"accountName\":{\"margin\":[4,2,4,2],\"color\":\"$primaryColor:#AE1E54\",\"bold\":true},\"accountDetails\":{\"margin\":[4,2,4,2]},\"accountAddress\":{\"margin\":[4,2,4,2]},\"odd\":{\"fillColor\":\"#F4F4F4\"},\"productKey\":{\"bold\":true},\"subtotalsBalanceDueLabel\":{\"fontSize\":\"$fontSizeLargest\",\"margin\":[320,20,0,0]},\"subtotalsBalanceDue\":{\"fontSize\":\"$fontSizeLargest\",\"color\":\"$primaryColor:#AE1E54\",\"bold\":true,\"margin\":[0,-10,10,0],\"alignment\":\"right\"},\"invoiceDetailBalanceDue\":{\"bold\":true,\"color\":\"$primaryColor:#AE1E54\"},\"invoiceDetailBalanceDueLabel\":{\"bold\":true},\"tableHeader\":{\"bold\":true,\"color\":\"$primaryColor:#AE1E54\",\"fontSize\":\"$fontSizeLargest\"},\"costTableHeader\":{\"alignment\":\"right\"},\"qtyTableHeader\":{\"alignment\":\"right\"},\"taxTableHeader\":{\"alignment\":\"right\"},\"lineTotalTableHeader\":{\"alignment\":\"right\"},\"clientName\":{\"bold\":true},\"clientDetails\":{\"margin\":[0,2,0,1]},\"header1\":{\"bold\":true,\"margin\":[0,30,0,16],\"fontSize\":42},\"header2\":{\"margin\":[0,30,0,16],\"fontSize\":42,\"italics\":true,\"color\":\"$primaryColor:#AE1E54\"},\"invoiceLineItemsTable\":{\"margin\":[0,4,0,16]},\"cost\":{\"alignment\":\"right\"},\"quantity\":{\"alignment\":\"right\"},\"tax\":{\"alignment\":\"right\"},\"lineTotal\":{\"alignment\":\"right\"},\"subtotals\":{\"alignment\":\"right\"},\"termsLabel\":{\"bold\":true,\"margin\":[0,0,0,4]},\"fullheader\":{\"fontSize\":\"$fontSizeLargest\",\"bold\":true},\"subheader\":{\"fontSize\":\"$fontSizeLarger\"},\"help\":{\"fontSize\":\"$fontSizeSmaller\",\"color\":\"#737373\"}},\"pageMargins\":[40,40,40,40],\"background\":[{\"image\":\"$accountBackground\",\"alignment\":\"center\"}]}'),(7,'Elegant',NULL,'{\"content\":[{\"image\":\"$accountLogo\",\"fit\":[120,80],\"alignment\":\"center\",\"margin\":[0,0,0,30]},{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":5,\"x2\":515,\"y2\":5,\"lineWidth\":2}]},{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":3,\"x2\":515,\"y2\":3,\"lineWidth\":1}]},{\"columns\":[{\"width\":120,\"stack\":[{\"text\":\"$invoiceToLabel\",\"style\":\"header\",\"margin\":[0,0,0,6]},\"$clientDetails\"]},{\"width\":10,\"canvas\":[{\"type\":\"line\",\"x1\":-2,\"y1\":18,\"x2\":-2,\"y2\":80,\"lineWidth\":1,\"dash\":{\"length\":2}}]},{\"width\":120,\"stack\":\"$accountDetails\",\"margin\":[0,20,0,0]},{\"width\":110,\"stack\":\"$accountAddress\",\"margin\":[0,20,0,0]},{\"stack\":[{\"text\":\"$detailsLabel\",\"style\":\"header\",\"margin\":[0,0,0,6]},{\"width\":180,\"table\":{\"body\":\"$invoiceDetails\"},\"layout\":\"noBorders\"}]}],\"margin\":[0,20,0,0]},{\"style\":\"invoiceLineItemsTable\",\"table\":{\"headerRows\":1,\"widths\":\"$invoiceLineItemColumns\",\"body\":\"$invoiceLineItems\"},\"layout\":{\"hLineWidth\":\"$notFirst:.5\",\"vLineWidth\":\"$none\",\"paddingLeft\":\"$amount:8\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:12\",\"paddingBottom\":\"$amount:12\"}},{\"columns\":[\"$notesAndTerms\",{\"style\":\"subtotals\",\"table\":{\"widths\":[\"*\",\"40%\"],\"body\":\"$subtotalsWithoutBalance\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$none\",\"paddingLeft\":\"$amount:34\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:4\",\"paddingBottom\":\"$amount:4\"}}]},{\"canvas\":[{\"type\":\"line\",\"x1\":270,\"y1\":20,\"x2\":515,\"y2\":20,\"lineWidth\":1,\"dash\":{\"length\":2}}]},{\"text\":\"$balanceDueLabel\",\"style\":\"subtotalsBalanceDueLabel\"},{\"text\":\"$balanceDue\",\"style\":\"subtotalsBalanceDue\"},{\"canvas\":[{\"type\":\"line\",\"x1\":270,\"y1\":20,\"x2\":515,\"y2\":20,\"lineWidth\":1,\"dash\":{\"length\":2}}]},\"$signature\",{\"stack\":[\"$invoiceDocuments\"],\"style\":\"invoiceDocuments\"}],\"footer\":[{\"columns\":[{\"text\":\"$invoiceFooter\",\"alignment\":\"left\"}],\"margin\":[40,-20,40,0]},{\"canvas\":[{\"type\":\"line\",\"x1\":35,\"y1\":5,\"x2\":555,\"y2\":5,\"lineWidth\":2,\"margin\":[30,0,0,0]}]},{\"canvas\":[{\"type\":\"line\",\"x1\":35,\"y1\":3,\"x2\":555,\"y2\":3,\"lineWidth\":1,\"margin\":[30,0,0,0]}]}],\"defaultStyle\":{\"fontSize\":\"$fontSize\",\"margin\":[8,4,8,4]},\"styles\":{\"accountDetails\":{\"margin\":[0,2,0,1]},\"clientDetails\":{\"margin\":[0,2,0,1]},\"accountAddress\":{\"margin\":[0,2,0,1]},\"clientName\":{\"bold\":true},\"accountName\":{\"bold\":true},\"odd\":{},\"subtotalsBalanceDueLabel\":{\"fontSize\":\"$fontSizeLargest\",\"color\":\"$primaryColor:#5a7b61\",\"margin\":[320,20,0,0]},\"subtotalsBalanceDue\":{\"fontSize\":\"$fontSizeLargest\",\"color\":\"$primaryColor:#5a7b61\",\"style\":true,\"margin\":[0,-14,8,0],\"alignment\":\"right\"},\"invoiceDetailBalanceDue\":{\"color\":\"$primaryColor:#5a7b61\",\"bold\":true},\"fullheader\":{\"font\":\"$headerFont\",\"fontSize\":\"$fontSizeLargest\",\"bold\":true},\"header\":{\"fontSize\":\"$fontSizeLargest\",\"bold\":true},\"tableHeader\":{\"bold\":true,\"color\":\"$primaryColor:#5a7b61\",\"fontSize\":\"$fontSizeLargest\"},\"costTableHeader\":{\"alignment\":\"right\"},\"qtyTableHeader\":{\"alignment\":\"right\"},\"taxTableHeader\":{\"alignment\":\"right\"},\"lineTotalTableHeader\":{\"alignment\":\"right\"},\"invoiceLineItemsTable\":{\"margin\":[0,40,0,16]},\"cost\":{\"alignment\":\"right\"},\"quantity\":{\"alignment\":\"right\"},\"tax\":{\"alignment\":\"right\"},\"lineTotal\":{\"alignment\":\"right\"},\"subtotals\":{\"alignment\":\"right\"},\"termsLabel\":{\"bold\":true,\"margin\":[0,0,0,4]},\"subheader\":{\"fontSize\":\"$fontSizeLarger\"},\"help\":{\"fontSize\":\"$fontSizeSmaller\",\"color\":\"#737373\"}},\"pageMargins\":[40,40,40,40],\"background\":[{\"image\":\"$accountBackground\",\"alignment\":\"center\"}]}'),(8,'Hipster',NULL,'{\"content\":[{\"columns\":[{\"width\":10,\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":0,\"x2\":0,\"y2\":75,\"lineWidth\":0.5}]},{\"width\":120,\"stack\":[{\"text\":\"$fromLabelUC\",\"style\":\"fromLabel\"},\"$accountDetails\"]},{\"width\":120,\"stack\":[{\"text\":\" \"},\"$accountAddress\"],\"margin\":[10,0,0,16]},{\"width\":10,\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":0,\"x2\":0,\"y2\":75,\"lineWidth\":0.5}]},{\"stack\":[{\"text\":\"$toLabelUC\",\"style\":\"toLabel\"},\"$clientDetails\"]},[{\"image\":\"$accountLogo\",\"fit\":[120,80]}]]},{\"text\":\"$entityTypeUC\",\"margin\":[0,4,0,8],\"bold\":\"true\",\"fontSize\":42},{\"columnGap\":16,\"columns\":[{\"width\":\"auto\",\"text\":[\"$invoiceNoLabel\",\" \",\"$invoiceNumberValue\"],\"bold\":true,\"color\":\"$primaryColor:#bc9f2b\",\"fontSize\":10},{\"width\":\"auto\",\"text\":[\"$invoiceDateLabel\",\" \",\"$invoiceDateValue\"],\"fontSize\":10},{\"width\":\"auto\",\"text\":[\"$dueDateLabel?\",\" \",\"$dueDateValue\"],\"fontSize\":10},{\"width\":\"*\",\"text\":[\"$balanceDueLabel\",\" \",{\"text\":\"$balanceDue\",\"bold\":true,\"color\":\"$primaryColor:#bc9f2b\"}],\"fontSize\":10}]},{\"margin\":[0,26,0,0],\"style\":\"invoiceLineItemsTable\",\"table\":{\"headerRows\":1,\"widths\":\"$invoiceLineItemColumns\",\"body\":\"$invoiceLineItems\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$amount:.5\",\"paddingLeft\":\"$amount:8\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:8\",\"paddingBottom\":\"$amount:8\"}},{\"columns\":[{\"stack\":\"$notesAndTerms\",\"width\":\"*\",\"margin\":[0,12,0,0]},{\"width\":200,\"style\":\"subtotals\",\"table\":{\"widths\":[\"*\",\"36%\"],\"body\":\"$subtotals\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$notFirst:.5\",\"paddingLeft\":\"$amount:8\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:12\",\"paddingBottom\":\"$amount:4\"}}]},\"$signature\",{\"stack\":[\"$invoiceDocuments\"],\"style\":\"invoiceDocuments\"}],\"footer\":{\"columns\":[{\"text\":\"$invoiceFooter\",\"alignment\":\"left\"}],\"margin\":[40,-20,40,0]},\"defaultStyle\":{\"fontSize\":\"$fontSize\",\"margin\":[8,4,8,4]},\"styles\":{\"accountName\":{\"bold\":true},\"clientName\":{\"bold\":true},\"subtotalsBalanceDueLabel\":{\"fontSize\":\"$fontSizeLargest\",\"bold\":true},\"subtotalsBalanceDue\":{\"fontSize\":\"$fontSizeLargest\",\"color\":\"$primaryColor:#bc9f2b\",\"bold\":true},\"tableHeader\":{\"bold\":true,\"fontSize\":\"$fontSizeLargest\"},\"costTableHeader\":{\"alignment\":\"right\"},\"qtyTableHeader\":{\"alignment\":\"right\"},\"taxTableHeader\":{\"alignment\":\"right\"},\"lineTotalTableHeader\":{\"alignment\":\"right\"},\"fromLabel\":{\"color\":\"$primaryColor:#bc9f2b\",\"bold\":true},\"toLabel\":{\"color\":\"$primaryColor:#bc9f2b\",\"bold\":true},\"accountDetails\":{\"margin\":[0,2,0,1]},\"accountAddress\":{\"margin\":[0,2,0,1]},\"clientDetails\":{\"margin\":[0,2,0,1]},\"cost\":{\"alignment\":\"right\"},\"quantity\":{\"alignment\":\"right\"},\"tax\":{\"alignment\":\"right\"},\"lineTotal\":{\"alignment\":\"right\"},\"subtotals\":{\"alignment\":\"right\"},\"termsLabel\":{\"bold\":true,\"margin\":[0,16,0,4]},\"fullheader\":{\"fontSize\":\"$fontSizeLargest\",\"bold\":true},\"subheader\":{\"fontSize\":\"$fontSizeLarger\"},\"help\":{\"fontSize\":\"$fontSizeSmaller\",\"color\":\"#737373\"}},\"pageMargins\":[40,40,40,40],\"background\":[{\"image\":\"$accountBackground\",\"alignment\":\"center\"}]}'),(9,'Playful',NULL,'{\"content\":[{\"columns\":[{\"image\":\"$accountLogo\",\"fit\":[120,80]},{\"canvas\":[{\"type\":\"rect\",\"x\":0,\"y\":0,\"w\":190,\"h\":\"$invoiceDetailsHeight\",\"r\":5,\"lineWidth\":1,\"color\":\"$primaryColor:#009d91\"}],\"width\":10,\"margin\":[200,0,0,0]},{\"width\":400,\"table\":{\"body\":\"$invoiceDetails\"},\"layout\":\"noBorders\",\"margin\":[210,10,10,0]}]},{\"margin\":[0,18,0,0],\"columnGap\":50,\"columns\":[{\"width\":212,\"stack\":[{\"text\":\"$invoiceToLabel:\",\"style\":\"toLabel\"},{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":4,\"x2\":150,\"y2\":4,\"lineWidth\":1,\"dash\":{\"length\":3},\"lineColor\":\"$primaryColor:#009d91\"}],\"margin\":[0,0,0,4]},\"$clientDetails\",{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":9,\"x2\":150,\"y2\":9,\"lineWidth\":1,\"dash\":{\"length\":3},\"lineColor\":\"$primaryColor:#009d91\"}]}]},{\"width\":\"*\",\"stack\":[{\"text\":\"$fromLabel:\",\"style\":\"fromLabel\"},{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":4,\"x2\":250,\"y2\":4,\"lineWidth\":1,\"dash\":{\"length\":3},\"lineColor\":\"$primaryColor:#009d91\"}],\"margin\":[0,0,0,4]},{\"columns\":[\"$accountDetails\",\"$accountAddress\"],\"columnGap\":4},{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":9,\"x2\":250,\"y2\":9,\"lineWidth\":1,\"dash\":{\"length\":3},\"lineColor\":\"$primaryColor:#009d91\"}]}]}]},{\"canvas\":[{\"type\":\"rect\",\"x\":0,\"y\":0,\"w\":515,\"h\":35,\"r\":6,\"lineWidth\":1,\"color\":\"$primaryColor:#009d91\"}],\"width\":10,\"margin\":[0,30,0,-30]},{\"style\":\"invoiceLineItemsTable\",\"table\":{\"headerRows\":1,\"widths\":\"$invoiceLineItemColumns\",\"body\":\"$invoiceLineItems\"},\"layout\":{\"hLineWidth\":\"$notFirst:.5\",\"vLineWidth\":\"$none\",\"hLineColor\":\"$primaryColor:#009d91\",\"paddingLeft\":\"$amount:8\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:8\",\"paddingBottom\":\"$amount:8\"}},{\"columns\":[\"$notesAndTerms\",{\"stack\":[{\"style\":\"subtotals\",\"table\":{\"widths\":[\"*\",\"35%\"],\"body\":\"$subtotalsWithoutBalance\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$none\",\"paddingLeft\":\"$amount:34\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:4\",\"paddingBottom\":\"$amount:4\"}},{\"canvas\":[{\"type\":\"rect\",\"x\":50,\"y\":20,\"w\":208,\"h\":30,\"r\":4,\"lineWidth\":1,\"color\":\"$primaryColor:#009d91\"}]},{\"style\":\"subtotalsBalance\",\"table\":{\"widths\":[\"*\",\"50%\"],\"body\":\"$subtotalsBalance\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$none\",\"paddingLeft\":\"$amount:34\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:4\",\"paddingBottom\":\"$amount:4\"}}]}]},\"$signature\",{\"stack\":[\"$invoiceDocuments\"],\"style\":\"invoiceDocuments\"}],\"footer\":[{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":38,\"x2\":68,\"y2\":38,\"lineWidth\":6,\"lineColor\":\"#009d91\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":68,\"y1\":0,\"x2\":135,\"y2\":0,\"lineWidth\":6,\"lineColor\":\"#1d766f\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":135,\"y1\":0,\"x2\":201,\"y2\":0,\"lineWidth\":6,\"lineColor\":\"#ffb800\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":201,\"y1\":0,\"x2\":267,\"y2\":0,\"lineWidth\":6,\"lineColor\":\"#bf9730\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":267,\"y1\":0,\"x2\":333,\"y2\":0,\"lineWidth\":6,\"lineColor\":\"#ac2b50\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":333,\"y1\":0,\"x2\":399,\"y2\":0,\"lineWidth\":6,\"lineColor\":\"#e60042\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":399,\"y1\":0,\"x2\":465,\"y2\":0,\"lineWidth\":6,\"lineColor\":\"#ffb800\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":465,\"y1\":0,\"x2\":532,\"y2\":0,\"lineWidth\":6,\"lineColor\":\"#009d91\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":532,\"y1\":0,\"x2\":600,\"y2\":0,\"lineWidth\":6,\"lineColor\":\"#ac2b50\"}]},{\"text\":\"$invoiceFooter\",\"alignment\":\"left\",\"margin\":[40,-60,40,0]}],\"header\":[{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":0,\"x2\":68,\"y2\":0,\"lineWidth\":9,\"lineColor\":\"#009d91\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":68,\"y1\":0,\"x2\":135,\"y2\":0,\"lineWidth\":9,\"lineColor\":\"#1d766f\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":135,\"y1\":0,\"x2\":201,\"y2\":0,\"lineWidth\":9,\"lineColor\":\"#ffb800\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":201,\"y1\":0,\"x2\":267,\"y2\":0,\"lineWidth\":9,\"lineColor\":\"#bf9730\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":267,\"y1\":0,\"x2\":333,\"y2\":0,\"lineWidth\":9,\"lineColor\":\"#ac2b50\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":333,\"y1\":0,\"x2\":399,\"y2\":0,\"lineWidth\":9,\"lineColor\":\"#e60042\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":399,\"y1\":0,\"x2\":465,\"y2\":0,\"lineWidth\":9,\"lineColor\":\"#ffb800\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":465,\"y1\":0,\"x2\":532,\"y2\":0,\"lineWidth\":9,\"lineColor\":\"#009d91\"}]},{\"canvas\":[{\"type\":\"line\",\"x1\":532,\"y1\":0,\"x2\":600,\"y2\":0,\"lineWidth\":9,\"lineColor\":\"#ac2b50\"}]}],\"defaultStyle\":{\"fontSize\":\"$fontSize\",\"margin\":[8,4,8,4]},\"styles\":{\"accountName\":{\"color\":\"$secondaryColor:#bb3328\"},\"accountDetails\":{\"margin\":[0,2,0,1]},\"accountAddress\":{\"margin\":[0,2,0,1]},\"clientDetails\":{\"margin\":[0,2,0,1]},\"clientName\":{\"color\":\"$secondaryColor:#bb3328\"},\"even\":{\"fillColor\":\"#E8E8E8\"},\"odd\":{\"fillColor\":\"#F7F7F7\"},\"productKey\":{\"color\":\"$secondaryColor:#bb3328\"},\"lineTotal\":{\"alignment\":\"right\"},\"tableHeader\":{\"bold\":true,\"fontSize\":\"$fontSizeLargest\",\"color\":\"#FFFFFF\"},\"secondTableHeader\":{\"color\":\"$primaryColor:#009d91\"},\"costTableHeader\":{\"alignment\":\"right\"},\"qtyTableHeader\":{\"alignment\":\"right\"},\"lineTotalTableHeader\":{\"alignment\":\"right\"},\"subtotalsBalanceDueLabel\":{\"fontSize\":\"$fontSizeLargest\",\"color\":\"#FFFFFF\",\"bold\":true},\"subtotalsBalanceDue\":{\"fontSize\":\"$fontSizeLargest\",\"bold\":true,\"color\":\"#FFFFFF\",\"alignment\":\"right\"},\"invoiceDetails\":{\"color\":\"#FFFFFF\"},\"invoiceLineItemsTable\":{\"margin\":[0,0,0,16]},\"invoiceDetailBalanceDueLabel\":{\"bold\":true},\"invoiceDetailBalanceDue\":{\"bold\":true},\"fromLabel\":{\"color\":\"$primaryColor:#009d91\"},\"toLabel\":{\"color\":\"$primaryColor:#009d91\"},\"cost\":{\"alignment\":\"right\"},\"quantity\":{\"alignment\":\"right\"},\"tax\":{\"alignment\":\"right\"},\"subtotals\":{\"alignment\":\"right\"},\"subtotalsBalance\":{\"alignment\":\"right\",\"margin\":[0,-25,0,0]},\"termsLabel\":{\"bold\":true,\"margin\":[0,0,0,4]},\"fullheader\":{\"fontSize\":\"$fontSizeLargest\",\"bold\":true},\"subheader\":{\"fontSize\":\"$fontSizeLarger\"},\"help\":{\"fontSize\":\"$fontSizeSmaller\",\"color\":\"#737373\"}},\"pageMargins\":[40,40,40,40],\"background\":[{\"image\":\"$accountBackground\",\"alignment\":\"center\"}]}'),(10,'Photo',NULL,'{\"content\":[{\"columns\":[{\"image\":\"$accountLogo\",\"fit\":[120,80]},{\"text\":\"\",\"width\":\"*\"},{\"width\":180,\"table\":{\"body\":\"$invoiceDetails\"},\"layout\":\"noBorders\"}]},{\"image\":\"data:image\\/jpeg;base64,\\/9j\\/4AAQSkZJRgABAQEAYABgAAD\\/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT\\/2wBDAQMEBAUEBQkFBQkUDQsNFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT\\/wAARCAEZA4QDASIAAhEBAxEB\\/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL\\/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6\\/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL\\/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6\\/9oADAMBAAIRAxEAPwD0kT6iVJXXdaC++rXH\\/wAcpY59U+9\\/bmtED\\/qKXA\\/9nqmJuPlOR6Af\\/XpUuHRCD8o9CM1jqaWL5vb5+usa2p\\/7C1x\\/8XUbXOpQddd1pgf+opc\\/\\/F1Thulx1B57ipzIoH3sfVR\\/hRqFiy11qP8A0G9aXj\\/oKXP9Xpst9qLfd1nWSe+dVuP\\/AIuq6XJjzl\\/M+rHj86ljuTnlwn4E0ahYkW81HIxretEjqDqtwP8A2pUp1PUFH\\/Ib1oH\\/ALCc\\/wD8XVQyqMmWHavZhhc0PtYDapPsGo1CxpDUtSA+XWdZc\\/8AYUn\\/APiqaNX1A5U63q6\\/9xOY\\/wDs9Uwcj5WOfRTzUABDHOB7nFGoWNRdQ1Numtaxjrk6jP8A\\/F1MdX1BYwF1rV947\\/2hPj\\/0Os3KvGFUqzemMVD5whbknjjAxj86Wo7I1DrGqj5v7Z1b6nUZ\\/wD4upY9c1Qr\\/wAhrVS3p\\/aE3\\/xVZJuAU3BcH+8TikS6GQMhpPTg\\/rRqBr\\/27qvT+2dVH11GX\\/4ulGt6sWA\\/tnVSPX7fN\\/8AFVlmd8ZZdq+o\\/wD1UhmV12s42nrRqFkbX9t6mqZOs6kCP+ojPn\\/0KmnXtVCk\\/wBs6qR1\\/wCP+b\\/4qsXfGg2ocnsN1Kk7KuNu0dTxmlqFjaj8R6mykHVtV3Z6i\\/l4\\/wDH6cNd1VcA63qjHt\\/p8v8A8VWTHdfKQGwKcWZ\\/u7XHtRqFjXTXdWHXWdT9s30v\\/wAVTh4k1dQf+JvqLfS\\/kP8A7NWPG4UESZU9gP8A9VIZPKI4IB\\/uGjUDZHiPWsYOr6muPW8l\\/wDiqcvifWG\\/5jOoJ7fa5ef\\/AB41lfaUf+IH6U2AomcyIc+wP9aNQNf\\/AISTWe2taifpdSn+tTnxTrSAY1i+Pt9sf+rVhCYHo3\\/juKPtYTopJ\\/2WH+NO4G9\\/wlmrr11nUfwvW\\/xpB4z1cMQNX1FuehupB\\/I1giQMclT+JpWkTHdP8\\/hSA6H\\/AIS7WTh\\/7Zv+ewu34\\/Wm\\/wDCW61jP9s354\\/5+n\\/xrCVuATkjseaa8odDgk0Aa7+LdcJx\\/bWoDtn7W\\/r9aRvF2tgEf2zqAPOD9qf\\/ABrn2uC7k8dfpmlnkAj5f5T05\\/SncDpdP8X65HqVp\\/xOb6U+cnym6cg8jqM9K96\\/aD8R3mj\\/AAN8Q3tpPNaXf2TaksUhV1YkDhhyOtfN3hhs+IdOUqWU3CjH1PSvo79pD7LD8C\\/EMdwuRJbBIwf75I2\\/ripd7j6H5r+KPiv4yhuXEXivXI8KBhdRm9P96uHk+Lvjdpc\\/8Jn4gA9Bqs\\/\\/AMXR4uu\\/Nu50TAG7FcjtAfB6k4zXSYnaR\\/Ffxxt\\/5HLxDk\\/9RSf\\/AOLqKT4teOFOP+Ez8QEA\\/wDQVn\\/+KrmkxtI7gciopyVYZAz6UAd7afF3xoLQv\\/wmGvHA5J1Ocn\\/0Ks+6+LvjdiSvjLXwe\\/8AxNZ\\/\\/i65mzkJjkjP3faqsn3zjnnJJoA6j\\/hbvjk8Hxl4g6f9BWf\\/AOLqZPiz44BH\\/FZ+Ic55\\/wCJpP8A\\/FVx\\/Qe3rihW3Px07EDqKAOuf4t+OCWx4z8Q9f8AoKT5\\/wDQqWL4teOB18ZeIT\\/3FZ\\/\\/AIuuTGSrY6Z701pMD\\/CgDrn+Lfjlj8vjLxBg\\/wDUUn\\/+LqM\\/FnxyOP8AhM\\/EPoT\\/AGpPz\\/4\\/XKDO4n24BFPJAOcgY6UAdWfiz45C5PjPxD0\\/6Ck\\/\\/wAVUY+LPjkgY8Z+IiP+wrPn\\/wBDrl3dSeB9eajHB657kCgDrf8AhbfjkjA8Z+IQfX+1J\\/8A4uhvi545PI8Z+If\\/AAaT8f8Aj9cox44zgU0A4PJIzQB1p+LXjnd\\/yOniEDH\\/AEFJ+v8A33TV+Lfjk9PGfiHr\\/wBBWf8A+LrlACV5GO4xSHIzgZOeMjrQB1Y+Lfjof8zp4h\\/8Gs\\/\\/AMXQfi345Rs\\/8Jn4hPbH9qz+v+\\/XJ5U89D70jctwQD+lAHW\\/8Lb8dcZ8Z+Ic+2qT8f8Aj1TRfFvxuUP\\/ABWfiDP\\/AGFJ\\/wD4uuNOCeB26VYt8fN3oA67\\/hbPjgL\\/AMjl4hz0z\\/ak\\/wD8XSj4s+OWjLDxlr5AOONUn5\\/8erkJTzgfKB0p9ucQli2MngE0AdQnxX8cs2T408Qge2qTn\\/2elf4teOFGR4z8Qbv+wpP\\/APF1yUYLHAPHXk9KkkZQhVdpJoA6T\\/hbnjndz4y8QdP+grP\\/APF0J8WvHOB\\/xWniE\\/8AcUn\\/APi65XqT245+tNY7iDnAoA7Fvi545IGPGXiAf9xWf\\/4unRfFnxwAzHxnr+7\\/ALCk\\/wD8XXIrgoDuOAe1IXwRk4oA6g\\/FzxwW48aeIP8AwaT\\/APxdMHxb8dcg+M\\/EOPUapP8A\\/F1y7LkjHOfzppGAT0xQB1n\\/AAtvxycf8Vp4h6dP7Vn\\/APi6T\\/hbfjr\\/AKHTxBx\\/1FZ\\/\\/iq5Xdkc5U9fSkAHHTHvQB1y\\/Fzxzjnxn4gBA6\\/2rP8A\\/FUjfFvx1\\/0OniE\\/9xSf\\/wCLrk0Hbj8KR2DA9\\/egDqx8WPHWT\\/xWniL\\/AMGs\\/wD8VS\\/8Lb8ckf8AI5+Icf8AYVn\\/APi65LkDvinYIIOcjv7UAdbH8XfHB\\/5nPxACRk\\/8TSc\\/+z00\\/FzxxuGfGfiHA7f2rP8A\\/FVyyozPsGc+nep7PT59QvobWCJpZ5nCIiclj0xQB7Jb+OPGFz4UbU\\/+Eu12Nkh4QapPyemfv+4NeweAdCvPib4o16PW\\/irrfhwWNrZrDawahKXlZrdCWwXAwD19zXIeNPhxp3gL4F6bcT38n\\/CRzNsvdKljw1sAepHX0\\/OvOvFlhp3iDxFcarpvjHTLZJ0iCxytNG64jVSDhO201F77FWsVPG3jnxn4T8Y6no8HxC1nU4bOdoVu4NUn2SgHgjL19O+E\\/hjfa34M0JLzxz4ntte1XSX1BZX12ZWRgoI2xAkMvIydw9q+SR4CjkYsvifQpGzyTeEZP4qP1rttK8UfEHR9MttO034gWCWVtG0UMKatF8iEYKgt29ulJ3toCaW56D4ff7J8FbHxv4n8eeNla41OSw8vTtSc9AcH5nHTBPWuh8NfD7Ur6+8H6bf\\/ABI8ZfbfE9pJf20tvfyeVDEBuUPl+WIPOOBXgs2l+LZ\\/C0Hht9a0y40S3uTdxWi6pblVkIILD5s9zX1Z8OPG3hnwL4V09TrI1OSwtRFbWhuYJbiJmUeYu44CqDnhX6AVMm0tGUrM8z8MeDvEF\\/a+F4dT+JniuHUPE93Pb6ebW9leOJY2K7pMyc5OOBWX4b+HPxR1S78WSap491\\/StF8OvPHNqQvbmRZ2jZgREocZPy\\/rWb4PvviloXkabpwtJbGG6eW0u7kQzNZl8hnjOSUyDkgZrsfjB4f8QWHwz0fwT4WsdR1uWadtR1vVIYnH2i4YfdBOCwySfwFF2na4tDzjxDB4+0fwT4V8RWnj\\/wAQaiPENxPb29ol9cCQeW+wH7\\/O7jj3rofFngv4heDtPcaj8VNQt9YjsU1GTTp9SuYzsbqiSM215BkEqKwnn+JK+A9N8L3PgWS4ttL8w2F41lMLm2Z2LMyurAA5xjjsKl8U+PviF4k0iS31XwX5+oS2iWEmpT2E0kpjUAZVWJVHOBllAJxVXYaGp4r8IfFbwh4ZbxLH8Tp9R8O\\/ZvPXU7PW53jaTgCAc\\/6wk4x9fSvMdJ+NPxMv7yG1tPGfiKa5lYJHEl\\/MxZicAAZ5JPFdrB8Z\\/Fen6Dc+Gr3wZDN4OmtVtn0Y20kaqR\\/y1V+SJM8lufpXkdhcaj4d16HVNOgnsZ7WcXFvvUs0ZVty\\/MQM4x1xTV+pLt0PcpvFXx0+HXi7w1Z+K9a8SafBqVwiJFfXL7Jl3AMOT6EZHUZFefeP\\/il42s\\/EF7bweLtehtEuJ1gRdTmGEWZ1UZ3c8D9K6ef40+JPjJ4+8F2uvbVjtNSjdVQN8zsy5Y5Pt2ry74hKTrrS7i4leZwCen+kS9Py7U0N+RMfi345PTxn4hA\\/7Ck5\\/wDZ6T\\/hbPjvkf8ACZ+If\\/BpP\\/8AF1yu35gPbr0oC7s55BqiTqx8WvHAbB8Z+If\\/AAaz\\/wDxVL\\/wtrxzyf8AhM\\/EOPQapP8A\\/F1yjAIOvPpUa5LYxt47CgDrn+LfjkjI8Z+IRz\\/0FJ\\/\\/AIqj\\/hbfjkj\\/AJHLxBnrj+1Z\\/wD4uuUjG0+o96kRBu5A5oA6j\\/ha\\/joYz408QE\\/9hSf\\/AOLpU+LXjoLj\\/hM\\/EOR2\\/tSfn\\/x6uVnID8Dvio1k\\/izkfSgDrn+LPjrcSvjLxDt4\\/wCYpP8A\\/F0w\\/Fvx1\\/0OfiEn\\/sKz\\/wDxdc0kvG0qMetRuPn469R2NAHUr8WfHP8A0OniEH\\/sKz\\/\\/ABdPX4ueOA4P\\/CZ+IOf+opP\\/APF1ybgdsH1NNiBJGT06ZoA7F\\/ir44wGXxl4hPv\\/AGrP\\/wDF0yT4t+OBhf8AhM\\/EC+\\/9qz\\/\\/ABdc2TgKAQv0qvdMxc8g49KAOqT4teOiePGXiDPr\\/ak\\/\\/wAXTf8AhbfjoHnxn4h+n9qT\\/wDxdcxEGI4+maRT8w4yAfXFAHXSfFvxygX\\/AIrLxCAQef7Un\\/8Aiqif4t+OOCfGniH3\\/wCJpP8A\\/Ff5zXNStuUEkn0AqCT5jkjB9KAOpPxd8dYwfGniH8NVn\\/8Ai6QfF3xyAD\\/wmniE8\\/8AQVn\\/APiq5PqRn+dKv3s9qAOs\\/wCFueOjyvjTxCOOB\\/as\\/wD8XSD4ueOTjPjPxFgeuqz\\/APxVcpx0wc0cY5INAHWj4u+OV\\/5nTxDgk\\/8AMVn\\/APi6P+FueOSf+R08Q4x\\/0FZ\\/\\/i65IrkcGlPC8gD07GgDqm+LvjpTj\\/hM\\/EJ\\/7is\\/\\/wAXRXK5UZ3Lk+9FAH22dzj7mffP\\/wBapYEKxnG4Y9+P5U1CAQPnxnsSRT2jDZKuVx2DYFZGoI28Zyn\\/AALGakc5HUj6DH8qqr5g\\/iz75zTstxuYP\\/vc4oAkgmZt29wcdN3NSEsBgv8AmwqBUOT1P1B\\/wpvmOB87F\\/QelAFmWRSq7MK3c1MjBVBZicj1AqtE5J+62KimkdP4QQT0Y0AaQ+f+79aa7YHrz3qiXMigOFAHT\\/IFSLLIv+7260AWGk3rtGQfYU0u4GCcL7kVHl+pOM\\/3s4pPM7BVz\\/fAOP5UAPMrpzuDKOwPNKtyWwC2F\\/u96rnyw5Zid3pt4pyy7XG1QB6gEGgCwZwjZUN+INAuBM20kDPY5zVaTcZN5II6fNk\\/pSoCxB+Xb6KMGkBa\\/wBX0xgejc\\/lSiZGPKknpzVUsqTD5W+pOTUruGOcZx03LRYCfzI1+QgBj0\\/yTUgYRAgsqnthg38qqKGdTkLn6UgYx8E4J6Bs0WAtK+8HMu3HtSI2z\\/VnGeuTiq5fb98Y9Nn9aXz8\\/ecKe3NFhNliSUqfmcH6im+cX+58nqACM\\/nVYjd987iO4JGKkBiH3irH\\/ZH\\/ANaiwx73ix44x9R\\/9amC5kUk9j0yMfzqIuT985HbjNRSXRAHU\\/T5aLAaBnYKCxU\\/pUQu9rcufpmq6z+YAC2O\\/HWomuI9xXauR36GgC\\/9oO3cQwB+vNK04YYwCPXPas03IOQJFwP4Rjio1uc5yQvP5e1FhXNZbr5l54zzzTRMBxwTWclySB0z\\/P3qUtkk8DsPrRYZ6T8DdPg1bx\\/YCUKRExkGR3AJH611H7enjE+F\\/hRptpGdrX16A3OCVVGOPzxWT+zhZC48aCXONkbZPrxjFcp\\/wU23ReFfBmDhDdTA+n3BUfaB7H5\\/T3L3Vw8jMTk5OTnrURiB6dj6U215Ygj8KsFsMMHmukyGpCWTLYUD1qvMSzf496mnuCAVHpwMcVTyScdqALEBwpI55596lcAxhiPzpLWLzEYE9TyKLsiMhFbgdRQBAeCcgZPOaarAPjocUEjJzwe1Mxg9MAdKAJy6hc45xTHbdzjBHfNHfPUYzkUmARQAuMlcjnPGacxxxweOtGCF5OSO9R7gR7ZoAGIJHGD3oUgn\\/Z44H+fpTm4OQcD86Z0Hp9KAFU59fqKX0JAOKavB\\/wAKCcg55zQAO2M9TntSglsj3pvXtn1ozznGKAAZOTzj1pBwDzu460vO0EDtk0oU9uOfzoAaQec8VZhASJifx4qsefqKsx\\/Kh5zngUAEmVOeuelA4jGMnrxURbccZJ\\/z61aVMxrzkA0AIzbUJxzj8qrE\\/PnJ49RxUsz5AHIXHWmiPoT39BQApGw881GTu6E4qe44Xr254qsCS3PA\\/nQBLswgP3hTMhScd\\/xqdiMKecEVGFyRt659PrQAiL16g4710\\/gf4eav8R9TNjo8AeRV3SSudscY9WY8AVzRIX5VyDjBr2DR\\/FkXw08FaTaRjf8A2rMLnUERtrvECMICOmcNSY0UPHH7O3ibwNo8OqSta6jasdrPYyF9h9+K8ve2kjJDIy9sEe9fd1h+1z8MrbwjBbRfD4nTI1WJ\\/N5XdjucHJ964G+8S\\/AvxVqVrOthdaf50wMsEM+UQE\\/7QB\\/I1mpPqiml0Z8qWWm3d9cpBbQSXEzHAjjXcT+VdBq\\/wy8UaFJHHf6JeWryxiZBJERvQ9xX3d8NtJ+CkfjGCDRZZtN1C2USR37Ou4naCcqwII69PSvcfG\\/wOsfHVkuq2eqy3WqRxnyJwU2yL12kgcex7Zo59dh8vmfkF\\/Y90JZIzA4Mf3l2nK\\/WrWn+G73VZ\\/ItbeSWb+6q5Nfeup2N18Ilng03w7aaXqFxKZb+41mKO4EyDqUyMY6HINfO3iXxhP478bDUp9NS10Z5yJrLSUFp5qDgMxUHk9faqUmyWrHk7aHp\\/hmWWLWJ\\/OukH\\/HnZkNg\\/wC1J0HvjNdh8B9F0vV\\/GSXN9rK+H\\/scguLZjCJSzAkhcnAH1Net6x+zx8OPGmitfeF\\/EN\\/o2tCIvJp2r4kRiBk4kCj26181tDJpG+MyL5schhOw5HHfPcdaaakLY9k+MHxR0XxFqmrypd3OoXl4cTXbxgbwDjgZAA\\/CvGVTRXBLPMD\\/ANcx\\/jWbJM8vyn5s+gqJYJCAdhz24ppWVg3Nd7XQsDFzMoP\\/AEzz\\/WnHTtHZsf2gwzxkxniskWrgDCN+VAtpHH3SPTApiNZdL0vzCv8AaYx\\/eEbU\\/wDsbTV4GrRg9fuMMn8qp2Oh3mpTpFDbyySMRhUXOa90+Hf7G3jLxeYZr+IaLaSjdvuR+8I9k6\\/nipcktxpN7HjiaDZkjbrUPT+62P5UsugxwSjydahJznKswxX2PafsHeHNKhRtS1nUbiXIAEISMH8CCaS\\/\\/Yq8GNEPLv8AVLVscvJNHjP\\/AAJBWftYl8kj5AjsL1WIi8RopHTFyy\\/1q1AviNBui8TuvP8ADqLD\\/wBmr2nx7+xZq+kxLN4f1AaojZIhnHlOfQK33Tn8K+efEfhbVfC2ovZ6nZz2VwpIMcqEfiD3HvVpqWxLTR1BvPGcDDy\\/FN0c9NupsR\\/6FUy6v4+Vd6+JLyT6X5b+teds7tnLk+lAkZf4iD6DjNVYk9ETxF8QkZJE1e9aQHKuJQWB9j1pdU+G2u+IbfTZ9P0+7v2jtlSbyk3nzN7u2e\\/8Qrzr7TKp4kZenAatjRfFOpaLcRTWt5PEwOQVkIwcj0+lFuwEHiDw5eeH7g2+oWclhOqg+VOpQkH2NZC\\/I3TPHPevqr9p7W7X4l2XgS1mhU+IW8OQ3MdwmA0smSXjb1yoyPcY718qFTFlSCCDgqRzmkndXG1ZiO3y4C8HikVdo4JAx9KHJb2FPQlT2xjpiqEHIz6\\/SpYiRnI5qPzMr79OKWNjjB7Z6mgBkzAuTjg8c0q44J6E+lI6ZIYgk9eeaAcEKOOcn6UAOGAcZ+XpwaYww2TyPU04Ody4wOajcnK45oAl4fBGM05htXI69qi6kc9KlDl1YAE45oAUPlA2QSO9Qu3PI\\/KnRjoT1NOuArONuMfWgCOFm4x1p8q54A6\\/rUPKHJPHQEGpjl413AFSetADS3yAdulRuM5znr2p5wM9gfXmmdAQOCTgYHFADM88YGOc0uMHkhiOSelISc4wKU478H0xQAdMAdR7UcbuvFKOBgc59KUc9B0oAMZABAPamk9dtKWOecfWgn0GT1oAFOB1\\/KilPXg0UAfcn2MqcBR9QabJD5bAFyp7DOa62TR8Ngj9f\\/rU3+yEA5Rfq3NYXNTk3tJnGQCQBzzUcMT\\/ADbAR69v6V1v9lkfdVSO+FoOk89C305xRcDlngc427k+hzmjyHTqG\\/76rqptKiG3aFTPoKhfSsAYyP8AdWi4rHMPbStxGOffIqbyH2gfMx7gEHH510aaU0hwB09M019J6blP6Ci4zBjj8okhGyetJIrkZbp25NdDHphPBG76DNK2njOAMH0\\/yaLhY5tY3Q5J+X64\\/XFOWMh93Dg\\/w5FdCNNTdyoz7innTDj5Yx7HFFwMEKWXlSAf4dxxUbQMX9I\\/7o5\\/Wt4Wwjk2kDI9amWxjcbmA9yRxRcDnDbHblVKj+9\\/9akFuSOFJfs3T+tdCbFFn4K7Mfwnj8qc+nggsqk+4xSuBzgtCp3OhLDtn\\/65oa2LvlYiB0rfFi2RlMj1PWpBp6spyM\\/rTuBzzWzp\\/wAs8D6A01bZpOQgGP71dLFpaMhOChz0HFL\\/AGWMEnIPpwc0XA5l4HJGUA+gNJ9lVPu7UPtnmujFgCPmBX8c1GumqP4jID6Y4ouBzxtXbG5yf94EUvlPGOAy59Oa6NNKQZwhb3Apw04t1yfSi4WOSNsFPR1z7VH5BP3uR9K6waNtJ5FMj0vax2BGPei4HNmEoo2oM\\/7AOagZJQxOQeencV1SaaFdtq5PfcOKa+knO7YCSem00XCxzDx5UHysMOS1RSRMcDGD06V1i6M5OWVQp6Y7VXbRjheGGB0p3CxyyhlySPmJ6elTB9\\/94Y9q220fC\\/OvH1pY9Ey\\/3SPTPcUXEdn8ANSnsviHYpF80coZHAI6YzVn\\/gpFp6Xfwp8Pzuv7+PVFVGz0BifP8h+Vb3wK0JI\\/HFrOQp2xsQPf2rnP+Ck+oJF4I8HaeCMz6m8hX1CREf8As4qFrK43sfnH5TWrk54NSIcgsQMe5q1qMaJcFeMA8iqN1KMbVAx3IHIrpMivM+45GeBnOKYvBGeR6inqd2M\\/dPt+dPKhV7jJoAlsZdhZT355qO4+aX8KbCDvOO1OZgT83A5\\/CgCEZLd+vA9qV+Ae\\/wBaVjgDv2zSPgAn37UAJ91cEcdMU+IgAYJx71GPmyTyfSlPAxgCgBztzz0xwabgHHc+lByTnrn09acxxxjJ9hQAHjAOf51Gw3ZPY8c96cCeh60hAzzn0FAAOT0+bvSHgZPPtTycggmmjIYg4PrQAmdo4BFIecg+vel7gZ4pqkb\\/AJufxoAcFJ4zgYz0oY7gT1U5pq9+Mf0pwIHJGcetABkkjPGBVhV\\/EjpVZR82R261YjzkDt3oAcYtke48M3Sn2xMybB0J6Ypk7gtjoPWkiPlozZJI7YoASVMyHjg1Iqsyg456CmOfM29QCccVL\\/qFGep60AVnLMSDz1\\/Smfdx39sVK5AHDZHtTFwBk9e3FAEo5UYwD3qSIEZJwTkVEZRgjIxShio5PXpmgAb\\/AFgGM89q9D+K9qirouyPymFqibTxggen415\\/YWz3l\\/BEiF2dgB6nmvadVtUvvE1xqmpxK9ppEQQI33WcL8q9x2\\/SgDgPEjNofg3TNJZNsszfa5SDn733Rj6fzrjAxViwByOhzWl4j1ibXNWubuRi29jt7cfSsxgMkZNAHReGtav5tStAlyEkh4h3nb+Ga+vvgl8dvElloqfZdTeGWFissDgMjYPcYxXxFGMrnPNbmh+LNV8OzB7C+kgA5Kg5U49R3qWrjTsfo34o\\/aCt9Z0fyPFfh7TdWtEIYRzISN3r\\/OuY074ieBtWieTSPAGgxyEdie3qBXyr4M+JPiHx54n03SLqa0SKVtru0eBt68847U2L4j3vhnxDqUdilvCIpmSMrHnGDjPJxWfIXzHb\\/tJfGeS6t7PRNFS10eBlLXdtYWwj3H+H95jJHXgHFfO1hIJo2VhnBLHnnp\\/9avV9B1ez13wl48utX0yLVNUeFTBfzKpa3JlTlR26np615RbKRJMwwBtJrSOmhDd9SOBlMyYHGO3pV44IIB57VQgx56YyDt6DtV\\/B7Z\\/CqEKE3kDbknk10Hhvw\\/Nrt\\/BaW0DXEsrhFRFyST0wB1rEi+ZwOeK+yf2NPhhHHHP4pvoSTnyrMyICM4+dunUcAYPXNRKXKrjSu7HqPwR\\/Z60r4Z2EeoarbQ3uvEbhIp3CH\\/ZQHq3vXdeN\\/i5ofw+0432qXUdtGoIMRYF3H8OOMk+3bvXIfGf4p2fw60K41q4YtLGhitbUNhWcg4\\/HIPPBHzelfnf4++IOsfEHXJ7+\\/unnmkc4jDHbGD\\/Co7AZrmjBzd2bykoaI+pPHn7dyTytDo+lOYF5WSWXYT+Azn8a5TTP24dXt7pDdaak0WeQly0ZIz\\/s4\\/WvDPC\\/wa8YeM7c3GlaHd3sI48xY\\/k9\\/mPFQ+Kfg94t8IxedqmhXltCp5lMZKD8RxW6jDYycpbn298Nv2nPCXxCuf7PYtpF\\/ORiC5ChWb\\/eGFYnjhh+NdX8QvhXoXxE0prbUrNZWCEQyqfnibnleffO05B6gkV+ZVtcSWkoaMkFT696+yf2Ufj1LrLJ4R8Q3QkkCYsLiUnc+P8AliWPfup7EfnnKny+9EuMr6M+evib8NL74fa9LYXkYdcZiuE5SRfUHH5jtXFi1RtxKgem7jFfoX+0F8N4vG\\/gW+EcGb+BDPaOqDBcDO0E8qHUdB3HPQY\\/Pm5BimkjZdrA4IPY+lawlzozkrMqi3TB+QDB+lVpl2Soq4UYHvnnrVzgg8gdfWqE5zcgZB6VoSeqfG6\\/uINY8HKkpjkg0K0CuvVTgkEfQn9K4DxjYl7i11UbVOoIZJEXAKyqxV+nqRu\\/4FXoHxKtoH8b6RJcspgg06037idoHlj+ua+jfgHZ\\/BX4rfDu38H+IrW1tvE0ks7x3oUJKQznaVkxxgH7p44qL8qHa58LLjH6U5IwPTHTNejfHr4PX3wS+IV94duX8+EATWl12mhY\\/K314IPuK85xx7Hoaq9xETsqsQFHPTmkRiox+lNDbpO+Peng\\/N7ZxxTAeGynHb8qkjiWXOfrioG4HAz7mpoWAYAnBoAjnUI30\\/SoepAHJPepJypc9jTI8Ejn3oAM7Tg5P1qSKUDoCR796a6ds4BpI1yw7885FAEyxfODk8+tRvgyYUY+lWWXKbhxjqKp53OTg8+lAD5VBAGQD7UoyAAemfpmkcAlc8H1FOY4XGckUAMyNvTtjimB8A8d\\/WlYDA6\\/j3ppJA5GfwoATGcYwO9Gfm4HHbJo+7jnHsKCevp\\/KgBS2M5A6cYNG44yOPWkJOMd+tA9OaAAnt1OfSkY4GdxJ5FKMk49PUUuDg460AAfA5BooyO6hvfGaKAP1AksxtJJfGOmCaqrYKx4RvqT\\/wDWrrPsYB5O0+gBFNktV3j7xPYjGK4bnVY5SXTiSNrFB6AZzSppaAHPBP8AcGK6z7GT\\/AW+i002YTrETnuoxRcVjl20raBujK\\/VhzUi6Sx+7uH14\\/pXSvY7MY3HPoc\\/ypfspb+EH60XHY5T+xmBJTAbuc4pr6Gz\\/fYe3Oa6o2UYz5jYHbApRp4XlSSD0zRzCscf\\/YzDpGG+tKujeWS21CT2C12n2RIxkuV+nFBslYA9vU0+YLHGDS8HO1RTTphZiuVA9xgV1zWK7j8uR79P0pfsWPuxqvuAaOYLHHtpLDOTlfbOKP7N2oQBkex5rr1swW+YfUYofTkdiAuM980cwWORj01QM7HLe5pTaqW2FWX3B6fpXVf2WoO3AI\\/EUh0tS2wKQPXGaLhY5gWSqwVcn3LUj2A342BiR1INdQdLEJ4yWH+zx\\/Kmm1dpAGAXP0FHMFjmf7NIH3WVe+1TilGl7uUIIHXd1\\/pXUnTdpGN\\/4Hikex3NnaOP7opXCxy0mnqCNylj2Ix\\/hQunJz8pH511P2Mt7Un2Be0RH+8MU+YLHLiw8rgLnP8AdWiTTiOkefoa6g6aScjI+vNLNYsxGUQ\\/Q0rhY5MaZ6qE+oxSrpUjn5cD6viusuLAkLsH5Uw6dgAsD\\/KnzBY5X+zZ4+3meyij+ynYZEYDd811a6eAeRx6daP7NGSVDH6CjmCxyn9nM2EZQoHc0j6duBJXGB1JrrhpJI6HJ7EVE2k4IGOBz9afMFjipNP+XCx4FA03BUhOQOufrXZS6aDkbcKPbio\\/7KIOQn0J6mjmCx0PwSsvK8RMzH5whK5PavFv+CmLSR\\/8IExz5Hm3AyPXCV718OY2t9diwoGeCe4HNeT\\/APBSKygufh14VlfIuU1U+WB\\/dMT7v5LVQepMlZH53akwknZuo9h2rLlb94cDAFamoKEHc8dDWd5QlYY6n1rp2MBsRyd3Hp+NSScLuOTxT0tHywI4FDqdpBz16GmBXixux+tSeSzZOPl9+KbCP3ygirVy2IwB24\\/xoApSHB4+nrTCTxnn6dh70Dk5JxilzkdQcjpQAnBB9+1KCRn68c0mdx7mkwDjGfegBckcfzqQuQRyPY1GQAAQTn0FKOvuT1oAGBDE+tISfpTjnnA7Z5ppOTjjn0oAFUdWA6cUEkEjGM+opSD6Zz7dKTByQc4z270AB9\\/wpNuRnAz9KP4T0FABBGeOOnpQAm8dj2pQMDPb60dCMDnPQUDOBk8fyoAcvJ46+v8An6VMnLk9hzgdqjhz6DjualtlUAnkc9c\\/59KAGynGcAjPSlTCwjPQnvTJMNjByM9qmjUNCQfXPtQAsYBQHPH61FLKHbK5YU\\/cVjxgHng4qJRngYJ6YFACxkbQDgn2phY7jz+tOVcqc4xnFRtwdvb0oAk+Vfm+tKeRjOMGlUDy8cgg8ZphHTj8cUAdF8PLcz+KLV8lVgJmPfAUFv6V2PjzXHtPCVvZ5dLm\\/me4lLdWU9M\\/rXO+CIWtLPUb0xsQiCI7e248\\/oKoeNtYbXNUDbiY4kWNPTgUAZOoKtutukeOYwzH1Y\\/5\\/Sqe3cRnrUk1yZooldAxj4B7496iToD2HtigCUJ26ewNKgx0\\/wD1UB\\/vEAjk0xiAc\\/pQBoaRez6dercW7lJEBAYds8f1ok1GWW6kldss7Fi3rnvUdrbXE9ndzxRlooUDSOP4VLAfzIqrvBBB5Y\\/pQB6Foni60t\\/h94i04QKtzPEoEv8AEx81D\\/IGuNhYRGUnvH1HvVCGcpDMnB3AD9RVm5LREKVI+Toe9ICOFgs4boMVeEhx0zxmqEOTOvPUA5xzVsENkk9PU0wNHTwJJkyO4GOa\\/SjwJp3\\/AAj3wh0S0skEdy1nCPm3NlnAZs45xyfzr8z9Nm26hExAAyM1+qHw2mj1D4fadJhZF+xRMCwBx8lc9bZGtPqfEH7W\\/jq41\\/xydHWTdZ2CL+73ZBkI6\\/lt\\/Wqf7K3wXg+Kvjgf2ipOlWQE90BwWXso+pFcD8U5JL3x7rMjsSxuCCc556V9W\\/sCyRJpviSMAGcmE89Svz1cvdhoStZan1jaaLpejabFZafbRWlnCoVIUXAA9hXJaxoC6oJYJo45rdsh1cZBXnrXVXJ3E549+xrA1KdzbOFBGTjOe1cSZ1WR8FftR\\/BK18BX8et6TEsWmXR2vboDiJwO3sa8T8M6vcaHq1te2rtFNBIsqOpwQwOc\\/pX3Z+0zoyah8JtUllkAMQV13gdRXwfbWjQyZweBXdDWOpyyVmfp3pniAeIvBtrqscgCzWyXAUdMsnmDH4rIPbcfSvzx+MGmDR\\/iR4ghEflA3LSBAQdu\\/wCYAf8AfX6V9jfs46pcaj8MLC1ljLRw2+xXJz2uD+fP6V8m\\/tF3Yl+LuujG0oUQ5GOQoHas4aSaKlqkzzgHkj\\/Jqm2PtQJxncMgcd6kL4YHPHeq6tvuF6\\/eFdBkd38a74t4yaGMeWgtrf5QcgHyl9a47RdWuNK1O2u4ZSkkLhgVOO+cV0vxfmE\\/jq86jbHCmT14jWuZ0bT\\/ALfqNtbL96WQL+ZpdBn0Z+2L4ibxTpfw41OSNSZNNkQTA5ZwChCk+27\\/AMeNfNG4Ku7nHavZfjjdb\\/h98P4CAZIYJVVs9RhAf5CvFeoGSQOORSirIHuB5OcfTvTgeMcdacpXAyQCfWpBHGR83BxiqEQkllPb8KdEyj5iTmo3+90zTQCpGS2D+FAD5ARk9ulM4GDjPXjFT7tykYHTFRFmXjHTrxQA8fPnPapNg2ccFj3qEY6Z56YHSnr8yHJ4HPFAErECM7W\\/A1Vbjg5571NGh689CeT1qNlDM35ZFADx93Jxz2HWo1U5\\/vHpUikoMZ601lGDzgjgmgBjYK+m3rnmkyNvAzj1oY7cUmM8cHPrQAu3jByO1KAN2OPfPemEAkng0vQnoMc9KAAls8nPFHH0BNGcdCOnOKNu4Afn9aADjGR+vrSkjJ7ZpAuCR2zTsYOOmeaAGnGfu5opdq9yDRQB+vj2QZtxTH4809LUbCAq8\\/3jzW0lgCMjgehqVLPKkgMAOw6V5h22Oa+xlTgryac1gGPzIDj2roVstxycD6Ch7UcfcOf7v\\/1xQFjnBZq33F2+uTmhrDI5DfjXRLYqv3g3PqaDZhj8mfzphY53+z8fwk\\/Wl+yE8DPHbFbz2YAGCzH0TH9TSNaDA+Q575WkFjFXT2TkqSD0701dMy5+TH15\\/St4225QHUAds5\\/pSC0TPAP4UwMRtOBGBkGmpprI+5ThvUDn+dbXlEuVBC49qPszg8HcfzpBYxnsmIO4\\/N6sKQWpC7e3qpNbi22\\/5Tx64z\\/hSnTlHRst6YP+FAWMH7ASM7T9Tn+tOXTn25zx\\/d6GtxbQK2G4\\/MfoakEJUDaAV9zTAwPsH+zj680osMDorH1HFb32fc2\\/A\\/AUpgBGTjPp\\/kUAYSWTFcAED2JxSrYsoOFU+5Fbf2LzGDbM47jj9Kc8QTjAOR1IxSAwTaMcEqP+Ar\\/9ehrLzMYLPjru7VuRW4AOwfrmkFuc4ZTzQFjD\\/s8L0Gc\\/SnjTdmdij34xW2bHB4+X8RUhsfL6MWz68UAc8tishOE3EetPhtkjY5XcPQtjFbEln5fJAOfTNOWyJzuyw7AHpQBgpZK0jHaG6nC54pDZIGPBHsa3jpoXklgD\\/d60hsA4wuSfpz+tAGILNuMISvrjik+wAHBUZPQitv7EVBHUjtTfsuc9vw60wMF9PBJHXPWk+w7SOM10C2hK8DP1pGsse\\/4GgBnhO0EOtROi\\/lXhv\\/BQ6bz9D8HW\\/JP2mdxg8DEYFfQegWxj1GInjPb0rwT\\/AIKE6YYfB\\/hXVMk+XftbEf78bHP\\/AI5j8a1p7mU9j86NZZhcsueecin6LZmU7sZAGeOag1WNmuX4LHPOK2vDcWLdiwxgE8iu05yrqbpECADkce9YryFzjktnvV\\/Wd0k5ABK881TgtmlKgdDgH2oAIICULuCADjk+9JNLnICnFaN0qQwKgIPviqbQeZjBwM54oArEErgDgDnmkyQOQFHqakLAfLt4HeomJPB5oACOMEc+tA25xyCKB7np2xSjHXIzQAw8DnPPFKGIwcEnvinFc9DzSdwB0HqKAEDHaM\\/lQBkk9T1NBxjnk+g7Ui8AEflQAoyehIGOlK3IwBjHWms3Unn8KX7vI556CgBAOeeSOvFKCSMDjJznNJ9QfpQuTjGPQUADtjAHP49KQkhSMdKXAI565oUZI46DigB8Y4Y9B6ipYvuMQSOaiTIA4PIp8TDB9zzmgCSCNdzZzxRCS0jDk5pCML1685otm2Ox\\/Qj+VADpUKRgnrzUKL8o7Zp8jmQ\\/iaAuAT+FACMpQ4H\\/AALHeo1U98etOLZPbPrSZZR2oAfjzDinxruOevI5FRq20YOeantY2nmjjQEuzBRigDs9v9m+BhuAV7tvMLnnIHC4FcK24rwT6nvXa+NZhZ21rYB1zCio21uMgVxjctkjp6UAM5yTjoAeKVFywHXnFTQ2slyyxxRmR3bAUAk\\/lXr3gj9lP4k+NbZbqy8OXNvbsOJbseUD7jdzSbS3GlfY8icBMjr6c9KgKl2AHBPHvX0RffsO\\/E62tyfsNq5\\/urcAmvPvE37Pfj3wcjyX+gXBjXkvBiQfpS5k+oWZw9jqcmn6ZqFoqZF5Gsbc9MMrf+y1lgnB7fhVq4hlgZo5o2jdTgq4wR+dViuOf596oQighhjuRWjqLg3TqvZVHH0qvaoC6jA65z3qzqJIvJMjB4I46cCgCGElZjg5OMc8VZU4PrjqKhXHmHJ69ambIQnHbGKAHQt5UofkAc4HWv0M+AHiaLxd8GrFDO\\/nWkQhmwSpwmQRx1+Qsfwr87w2ZMkfSvdP2XPi+Ph94pOn38mdN1IojFj8sb9mwT781lNcyLg7MwPj\\/wCFbjw38Q7szR7Euvn3ZyN44b9RkexFbP7PHxim+Efi1Lx0aXT58Q3USgcoT1HuDyK+lPjp8IoPiT4d36c2buMB7WXAYNj+HIGSQOMd1CkZxXw5qejXvhrUJbK\\/he2uImxiQEdPT1HvTi1NWYO8XofqjoXjLTPGOmRX+jXsV7Yy\\/ddeo9QR1BFaVrpsd8kjyghB27Cvy38OeNtW8PP5mn6ncWTH+K3mKfng109z8aPFup2j2t34g1CWFxtaM3LhT+AOKxdHszT2h7n+1n8QdLvoI\\/DOh3ou0WTdeSRn92COiZ7nnnHTpXynNZSTzxW8ILz3DhVVe\\/Iq7e6qJN29i8mOFU8mvZ\\/2evg3d6rqsfiPWonRUx9lgI+YnqCB2b0z9TwBnbSETP4mfQvw40RPAfw8gjk+SK2tvMlZjjnbj9f3p\\/L1r89fiB4hPijxtrmqFt32q7kkBxtyCxxx24xX1\\/8AtY\\/FeHwb4TfwrYTh9S1CMrKIiAIk4B9wMDaPYe9fDmSQDnk85zU019pjm+hKhO0jk56ZpsRAmQkHO4fhTsnAHPTkVJp9lNeXsMcUbO7SABVGT1rYzPQvix4Vkmmn8Q2m+4sxcC1upQOIn2KyA9+RkZ\\/2a5Lwmjwaj9sVf+PWNpRnpnHH86978M\\/DLx7N4h1VbPwve6jpF0dk1ndQMtvdIR0ycDKnBB6iqF3+zN8RNOub5LTwVf29jO24Rr++KDOQNw6\\/lUKS7jszzb4sasb7T\\/C9pni2tXOOvVsf+y155jnnn8K9c+KXwq8Yxa7ufwxq0dpbW8cKyPZSBSQvzHOMdSa85k8ManDIUksriMjgq0bVSaAyGAOfUdeKfk7R\\/LNaZ8M6nKpKWVwcekTcfpVSW0lhZlkjZG\\/2lwRTEUFPzcdfWn8lRzux7YpWRkIG04pD83H64xQA9Tngj8ajkyXYj0p6YYc8MOlNbgkAZb0x1oAQHDZ6fpz0qaIgkqx4P\\/16hK7fQmnQjDgnkZ70ASqdm\\/bkKOntTIcMTnr1xUszKVJHB9KigfZkD6c0AMUHBOeKDyDkZI70oAXODupmPmH+NACZA\\/wFABJ9B70ZAJOOvWkZjyBgY5zQAAcdsZoPytjjP6UuFYjsetJjGB6UAIvJyOKXOR79KUHaOOaOgxzj19KADg5\\/WlXkZ9OKQg7\\/AMqABngcd6ADax\\/i\\/QUU0xljkAkdqKAP2r8puoXKdyc0CEN9w8e2ak4A+6R+VCmJgQcg9twrzDtEEe3g9\\/Rf\\/r1G0aRdC3PvViOJdpyyn6ik+6Rzu9+aAK6x5\\/8Ar5qXYyj5V2\\/U1OwDfeyPqMfzoxs5P8qAIzE6gFSmT\\/eP\\/wBaoPKyT1z3weKu7QevzfX\\/APXTWyeMqPwoAqvEGUZYcegpoXYfkYZ9xirqgjrIf+BEYpphOSc8f7PNAFIws3JwfoaUrhcbMf7W6rQQZ4x\\/wI0pRTwFQN6gc0AUvLZuOKkjjMZB4OOw61b8r5ecA+pNG0gYwGHqKAKcsRkfeFwfQjmnJAeCR+fFWzGAvCnPpmgKNmcAH0J5oAqta5O\\/BGO46UnlAnlVYf3gtXUAKbSgOe+OKaYwGxwoPYHigCqYUz8r49iKcIsg\\/KG984qw8aIeevoOaEhEwJwVA6hqAKvkIOq4+vNKqLHnBJJ7VO0K\\/wACKo796WKKNchTj2OaAIj+7GGBXPoM0BC+cBR\\/unNWRG46BU\\/HNL5Sxjs+fagCmItx+Y\\/9881KEJ6Fv+BDNSiLHTA+uaaUGfmJFAEflNn5SM+wxTmjLDHf2NThMD72fr2o2A9Tn2oAqiHJxs\\/Ekc0nkKMcDJ6VbwD8uwKB\\/FnrQRg5A5z\\/ADoApPDxx3zkHpTktxk4xmrDId3T8KXAIJIHsaADTkEF1G\\/Awe1cZ+1p4Dj8e\\/BLV4iha408DUbcg8howc\\/mpYfjXbxEKynqQfpVrxr\\/AKZ4B1qJcbpLGZeeQMxmtIOxEtT8WvLWfVzGMMGbr7VpXcjwOttbryeGHtTNMVbY3U7AbkYqDnvT9LnEUUt3KSxbODmu85Qlt0gT96AXIrBkuY4nZUGOcetWtT1b7QxIPPTHtWI7fN1Bz60ATvOH78+ppskpIODx+VQA8Y\\/HNLwf4j0oAQ9cnp+Ypw57ZWkVgByuacsmOSuT6gUAD53L1GTxTRgNnqe\\/FNLg5GM+9Lx7k0AP4ALHOPamFyQSM9OtLuI6Dj1poxnigBdvCnrnnmg4GcHHqB60hznOMg+1DEdP0H6UALlieDmkZvXn3oC9znn16UDg+g60AAILYJ6dMUvIOM8dPwpvfg9evpQeDjt60ADEg9MelOVx0HWjrjHSkXGSMcnvQBJzt5FLuOMk8j1700sWAwPwoTJPPftmgB8hGM\\/lSwnlgWz2wKjYkEc9OaIzhhnt1OaAHovz54NPkYqDxknrgUzooIJ4HNNZiy5yc460AIvzMRjJpCMcjsKmWF2ACIWPsCambTLt1O21lIPcIf8AP\\/6qAKeMHGcexrofBUSnXInbkQgyY9cc1Ss\\/Dl7PIB9naIY\\/5aDb+Ndro3h1fD9leX8sgkfy\\/LAHQZoA5XxPefbNWlccc9qyoYmmfaDkngClupjPPI\\/Tec8dq9z\\/AGP\\/AIRj4nfFC0+0xB9N09lubnK5DAHhT9aTdldjSvofQ\\/7G\\/wCyrBbWdl418T2aSyPHvsbSUZAB6SEfyr7S8sImFAVQOg7U2zgis4IoIEWKKNQqIvAUDgCpM88dDxj0rjbvqdCVitNAJEwwGO\\/Ga4PxxoEV5YygqAcHt1r0dl+Xgg+1YmuaZ9tt3XHOOKhrqNM\\/Pn46fC6xv5ppzbKkwPyzRDDc+uOtfK+saNJol48ErZIOVYdCK+5Pj5puo+GdWzdRSfY7g\\/JIq\\/KfYntXyV41torqORQMvGcqc84rtg7o55bnF2Dr5xJPHqata26yXEZAwAuKylyj8np34qzcztLtbJOO3rVkiwkmZs9hU5bC5IwMc1Wh4kPP4VLg+uQaAHlSw68ds0+NZFcleSvIPcfhVzS9NfUZgiIzbjgYHX6V9m\\/s5\\/sWf8JFa2niDxYGt9OcLJFZbSHlHXJz0FS2luNJs439m\\/4\\/X8SJ4a8RQTXViFIhvArFkwcgMV5wDzuzkV7N40+E3hj4sRh5FS4mcF47qAjzQxGclSQG7fdIPqpNdx8cdM+HngXwUdPis7bTH\\/5YwWCKJXb6Dlia+ePB\\/wAP\\/iRrkr3Hhuxl0PTXYGN9YkZDICeP3Y\\/xrn0fvLQ1V1o9Tjdc\\/ZN1KK8dNM1W3ZhnMNxII3X\\/AL72H\\/x2su0\\/ZV8UNOF1C9s7SAH7\\/wBojbP0G8V9Z6Z4e8caRbBNU1jTriUDkKHX9DxUd7p\\/jUh202XSXmYDCyFxt\\/FR\\/On7R9w5UeWfD39mTRvDZi1K6L30kbBo5ZvkiBHfkAn6Krf71aHxa+PmifCrS3stHmS91oKYkRV+VB3+gz3ySccnisjWdf8AGGl6\\/HH44gvbKyZv+PrT1MtqAD\\/GcBgPevT9T+BXgL4yeCoUVYUvDHm31ayKmVTjjOOGX2P6VLet5DXZH5y+JfEd\\/wCLNbn1PVJ2ubudixdh0yc4HoKzghcbR2\\/zzXr\\/AI\\/\\/AGY\\/GPgvxtF4eWwfVJLk7rS5so2aKdPUHHBHGQele9fCf9hiG1FtfeMbo3EzYc6dZ\\/dB9HbjP0H51u5xSuZKLZ85fCf4I+JPizqHk6VabbWNlE15IcRxA+\\/c8dBX3p8Gf2WvCvwyjgu2tBqmrquXvblQcN1Oxei\\/zr0Twx4RtvCljHa2NjFYWUWAkMKBQPw\\/rXVwlRGPT19a5p1HLY3jBLccjmEKFX5QMcVoWV4TIqt096ypJ0XCscfypqXyRN8rZz71kaWOuRUdScZ7c1UudF0+5bMtlbyMP4niBP5kU6xvFcA542AkVaDBgcHJHb0rW6ZmZ6aPZRcJaxKv+ygFeafFT9mTwJ8W7eZ9S0uOy1VlKpqVmoSVTjALY4YfWvUZ2K5PrVNb1kIBywz371Kdh2ufkD8aPg\\/rHwZ8XXeh6xHypLQTp92aLJCyD646dQc156sKBSMHOSCK\\/Wn9p34MQ\\/Gf4eTtZwQt4h09Gls5HXJcYy0eevPb3r8qNc0e70LVbiyvYGiuoTseN1KlCOoIOOa64S5kc8lZmRKAmcHAHtUagk4ADetLJGxY54HXmmcMccjmtCSUjd69elHcDApFYZxUk6bSpHGe4oAZIxZffpTI8Bj2PQ4p7sVAUnA9qjDbCOM9896AFYAuTxz6U0HJHYHqacxGDzt+lNxt9v60AH8Pt1z60ZCjPHJzmkAz\\/EM9vSlxkYHNACDJA7++aM4HofTFAAHbvSgY6jA6k0ANxgfX2p643cDPvSE7cEd+lOA5POMUAKELJk8Zpqr6jHHSldjgDpz0FKqluilqADA78ewFFO2SKP4vwFFAH7XINq7VHH5\\/qKD8pA8wL7ZppuAvVvm9sChLncp5yPVmrzDtJVTcDj5\\/cdqYFZeFHB9aaZXX7nzL3xQsu4cL9cmgCVk2Ab1LZ\\/vc0wuvTIH\\/AAGkE4boAmKR3I6ZP+9QA9DgnOR6YGc099qgE4we5qJHZMlsYx705JFcn5h\\/wHrQA7IUZyT9OaCN3RQ30GDUYkidiGUcf7WKmQqPuqPxNAAN2MYb6Hn+tMVgJdo4ceuKewJHHyn1BpCUVQTs3dznBoAUtjpnf6gcU5G3L8zc96i8w\\/eHI7Y5pVIJ3HIb0FAEjAA8fMPbg0g2hs9\\/TPNNZ167mLf3etKpJIJ3H\\/ZJH8qABmYvnHye5p2FPzKAT24oLheCMfzpNwPIHHqaAAYkIL4D9gBTzI8fykkE9sVGdx5Vm2jqB0\\/lR9\\/nI49DQAKhXOVx+NAwDwfyo80\\/xAA07AH3QqjvQAoBPcj86bKSCOcfWnMFJBB59uKduY\\/fz7bcUAMH7vkc59R\\/9ekRNhJjKsT1p4K+o\\/nSE47E\\/pQAhC+mT3FKVYgZYAelPDK3DYSlUhDnJx+FADFRlOT0HIpQhySfwoVsyEc89Of6U9z8oPTNADDHycDAPJGKZs+bkA\\/hUgOAOp7UoUZ4IoAaEwenJPQ960btFm8PXaMOGgdf\\/HSKpIm0Y6GrmsyR6Z4Xv7mYiOOK2eR2Y4AAUnk1cSJH5D+I9CXSV1OGX5Cbl8jPoxGK4jUbnyYUhiPycnjvXa\\/EHWItQhuJyf3s8rygg9ixI\\/nXmTys3XPXv1rvRyiSuWzk8+tRM2D7HpSswOQST7imkcYIz\\/OmAAANxgADp70uQ5Ge9Aw56EfWrEFvlgWBGfXtQBDsLKeOvGKCmMZ464xU0jYYqO2ah3HnHPpzQAHI+h74pvOcfhT44zM2Ogz17f55qzPbpbBeQSRgjNAFQqeCelOJCqMgZ6cCgsxzwc9TxQE\\/dD1HrQAn3uAOD1oMRXGBnjin5AJH3cVJChdwD8vNAEBUsAQuR9elNVDgEAgVdNvxwc9+OamgEMZ2su5gO\\/0oAz1gfaeDinLbMO+MnvirV1ImdqlTx1BqJYpHXIBJ9cZoArlcE880hUg9unr2qV7Z14ZeT270ht5FXIXdxQAzp9AemKaOckDp\\/KnEEE8EDpkUsUDzkBELHOMCgABwOnNCKXYKBye2eauwaDe3EoAhdQfUcV3Hh7wUIwJrjCIhy0j8L9KAOV0vw1c37hdpOTxjmuos\\/CekWMRe9nMsvURRjP4Zq3eaqmxYNNUwQA4aZh8z1mDyBKI2O9jnJFAGvY39ppwZ47eKKPBAz8xxTJvGeFMdtC8hPAITr9KqBraBCoCk9PmOSKgj1SGBj80aKpyMYoASe\\/1a7bKW4jzyWc4FW9dvJtP8JfZ55d087lmCiqcviSCWRUQNKx6bab8SJPLmtIAwJ8tSVBHBwM\\/59qAOLDE4Az16HjFfop\\/wT70C30b4c6jq7Jtub65KbsfwJ\\/8ArNfnQBk5A9ua\\/Rn9jTUJbb4MWMhyVF1IpPT0rGr8JpDc+tIrpZOhIz0qyMkHn61xFlr6iQq7j6Z6109tfrNGPmHIHtmuVO2hvY1MBgOSQD1qjeXEUbbCwDsOKp6nq5soAc\\/M3Ari9f8AGkNtMUbB29CCMihu+wWsbPiDRrPXbKW2vbWC7hY\\/NFMgYH86+Kvj\\/wDsmT281xrHg5HlUF3m012BwOv7s\\/0P4V9Oz+PknmWONixYZYjoBVpNUN\\/KTwQ\\/XmhOUHcTSe5+Reo2ktneSQTRvFLGxVo3XDAjsQaVeY2weQc\\/Sv0D+Pv7LmmfFFH1XSiuma+qn59vyTYBwHA7+9fBOs6Je+GtUu9M1C2ktby2kMckUgIKkGu2ElJHPKLiVI+47H1q5axrM6LjAz8xz27VShbBfJJHcGuk8I6HNr+sWWn2ymSe7mWJEHU5OBx9TVkn1V+xh8AIvFt+PE+uW27RbNisEbdJpRjjHoAcmvrn4nfFH\\/hE7S20rR7V73Vro+TDbQJ93HU56AAfy4rM0WPSvhH4BttHtJUhh0y3JkaT5CzYy7kH3zzXMfDa1S5S\\/wDHWpPNO+o7XtLacbTGn8ChfU56981xOV3c6ErKw7Rvhjpmg6k3iTxLPJrmvSqWQ3O0CNe+0fdRR6mub+JP7R+heBQ0F9qIWVgf9DswScdhgYJ+rMo9BivP\\/wBo\\/wDaBPhO1nsrKZbnWLkEeYp4Ucjf1+6D90dyM18N6zrd5rF\\/Nd3k8lxcSsWeWQ5ZietaQp82shOXLoj6g1P9tmW3dk0fw9bR24PDXDLvP1AX+pq34d\\/bZik1C3Ou+HYpIQwYvauhYH1wy\\/1FfIhJbqTnPU0u49ug9619nHsZczP0r8J\\/GjSfikEi0y6tdctijm5srlPJvIuOAiHIYEk5OSAMVPa+FLnwNrltqfhKdI9PvJ1F3YSH5MMTlwP4WHPTg455FfnF4c8Tah4a1OC+0+7ltbuFg8c0TFWUj0P6V9o\\/B342XPxN0kxrEp8R2Ua\\/ardCAL2IkDzUHGHDYzyANxNZSg47bGilfc+x9M0xbrbNNmbjueFPsPyroUs4oUUqg2j9K8f8J\\/FKDyxDNIrTRHZKquCG9xivRLHxRa6haLLbTJMnQ7WBZfqK57W3NdzbuUjnhKNjIGAR2rjLi8aCSSM\\/IFPH0rVl1+FshJFMnXaDzWHqGo2kS7pZVMh68iluMilvgE67U75NYc2u+VceWDvIPas3W\\/F1vasVEgz7Yrlr3x3Z2iyTzfdAxzgfzquVibsew6R4jYJvkYKPU8cVv6f4njmOPMDZ6V84+L\\/iTb6H4Ri1CKcwPM5RU3DLYGSf5V5fp\\/7RkttMB5ryMxwcN\\/OqVOXQhzSPu2bVoyhKNuPfmsC61QLLkMeMHHt618\\/aH8cTfomZTlx8wByRXXaZ4yOr3yMjDbjnP8qlxa3LUk9j2zRdVVx83APGa+b\\/ANsH9nuDV9Hu\\/GXh\\/TUm1KIGa9iRctIoABcD1GBkV7bo8+4REEkBsnA6\\/wD1q7aBkvLYowDKw5UjjHvTjKzCSTR+QmmyaPqUkUF3YW6lmGHbI\\/Cq2qeH\\/C811KkkF5p+GOJI1LKCO\\/evsT9qz9mrw1Y+Hb\\/xBoVuul38ObhreL7rnqdo7fhXxj4X8SypcvHcTLvzgLcnCfQmu2MuZXOZqzsUJPht9q+fStShvAeiOdjfkaoXHgbWIEZZrRo9vViQcV6TKIWCvKlowc7gkTFSPTBq\\/BNhjIjybCn3GO9c0yTw2TR7vzjH5RxnGc1et\\/C15OoICk9MbhnFezS+HdK1tcvtguQNxaP5c\\/hXNeIvh\\/d6bG09nceaijovNAzzTUNCvbFj5sDbem4cis9oJUGChX6iunv9R1KxZobmKRCp6svBFT6RfMxSW6RZIN\\/zKy9vWmI48q4wSOKltdOnnU+XGXH+eK9abT9F1C1eO2SNpCNwxjmsMwy6QDvg2xDgsRQBxcWi3LAkxEY61N\\/Ys0zgJGwPof8APtXomi32nagskbpskbOWyOawNVM2m3rqUIj6rIBwfegDIPhi6ihLeSWCjk8UyxgUTFHgwT7ZrsPD3iCCa3ltZG2uw6sRVK9gezV5fLEqZGCgoAzU0i1nb5o9rE\\/rVR7BbO4ZF6Z5BrZ03ULfK5XkHGO9Z3iO3ltr77TEC0LgE47UAPaxU4IUdOflorNi12WJAuzHsc0UAfsKsyD+ID2IpJJwp+7n3GSKzRcZIPzA+g6U43W4gnj9K8w7S79qB\\/iA9hxUnn+nH+6f8Kzjdj0z+NMa78zk7xj1wKANYT56\\/J9VzmmyznA2AE96zDd5+5sHrtANAnUZ2HB7\\/wCcUAabTMyjAyfrihZMdMj1yTVDzmABUZPsaX7QABzz3GaAL5usfekB9iKd9qjx9\\/b78is5psAbUOfpmnjlQc\\/gRQBoG6CqCrkmn7w0YYlgT3LEVnIcN8x49lqUXAYbdpC+uKALokATAy3uOaRZ2U8sAvfJqj5iBsBefU08Nuwc\\/gOtAF37QM7sjHqOtKXwPMVz\\/KqYkI+X5j7HrSBsN0T\\/AHSeaALguAwydrP68GnLLuTaRye3SqbP\\/FgKB2HIpBIGO4ED2FAF9SI+GH5GnMwz8gBHfIFUkumII2Z9zz\\/KpI2dkY8YHrkUAWhKP936Gm5Y+h9dtVVnDdvzOaepVDyoXPvQBZTaAcMB9RQsqN0O76D\\/AOvUDNj7rLj601Zy3I3J+X9KALSzkE9RRGWUk56\\/3sVX+1GTv0oDM\\/3WGR14\\/wDrUAWjIF5JT6f5FOzuwV5J9M1VV2Jxu59uaUOMnK49wKALPmsRtYYA6E\\/\\/AKqUMGPJIHt3qsZECnao3etSq\\/HrjtQBYz26EelIoySMZH9ajEmSB360\\/wAwAt0P1oAs2oDzICc5P5157+1742TwR8A\\/EE2\\/ZNfoNOhx\\/elyP5Zr0SwXfcIOgznNfOf\\/AAUTnVPhLokDN80urIwX12xSVtTMpn5ueIL95p+G4AwB6Vj7sZHGccjFWb9w0jswwfzNViQvT9a7TnGgDcO+KeqmTG3qamtLMzK0hGI1HJA600uq528dRjFAFiOCNIQ5+Zjxj0pHuSR82AfXiq4uG2lex557U0ZbIX9OgoAQKZn+U5J9K07fS1wTKe\\/SiygFsGkkGDjjP86iuLwzMQCQueRQBO2yFGCEY74HNZ0hMr7epz19anMchhGASTVm1tlgAeU5J6A0AKtksMGWHzHByRiqLRNPIUjXJyeP5VpX0uUIB6jpSaRZOxL7sKfagCsunMGG8dPSriac+zKrwPUd6uumWCggfpTmjIQKrHgde1AGJO3kZU561S3l2L9j+tXb92MhRh6c1paRpcUkaySKW9j2oAyobFpG3EYXrVz7U0PyRr0yOlaupWvlx4jTBPoO+KlsdMVFDNg4BOD2oA52Q3U0ofysiuj07T\\/tESh4xkDkYxV2aOIQ7QVQAjsOaii1HznMUJyqgjp3oAiudCsokLMOTxj0rX8PeGPtEyx28Y3d2YcCqtno8+p6jFDFmaaQgAKM4zX0F4T+HR0jThEWRpyoeWQ8Accik3YaOEs\\/BqW8D3V84isrcbpJQMYFed+KvFf\\/AAkd4LWwQQWEJ2qFyMj1PvWx8aPH\\/wBtuJNHsJCtpC+19jf6xh3P0rzGG+S1hZCCXY5JX+VJdwNbUNX8s+UiBUjxgDqTiqlvDqFwWaGNgWH3sVni7leTeqjI5x1ratdWmWE+bNtxwAB2qhCweHbqeUNc3QiGOfm6Vfh8PaSjDzZ5JmB6JyKzH1W2AJLNIx67jgVWbWdvEKDOeCoxQB2eiwWUeqxpBbJGpbq2Oe9cv451A3usP8gG0EfKPcmtHwjHez38l5IreXFEzAMD1IwD+tcrqUxl1CZzk\\/McUAVkwznP6Gv06\\/ZD0VB8C9PgkTBuC7k98k9a\\/MeMb5VXPPYV+sX7L+nNY\\/CLRISu1hECQfU81hW+E1prUZ4ue88MSJPIjGBcLvHX2NdL4S8Ww6np6zI+8AgZB6V0Ov6DBrVpJbzqCCOvQCvnjWVu\\/hTrJldHOnSn53jB2dep9DXMkpGzdme761rUFw4G\\/JUFtoNeQeLZxNK7K2XboKS88Yx3FvHdwymWGaMFWB6Dg4Nefap4gN1PguwQdVB+97ZrSMWiZNNWOy0gJC4Bbcz8swFdxo8zeWMqVyOM8cV5PpWvELgjCL3brXZabrKysqLIOeFFEkJM7p9ZhtVYuV3KNxA54rxb47fBXRfjRpL32myRReIbZGME0ZA83vsf8uD2r23wloMd7ALuZRJCc7VZc+Z\\/tfT0rXuvB1nIoeJfInH3ZE4P\\/wCqs0+V3RbVz8htZ0S98O6td6ZqMDW15buUlicYKmvZP2P9FGu\\/HLw6jr+6tWa6YE9QiFh+oFet\\/thfBQXWny+J7SELqlqo+0FEOLiIZGf94cfhXkH7IeryaR8Wo54n2v8AZJsfiAP8a7ObmjdHPblkfa\\/x61W6ubCx0y1EZe7uoYZPNQONjN8xI7jAPFXfHd\\/D4Y8Kwxq3lRWFtuAAwAxwi\\/kCx\\/CvMfiFr66r4w8EveTuhOqqEKqCpYRkAHPTgnnmug\\/aY1GK28Ba4PJTzmtXMc3n4YMofGE7jBbn3rlStZM2vuz8+viN4tn8ZeKL7VJmwssmIhg4WNeAB+FZmgeHZtduURNqIW2734H1P6VQnXknhua7nwBetp1m52bhICFbH3fp9f6V29DmOv1b4J6bo3h03JvjeXZIC7JAoJ74Xk49zXmep+E7hYZZYI3eGIEsxHQDgn+Vepy6jc31ms7FsF8AuvBqlq73TwfZbdl2SjMjbSO3Q8UkB4sylH5+X3rs\\/hd4vn8C+NNJ1aIlVimAlTs8ZOHU+oKk1i63oU+lXUSyhMPkqUOc44qKOLymjcjPI6c03sNH398UfDt9ofhW51\\/SgzPGHlTzHXEqAblxtGFAXdx9PSvEtI\\/aEu7MxvulgkKgsNzAgYB\\/qK+jY5GvfBlt5iOUGjRo+4HaGMRPXOOjemeDXBfCj4aWN54HivxLYXUzHi3VBJIowBk55HTI9iK54tWszVraxzI\\/avURhVu0U456A1iaj+0mtwxL3ikg5zvPT1\\/nXyvr1omm61f2qMWSCd4gWHUKxGT+VVUB9iORgitlCJnzM+mX\\/aJ0kzHzrppBnLMsbGuN8WfH8apdotpDJJbx5KhztBPqRXiWTkE8\\/UU8Eg+vOMCnZCudt4g+KOreJnjNzJ5UUS7Y4kJ2qO\\/41Fpt\\/kqXlcswzjFckgJAyckVt6Spk2AHnpmqEeq+FNWukliijctk449K+g\\/AN5ejyZXH7pHwxzy3r9a8T+EukyTyqz5S3DANnktx\\/Kvq7w5p9vcaVbQwQhdvPIOGHsR\\/WsJuyNYq56zoBX7LDJuK5QfKRXbaVLlF4AXtXnugWLSeSgYNCnCc5GOwNeh6dCYwDyOMHk1ydTfocP8AtB+EX8WfDTWBb5F7BbvJHjjIA5Br8k54X0bxIY7kBRHJ8wPIzX7YXUaXFrPC6ho5UKFcdQetfmB+1r8ILjwR4zuZI4G+ySkPC6oQrD6+vrXVTl0MZrqeUpok+pStPY6krhTkLkjb6DmpDYeKbGVQka3BXJDDmsnw5rAtt0bRyBAvzEHAB+tdPZ+JbaNg8F1MNvIUMGx6jBroMTPg8U32nvtvNPkV9mzjuc10mlfEmxQIj7kKsdyyjjmol1r7Y48p4ZnY5\\/e4BB9Kkkk0u\\/f\\/AE7SkiJG1ti9fU5FA0dLdS6b4qtsbYWl2H0IxXPaXowSxljNgDHExAyMllrIbwpaG6L6NqjWZAyI2c4Pt1pun65rXh7V0S8BdJOPNXlX\\/wDr0CJraKzudSU6cHsryMZNvKMK\\/ar9pr0N+ZtO1GBYzwMsM4PrXC+MLzUI\\/E096iyRZIZccY6Ulp4h+1yB7lfnHJcdTQBd8X6VPokqyWiEJvIBXoRWba67fbDHcW5uIewK5xXe+HvFdnJ5dpfhZrd2xl+oPFbGu6DZWUyS6eI2STlVPIOfelcDyHVJ4Comg3wzZ+6elMstW1EsqJLuQno1ehXWh6Zq3nIiLFd44Vu5rjItFk+0yrGuGU7Sc8A0wGas\\/wBnijlaMxT8E7elRweK5TFsZA+ex6VoXCS2YjjnjE0Trz3AOasQeGrK5t5Wt5FM23cEoAxZNQWVy32BD+FFSLDJHlXjBZeDmigD9Vxc7Tgkfkad9rKcAAjuQM\\/rVJ3Zm4AwRjGaFQAZIwR0wcV51jtZaN2D0fH0OKXz2fGCGA9TVVCHGWByPpSeYT3xUk3LvnA+h\\/3ef6Cn+aQeCx+tZpO3+Ld+A4qTzm7HH+9mqsUXo7gysVVeR68U9nPY8jrkVnq4kYjOPUgULJgkB1GPVgKQGgboJ2Vv0pPNyc7gfbPSqaTbSejZ\\/uqD\\/MUhmdieQoz2HNIDUS5TACjDeoqRrmTZjgr6FazA5AG45H+yRmk8zYc\\/Nj6UAaf2k7RjANCynO7Lf0qhHMHIHI9zj+VK0gBwpUn6\\/wBKANIXHPU7vYUvnbmxjJ\\/Ws5ZiOCuD\\/eVaeHYfvNxZfTofyoAvedsOCSn+yaeLjIyrDPpWeJmPzBcD0qRZSULccds0AXfPkYgkFfqDTzO4PKmT3YniqMdxGwzuKHPC461IJdw7D2zQBdNwB\\/AP+Aj\\/AApv2nb9xuvrzVQdD1\\/lSRlkzk7vTOBigC3HOwBy6k+1Sm6DY3YH05\\/lVJ7hc\\/Nx9KI5Q2fm\\/IUAXmudmD0z6nFKJR3P5KKo+dt\\/iB+oqTzD2cR+7Ec\\/nQBcEm7ofyp3nMeOmPbFUo5WydzhhTjKFOcBfcc0AXFk55cfTFTLICPU9qzkmG8Y4I7kVMkysMZzgd6ALyOSAc8A8CpY5cE84A4qgk3J7L14qaOQjGCMdaANrSZVNwCTjPSvkX\\/go7q+3\\/hD7LfmLFzKVzxnCqD+pr6x0yYG6UZ+h\\/Cviz\\/gpRayLqng28jYkGOeMr2\\/hOa2pbmc9mfDM7HzD9c4qMdTzn+lSSxsGPPP86lsrZppgoUsCcmu05jQuS1rpMUWMeZ82axgpI5PNbGtzGaQIPuooGM8Vn2cBkfr8vf3oAhK9cHOD+dXbNDAxkZeo4461a2QIjdyOhqhPdOcqOmegNAEl5ftMccAD0HFV4UaeUDGQTURbn1Fa2n3aW0GCuW7HFAGhtS2hUHr9KohhNdBc5XP5VWuL1ruQBeAT0NXLLT2gJkdhn60AS3FsqNubJ9Aau6UFkjyeEFZN00k8\\/lggkgDGc1pMo0+yCFhuI65oAZe3IWbCnIwefzqG2mknTCfO2cBfSsy4uPPZgD1P6Vf02X7Mh3d+mKAGzWReXcfulupNbdkwKARMuFGDxXPXWpFyRkNk9RUukzMBJMzkLjjOaANy8YKpdjj0z3pdKulkVmZQAOOO9YF1fPdXCqCWBOOeTV55l02x8tnBlb5j24oAfqOro6vGikc4FO0lHjiaYoNznj1\\/Ksyw8u4nMshConOCa9g+BPw4f4l+Isk7dJsyXmkYYHHRaTdlcaVz0D4GfDN0tH17UInWSUBYQRgAd2FXfjn8Srfwl4en0qzYLqFym1sDlV7817X4r1HTvAfhWaZvLht7aEhQOOAOAK\\/Pb4geLJPFviC5vHclHc4z2HYVlH33cuWhz0kj3ly8jEuznJJqxLEka7QAT1z6mm6dbrPIxJ2KvOT0q55lrEvzRlyOQzHGa2MyrGzNIAnLnoMdasRaPdXbAuNgPcn8qqyXYBzCuw9eO1S298QuHmYA+lAGjFodpESs0uXHbPWtGC1tbYosEAkl5PPGKxBqMEJDRx7245Y5pjajc3Eu2NXJI7f\\/WoA7O2uG\\/sfUC4+dQFIjbAA571548mXJIyc569a7bTo7ix8IXrToFMzg5YdgPX8a4g\\/McjgdARQBueBtHPiLxZpVgn\\/AC3uFUkdcZ5r9aPgtCtt4Ot4UOAjMo56DNfmZ+zToP8AbvxY0tc5WDdOT\\/uiv0n+D9yv\\/CORKcZPPX1rmrM2pnpEiAodvX3rhvG3h6HWbCaKWIOjKVIYcCu5RgehzkfWszUrcyI3AYduMVzbGx8Y+JbC5+FUs8ZR5tCnfevfyWPpz0rJ0\\/UbPXoftNlPkIeVYEFW9CK+j\\/HnheDUrOeC8t1e2k6g84r4\\/wDH3he++GmrSzafKRZSnKEchfZgeorqhLmRjJW1PS7eZ9ixqu8E447e9dHoZMl8kVwzRozBMngEd\\/0FeE+F\\/jbZ2l9HbaxE1o+donXlCf6V7hHqFj4jtIprSeJpU+aKRW3AnHqO3anJEpn0DpOtwx2kUEOCqqD8vYe1dDFeC4VCp4XHPrXh3h\\/xQhAiciKdTh492foR7V3Nt4ph06zeRpQDjI5rlcWbpkXxmu7OLwxdx3IUxiJi5PYEGvz3\\/Z\\/sr64+L1tc6XAZ7WFpmnw4ULCVYE8nsOcD0r6+13xr4c8Z6lqWleIdSjt7FbSSQxNKFLkDAUDIJ5PavmH4JWkVt4quE01mjVJnwQ3zeXyBkV001ZWMZu7Vj2P4uag3h2x07VUiScaffQzlpOdqnKsR6HmvV\\/ixYjxf4SguId7WuoWhXIjXbtlTIYvkEAHPAzn0rgvFmlw+J\\/DNxZzqW8yMo\\/tx1A9e9XP2bvGsHibwxd+CNdSObUtAbyxFMc+fCCcEA9cY\\/I4qXtcpb2Pgyewktbu4s5lZJ4nKFTwQQcEV2HgbVrFNNuNMvF8q5J3202Thj\\/dPp\\/8AXr1T9p\\/4V3aa\\/d+KtOsDapId11ZxAuVwMebkcc8ZA+teCw+TdkZIWQdVPc10Rd1cxasz1HS74alAsPl\\/MjAhsDrmvUIfgnNe6Ymp3d7FA7ReaQSFRAAeSe3HNfPekanqmjzJ9ku9hU5AdFfH5iuq1bxv4i8T2iW2p6rLNbKB+5XaienIUDP40NPoGnU5nxBZreavIiTC6hhPlpNg4Ye2ah8P+HpfEfi7SNEtIy81zMkZx2BPJ+gGfyp9\\/qMVm+xB5twwwqrzj619Ffs6fCafwtbyeJ9cQJqN7EqwwH78UT87T6O+Mf7K5NKUrIErs9m8Ya9daJ4F1QRqrPb2WLaOOPkF9wjXjrhCh\\/PtXD3caeCvhRql5IqLLa6c6iXHO4JsHP8AvYqz4gvrrxZ4q0\\/R7M7ra3l+03c6MCrzY+RPXC\\/exwAFxz24f9sDxfbeH\\/AemeE7SXF7dus04B5EKDv\\/ALzY\\/wC+TWKXQ1Z8dSFpXZnyxPzEtySTTov9YOOcGo\\/XPXrUsI2tu6ArjmukxK5UtnHFOyAo4yTXefCX4TXnxO1aSOOUWun2xU3M57ZzgAdycVzPirSI\\/D\\/iXUtPikMsVtO8aOepAJAov0AoW6FpFBz1rp9J09pZo0TljjHPvXN2OTKMkHH58V6\\/8M9Bjv8AFxJjI4XI+770gPWPA2mxafo0UIXfOfmz057\\/AIV9A\\/Dy\\/NtpsbSM0UKDp69K8R0m7t7WZIUBcKeVQZaQ17P4L0y91eRJrqPyLZTlLY8EfWsJ6o2ie2+HilxZxSBQdwBJ6c\\/T8a6y1AEYbbjAA4rktDkEUEabvlAHy11liymMgHgjiuZGzJpc9umPyrgvjR8MdO+J\\/gq8029T95tLRTL95G9jXoJPPXJxVa5P7iTIG0g8Gq2Efi9daWuh+ItW0W+aUGG4aBwgHQMRmtKX4eWN0c22pshPOJFIHbjNbfx0mW0+NHisxKJI\\/tr7tvHHf9a5qz1iyuNuI3jbcDlZD0967lqjkK934Q13Sw8sYW6gXpIjAg\\/h16VmRa1e2DL5sTxuhB4yMV00WuzQyEwXRZXJBilXAGPerkerJeB2uLVJUxtYhQwyaYGFbeLoZ43NwA8rqAMrjac9c1rN4ggm0+GBW3oHx5bHJHuDVe707RL9ZF+z\\/ZpAQPMQ4x+Fc\\/q\\/h240lfOt5zPCh\\/hPSgDo55TpzpMMXEMy7WEgzt\\/wrnfEenpZ+VeWqlYJx930PcUy31n7XA0Eny5xz7+9dBaQNqOjy2G9WZW3oT1\\/A0Ac5Y3rwx73XGMZJGQa7a58Qtqegxi0YGeBhhEBzj0rhLhm02d45VZSQRjHStSzv4007ER2TxfPuXjcPQ0rAdFaXbXqwXGSl3HzKjcHitqXw+l9C91bEeYw3Oi9M96yLXVrbXrFnEfl6hHHu3r\\/ABgdiKk8N6lviVo7jypF+Voh0b160AYKaq2J7W4QMFJXjqKzdPuJNO1JgMsnrntVfxPBPBrdzIAwVn3Z7VnRXLNjDHcec0wO8Fi9yTIrcMfQUVyUWt3cCBFmIA9DRQB+qcqq8oJOG9l4p+CgOWP0A\\/xqo0ygEbsD0AqITqrDEhX\\/AGfWvPOwuCQsRtX8xmpThcc8\\/WqzXJHt7ZzTFnDfxiP2VhzQItFhJ\\/GR+FR+bj+Db7\\/\\/AKqYZ\\/M6MVx7ZpFuAc5x+NAE8CFmOSF+rAVKNrEj5iR1NVpLjCjbEXPoB\\/8AWpRK7Dpt9iaTAnLN2fGPTj+tLFhWyo3t35zVUOinLAn6E1KH7kbF7HbQO5Nw7EHKn36UKTu2kYX+9uqJXLnaQsi+meaYjhZyNuzHpSsItYAPA\\/HinCZQAp2n64NRCVeuDu9dwz+VDO0gwshGexbmiw0yyk3IVQmPTilMoZtnRvZQap7WQbSQT+FGGHIxn3xTsMvhgi8nkdyMUCX5SxIb8KqLIAvzk7vRTR5o+6uQT60rAWknV1J4U+wA\\/pSCTdyWPHvVYFkB3Zz7Himh9\\/LEZHT5qANA3oPqv4mgXAlOQ5O314rPZ92MjH0anxTbScdDRYDRMxkzgBvrxUQcHqxX6ZquZwh65+oFOkuy5H3h9TmiwFpbhf4WHvT0n2k7zkdu9Z5mB7Z+lDuuPl\\/d\\/TmiwGh54Y4WPHuP\\/rCnLIM8uD\\/s9SKzvtHHysQfU05JSpyWHPvRYDSSckkZwO2aUXG3gnNZ32jOMEe5yKe0+BjJwPypAaYn5B\\/A1KlwDwTgfyrF+04PB5\\/SpYpzyehAoA37S6CTxljgZ4rx79ubwDbeKfg42r7gt7o0n2mJxzlSCGU\\/Xj8q9HjuWmKoo+92zXCftcz3Vv8AAHWtjfK6BGx\\/dNXB2aJlqj8u2O+Tscn06V1kFhHpmjJMMGRwc4xXOabZG5vYlA6mtrW5HitmjDfKp24r0DkOevZvNmY45J6ehpkFx5LAKc54xUErmUn1FIhAkGeRnPHFAFq4mHA\\/MgYqqCW46fhzSyMHbKjj2NXIrMSxk4yxPXrQBTht2mYbRk1rxadIsIYr+BpdJtxDcEt0Heta6uwI8gcYwOelAHPpGkbnJwRyB6Ul3eSEbQ34VHesGl3KCGx64p9pps93gqCQOS2OKAFsYZZnZ1J6cse1Q3U0gdkMhcA\\/WtKeA2tqY42w38eD+fFY8qEsdwye2KAJ7EJvLyEcdiKsS3MYTIAzis2MbWwe57VahsZrl8Ipz3PpQAyHa9wNx2qT8xx2rUury2S22QYCgY4FQrpDxhmZcsPeqjwKcKeG9KAEt7lhc5RdzDpVi6tHY75CTIwzg9q1NK0yO1Xz5156qM0s81vK7Nswc9QetAGZpumSX93FbrjMrBRgZr9DPg74Msvht8MLWwQj7bdAS3D9yT2zXy7+zX8PbTxL4q\\/tK+\\/48bTDgEcM2eBX1N451+Pw54Pvrpgpt4o9ynODx\\/kVhUd3yo1hpqfPf7VfxMaa6Tw5aSgxQktMQf4uw\\/I\\/rXy+zBz1BOc4FbPizWZtb1e5upZGkeR2YljnqaxEXkY457VrFWVjNu7LvmhLfYhKn+dQTSliec4pNxw\\/GcU3GByOh9aoQ4MSCP8AJqSCJJZFVmwOp\\/Kq6jkjPHtUsb7HDY6HNAF+KxgiZurAfjWrbmSNAIo0iU5y7HpWMl+w+VF9Txz\\/AJ61LGLu7KYBHuxoA73xQv2P4faarOJHn3SMwHuQK8w2jcSGP5V3\\/j\\/UHk0XSrPyvJjghjXls7jjJP515+Rgd8elAHv37HVqH8falcFgvk2EmD9cCvtb4N6qr+H7TDhsrjjpxXwH+zdr39k\\/EGK3dgiXsbQnjocZH8hX2X8F7421pfabIdr2kxUZ646jFc9RbmsGfS1hKSg78etXnhDLk8E9u1c14auxcRqCSQRya6psEAE5\\/H2rlOg53W9LS7hZSgIOOtfPHxc+HwubKcBN8ZU8NX1Bc26upAGF7YHSuM8ReHUvI3LruJHGeeKafKyWuZH5a+P\\/AAxJo9xJGyssYY7f6Yrn9A8b634UlDWF9LDsOdhbKn6ivtT4v\\/CG2v0ncQ75CflP9a+MPHHhK58M37q6Hy8nnFd0ZKSOVqx6Fp37TN7NEiappySzRrhbm2cxuP0o8QftK6rdQeTao6oQMB2I59z3rw+Rdr+oz17VLIpJTuDzVcqC5c1bXL7W9QkurqZ3mfqQxxj0pNE16+8Patb6jp9w9tdQOGWRD6evt14qogyRntx1pGTAwOPWiwj608AftI6L4ht7Cw1SIaZq8jbHkY5hlJ+6Qf4ewwTS+NtG1HTPEUHirwzN9m1mzbeNvCzL\\/dbH6H3xXyrpE9raapaS3sLXNokqtLCj7S6gjIB7ZHGa+n5Pj54Ku9Xt7awtZtL0q5iRY4ZnMn2f5QpV2PJ6dai1noVc9n8DfEfw78cdHjtbhl03XoWJuNMdtj5HUKTyVPoP\\/rV5l4\\/\\/AGUbbWrq7vbM\\/wBh3eA7bCptpZGJ+VFJBU8Z49cAVka94Gg1iddR0+VrW8A3Q31o+HX056MPr+dbuhfGf4heFojY63Z2njCyRBEGlIhmKD1Pfj3NZ8rT90u6e541ffADx\\/o1wY47MTrn76ybB09HANXdH\\/Z38fa7Osd0kenwH70jNvIHriMHNfY3wb1e3+LENzLH4f1Dw1BbnYTLMVVm67UC4z716k3wz01MC5Ml1ERgrLIWGfcEmpdVrRlKCPlf4Y\\/s66D4MuxqMhfWNVh5jllC7Ub\\/AGVGVTHqxJHZQa3fFXj\\/AAzaT4da21DUlISZxJ+6tI2zuYt\\/E3H1J7dq9S+JHwJ1\\/wATsi6T4iNjpSJtfTYIvKaQf3RKCcD8K8x1fw5pHwR0ea61e2NhbRvuGELF5MdQTkuxwfmJ\\/KhO+oWtsJoNvovwm8J3WtahI0Vvbh5WkmfdLI7Hkn1djwB2GBXxL8S\\/Ht18SPGmo67dqU899sUQORHGOFX8Bj8a6D4x\\/GPUfidquwB7HRYG\\/cWe7nP99z3b+VebhTng7T6ZreMbamTd9EIxIU+h55p+evOaaTgcdaFwN3pjp+NWSe8\\/s6eIo\\/DvhXxPcOyqd8ZA7n5WrxPxBfHUtcvrs43TTMxx7mr2k+I5dK8O3tjFkG4cMxHQgDisFiXOck59aVtbjLOnjdMiFcljivZ\\/BWqS2dvHBAm5zwqjjvXjeknddoSO\\/UfSvffhhp6RyC5mUs+PkXHOaAR7B4F0CPS1S7nHnX0oDM2P9WPQV7j4UivLxI\\/KCjPU5rzPwT4R1nWnilFs0cDEESScAj6V9C+F\\/CVzpMEaIVkGOQzc5rkqM6Io1tI8OukaSTXDbuDtTpXSwjyRjg44pthDLsw4AIHQd6nWNgdrdefaskW2SxOXTIOR7dqyPE+orpulXUrsFVELEn6Vsx8R4PY9cYrxn9p3xYvhf4Za7ciTZIINikEAktxV9iT8w\\/HOrDVfHWtXtwjN9quZHGxucFzVX\\/hFrSRJHt7mVSMcOnTPvWPqlzJ9ulZslS3BB6irdnrUcCkRrJGeuVk612rRHKTnw9qtmEkglSdTk4DdD6YNVnnv7GX99bSIQckAEc1d\\/wCEibyok8w5XJBZevetD+2zLCrIyyBzlhnnjrwaYGOviLd5qyAFHG3DDJz\\/AJNW11e1n0yW2YlS2MOpzRfzWV2pMtr5ZJyDjnHbpWZfaZbwwK8LFT6Z96AM6Qi3nIRty+oNdDouoJtG5skMCQpwQAa52JGjlL9QvJ962NCubOR5Fu0DszBR2IGeTmgDR+IUUJNlPbggMhLZ6k+9cnBdPFE4\\/hIxmuw8Q20Nx5fkMDCMqoc8j2964ogxsUK9DggUAdD4a1CW2uwI8FjhVLHg5rvbOzhtgZLiBYpsk5AyprymykxdRgHbgjJNehSX93NokkVt\\/pJkPy47Z9KAI\\/EOnI92hRlKSjqeRXB3Nm9tdyIcKA2B+fFdRHqP2u3jgaPbLGduD1FN1vT\\/AD4Wm8vDouOtAHPpCAo+br60VnMXLHacjNFAH6stIWPU01yc8gH3IJpSWU8sT+FJtMxDA4x\\/eFeedYbt33SPfBzQdqjnH\\/AqSRWyOn4Jj+dLGRzkE+lADS5Q\\/wAJ+jVJucDnIHsaQs5++px22nP9KbtlHUYoAsK2QN8jEeivSmbAG5jjt81QCNv4M579TTsnoyn8qALJkV1GGOaEnbOM\\/lVfp1BYemKU\\/KMht3+zjpQBbEjn77Ap2HQ\\/pTVkUPx09zmo4ic5xt98YqZF3tjcT7NgigCQuDFkZ\\/A01JGyORt9D1oztbZkcds4pdoduX2Z7nkUABcF8HAH1z\\/OnF1QZIBjHU8\\/\\/qpohCnht\\/8AtDpSOiYOVy3ryaAJo50MfyY2\\/WgzDG0Dr7kmoURcYwAfXbQFCsFyefQUATKWUHPA\\/wBomhWUgkPjHbFQyx7WGCc4pyA4OcZ7c5pWAd5+ccDPuc0srsCpIwPoR\\/WmEYHzSc9uKZu3D5izHtimBYS5HOMAe3\\/6qDMh6Sn8gf5VSCuOx\\/PFSEB8bwGx0zQO5Y+1beuP1NLKwUAq+0nr1qmJWbrk49TTjISMIMeuOaBFpiQgJJHuBilEoIA3H9aovM7DCtk+gFOBAALZyeuBmgdy39oz8oA4\\/iz1pzT\\/ACAbsZqDewj+\\/kdhmmmTcAMce9KwXLAk+Y5Ofp3qx5vlpgnBIFZyuQeD05yecUplJOCc4HPaiwXNKG5KSqR69e9Zf7SWlt4m+BevQxg5S2MuB\\/EVBNSrJtKk8EelbN95eseFLyxmO9ZIGQqfcEf1prR3E9UflnoenfZ71h\\/GBwO9YWrXTtLPE55BJ59a6\\/xBpdxo3i6+tGUxm3mePbjoATj9K4bWIz9ulJOBuPSvQOQoRKGfDcckcU6VO4454qUQhIwT98mq7sxx6g9qAJrK28wksDtB5rRNwIIwgHA71n2140GMdD1461NPLkIuM\\/yoAla8JdVBzn0qxeysCIwTzg9elZ6YglVn5A9KtyuLu6LrkFuuO1ADbyycxKwBz1xV\\/TJZ7XT2LcMeMUTXEaqA3YVSutUJIiQYUGgCvdzsXbqc81W2uwGASOnvTrtsvnBHue1WrAjaS2MKaAIrDyhKEkU9c1stfCCPy7dQo6k1ms8IBOOeearGdnlChsDPftQBpxXkspxkH196qRkpe7niyD2NLZSLFdbWIx0+lX5byG0G4gNIRye1ADL67ik5JIPZR0qjZy+beKin5WYAcVWSczTOTzkE49K7f4L+F08V\\/ECwt5lBtUYyOD3AGf6Ck3YD6y+FvhuPwP4HtojCHuXUTSgDnJHQ\\/nXmv7SXjpk0OHTYZCBO4eSHPIA55\\/SvW9Z1hG09zpfyXUIwY26Nj0r4\\/wDjD4kuNe8TzPcRiKZQIiB6jviso6u5beh5\\/JlmyQcHnmmINvXg9qegYAcZpmPmxxu9Sa2IAqW5HTHNNJLA8ZI9BSrlm7jPWrMbKijBwfWgCGFSMkjgilDfvQOPriiSTIPYGmqeQQOT3zQBq2qbR8kYPpxV23cvOikhSSBjOSTWNDNNMNseSo61p6Jpck2qWgZwMzJ0+tAHRfFGJ7Q2FuxBZIlG3uOB1rg2Puev6V2nxRlI1xo2kDlSw4GCPY1xir1HcGgDY8GawdC8VaXfDhYZ0Yn8a+6PDt2lj8Q\\/PgJa1vo0kGG4\\/wA81+fpyNpzz3NfWvwX8Zt4g8P6JdPlp7GT7JISe3G39KzmtCo7n2x4UvVNwiKQowMt3NehQ7PKBIAJ6GvKvAyi4eGUDhlBJFekm7SNVzgHtiuLY6iwwVm4APOcmq13arJGRtB69qfBP5nzEgY7U25uRHlQRuPGKGCOB8VeG47uN12Ddyc9K+Ufjj8L1ntJ28vIAYg4\\/wA96+2LpVnTlN5HpzXmHj\\/wxFfWsyGIDKkEVcJcrFJXR+U+rWEmmX8tu45U4qCRcBCO4AzjmvVP2g\\/Br+GfE5kVNsEnKkDvzXlO7hcHgV2p3OXYkQZQjr9aXHGCOPUcmliwq5OSPbrTyAeD0NMREqjgNyuOoprDOe2KlwMZzgH88UjjHTr7GgDo\\/CPxL1zwXOrWd60luDk205LxHp2zx+FeoaZ+0XY3iBNX0p7diOZLZg65\\/wB09Pzrwkgjnoev60m0jJPOD2FKyA\\/Tf9nLxrpus+BrW40qVXhLuGGNrK245yOx6V7pZ3q3CfOd3HOTX5M\\/Bj4u6p8KvEUVxbTudNkcC6tQflde5x6jsa\\/SHwL42i17SrXUYG32dxbidHHIKkZ\\/P2rkqQs7nTCV1Y9Zt5gBlTx0x0qDVtKsNcspbS\\/s4L22kUh4biJZEYHg5B61i6Beed+9kkBXqB29q1hqkZkKx5xWJpY+Tvjr+wfpeuRXWreBCLDUcb\\/7JdgIJT3CE\\/cPXgkj6V8OeKvAmt+CtXn07WtPuNPvIWIaK4Qgn3HqD6iv2WN8h6Nn3\\/z+Nc34y+HHhT4mRQweJtFg1WKAny2l3K6E+jKQRx2zW0arW5k4X2PxuaJvTB\\/ummEnoOw9a\\/RL4j\\/8E9vD2vSNceEtTbRXbJNreZmj9gHzuX8c147qn\\/BO\\/wAeQhza6hpFxjp++ZM\\/mtdCqRZi4tHyaW4BoHTg19GD9g\\/4px3sdu2n2Yic\\/wDHyLxPLXHrzn9K9E0H\\/gmzr11Cjap4psLMkZIt7d5sH05K0OcV1Dll2PlHwRoc\\/iDxBb2VtG0ssjYAQZNfe\\/wT+BDadDFcX67mxkJIAcZ9q6r4M\\/sWaL8K5nupNRbV9RY\\/LcNB5e0dMAbj7175p3heOwRAGLAD0xisZzvpE1hG2rM7SPDUVpEoVPlAACgcV0VtYpEBsHC9qkW2NuB049RU8QUsQeW9PWsUtS2x0aBWx0J6UsiZOCMD61JtyeDz9aX765GQB61pYkrs+xGyeOuc18H\\/ALfXj8rpVto0Tjfd3G4pnkog\\/wASK+2\\/EOo\\/Y9PmbcFbBX6V+UX7V\\/jMeLvizfxQSebaWGIEx6gfN+uacFeQpaRPLVeK7tNkqlXjbO5TjIpi6fbFsJK4bn3FVPP3KxC4PqfWo0lVWywBAPO3iuswNKbRghQwTiUH14Oahe0u4MN5ZdexXmmwXeGJDEN2ycirsF2w4Do2eMMMYoAoR3k0DMTu56g06TUPtaFXQbs53KOat3Mm9yrKCobJz\\/Ks2RYnnxHlATj2FADXYhOhJ+uaiH7pweRz2qR1w+3sp49qJ41WP\\/a6fT3oA2oJ\\/tVqgZ8iIcZNY18266ckYz6VpaZ5ixuxGVx0IrJm5mYnJ5oAmskV5+u1iODXQ6HrdzZalDb\\/AHirYwD+lcsh5yOCPQ1bsJCl0G7+vf8Az1oA6HxDayWXiAOilJJiHwfWujS3luLR4yFMrDoG61h6oRqfkTM+5wuAT\\/hVG31021yRubegwKAK9xarHM6sgVgeQcUVYnjN9IZ8kF+Tg4ooA\\/UhLJgOV5pG04uwJXHrzXQtYjOec+vWgwopxIVDdge9ebc7LGB\\/ZwJ4Gfz\\/AMKebJxjJQfWtxrISEHbtx7U2SzGRkAn3ouFjDl04xgY3c+vFK9tvAAQcepxW29scDcv60SWrADAU\\/UUXGYZs8gbVGe+DSS2qKi85PfHat1LPP3l3j0Aoe0BAx8n40XFYwktmJ43j60xLc72yhP1X\\/8AXXQNB5YBywz3pqxjcSRjPf1p3CxifZwOe\\/pyP6UzyV3nh2PoAP51u\\/Z1BJAAPsaPsq5zz9SP\\/rUrhYwzASPlQhvUkH+VKYJfLPH4ZrZMO5tuD9QcUC0DfIVJz6n+tO4zESIqMspB9M04x7hwG3fga1\\/svlvt2bV9etDQEE7QT7jrSAx\\/LdWwSQP7pAFBTac7iuOxNaj25OdykN7mmrZR7fmUbv72aaYGdkPyWXPvQVI\\/hY+68VoLbGJSqcg+9MNs4HUD6DH9aLk2KBgZvvNn680eUYhgKefXmryRNzvYZ7E0zyXXrJuz6\\/8A1qLhYp7DHwQDn+7xSBdnbb9DirMkCqRuI9sLUjQAj5QU\\/wB7v+tFwKLljjCq35Cotu0+n+8P8KtNDu+6+KcsYP3g2PXBpgUslDkFT\\/u\\/\\/XpGdgPlHP1zVlbVdx4x9KYYtzEZPB6EUBYi8zKAlW3e\\/FRsxwBVgxFSRuGPaq0w4woJB9KAF8wq3XdT\\/NJyTgA1XOQRkE4PY0ZLD8KALSyB1wOBn8a2tElxcBHIKt13DisOIcEjn8c\\/hV+2Vn+bPNJgj5w\\/bG+E66RdJ4y0eJirDbdwouQfR+K+L7+dZ52YZOfXsa\\/W++0u28SaXPaXqiZJE8sqx7V+Y\\/x1+Hj\\/AA6+IWqaasJisjIZLb\\/cPOPwziuqlK+jMakbO5575h3jBzTGyCDn6k0nrgHPrTmPGcYPqK3MhVTfk9hyKmB81kI7YqSxj3Jg\\/wAVSRQBLvPbsCeaANGe1SeFFJGSKda2yW67pHHfAqndTbiOSMcD8KoXN3JLtVzx0BPpQBZvpQxJHQkgc1QcEDdjJB7d6knbIyxyccE1Lp6JJkEemKAK8rmYgnrjqKlT93CGOcnvVk2sSc8j\\/PSqrzA4GOe4oAikk3Ee\\/pRGNjhuTjvTC5Bzz9a2tLhglt8P1FAFSyjM0pOCQOc066ZA5GDz1BHWrchhsLVth57j+lZk0xmXdxkmgCMqS2V4yO1e6fs86fBpllf6xcRu05IihGO3GTXhtm652nHPFe9eDNUOmeE7SG2AlJy7L6Z6Gkxo7XxHratBJNDcG3MYJ64IOD1\\/SvmDxNfyX2qyzyvvldy7MO5Ney+OdXnl8PzTmEZIww7jI6+9eD3blp23ZJFJAy4ZFS0A7nis44bJJ4\\/nUylplx2XpURU7s9cVQhv3cg05WO0j8Bn0pm0k\\/N+VPAKqTz9AaAE6DJOKfAR5gB5\\/rURI9hTlwnPT6UAaMLxRbiQR3wD1rX8JSxz+JdOUkKGmQFnPA56mudjTewLHAxXS+D7WJNdtpGG8pluT7UAM+IEgm8S3TBlYb2+6eOtc0MHpzz6961vEbLJqtw4BALHrx+FZgyMA8AmgACMx6ZA7mvWv2dda+z69faQzcXsRaMFv+Wi8jFeWRDKEA4HPWtHwlr8nhnxVp+qR43QSqzZ6EZ5FJjR+mXwd8WxS6Ukc77ZoQY5AT3Fdrc+JxcXJKvkY4UH+lfK2l+JpIZFv7KTzLS+jWSMD3\\/rXRad8Smt7t7e6LxkhcFgBnk\\/41yunrc3Uz6OtfGJCdvVeeamsddGoy7hIQTxn0rx7T9chvBG8c5MoJGM8AYruvCkyhCMg89u3+eaxasaJ3PS4kM0Kgdx1J6e1Z2r6OJIGG0MxBwCKt6fdo2BgBcdhnFa7FZV4wTjqKkZ8e\\/tI\\/AHW\\/HXh6eTS7KKS8iIkiTdtZ8Z4Ga+N9W+CHjbQbYz6j4evbeIE53Rn5cdc1+wU1ukjcDdntUNzpEc8ZUxjaRz71tGq46Gbgmfivc2NxY5E1vJF2y4I5qvuDbuB9c1+jv7QP7OvhPxVY3VybRdP1VvmS7gJB3YONw6GvkrSP2Q\\/iRrV3KkOlRw2gbal3czKiSL2YDk4\\/CulTTVzFxaPFfO2jATpz+NTWsEt5KI44ZJJGwAqLuJPsBX1fo3\\/BPvWp4kfUvElrav1ZYLdpQPxLD+VfRHwf8A2cPDPwogN2xbUtUwMXlxxs9lUcD+dS6sVsNQbPijwF+yv438aosz6edJsyM+ffAoxHsuN354r2PSP2HdLsoBJq+sXdxJgFkt1WNffqCa+sNT8RwWOERdzck7RzXB6\\/40gDl\\/ODKOoUcisvaSlsackVueRSfsyeB9DXizedgP+W0uSP6Vp+HPFOl\\/DFRpkLrFppkz5bSnCepAzx9KxPG\\/xIuCs8gYKqjG7jtXiN5q\\/wDaN+91fP50qt8ig8KDz+daqPMtTNtJ6H6Aab4ghudPjltJPMgdco4bOcis7V\\/GT2MkaBxknJPPSvl\\/4YfGweHohp92xNmM7Hxnb6\\/hzXpF541s9aiM8c6srjbGc5BHrWPs7M05z1nSviAl0wDsOeeTXVWfi2E\\/8tF9znrXzfpurbC7OTGRgY3Z\\/GtyHxKdoZST6Env9KHAakfSEPii3cDEgUY6A\\/yq0niCN8AYKn3r58sfE0itGGkIBPUV0en+LJYWG8sIz1J6Y71m4tFKVz26C9WXoc9+K1LaVSikgYI7V5lp3iaOSPzFYhAMk4rptN1lVCqzfP1K+lSnYq1zrlYDjI57VLGwAx+hrBl1RYlWRmHHJ+nrVV\\/EUSjJPsOevOKvmIsdNMyMjDp\\/Ws+S68p8jB561mjXreaMtv3bR16ADvWXqviGCFGyVw2RkHnH+f5UnIdjr0vFKltw9atxOGi4\\/DFeZQeKo48KZQVIzkdO\\/wD9augtPFdubQtkggZpqVgaPGf2u\\/i2nw28AXbRSqmp3itBbLnDbmGC2PYc1+W0tzJNO80rNJKxJZnOSSe9e+fto\\/FAfED4pSWcExe00hWtgpXgS7jvIP5D8K8CeJyFbBwwzmuqmrK5zzd2WBKuR+7XAGeR2p7Jbyvwnl467TiquJMHKHpx7UnnHbyMjvWpBObFN+0ORnmkayZcLvz6mhbpMDcpJ9RUnnxMf4sH3oAhlEyZOcHuQarbypPceueaszyIV+VjjJPNVx6qfm9aAHr1+YHPqan8kTQhRgY71AgLEdWHt61oxNGCFHMuPyoAsWWoeVC0ZwF24JFYTHcxb15xVmUiORlBOP5VXYckZyTQAn8PIIz3605GAkU9KZg4PGVpy\\/L3O4HigDatNRSBFLcuB0NN1aFGh8+NNuTgmskvuIIyG7\\/5\\/GtNJhJppjc9\\/wA6AC3nPlLkUUzzGhCrhunbFFAH7JLENvzGgQrg45H0oRNyEjr6nihELcsoPvmvMO0Y8WSMKAPTFARewCfj1qV228BtvsDnNEQ3A5Kj2FADHhAxx+XFRxRqxPB\\/4DUkpZMdVz6ikBEg6gEdytAAYh2wP97NMMBb\\/a\\/A1YRCTwdvuvNMcEfeG760AR+Tv4Zzx7UxoAf4Bx39atCJpe\\/H+yaaY16EdO+KAKT2yDkdfccU1YOe4988VfKoB8gOfejYFXcVIPrgYoAovFlSvG3+9nmmrAwHHT1JNXGIYdMD1oRBjgA\\/lmgCoV28MCfcYxSeWDzlQPrV9sGPYcken\\/16idUCFSAo9CaAKLW4L5zn\\/azmmPbjOS+T7girgRcYUj2xSCPJG5gPUf5NAFD7IrguWPHYGlTAUgA4960TbK6koRt+lMjhXaRtY++f\\/rUAZ6xAg7gKhe2IK7SD68YrTNmgxhc\\/QUfZ152AD1oAziACNzMD7U6UCXGBjHoDV5bQc7gx+pqIIrZ+Qt\\/wL\\/61AGatugPyqCfalNsHHz7WA6AAjH61daH02j8aSaEMoCjHrxQBnPAOysfYGo2t1Kj5efcVpCJeyFD3IPWoJISzEHIXPBxTuBnyW67SAFB9QOfxqjJH85A5+tbn2Qjnse5WoJbPAyQaLisYq2\\/zE5I4xz3qYRBgB3HYVa+zkYJ4444p\\/wBmH3uoHb\\/P1p3CxWjiKHaQcZq\\/BE2MgfQYzT4rcEKOOucitGG0wAQMZ9qVwQadFiRQTwTya8S\\/bP8Ag0nir4fHW7GIvqGnHzmKqMsm07h\\/X8K98hgOBjGBzV\\/UbKPWtFuLG4TfFLE0bKRngjFOLs7g1dWPxijty0hVvlPTP4VHJBsYjtjOPevUvj58LZ\\/hX47vNPdW+zTN5tq\\/qpPI\\/CvLixJYNXoJ3VzkatoOjdYY8DqeeKZJcsM8ADGM1E+5SeRn3oGHAOeT2xTETwzNK3JOaY43g7cn6VGoKtkZx705JCHyD+JoAY5LDaxxgYqxZEqjHoMVG\\/JJYZNIJdoGM47YoAnklZvUjt6VUJzIDgnnt0qyXyvHFRFd4JGD7CgCNzk5wAemBVq2kIi9D1qFYGPGcCn7\\/JxySOme1ADrgtIMZJB55qJfkXYw6d6d5gIyBgdsUoVGXJIGCOnagBlnEbi6hjGQXYDj3r25FXSoEiSRUdIwAF6HgeleS+HtNN5qsEcPMpYYX3r0mWK4tsJeRSnB70gMXx3qj\\/YUg858seVB4xXnaL5khzxjjPrXV+Nr6C6aFYySyZyecVycBy\\/BwM5zQBPhYt3Tnv61C5CtkcD0FOYbzjv0OaTASM7gc8Y4pgM34HPHoTTS+7IAGen9Kdj5SDjFN2AHj8jQAgUZxnFPiQyNk4H1pF+8e49RUokVRgYJz1HrQA\\/zwuRgE\\/Suk8CXZbWFjCBnKMAWOAOK5QDc\\/PI68Cuo8EsDrDr9zELnt0xzQBka07NqlyHOW3kHB4461R2kA9AKs6hhr6ZiAMuSD+NV9uG5PI5wDyKAJGjZ4VYYAzjrzTGhaMks249cd6es2EGclQfpUZdepBx7mgD2\\/wCBPj3zY4vD14RuiJe2djz2yvP419M6j4DsvFmko6LslAPzIOQa\\/Puwv5NPvIri3cpKjb1YdjX6Kfs3+J4\\/H\\/g6z1Dd+\\/QmG4XphgP6isammqNIaux5BqDa38Prwpue6tVfG4A5+v6V6h4B+J9teOI3kAlzkqzevtXXfErwtDeqwCc+u3\\/69fPXiHQ5dDvhd25a3kX5lPZsVKtNaj+E+v8AQPE6SRrhww7HrXbafqnmKVD7uhPPNfKnw78cm\\/tkhnYR3Cn5lJ78dPb\\/ABr23SvEkcaIysdzLu4PX68VhKLRspJnqcEo27i3HPfmpnkBjIxgGuT0rXluIEYEshPbuadqfiJbSNcfe67c+1ZlFK+0caz4gM1381lbgFUYZDv2\\/AVaub2JC0a\\/Lt444rj9S8bzEOq\\/cHbvUXhWafxbqhjRzDFHh5HP8Iz0Huaqwro7GXVd8LKmGYDI21zOu6zcW9q4MTqOSeDzXV61qlh4asiltEskmeVJ+ZvfNc1D8SdLvZ3gkHlv91o36g0khnkHi3x1JYRtMGB2xseTj8K8R8S\\/FFJruSVZMpIuRtbJBr6y8TfDvwz47tXjngClv+WkDFGH5Gvnzx1+xrqFu7TeHtZSeHqlvfDDD23Dg9e4FdMZRMJKR4LrfjSa9iZd4K4\\/M\\/nXJal4njhZgG3N6L\\/n1ra+IHwq8ZeCZiNU0maCDOPtCEPGc\\/7SkgfjiuSs\\/DU11Iu4EdyT2rdNdDIrXfiS8ucrGxhXvtJycepp+g+LNY8Pzb7G6lVc8xuxZG+orrtK+HqyAGQHPbI4rp7bwDY2sQZ4wx6e3amBN4O+NE12yQX9u8Up+UToSU\\/HvXrOm6xHewiaKTdgZ2q3NeQRaXb6cW2xqJDzyOnNTDxJLpXzwybCp7DANS9Que\\/6NqweVWlwFU9a7O51JWgSKGMSN0J6896+atH+L1lBtjvv3L9mX7p9D0r1TTPHumNYxSxXQl\\/djDKe\\/c\\/nWbiaJnpen+JJbN1WQeXBGN7sc\\/gP8+lbunfEu3unctKP3as2c9q8P174kwTWEdokokdvmfb\\/ACrDs\\/EsdlEyuwKEh3A5zjnaPqQPyqfZ33HzWPoTVvH7vZIm9455Bgq54zxzx9aqR+P5RbrufftByu\\/pXisnjmMRPNczpAhBOGIGOlcnqnxe0+1hkhtpXmY91yf1\\/Gj2Yuc+iNT+JqWXyifAAwCHyBXB6l8a5FkZTMNvLY3fdwOnXoeK8FvvGsmoQNIzyPKxykYXAHTrXN3FxeTyMzblycn61apoTmz6b0r4sHUryCJJNw4U4J57\\/wCFeoa74+i8EfC\\/VfEl22RDCdiZ++\\/RQP8AgRr59+B3wy1vxJcQ3UkH2axUhjNKcDGOw9eap\\/ti\\/E62toLP4f6QQUtCJrxweM7cqn65\\/KpcU5WRSbSuz5a1bUZdZ1a5vrg7prmVpXPuxyf501DtTbuXHfnpTIkWZiCdhx35qQWIxw4GOoroMQMzZGMe\\/NPEu6I5UMTyDxUbWbg5LgkDpUYhdB+vBoAsxiB1w6gEHrgjNNe2hJyrEDrVfLoDweO3rTRISNuMCgA2neQD3wD1pOA2BwOgx1pznG0DknpTGGBwOfUdTQBJbt+8BPrmr1ud9y0oIPNZqEDBOPqKt2mQ4Pbrj1oAlvo1SQt3Y\\/rVGT5mz1z1\\/OrF2wY5Axj+dVW6Enj60AIw98UYx7\\/SgbhkEcCgEAnnIxjPpQA7nHXaTVi2m8tlLDK8ZBqqGyuOvNStKSgXGR0oAvmZZSWIIz2FFVY5cIMqfzxRQB+zZbLYAJH+zxT1j6HBGPWq5uiHC4Vgf4sEmn\\/atoIzjPYqa8w7SV\\/3hBQkj2NOI2\\/d2CqyT9ssvsopzyeXwQefXn+QoAnb58bhJx7U0kD7w2iqobOc8\\/nTpJhgckfQ0AWVAQ5XBz\\/dH\\/1qbtyxJ69eKgaR4gGU5z6mlE4xls5PoKALKOqn5owfqc\\/1qNZVZyCgUf7tM84N1VnHs2KRJd7EJnPoDyKALDNxgqCtNBw2SQF9AuCKiY\\/LyCT6Cm\\/aT9wbRjtjJoAsByX43bfWhvvcAlvcVCJtoyDg+tPSc8MSSPY0AH3m+br6gcUvl4+ZRk+pFRuxkbKE59DTCXU4cg+oK\\/1oAlYsHycA+wwKcWVgQ33j24pse0pkDDeoPH5UrYwQxz+FAAsYVSRwPQ5zSA7hn5h7E0sKjYSMEZ74oZm7AN7igCJiHPPGO2etOCCToAuP739KbIq5HmcHttpUZnByOnYHFACMMY4BPuKRVYg7kDe4GKdsLAkjZ7LzQjc8up\\/CgCIwpxlsfXApn3P72PyqdF253Ae2M0eUrf3T7NigCsI85KjafdajKkHuD6ngVYO5ehApGfH8IY980AVjBn7zB89sHA\\/Go5LYEdOe9WYyWd8Nj\\/Z5wKV1yuMZ9c0AZEsI5I609UXvgE+tWpIRIo45pRDkqG54z+NAEVuhZgehB71pQxdO3H5VWiXnIHGc5zmtKCMHsSDxQBJChHr65q\\/AgVjjjI6dqhjABII5PcVaiXkH09aAPA\\/2uPg0PiN4KkurKDfqlkvmQlRknplfx5r8z9Rs3s7mSOSMxyIxVkcYwR1FftlLapdQtG65VhtOa+Av2uf2Z7\\/S9Wu\\/E\\/h21NxYzMZbi3iHzIepYDv9K6aU7aMxnHqj5AUbyAeR60NGYzjaeKlBKsVYFWU9DxinSSBsk8nvXUYDYotynjgUilEbJGCOKPN+TAXnpULyZ5OAfSgBZWBIOfxphJXJ7HpntSfUE9gKcR14755oAUcDjkn8qWOT2x60+PDqwPOPxpHYJg0ALJKQR1OfTtUT5ILc\\/WleTn1zTd3GT370APyNmPz9qIwWYrwv0pUQMnv0zThiNuDk\\/lQBveC4mOqbkZl8tdwZR0PrXbz6rO7Lul+0Mncn+dcv4Cit\\/KupJbowPgBMDIY1pSyCJzuJVfXHDUAcz4qvlv7xpEj8sHg46fWsKA7Bux+ArR1ecTXksiDapPA71mFyuAenrQBMXDKf6VZSGN4FPBXHIqlEOTk5HWrAyI+CSR0zQBFMFRhtxUJxnk\\/gKViSvv1pCozyMZPegBDnLDGPT3p\\/PIGQeo9KZ15AxinFtuMdfXFACh8E9z6eldD4KV31KaRfvJA+FzjORiubz1yRz3xXUeA5UF9dmRTKGtnVUBIznjrjtQBiXQDTSbjwCTnrUR6dMD1xzUl0As8ijghjwf5UwHnngjPegBD856HA5FJhVGAuQfxocEKMH64qMBicZx2wRQBKoGzG3FfVH7D\\/AI\\/h0bUNZ0O5nWMz7Z4EY\\/eIyGA\\/DFfKvzKhAOat6Lq954e1O3v7KdoLqBw6OvUGpkuZWGnZ3P1B1\\/XbeXJJXB5OO1eOeMprS6ZwroAR2P8AOvF\\/Dfxi8R+M7OVIoWuLm2jBmWJgGK5+8Afw6VieJviHqUylZbaa3OBkMuCcVlGFi3K528s7WNwJbdykig8g4zXqPgr4jSXMSQTOiXCEA5bgj1FfJEvjO8aR8swj6AE5xVvTvHV1BdJcJIVljYEEVo43JTsfopoHiFjbFlO5ScfL6\\/4Vd1LUYMEvITn+LGfwr5w+EPxntdaWO0upPIu1B+Rhw3HUf4V6PqfjeziikEkwAiXccjrnIH9a5XCzN1LQd4n8Ux2Ym+zjEi\\/xuwAarvwy+I9tpXhrUb24mWN3uCm44PRR\\/j+pr5x+KvxLW6kC2TlR0BA+teSnxjq9q7PFdyRq3LpnKt9R9K29ndWMubW59oXXxMa8vnmkbGfuhn5xWXq2v2GrosjPsnXlXUgHNfI9t8UbiKcCWfJHBYDIPSu28PeO5btg7OJUXoQQapQtsHOfR\\/hXxvcabMsU0nOccnqK9XsvFyXMCc5YjJ\\/GvjrTPFkt1qyyCTqQM9eK9Y0fxzbpEqyvyfu+prOUClI9uuxa6nEUnjRkYYIIyK8v1\\/8AZ78OazeSXEEb2Esh3Yt8Bc\\/7uP5Va0\\/x1ZXThBMTgZbOa63StdhnIIYMBj8PSs7SjsXozyPWPgJqOkxu9lPDcjjCuCp\\/wrz\\/AF3wj4g0gHdpFyy55aJd44OO3tX2FHfQypsbDZ5B61TvdNtrmLIUA5\\/Gmqj6icOx+fviTVLuyc+dZzQuB\\/y0jK4\\/MVy0UOteJpWj0\\/T5rhWPVIyV\\/PpX6D6z4Ns9RhZZYEkUjBDqCK5Wb4fRWMHl2kQijXgJGMAfhWyqJkcjPkOx+BPiC8VZL27t7IEZKElmH1wMVaX4P3OlvkazcoSMfuRtB\\/WvqKfwfIVAX5W287hnNUj4Ca44KqzdzjtT5xcp8+W3h64sD5aTSXTL0eXk\\/hxWhB4W1S\\/3KN6qeSyg8e1fQel\\/CQtLueMHJ7+n+c12ukfDCK1RTIgAx24\\/SpdRAoXPkOX4U6hcsfMMh4HzODzQPhPMhGVZ8dOMcV9j3XgqFYgEHyrw3A5rmtQ8PRANtXDE52gcY70lUvsPksfK6eAriC8VGiYgnnH1r1r4V\\/CC21K\\/iurmISIGyI5AMcH\\/AOtXY6voFtbTRtGgVX5bHr\\/n+Veh\\/Du1Szt0MaqylucevHr9f50TnoEY6nV+JY7T4cfDPV9aaFEg0+zefZjAO1eB+JwK\\/JbxJ4gu\\/FWv32rXzb7y7lMsjc4yew\\/Sv0b\\/AG4viTF4Y+BTaKHDXuuypboF7IpDSH9APxr81EYFhldx9+1FFaXCo9bEkLiMkk8+tSLcIMfKc46VKVgwp2ZJ7E0skEDRgiPB7kE10GRA0wGdufXrSGUY+8cj8jT2WN8AJ0+tNMC5HHfmgBjSAE4PHuc5qPOW4\\/AUOCpK9yOp6U1RznIx6igCYrnbz09qawwfQ56ZpN+OpIx1psjFh3OR09aADByR6d\\/QVajIMJOdrZwPWqi5OACT61IhyvB6AdsYoAmmJ8hRjkcdagCjHfGKdJMcY4GfT1qMZwQfpQAdCBik2k+mRS4BxxnvSN8p\\/HpQAD1HPehSW64zijGeBxSrnr2HOaALcdlLKgYdD70VH9plwMyMPTiigD9jt43AhialSfAIYhSfUc1TVio2k8\\/X+lPVeMkM2O4O39K8w7Sw5II+bd9KVlYcD\\/x6qe\\/zSDnfju1SmQg9Nv8AWgCdoxDgrsYn0NR4Jzlf50rswxyV\\/rQSH6gH9aAHb3jGSDjp8oyaQMGJ3Y\\/A80RlSSMZ\\/HFNWMFjzn6GgCTBYAKOnoCaRSwPCAe5p3lPHgggfX\\/9VR7WJJyDQA7c2eX49A2f0phJDHkkehFSbCAO3uKA\\/YEkigAByg4P8hSLLztwMeu7JpTknn9RTcKD0BPpzmgBxcK2SST6DrQWVh94g+hODSMqlfunP+fWlEQKcEj2oAaHCOBliPzFK5Z2yuQPQdKNmD\\/X\\/IpwUdPlJ9xQA0yuJApV+fcYqVoyzDkj6GkRCAVZV57gUuzyCBkHP+zQA8KYxyQCfxpWXOBkHPXmlLqeicd8c0weS\\/8AqwR68df0oAdsVBwQfrURzxnA+pp\\/C9AV\\/A00SGX\\/AGsepzQAS5iwUAbPXjGKia4YDksv0xVny\\/UbfqMVA0KycbOh780AIfmHIAz3FAY5ww+X161KoCgZGB7EVGQwYnaCp6dM0ACn5uAMdutNYAZ45z24NPEmQRyMUijr7880AR7QQT39aXbhsdOMUoUo2R8oI55pw5PHp370AOQfkPSrcQyOMdvwqqgCnOPwqeKQAdMHGSKAL8b46cf1qynIHIzWfDIc8Hn36Vbjkxkbu9AF6MgBc1Df6fb6nbPDOqurDBDAU1JfmA6U8O24Z5PTNAHxb+0n+yPDqTT6z4bgW3vACzQRrhZOfYcGviLVtIvNEv5bK\\/tpLW6hba8co2sPzr9qpoYr0MkgBXGBmvn\\/APaB\\/Zi0j4kWX2uGBbfU0OROgwenQ10QqW0ZjKHVH5jOGIA9O9NycmvbvGf7Lfi3w2sskMKXsEeT8jANgegrxq\\/025064eG5heCdDgo64INdSaexha25X6sMfnTsAqW9+\\/pSgBl6YpoJz82RxxTAfG21Sen9aY5yR3pM5Bx19+9NLfMR3x64oAD90cdKB8p6ZFBDMowO\\/c09cFRxnj1oAF4zwR6ihsswOM57UjY3DPB9aQMTzgfUUAdz4Uj0+HSf9KkKSSOWG3pxWjdhYjtWUzWuew5ArOsLqG00+3guLYOAm4Hvk96Z9t8sO0Qyn9wigDl9SIW4kKnK5OMiqLc9+ParF3L5szNjGTkj8aq8DPUn270AT26h5Am3rnvVh4vJQ5GfbpVeF9jLkYI\\/nU9wXaLGevPNAFQkkkjHPApEH59KVRwc4\\/E0hbHbmgBz\\/kAeopoAO05x\\/WnsAAp\\/Ooi24YwOOg680AHJ9OPXtXZfDFN+r3pwGIs5No9+AP1rjiRwcV1nw9cJdag4HItmGc4AyRyf0oAwr5Nl3OuApDnIqHouQOvc0+7C\\/aJFUhhkjI6Go+cnnjHOeaAGS\\/Lg4655NMLMccDj2p8mSAMYxzUZJ4IwB1oAUOScEcmgZ6kFfajcARgZPrTNxXAHWgDrvhh4zPgrxjZ6iVDWvMUyk8FDwfy\\/pX1D4x0PSfEFol5aiF0dMo8ZB3cdQa+L92Dntn8q7nwd8T77w9pr6e8peAf6ssNwTPUfSk1d3GmdLr\\/hBIZJim3CtzgZFcRd2DQvkcHPQ9a1Z\\/HEt08hLbjKcnn+Q7Vl3F3PcYLcHpz0piCCeaxlV4pGjZOQyNgivY\\/Al5rfxB03UERWluLWFd0m\\/DScnHHr1rxIyhXBOS3cV3fwu+KC+Bp78SxyMlzGqDZj5WB4P05P50mNDde0a8sLpory2uI51PMciHI9s1zF\\/A8+Y1Rkx1yME16Vq3imPXW+1SlyJeQ7DFYVwlvc7cYY4wKEB53JpTqCSOgzwKbbveaZIHhdwOpArs20zbcGMAD0BP8AhTrzw88YUgKc9hTESeFfHUKYjuAIZh3Ydfxrop\\/FhUiRTgkZGD90egrhrjw4sik457HtTRpGo28YCNvReitz+ApWA9A0bxndW4aQOWMjZHuK9U8H\\/EeQO5lkO3ds\\/Svm6C4uYZS1wjBsYLA10Ft4nMK8bvlI+7xx\\/nNJxTGm0fXdj8QUwpa4Bz3z07VuWXj2KX5DIOB94nvXxvZ+MZ4Osr7R0wcZ+tdHp\\/j2VQxWXk44JrN00Wpn1zbeL4p3RfNUjOOTWnHqVvcyr+8QjH3d2K+Y9E8etLGP3hE\\/QNnvXU6H42H20Ca4OFGSazcC+Y+hhYwTKJCFwcDC1ah0W2RN4KEEcHFec6F47tnbElwwRgAeOMe9bGqeNLLTtPM63AaFiI8rwyt0GfUdKy5WXdHe2q2scZRcHimzatDbPt3L7EdfyNeOp8S4vKkcylH3EA9u+c+3FZ+p\\/Fixs4N08xbAPIPcDgjNPkbDnR6zf60rhtsnyjOOnP4VwGr+LrSylYySAlmIwTjj1\\/z7V4V4r+PN1dPJDpm9pSNpkcYA7fjVn4eeG7jx9dldYu7iVnO8eS5Qg568VqocquzNzvsdP4i+KWniQIJ1Lbs8sPl5rS0P4y2Wi2H2u7uYrexjwWmd+N3Uj3Pt7V4H+0\\/4W0v4V+L9M0vQri4llltPtNyLmTzNhZiFAP0BP414lfa1e6jGsVzctJEhysecKD6gVoopoi7TPQvj78aLz40+MDftvh0qzUwWNsxzhM53kf3m4J\\/CvNUjdTjaemMAUyPlvT6Vaa5PzbzzjqT3rRJJWJbbGL5p7HPbigmcoAVYYoN02Rn6Ugm+YsTjA5piEDOoPGD9KGmkAxggjsaDcdOTj2pWlJHI565FACZ81WypZvUDpQtuNuSAc1f07XZ9Psr2ziSNlu1CSF0BIGc8E9KrzsEiQDG0UAVXKngdj3PShIgcMDnFKuGYkccdvWrkaqY8Z+btj+VAFIqAOeO9LHHuOc4xzihiWJ35yp5qeFV3HIOOM80AMFuDng\\/WoPLO7p7c1bnYwFSPun1qNHUNnGM8UAMNqwBOSPf1pvlkHBIPfp2q2ziSMjIyP1qszngk5x2oAfbweYDnr0FOmh8pTj8jwc06GZY1BwM561Jcf6Q4ZOT049aAKoU4HOKK2bbw9qVxEHitJpE\\/vIhINFAH63+WC424A\\/u5pziQN02jvkU13w2OPwNSI0YRuQD\\/ALteYdo1II2HBzjuRmnrEvPzA\\/QVF5\\/B+fP0FMWV2znH4UAWkZuc\\/o2aYkqqT8wJ9G4\\/lVdbgnPlMw9cGnM4HXAP4UAWDKG7KT\\/tCgHOcYX8arswAGWZh6Y6VLHKEGSSAaAHgH\\/lmzE98iiPKMcsM\\/71AQNyXJHXgGl+VjgMOPWgBzqrDn5hSps2gABR9KgmXavyr82fwpyvIIhjP0ycUASjcX24AT+9TvL2DIIIHcZFQlmdMEZPpnihW2jBXn0FAEwUsQxOB7808uEjOGBI7Dr\\/ACqOMGTthf7pp5UhSuF20AAlLpnaM\\/XmkV\\/73B96BgDGVpTGGGRgn2oAlWQBCAAQe5HNMRiB8u0\\/VajKSE8Lx35pdpB6tg\\/3aAJHfJBbt07UjzFyNwDY9cU1odx+Uk\\/lStE6YyTz0oAkWQsCVwvsaZCxlB4PH90Um3y\\/vnk9MU54ufn4+pxQAjtyMjd9BjFKmAepX6D\\/ABpSSAOW\\/CgB26bs+7EUAMOznnP50wgY+UHP0qRY2Qk7c\\/U\\/\\/Xoyw6tj2FACBflB39e2elI5JOByc8HqacitvyQQD3zTwuSaAISpbBI5\\/WpQq45PJHr704IVAOevSkI4GT270AROnzZB5pqu2TnBA79KeAGJ68j\\/ADzQgz1yfp3oAmjc8fw++atwvtI556VSA28VYVjtyOSe9AF7zsYIPWhXzgc49qrIcjrT06jGM+lAFgtk5z\\/gKa8gckNjg1GWGcduahmbBLAkN7UAV7\\/S7O9BWSJTnPavIfid+zX4c8dWcwlskWdslXjXDIcccivXVkLZ3HPHFPWQjIIyKpNrYTSe5+VXxS+AviH4catcRG1mvbBclJ44ycDPQ4HWvNntGj4ZWRh\\/CwxX6++IfCmn+IY3W4hSTcMHIryLxF+yr4X18ySPYJvk43Lwa6Y1VbUxdN9D815Yhls5BB4JoVTgN3719WfEL9ijU9OaefQJWlRckRyt+OK+Z9b0S98OarcadfwmC6gba8b9j\\/nFbKSlsZNNbmXtC84z\\/wDrozj6ds1PtBYcAEHjFRFNwzk47iqEMYdx1PanJhnGeOccUALjkYP96prSItcxgdWYDp0oA7eW4FzHHE0ahVUKD0yMVn3YcBiDtA4x7Vbu7dopCWXg\\/wAQNZVwHSF2J3jpmgDnZ+ZM9T3NNIGevXnNOYZfIyM00RFhnHtmgCbavXIHtT5XG31+gqFRgEMfpTTknHABOKAAtkg+\\/btSAYPDZ9ADQT8pz\\/jTRkIeSfbtQA5m4BJ6d+1ITlc5x2puOeefWgnkk8DP50ADZx1wfTvXa\\/Dq3tZk1iS5u0tlFuVO5ckgkdK4sDAJ6rXVeCnK2+rMVDR\\/Z8HnocigDDlwHbaRtJPP+NRHAXgkdakfO4nI4JP1pvDdMn0oAhmBba3IGO1R7g3b8u9TXOeFBJA6GoW+negBFIDZ6D0pA20Z\\/kaXGOcHj9KTA6gcCgA5pd3POfbNGMlunNBGRkDoO9ABv+TAHvxWjY6y0AKT5lj9e4rN52EZ70YABJ5NAG893aMpII\\/4F2qlNcxZG0lvSs9V8wgY4J4qR43gZgwKMOobg0Aa+meJ7mwCo+JbfGNjn+VdTpur29+N1q6xSgfcc85rz0NkdB7UsMzwSLIjbHU5yKAPVLIPJOskwDDqea3Li6ijiXhTkYJZuRXKeF7+HXbcx7il0F5UH73vUuoNNaMyMPM7cnjFAGrG0dzclFbdgZJz3rQt7FNoYLuJ75rlNEufKkGWySTwBgmumXVFjAQSgtnDKB0\\/HvSYGimmRzRbWhVs\\/wB4cio28N285ZmiCY7KKkttZjAABGffrUi6rHL8xcE+g7e1IZnXPg+Byxjm288duaxLnTJ9PkYBQ6qeq11M98oj37gFbH\\/1qpRyLc5JbgjPzelFxGfba86RbUVkZflCnr6Voxa5NZxcNvI+cncOuKnbRra5DcHzPXpmrfw98H6brPii7t9VWWe1t1WTZFJsJycEZH4UXsMteGvGVzdMIJMjfIpLf3VByTn8MV1eqa3f3byxW7s8LHKbxgD3+veuu8YaJ4Y8N+FbFdJs4bZmuHJlILSMu3G0seSB6Vw1prtrEW807VzwP6YqFZ6lbaFE2V22ZJrllAJJOcZ\\/\\/VWe2lK0hneViSuMNkj+VWfFHjmx0u1d2lGxVI\\/3jxxivJdW+LV3cborKERwdAX5OO9WI7iPRx9tRflYEgkV7d4d8U+H\\/hZof9t6rdRx+QCUiBG+V\\/4VUd818dv491fzPMSZY5B3UVl6rrmo65MJb65lunHTzGyB9PSk43FexqfELxtefELxjqniC\\/z515M0gQnIjTPyoPYDA\\/CudQfN1\\/Sm7m2\\/0pw+Q4PBq0IkAHbjnoDSNweg+vrTM5X0PekwcYPFADyOD0NIOBwOvOSKbnOewFOXOeq89sUAJzyffkClJxgYHHfvTQ2T\\/nrS9VyCR7H0oAcpDc9O\\/wBacZCYyrHFR4Ck7SB3+tKcgY7elADi2MDORjFAkIUkHn88U0FlI3cLSgktjH+NACudzZPB9u9LFMQuMnJpoyeDkY7etKeVP9fWgCV2yoBO761EGbG0ZFM3kknI68Vt+HNPiv7kRSAnkmgDJVSrEg4A7etXbLSbrVJUjt4Xd2IAwM81a1qw+xXjKoOwngnuK6f4YSj+37RGIwXGR70AaHhD4Janrut2Vneq1qtw2BuWvuf4a\\/sZ+FNL063lurWO6mGGMkiAk8ehry5EWLXNFkHIEq8j\\/P0r7b8Lyf8AEogPUlQf5Vzzk+hvCKsYem\\/CHw1ptnHbxafCEXoNgortQy\\/X8M0VjYo8Gu\\/Ed6rfKI8Y6BT\\/AI1BD4wvV+Voock90Of51XuBkDA+lUZLcuSR16UlYrU2f+EqvG6LGCOwB5\\/WnjxPdHlkiI9wf8a59VKHGeMVP5THbwPaiyC7NVvFF30jht+vXYen508+KL116RAeyn\\/GshEIY7vXr\\/n6VMsbMRjBAosguzT\\/AOEhvV7R\\/XH\\/ANercGu3bcbYiT0wP\\/r1kJCwxgfKfU1ftrdm4YgjOOtLQLs0o9TncZ2hsjoc4\\/nU0d9O4GQox6ZqvFEwwCTxxkGrix7VHHIHepKGefL1IBOehFJJdyheDj1FOkGBgDP09Ka0Qxk+vXvSAYupTEbT9M96UX0wA6D3HWoihVxjp1zQIPm3AEcfrQBdivJOCWyMfxd6nW9ZSOEx9KzVDbgOQRxntVmIYZQd3WgC+LyTI4AU+2AaeL45ICqM1UzgAf8A681FJL8qt+fuKALp1ByTgJke1RNqU3PCfiDWa1x3yeenrTftG0\\/L6UCuaZ1OdeyHPt\\/9emjUZwDhEGfY1nfasuB2xjB7VL5pZB3460DL8d\\/KMZI\\/AVPJqDsPmxxz3rJErLgd84wPWpBLjk49TQBoJcEZyA3GTSm7dTn5fxzVITELjPHcVCJ9zYA470Abcc+8DcF99uaek+H+XB+vaslbwgKF6nnmp4pweCc4\\/nQBpLtBaT+InqKUSDGeS39Koi83R4zjPvTkkJbtgCgC4z\\/MOn1puRjceWxUUcgbABzj0pWfB\\/iH0oANwVzxwTz\\/APWp6yZU8ZzxVV5QdvtT1kVVGCOeemDQBOTtY8Y4FTJLtyM4+lUi4xycepNTRuGXqQPSgC7u5I9egFSrIMYI9eM1ACRgn0BNKZdoJPBPfFAD2fPHaoXORyck9803zQDyPl9qZJJ3yM\\/1oAQnB64+tPKblGDj3pkbBgQRk570qkEYH\\/1qAIn+XoDwetRGcpyBjtmnykfMenU8HtVWUF2\\/zigDotPhje0Qugc\\/e+bmvzF\\/bPu7Sb49azFaIii3jiik2DgvsDH\\/ANCH5V+mqy\\/ZNPaTcFCR5+nFfkZ8btYbX\\/iz4r1BsES6hIBn0U4H6AVvR3uZVNjiRISSCOM5qVYmlGB19jUIAZvXBxzxW1p6FYicc9812HOY7q6MFIIP0q5pwX7ZEGb5QecCkv0Amzj\\/AOvVnRYEkv4gflAz1\\/GgDXdY5pHaK4JLMch+KqahFJHbtlSQP4lOQalfauTtXuQQcVVu3mEDFXAUjoTmgDF5wAMn19qE44HQ8+tMdxv4B4weeOab5uQCfrQBNtwMdT71Gy\\/\\/AKj60iSdznHrSCUDJB49qAF7cgH1x2pMKpAznnOKa0mOBjnsTQBkY6elACDOQc9ecZp3GMDIPXPrSM20DPXuaQHjOOMUAKRz1GeT713Pw98uLStflMaSOtuoCOMjlh3z1rhCCTkdK7HwNdCPSdfjYtmSBQAOhww7\\/wCe9IDn5W\\/eNxncTwAcU0fMDxk5xjtRIn97Of8AaoZSSAcDA7UwIblApBI68Y9KrqODwRjpzVi8AKLjqKrsSqjHHfrxQAAkkkjr2oB46DHrQFyeMmjHOCP60AIcjtkHoaUYYn6d+aBhjgjn0oXkEZ\\/WgA5IHYe3al3ccdup70gwB2HHWgEqp7qeaAJo5BGQ\\/YHgCu78TaNJ4n0BPElu\\/mSRIkdzEByuAAG4rhDEfJBAG4nGCa6v4ea89lqg0yVwbK+\\/cyqegB7\\/AK0AcgOCeQvuBRwfU+oroPHfhSbwb4im0+U7o\\/vxODkMp6HNc6Mc5yOec96AJbS5ms5lmgkKSKeCDzXQN45ubmJVuI0dgMbhwTXNDGMDk0AAHPcd6AOwsNdtpnXe4jPo3FbL+RIoMVxhsZODkV5sMj2P0qSOeWJgysU9CD0oA78XsluQoYOv94GrNrq3mlVYlQpwGB61w1vr0sYG8B89SeuKsx+IUX\\/lmXPXrQB3f9oRmQYOQeSM1ctrm2YqNwwGB+Y9TXnNv4oeOfc0KEYwNvBAqw\\/ilZIdiREtjjJoA9Tk8VQwaWZJdqbgyjjrjvUXgfxJb2txc3k8yxNcMFAd9uQvc\\/UmvHr\\/AFm6ndVkmO1VAWMDgCqj3s0hKvKzEknHPWgZ6\\/8AFD4ySXLQaXpMkcsMCMXuBz85xkL24AFeWz+JdUu2zLeysewzx+VZgbJx60hAGOPmJ7mlsIknnlvGBlkaRj\\/E7ZqL7uQMnFLnpznPTNLgDGOhPSmADHQkEfzo4zx07YoPTHftTSMDPqemKAFAIzj+fNAPPYfSlI2gY4HbmkbPTueaAA\\/T6UegwAOtCpg8nrz60AE8HnHSgAzwT9e9BG4Hv9Dmhgoxx+GKAQOSeKADJBoHf+LHalXJPcd8+tN25yR3oAUYBznjrkUpJz1z7elLgbec5ppHGcEgetABjJ6n\\/GlwSB0J9e9KCc88DHANKoJfA4+lACdcc04jA4Ix60zAJx0p+AVyeSaAGMBzjFaWhymG9jOQoHY1n8MoyM\\/hUtnKySqwO3B7dqAO28SaaboJMDxtyazfC8htNUidHMbKww9a9vc\\/bNOZHzgjFY6wG2k2g8k9aAPrzR7lbvRtNuInEjI6NuHbmvs7wNLv0K3yf4fz4r4O+GF8s3gyGPd+9jXoD93mvuP4dSl\\/Dtqc8lBz+FclTQ3gdhvJ5Xp9KKrgj1orG5pY8KuLcg9RjPbvSxqUGSOcZwKnuf8AV\\/8AAv8AClj6H\\/dH9aYFFrfJ4GDnGTVqC3YjkY7UH\\/Vx\\/wC9\\/SrkX3n\\/AM9qAKi2YPBJYH\\/69PW26HOe30q2f9ZF9f6mm9l\\/3qAI\\/s2BuHWr1uhyMr17dBTIv9T+FX4f60mNIljiJ4CnFWFgyuSCpHvT4uj1NP8Af\\/Ef0qRlGaIdMexqsQxBBAwDz7Vem6tUL\\/6w\\/hQBXCEfNkilCAsc5HfFWD\\/q\\/wAf6VHF\\/F\\/vf4UANEQAJIPvUsKY46ZHanS\\/6lfqv9Kkj+8PxoAYylc88j9Kp3XL5PI61oH\\/AFZ+v9aqXPU\\/7g\\/nQBl3Hyk4xtyTxVGW6eJsYHPf0q5N1FZ1x\\/qx+H86skIrliQCMk+laUVwW+7xntWTF\\/r0rWtOn4UgTHxy7jk8ZHApxmxzkE+maiXp+NQt\\/rJPqP50FFvzgV4ORTlwW4I9\\/Wqyf8ekP1H8qmH+sT6j+tFhXHPcbXAIz34NIbwFB8xxzxmqdx\\/rX\\/3TSf8ALJvx\\/mKLBc0VvNy9e3ABqZbvGPmHPH1rLj\\/j\\/GrEf3D9P6UmFzThvAhIDA+9Sy3gJwcVlxfehpZPun8aQXLwuBu9M9jTluhkgnAz0zWeOq1Mf4fof60DL4nB7jJ71btn3c9j2rIH3H+n+NaVh\\/x7D8KAL5m2qTjtSeaCOx+tQP8A8e7fQ0k3RfrQBJJLt9+Oxqq8+SevPpTZPur9KhH+rSgC0LkDGOM+lSCfJHoO9Zs3+t\\/AVND0i\\/GgCw8mQfTFQp88oUtzmppev4VV07\\/j5T6igCx4x1JtK8J6nOqn5LZ2Htha\\/H3Vbp77Ubq4kbfJLKzsx5ySSa\\/XH4r\\/APJN\\/EH\\/AF5S\\/wDoLV+Qs3U\\/Q11UdmYVB0C5mXgelbMByMdyc8VlWn3k\\/D+Va1n\\/AK0V0mJUu4W84jqf5Vc0aJDdN5iZwjH8cUyf\\/Wy1NpX\\/AC1\\/3G\\/lQBUMkQb5g20eh61DdESREqCBjnJpYerfQ\\/zpLr+GgDLbls4GcZNNfGeO9L\\/Gf96kb7p\\/z60AGcHHYfpQB8vqSe9LJ0P0H9KVPuH\\/AHh\\/KgBu3PfJoIBYZAOTj260Sf6tqVf9b+P9BQA1QR0H45pMY4HanN9xv896G+8v4UAIMr3z7V1XgyJpLTVzlRH9nzuJPXIwOO9cr\\/y1b6j+tdX4K\\/5Buuf9c0\\/9CoAxThA2Y8sT1Jpo4P1p7f8AHw\\/1P9art94\\/UfzoAkuYXaNWVSVHX2qhnnA47Vp3f3F\\/H+VZ8fQ0ANJwccY6Ufe754ximxf6xvwpy\\/6t\\/wAf6UAGeQBScEZHI96Q\\/wCu\\/AVIv8X0oAavz8AY+tTWcv2e6ikZRIqtnDd6hj\\/4+Pw\\/oasCgDpfHWvL4p1x78WkOno0UaiG3QKi7VA6DvxXLwSlJY5AcFDnPpWzqH3pfqaw4\\/vH\\/d\\/woA7DxX44i8S+H7G0ltib62AHnsckgVxgwA3XpUz\\/AH3+pqB\\/utQA4Z7dugpSdx6A\\/WiP7zf71NX\\/AFRoAVBxjdjNBAXnrnj6Ui9D9aaPvPQBICe\\/b8BSEgEUkP8Aqm+n+NK33Y\\/92gA6ZBwTU0UZJxkHnAJqKTr\\/AMCP8qsfwxUAV5TukLYzRjpnIB5pF7fj\\/OkXt9aAHA8E9R3NNbOBhvwpZP8AGkfr+VAChRjII4PSjbk5J59qdH99Poak7r9KAIQCM59PWgjBHPFKP9bSS\\/w\\/73+FAAM5PqfT2pV9DwfY0qfeP+e1MX7rfUUAOLYIPB9c0NkdecUR\\/wAX1pF+6n0\\/pQAp7dCaQ4PUjPapE\\/1R+n+FQDqfoKAJQFyc+mc0Ke2CSfWkbt9KkH3V+tAERIz19hThg4PUUxfut9TUif6pP896AEHfnt2pyg99uT396IfvP9f8Klj\\/AIv9+gCuMhvQZqRSMcd+oph6r\\/u\\/1p9v\\/q2+tAEsibogxIHHJFV0J3A8881ZH\\/Hoah\\/5aH8aAOy8PzxtbhWxv96vahZbmVh0B\\/Wue8Nf6411d32\\/36APU\\/hTdCPSriHJwBkD07196\\/CW6W68MWbfeIjHJ+lfn98Kf9VP\\/uj+tfePwS\\/5FK2\\/3F\\/kK5avRm0D0URbucgfjRUbfeNFcxrc\\/9k=\",\"margin\":[-40,16,0,0],\"width\":595},{\"margin\":[-20,-150,0,0],\"columnGap\":8,\"columns\":[{\"width\":\"auto\",\"text\":\"$toLabel:\",\"style\":\"bold\",\"color\":\"#cd5138\"},{\"width\":\"*\",\"stack\":\"$clientDetails\",\"margin\":[4,0,0,0]}]},{\"margin\":[-20,10,0,140],\"columnGap\":8,\"columns\":[{\"width\":\"auto\",\"text\":\"$fromLabel:\",\"style\":\"bold\",\"color\":\"#cd5138\"},{\"width\":\"*\",\"stack\":[{\"width\":150,\"stack\":\"$accountDetails\"},{\"width\":150,\"stack\":\"$accountAddress\"}]}]},{\"canvas\":[{\"type\":\"line\",\"x1\":0,\"y1\":5,\"x2\":515,\"y2\":5,\"lineWidth\":1.5}],\"margin\":[0,0,0,-30]},{\"style\":\"invoiceLineItemsTable\",\"table\":{\"headerRows\":1,\"widths\":\"$invoiceLineItemColumns\",\"body\":\"$invoiceLineItems\"},\"layout\":{\"hLineWidth\":\"$notFirst:.5\",\"vLineWidth\":\"$none\",\"hLineColor\":\"#000000\",\"paddingLeft\":\"$amount:8\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:10\",\"paddingBottom\":\"$amount:10\"}},{\"columns\":[\"$notesAndTerms\",{\"alignment\":\"right\",\"table\":{\"widths\":[\"*\",\"40%\"],\"body\":\"$subtotals\"},\"layout\":{\"hLineWidth\":\"$none\",\"vLineWidth\":\"$none\",\"paddingLeft\":\"$amount:34\",\"paddingRight\":\"$amount:8\",\"paddingTop\":\"$amount:4\",\"paddingBottom\":\"$amount:4\"}}]},\"$signature\",{\"stack\":[\"$invoiceDocuments\"],\"style\":\"invoiceDocuments\"}],\"defaultStyle\":{\"fontSize\":\"$fontSize\",\"margin\":[8,4,8,4]},\"footer\":{\"columns\":[{\"text\":\"$invoiceFooter\",\"alignment\":\"left\"}],\"margin\":[40,-20,40,0]},\"styles\":{\"accountDetails\":{\"margin\":[0,0,0,3]},\"accountAddress\":{\"margin\":[0,0,0,3]},\"clientDetails\":{\"margin\":[0,0,0,3]},\"productKey\":{\"color\":\"$primaryColor:#cd5138\"},\"lineTotal\":{\"alignment\":\"right\"},\"tableHeader\":{\"bold\":true,\"fontSize\":\"$fontSizeLarger\"},\"subtotalsBalanceDueLabel\":{\"fontSize\":\"$fontSizeLargest\"},\"subtotalsBalanceDue\":{\"fontSize\":\"$fontSizeLargest\",\"color\":\"$primaryColor:#cd5138\"},\"invoiceLineItemsTable\":{\"margin\":[0,0,0,16]},\"cost\":{\"alignment\":\"right\"},\"quantity\":{\"alignment\":\"right\"},\"tax\":{\"alignment\":\"right\"},\"termsLabel\":{\"bold\":true,\"margin\":[0,0,0,4]},\"fullheader\":{\"fontSize\":\"$fontSizeLargest\",\"bold\":true},\"help\":{\"fontSize\":\"$fontSizeSmaller\",\"color\":\"#737373\"}},\"pageMargins\":[40,30,40,30],\"background\":[{\"image\":\"$accountBackground\",\"alignment\":\"center\"}]}'),(11,'Custom1',NULL,NULL),(12,'Custom2',NULL,NULL),(13,'Custom3',NULL,NULL);
/*!40000 ALTER TABLE `invoice_designs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `invoice_items`
--

DROP TABLE IF EXISTS `invoice_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `invoice_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `invoice_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `product_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `notes` text COLLATE utf8_unicode_ci NOT NULL,
  `cost` decimal(15,4) NOT NULL,
  `qty` decimal(15,4) DEFAULT '0.0000',
  `tax_name1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `tax_rate1` decimal(13,3) DEFAULT NULL,
  `public_id` int(10) unsigned NOT NULL,
  `custom_value1` text COLLATE utf8_unicode_ci,
  `custom_value2` text COLLATE utf8_unicode_ci,
  `tax_name2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `tax_rate2` decimal(13,3) NOT NULL,
  `invoice_item_type_id` smallint(6) NOT NULL DEFAULT '1',
  `discount` decimal(13,2) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `invoice_items_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `invoice_items_product_id_foreign` (`product_id`),
  KEY `invoice_items_user_id_foreign` (`user_id`),
  KEY `invoice_items_invoice_id_index` (`invoice_id`),
  CONSTRAINT `invoice_items_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
  CONSTRAINT `invoice_items_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `invoice_items_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=310 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `invoice_items`
--

LOCK TABLES `invoice_items` WRITE;
/*!40000 ALTER TABLE `invoice_items` DISABLE KEYS */;
INSERT INTO `invoice_items` (`id`, `account_id`, `user_id`, `invoice_id`, `product_id`, `created_at`, `updated_at`, `deleted_at`, `product_key`, `notes`, `cost`, `qty`, `tax_name1`, `tax_rate1`, `public_id`, `custom_value1`, `custom_value2`, `tax_name2`, `tax_rate2`, `invoice_item_type_id`, `discount`) VALUES (1,1,1,1,9,'2018-04-15 05:27:25','2018-04-15 05:27:25',NULL,'Laptop Purchasing','',1700.0000,1.0000,'GST',6.000,1,NULL,NULL,'',0.000,1,0.00),(2,1,1,2,9,'2018-04-15 05:45:34','2018-04-15 05:45:34',NULL,'Laptop Purchasing','ACER SP513-52N-856T NOTEBOOK, INTEL CORE-I7, 8GB RAM, 256GB SSD, W10, GREY WITH BEG\r\nSN#:NXGR7SM00474602DCD66600',3000.0000,1.0000,'',0.000,2,NULL,NULL,'',0.000,1,0.00),(4,1,1,3,3,'2018-05-14 18:38:05','2018-05-14 18:38:05',NULL,'Hosting Renewal MRI','Domain & Hosting Renewal 19th May 2018 - 19th May 2019\r\n\r\nRemote Support For PC\r\n\r\nRemote Support For Mobile\r\n\r\nOn-site visit 19th May 2018 - 19th May 2019',4500.0000,1.0000,'',0.000,3,NULL,NULL,'',0.000,1,15.00),(6,1,1,4,3,'2018-05-14 19:42:05','2018-05-14 19:42:05',NULL,'Hosting Renewal MRI','Domain & Hosting Renewal 19th May 2018 - 19th May 2019\r\n\r\nRemote Support For PC\r\n\r\nRemote Support For Mobile\r\n\r\nOn-site visit 19th May 2018 - 19th May 2019',4000.0000,1.0000,'',0.000,4,NULL,NULL,'',0.000,1,0.00),(7,1,1,5,3,'2018-05-14 19:42:05','2018-05-14 19:42:05',NULL,'Hosting Renewal MRI','Domain & Hosting Renewal 19th May 2018 - 19th May 2019\r\n\r\nRemote Support For PC\r\n\r\nRemote Support For Mobile\r\n\r\nOn-site visit 19th May 2018 - 19th May 2019',4000.0000,1.0000,'',0.000,5,NULL,NULL,'',0.000,1,0.00),(9,1,1,6,3,'2018-05-14 20:16:44','2018-05-14 20:16:44',NULL,'Hosting Renewal MRI','Domain & Hosting Renewal 19th May 2018 - 19th May 2019\r\n\r\nRemote Support For PC\r\n\r\nRemote Support For Mobile\r\n\r\nOn-site visit 19th May 2018 - 19th May 2019',4000.0000,1.0000,'',0.000,6,NULL,NULL,'',0.000,1,0.00),(11,1,1,7,3,'2018-05-14 20:18:25','2018-05-14 20:18:25',NULL,'Hosting Renewal MRI','Domain & Hosting Renewal \r\n19th May 2018 - 19th May 2019\r\n\r\nRemote Support For PC One Year\r\n\r\nRemote Support For Mobile One Year\r\n\r\nOn-site visit 19th May 2018 - 19th May 2019',4000.0000,1.0000,'',0.000,7,NULL,NULL,'',0.000,1,0.00),(18,1,1,9,12,'2019-07-12 23:36:13','2019-07-12 23:36:13',NULL,'Website Development (Enhance From Old Website)','Enhancement Previous Website From 2 Language To Single Language',500.0000,1.0000,'',0.000,9,NULL,NULL,'',0.000,1,0.00),(27,1,1,11,NULL,'2019-07-13 07:43:21','2019-07-13 07:43:21',NULL,'Land Transportation','Grab Expenses May 2019',588.9500,1.0000,'',0.000,14,NULL,NULL,'',0.000,1,0.00),(29,1,1,12,NULL,'2019-07-13 08:03:15','2019-07-13 08:03:15',NULL,'Fuel','Shell Expenses Jun 2019',963.3400,1.0000,'',0.000,15,NULL,NULL,'',0.000,1,0.00),(30,1,1,10,13,'2019-07-13 08:10:05','2019-07-13 08:10:05',NULL,'Website Development - 2 Languages','Translate 2 Language',1150.0000,1.0000,'',0.000,16,NULL,NULL,'',0.000,1,0.00),(31,1,1,10,14,'2019-07-13 08:10:05','2019-07-13 08:10:05',NULL,'Domain & Hosting  (Linux Platform)','1 Year Fee\r\nWeb-Base File Sharing\r\nUnlimited Email\r\nWeb-Base Email Access\r\nSPAM Assassin\r\nVirus Protection\r\nMonthly Bandwidth 50GB\r\nMultiple Domain Hosting - Up To 5 Domains\r\nDisk Space 10GB',500.0000,1.0000,'',0.000,17,NULL,NULL,'',0.000,1,0.00),(32,1,1,10,15,'2019-07-13 08:10:05','2019-07-13 08:10:05',NULL,'Website & Hosting Maintenance / Support','Optional\r\nRM100 / Request\r\nRM1200 / Yearly',0.0000,1.0000,'',0.000,18,NULL,NULL,'',0.000,1,0.00),(35,1,1,13,8,'2019-07-13 10:21:04','2019-07-13 10:21:04',NULL,'Domain & Hosting Renewal TepatConsult.com','Renewal For 1 Year - tepatconsult.com\r\nWeb-Base File Sharing\r\nUnlimited Email\r\nWeb-Base Email Access\r\nSPAM Assassin\r\nVirus Protection\r\nMonthly Bandwidth 50 GB\r\nMultiple Domain Hosting Up To 5 Domain\r\nDisk Space 10 GB\r\nServer Hosting Location : Malaysia',350.0000,1.0000,'',0.000,19,NULL,NULL,'',0.000,1,0.00),(37,1,1,14,8,'2019-07-13 10:22:03','2019-07-13 10:22:03',NULL,'Domain & Hosting Renewal TepatConsult.com','Renewal For 1 Year - tepatconsult.com\r\nWeb-Base File Sharing\r\nUnlimited Email\r\nWeb-Base Email Access\r\nSPAM Assassin\r\nVirus Protection\r\nMonthly Bandwidth 50 GB\r\nMultiple Domain Hosting Up To 5 Domain\r\nDisk Space 10 GB\r\nServer Hosting Location : Malaysia',350.0000,1.0000,'',0.000,20,NULL,NULL,'',0.000,1,0.00),(43,1,1,8,8,'2019-07-13 11:05:18','2019-07-13 11:05:18',NULL,'Domain & Hosting Renewal','Renewal For 1 Year - tepatconsult.com\r\nWeb-Base File Sharing\r\nUnlimited Email\r\nWeb-Base Email Access\r\nSPAM Assassin\r\nVirus Protection\r\nMonthly Bandwidth 50 GB\r\nMultiple Domain Hosting Up To 5 Domain\r\nDisk Space 10 GB\r\nServer Hosting Location : Malaysia',350.0000,1.0000,'',0.000,23,NULL,NULL,'',0.000,1,0.00),(46,1,1,16,57,'2019-07-14 10:07:55','2019-07-14 10:07:55',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,24,NULL,NULL,'',0.000,1,0.00),(47,1,1,16,57,'2019-07-14 10:07:55','2019-07-14 10:08:52',NULL,'Gateway Fee Item','Gateway Fee Surcharge • 14-July-2019',2.0300,1.0000,'',0.000,25,NULL,NULL,'',0.000,4,0.00),(50,1,1,17,57,'2019-07-14 10:22:22','2019-07-14 10:22:22',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,26,NULL,NULL,'',0.000,1,0.00),(51,1,1,17,57,'2019-07-14 10:22:22','2019-07-14 10:23:01',NULL,'Gateway Fee Item','Gateway Fee Surcharge • 14-July-2019',2.2600,1.0000,'',0.000,27,NULL,NULL,'',0.000,4,0.00),(63,1,1,18,57,'2019-07-14 10:45:21','2019-07-14 10:45:21',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,28,NULL,NULL,'',0.000,1,0.00),(64,1,1,18,57,'2019-07-14 10:45:21','2019-07-14 10:47:10',NULL,'Gateway Fee Item','Gateway Fee Surcharge • 14-July-2019',2.2400,1.0000,'',0.000,29,NULL,NULL,'',0.000,4,0.00),(72,1,1,19,57,'2019-07-14 11:48:38','2019-07-14 11:48:38',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,30,NULL,NULL,'',0.000,1,0.00),(73,1,1,19,57,'2019-07-14 11:48:39','2019-07-14 11:51:54',NULL,'Gateway Fee Item','Gateway Fee Surcharge • 14-July-2019',2.0500,1.0000,'',0.000,31,NULL,NULL,'',0.000,4,0.00),(82,1,1,20,NULL,'2019-07-14 12:06:06','2019-07-14 12:06:06',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,32,NULL,NULL,'',0.000,1,0.00),(83,1,1,20,NULL,'2019-07-14 12:06:06','2019-07-14 12:07:13',NULL,'Gateway Fee Item','Gateway Fee Surcharge • 14-July-2019',2.1200,1.0000,'',0.000,33,NULL,NULL,'',0.000,4,0.00),(85,1,1,21,57,'2019-07-14 12:29:05','2019-07-14 12:29:05',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,34,NULL,NULL,'',0.000,1,0.00),(96,1,2,22,57,'2019-07-14 13:15:05','2019-07-14 13:15:05',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,35,NULL,NULL,'',0.000,1,0.00),(99,1,2,23,57,'2019-07-14 13:17:42','2019-07-14 13:17:42',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,36,NULL,NULL,'',0.000,1,0.00),(100,1,2,23,57,'2019-07-14 13:17:42','2019-07-14 13:21:30',NULL,'Gateway Fee Item','Gateway Fee Surcharge • 14-July-2019',2.1200,1.0000,'',0.000,37,NULL,NULL,'',0.000,4,0.00),(105,1,1,24,57,'2019-07-15 04:59:46','2019-07-15 04:59:46',NULL,'Testing','Testing',5.0000,1.0000,'',0.000,38,NULL,NULL,'',0.000,1,0.00),(106,1,1,24,57,'2019-07-15 04:59:46','2019-07-15 04:59:46',NULL,'Gateway Fee Item','Gateway Fee Surcharge • 14-July-2019',2.2800,1.0000,'',0.000,39,NULL,NULL,'',0.000,3,0.00),(111,1,2,25,57,'2019-07-17 06:31:56','2019-07-17 06:31:56',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,40,NULL,NULL,'',0.000,1,0.00),(112,1,2,25,57,'2019-07-17 06:31:56','2019-07-17 06:33:16',NULL,'Gateway Fee Item','Gateway Fee Surcharge • 16-July-2019',2.2400,1.0000,'',0.000,41,NULL,NULL,'',0.000,4,0.00),(117,1,1,26,57,'2019-07-18 09:13:10','2019-07-18 09:13:10',NULL,'Testing','Testing',5.0000,1.0000,'',0.000,42,NULL,NULL,'',0.000,1,0.00),(118,1,1,26,57,'2019-07-18 09:13:10','2019-07-18 09:13:10',NULL,'Gateway Fee Item','Gateway Fee Surcharge • 18-July-2019',3.8000,1.0000,'',0.000,43,NULL,NULL,'',0.000,3,0.00),(120,1,1,27,57,'2019-07-18 09:19:02','2019-07-18 09:19:02',NULL,'Testing','Testing',5.0000,1.0000,'',0.000,44,NULL,NULL,'',0.000,1,0.00),(121,1,1,27,57,'2019-07-18 09:19:02','2019-07-18 09:19:02',NULL,'Gateway Fee Item','Gateway Fee Surcharge • 18-July-2019',0.0500,1.0000,'',0.000,45,NULL,NULL,'',0.000,3,0.00),(128,1,1,28,57,'2019-07-18 10:13:50','2019-07-18 10:13:50',NULL,'Testing','Testing',50.0000,1.0000,'',0.000,46,NULL,NULL,'',0.000,1,0.00),(129,1,1,29,57,'2019-07-18 12:47:19','2019-07-18 12:47:19',NULL,'Testing','Testing',10.0000,1.0000,'',0.000,47,NULL,NULL,'',0.000,1,0.00),(130,1,1,30,57,'2019-07-23 23:18:45','2019-07-23 23:18:45',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,48,NULL,NULL,'',0.000,1,0.00),(131,1,1,15,8,'2019-08-30 21:18:59','2019-08-30 21:18:59',NULL,'Domain & Hosting Renewal','Renewal For 1 Year - tourguide.asia\r\nWeb-Base File Sharing\r\nUnlimited Email\r\nWeb-Base Email Access\r\nSPAM Assassin\r\nVirus Protection\r\nMonthly Bandwidth 50 GB\r\nMultiple Domain Hosting Up To 5 Domain\r\nDisk Space 10 GB\r\nServer Hosting Location : Malaysia',300.0000,1.0000,'',0.000,49,NULL,NULL,'',0.000,1,0.00),(132,1,1,31,8,'2019-09-08 23:43:11','2019-09-08 23:43:11',NULL,'Domain & Hosting Renewal','Renewal For 1 Year - tourguide.asia\r\nWeb-Base File Sharing\r\nUnlimited Email\r\nWeb-Base Email Access\r\nSPAM Assassin\r\nVirus Protection\r\nMonthly Bandwidth 50 GB\r\nMultiple Domain Hosting Up To 5 Domain\r\nDisk Space 10 GB\r\nServer Hosting Location : Malaysia',300.0000,1.0000,'',0.000,50,'','','',0.000,1,0.00),(136,1,1,32,8,'2019-10-03 08:45:31','2019-10-03 08:45:31',NULL,'Domain & Hosting Renewal','Renewal For 1 Year - tepatconsult.com\r\nWeb-Base File Sharing\r\nUnlimited Email\r\nWeb-Base Email Access\r\nSPAM Assassin\r\nVirus Protection\r\nMonthly Bandwidth 50 GB\r\nMultiple Domain Hosting Up To 5 Domain\r\nDisk Space 10 GB\r\nServer Hosting Location : Malaysia',350.0000,1.0000,'',0.000,51,NULL,NULL,'',0.000,1,0.00),(149,1,1,33,57,'2019-10-14 06:34:32','2019-10-14 06:34:32',NULL,'Testing','Testing',2.0000,1.0000,'',0.000,52,NULL,NULL,'',0.000,1,0.00),(157,1,1,34,57,'2019-10-15 15:43:00','2019-10-15 15:43:00',NULL,'Testing','Testing',0.5000,1.0000,'',0.000,53,NULL,NULL,'',0.000,1,0.00),(158,1,1,35,57,'2019-10-15 16:59:02','2019-10-15 16:59:02',NULL,'Testing','Testing',2.0000,1.0000,'',0.000,54,NULL,NULL,'',0.000,1,0.00),(159,1,1,36,57,'2019-10-21 07:53:05','2019-10-21 07:53:05',NULL,'Testing','Testing',12.0000,1.0000,'',0.000,55,NULL,NULL,'',0.000,1,0.00),(160,1,1,37,57,'2019-10-21 07:58:48','2019-10-21 07:58:48',NULL,'Testing','Testing',4.0000,1.0000,'',0.000,56,NULL,NULL,'',0.000,1,0.00),(161,1,1,38,57,'2019-10-21 08:03:44','2019-10-21 08:03:44',NULL,'Testing','Testing',7.9000,1.0000,'',0.000,57,NULL,NULL,'',0.000,1,0.00),(162,1,1,40,8,'2021-08-17 23:13:30','2021-08-17 23:13:30',NULL,'Domain & Hosting Renewal','Renewal For 1 Year - tepatconsult.com\r\nWeb-Base File Sharing\r\nUnlimited Email\r\nWeb-Base Email Access\r\nSPAM Assassin\r\nVirus Protection\r\nMonthly Bandwidth 50 GB\r\nMultiple Domain Hosting Up To 5 Domain\r\nDisk Space 10 GB\r\nServer Hosting Location : Malaysia',388.8900,1.0000,'',0.000,58,NULL,NULL,'',0.000,1,0.00),(164,1,1,41,8,'2021-08-17 23:40:17','2021-08-17 23:40:17',NULL,'Domain & Hosting Renewal','Renewal For 1 Year - tepatconsult.com\r\nWeb-Base File Sharing\r\nUnlimited Email\r\nWeb-Base Email Access\r\nSPAM Assassin\r\nVirus Protection\r\nMonthly Bandwidth 50 GB\r\nMultiple Domain Hosting Up To 5 Domain\r\nDisk Space 10 GB\r\nServer Hosting Location : Malaysia',388.8900,1.0000,'',0.000,59,NULL,NULL,'',0.000,1,0.00),(165,1,1,42,57,'2021-08-19 10:14:40','2021-08-19 10:14:40',NULL,'Testing','Testing',3.7300,1.0000,'',0.000,60,NULL,NULL,'',0.000,1,0.00),(166,1,1,43,8,'2021-08-19 10:45:15','2021-08-19 10:45:15',NULL,'Domain & Hosting Renewal','Renewal For 1 Year - tepatconsult.com\r\nWeb-Base File Sharing\r\nUnlimited Email\r\nWeb-Base Email Access\r\nSPAM Assassin\r\nVirus Protection\r\nMonthly Bandwidth 50 GB\r\nMultiple Domain Hosting Up To 5 Domain\r\nDisk Space 10 GB\r\nServer Hosting Location : Malaysia',355.0000,1.0000,'',0.000,61,NULL,NULL,'',0.000,1,0.00),(167,1,2,44,63,'2021-09-02 20:04:53','2021-09-02 20:04:53',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN1_3)','- Age 10-12 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n\r\nSession :-\r\n\r\nMonday 8:00pm- 9:00pm',70.0000,1.0000,'',0.000,62,NULL,NULL,'',0.000,1,0.00),(168,1,2,44,57,'2021-09-02 20:04:53','2021-09-02 20:04:53',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,63,NULL,NULL,'',0.000,1,0.00),(169,1,2,45,63,'2021-09-02 21:29:42','2021-09-02 21:29:42',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN1_3)','- Age 10-12 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n\r\nSession :-\r\n\r\nMonday 8:00pm- 9:00pm',70.0000,1.0000,'',0.000,64,NULL,NULL,'',0.000,1,0.00),(170,1,2,45,59,'2021-09-02 21:29:42','2021-09-02 21:29:42',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN2_2)','- Age 7-9 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n\r\nSession :-\r\n\r\nSunday 11:30am- 12:30pm',70.0000,1.0000,'',0.000,65,NULL,NULL,'',0.000,1,0.00),(171,1,2,46,62,'2021-09-02 23:10:00','2021-09-02 23:10:00',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN1_2)','- Age 10-12 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n\r\nSession :-\r\n\r\nSunday 9:30am- 10:30am',70.0000,1.0000,'',0.000,66,NULL,NULL,'',0.000,1,0.00),(172,1,2,46,62,'2021-09-02 23:10:00','2021-09-02 23:10:00',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN1_2)','- Age 10-12 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n\r\nSession :-\r\n\r\nSunday 9:30am- 10:30am',70.0000,1.0000,'',0.000,67,NULL,NULL,'',0.000,1,0.00),(173,1,2,47,60,'2021-09-02 23:44:05','2021-09-02 23:44:05',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN0103)','- Age 7-9 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month :- \r\n\r\nSession :-\r\n\r\nTuesday 8:00pm- 9:00pm (MAN0103)',70.0000,1.0000,'',0.000,68,NULL,NULL,'',0.000,1,0.00),(174,1,2,48,61,'2021-09-09 17:44:02','2021-09-09 17:44:02',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN0201)','- Age 10-12 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month:- September\r\n- Student\'s Name: Muhammad Rayyan bin Mohamad Zulfadhli\r\n\r\nSession :-\r\n\r\nSaturday 9:30am- 10:30am (MAN0201)',70.0000,1.0000,'',0.000,69,NULL,NULL,'',0.000,1,0.00),(175,1,2,48,61,'2021-09-09 17:44:02','2021-09-09 17:44:02',NULL,'','Manual (with postage)',30.0000,1.0000,'',0.000,70,NULL,NULL,'',0.000,1,0.00),(176,1,2,49,61,'2021-09-09 17:56:52','2021-09-09 17:56:52',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN0201)','- Age 10-12 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month:- September 2021-January 2022\r\n- Student\'s Name: Ahmad Syafiq bin Ahmad Sallehuddin\r\n\r\nSession :-\r\n\r\nSaturday 9:30am- 10:30am (MAN0201)',350.0000,1.0000,'',0.000,71,NULL,NULL,'',0.000,1,0.00),(177,1,2,49,61,'2021-09-09 17:56:52','2021-09-09 17:56:52',NULL,'','Manual (with postage)',30.0000,1.0000,'',0.000,72,NULL,NULL,'',0.000,1,0.00),(178,1,2,50,58,'2021-09-09 18:02:39','2021-09-09 18:02:39',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN0101)','- Age 7-9 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month: September 2021\r\n- Student\'s Name: Nur Maisarah bte Asri\r\n\r\nSession :-\r\n\r\nSaturday 11:30am- 12:30pm (MAN0101)',70.0000,1.0000,'',0.000,73,NULL,NULL,'',0.000,1,0.00),(179,1,2,50,58,'2021-09-09 18:02:39','2021-09-09 18:02:39',NULL,'','Manual (with postage)',30.0000,1.0000,'',0.000,74,NULL,NULL,'',0.000,1,0.00),(182,1,2,52,59,'2021-09-09 18:14:37','2021-09-09 18:14:37',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN0102)','- Age 7-9 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month: September 2021\r\n- Student\'s Name: Ainul Aisyah\r\n\r\nSession :-\r\n\r\nSunday 11:30am- 12:30pm (MAN0102)',70.0000,1.0000,'',0.000,77,NULL,NULL,'',0.000,1,0.00),(183,1,2,52,59,'2021-09-09 18:14:37','2021-09-09 18:14:37',NULL,'','Manual',22.0000,1.0000,'',0.000,78,NULL,NULL,'',0.000,1,0.00),(184,1,2,51,58,'2021-10-12 14:19:26','2021-10-12 14:19:26',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN0101)','- Age 7-9 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month: September 2021\r\n- Student\'s Name: Iris Sophia \r\nSession :-\r\n\r\nSaturday 11:30am- 12:30pm (MAN0101)',70.0000,1.0000,'',0.000,79,NULL,NULL,'',0.000,1,0.00),(185,1,2,51,58,'2021-10-12 14:19:26','2021-10-12 14:19:26',NULL,'','Manual (with postage)',30.0000,1.0000,'',0.000,80,NULL,NULL,'',0.000,1,0.00),(188,1,2,54,64,'2021-10-12 15:29:13','2021-10-12 15:29:13',NULL,'Basic Mandarin for kids: CS Std Module 1 (MAN0402)','- Age 8 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment for Month :- October 2021\r\n- Student\'s Name: Sofea Qaleesya binti Shahrul Aizat 苏菲亚 sū fēi yà\r\n\r\nSession :-\r\n\r\nFriday 8:00pm- 9:00pm (MAN402)',100.0000,1.0000,'',0.000,82,NULL,NULL,'',0.000,1,0.00),(190,1,2,55,61,'2021-10-12 18:38:36','2021-10-12 18:38:36',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN0201)','- Age 10-12 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month:- October 2021\r\n- Student\'s Name: Muhammad Rayyan bin Mohamad Zulfadhli\r\n\r\nSession :-\r\n\r\nSaturday 11:30am- 12:30am (MAN101)',70.0000,1.0000,'',0.000,83,NULL,NULL,'',0.000,1,0.00),(191,1,2,56,58,'2021-10-12 18:43:09','2021-10-12 18:43:09',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN0101)','- Age 7-9 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month: October 2021\r\n- Student\'s Name: Nur Maisarah bte Asri\r\n\r\nSession :-\r\n\r\nSaturday 11:30am- 12:30pm (MAN0101)',70.0000,1.0000,'',0.000,84,NULL,NULL,'',0.000,1,0.00),(192,1,2,57,65,'2021-10-12 19:21:22','2021-10-12 19:21:22',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN101)','- Age 11 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month: October 2021\r\n- Student\'s Name: Nur Hadirah Humayraa\r\n\r\nSession :-\r\n\r\nSaturday 11:30am- 12:30pm (MAN101)',70.0000,1.0000,'',0.000,85,NULL,NULL,'',0.000,1,0.00),(193,1,2,57,65,'2021-10-12 19:21:22','2021-10-12 19:21:22',NULL,'','Mandarin Book',30.0000,1.0000,'',0.000,86,NULL,NULL,'',0.000,1,0.00),(194,1,2,53,65,'2021-10-12 19:50:32','2021-10-12 19:50:32',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN101)','- Age 7-9 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month: October 2021\r\n- Student\'s Name: Iris Sophia \r\nSession :-\r\n\r\nThursday 8:00PM- 9:00PM (MAN301)',70.0000,1.0000,'',0.000,87,NULL,NULL,'',0.000,1,0.00),(195,1,2,58,66,'2021-10-12 20:04:35','2021-10-12 20:04:35',NULL,'MAN301','ELEMENTARY MANDARIN',70.0000,1.0000,'',0.000,88,NULL,NULL,'',0.000,1,0.00),(196,1,2,59,67,'2021-10-12 20:08:40','2021-10-12 20:08:40',NULL,'MAN402','SRJKC YEAR 2',100.0000,1.0000,'',0.000,89,NULL,NULL,'',0.000,1,0.00),(197,1,2,60,68,'2021-10-12 20:11:44','2021-10-12 20:11:44',NULL,'MAN101','BASIC MANDARIN FOR KIDS 1',70.0000,1.0000,'',0.000,90,NULL,NULL,'',0.000,1,0.00),(198,1,2,61,68,'2021-10-12 20:14:36','2021-10-12 20:14:36',NULL,'MAN101','BASIC MANDARIN FOR KIDS 1',70.0000,1.0000,'',0.000,91,NULL,NULL,'',0.000,1,0.00),(199,1,2,62,68,'2021-10-12 20:18:14','2021-10-12 20:18:14',NULL,'MAN101','BASIC MANDARIN FOR KIDS 1',70.0000,1.0000,'',0.000,92,NULL,NULL,'',0.000,1,0.00),(200,1,2,62,68,'2021-10-12 20:18:14','2021-10-12 20:18:14',NULL,'','MANDARIN BOOK  + POSTAGE',30.0000,1.0000,'',0.000,93,NULL,NULL,'',0.000,1,0.00),(201,1,2,63,68,'2021-10-12 20:22:10','2021-10-12 20:22:10',NULL,'MAN101','BASIC MANDARIN FOR KIDS 1',70.0000,1.0000,'',0.000,94,NULL,NULL,'',0.000,1,0.00),(202,1,2,63,68,'2021-10-12 20:22:10','2021-10-12 20:22:10',NULL,'','MANDARIN BOOK + POSTAGE',23.0000,1.0000,'',0.000,95,NULL,NULL,'',0.000,1,0.00),(203,1,2,64,68,'2021-10-12 20:33:27','2021-10-12 20:33:27',NULL,'MAN101','BASIC MANDARIN FOR KIDS 1',140.0000,1.0000,'',0.000,96,NULL,NULL,'',0.000,1,0.00),(206,1,2,65,68,'2021-10-12 20:47:20','2021-10-12 20:47:20',NULL,'MAN101','BASIC MANDARIN FOR KIDS 1 (2 STUDENTS)',140.0000,1.0000,'',0.000,97,NULL,NULL,'',0.000,1,0.00),(207,1,2,65,68,'2021-10-12 20:47:20','2021-10-12 20:47:20',NULL,'','MANDARIN BOOK + POSTAGE',30.0000,2.0000,'',0.000,98,NULL,NULL,'',0.000,1,0.00),(208,1,2,66,68,'2021-10-12 20:49:18','2021-10-12 20:49:18',NULL,'MAN101','BASIC MANDARIN FOR KIDS 1 (2 STUDENTS)',70.0000,2.0000,'',0.000,99,NULL,NULL,'',0.000,1,0.00),(211,1,2,67,68,'2021-10-12 20:59:59','2021-10-12 20:59:59',NULL,'MAN101','BASIC MANDARIN FOR KIDS 1',70.0000,1.0000,'',0.000,100,NULL,NULL,'',0.000,1,0.00),(212,1,2,67,68,'2021-10-12 20:59:59','2021-10-12 20:59:59',NULL,'','MANDARIN BOOK',22.0000,1.0000,'',0.000,101,NULL,NULL,'',0.000,1,0.00),(213,1,2,68,68,'2021-10-12 21:01:38','2021-10-12 21:01:38',NULL,'MAN101','BASIC MANDARIN FOR KIDS 1',70.0000,1.0000,'',0.000,102,NULL,NULL,'',0.000,1,0.00),(215,1,2,69,68,'2021-10-21 15:44:52','2021-10-21 15:44:52',NULL,'MAN101','BASIC MANDARIN FOR KIDS 1 (3 Copies Manual + Courier)',290.0000,1.0000,'',0.000,103,NULL,NULL,'',0.000,1,0.00),(216,1,1,70,69,'2021-12-14 10:45:25','2021-12-14 10:45:25',NULL,'HP Laptop Notebook 15s-fq2513TU Gold (15.6\"/1366x768/Intel Core i3-1115G4/512 GB PCIe NVMe M.2 SSD/Intel UHD Graphics)','Operating system	Windows 10 Home Single Language 64\r\nProcessor	Intel® Core™ i3-1115G4 (up to 4.1 GHz with Intel® Turbo Boost Technology, 6 MB L3 cache, 2 cores)\r\nChipset	Intel® Integrated SoC\r\nForm factor	Standard laptop\r\nMEMORY\r\nMemory	8 GB DDR4-2666 MHz RAM (1 x 8 GB)\r\nSTORAGE\r\nHard drive description	512 GB PCIe® NVMe™ M.2 SSD\r\nStorage type	SSD\r\nOptical drive	Optical drive not included\r\nDISPLAY AND GRAPHICS\r\nDisplay	15.6\" diagonal, HD (1366 x 768), micro-edge, BrightView, 250 nits, 45% NTSC\r\nGraphics	Intel® UHD Graphics',2619.0000,1.0000,'',0.000,104,NULL,NULL,'',0.000,1,0.00),(218,1,2,72,65,'2022-02-27 04:32:44','2022-02-27 04:32:44',NULL,'Basic Mandarin for kids: Beginners Module 1 (MAN101)','- Age 7-12 years old\r\n- Duration: 4 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month:- OCT 2021 - JAN 2022\r\n\r\nSession :-\r\n\r\nTHURSDAY 8-9PM',210.0000,4.0000,'',0.000,106,NULL,NULL,'',0.000,1,0.00),(221,1,2,71,70,'2022-02-27 09:39:38','2022-02-27 09:39:38',NULL,'Basic Mandarin for kids: Beginners Module 1','- Age 7-9 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month: October 2021\r\n- Student\'s Name: Nur Maisarah bte Asri\r\n\r\nSession :-\r\n\r\nSaturday 11:30am- 12:30pm (MAN0101)',70.0000,3.0000,'',0.000,107,NULL,NULL,'',0.000,1,0.00),(222,1,2,73,68,'2022-02-27 09:45:50','2022-02-27 09:45:50',NULL,'MAN101','BASIC MANDARIN FOR KIDS 1',210.0000,3.0000,'',0.000,108,NULL,NULL,'',0.000,1,0.00),(225,1,2,76,68,'2022-02-27 10:18:00','2022-02-27 10:18:00',NULL,'MAN101','BASIC MANDARIN FOR KIDS 1',70.0000,4.0000,'',0.000,111,NULL,NULL,'',0.000,1,0.00),(226,1,2,77,71,'2022-03-13 04:02:38','2022-03-13 04:02:38',NULL,'MAN102','BASIC MANDARIN FOR BEGINNERS LEVEL 2',75.0000,3.0000,'',0.000,112,NULL,NULL,'',0.000,1,0.00),(227,1,2,75,71,'2022-03-13 04:06:04','2022-03-13 04:06:04',NULL,'MAN102','BASIC MANDARIN FOR BEGINNERS LEVEL 2',100.0000,1.0000,'',0.000,113,NULL,NULL,'',0.000,1,0.00),(228,1,2,74,71,'2022-03-13 04:09:09','2022-03-13 04:09:09',NULL,'MAN102','BASIC MANDARIN FOR BEGINNERS LEVEL 2',75.0000,1.0000,'',0.000,114,NULL,NULL,'',0.000,1,0.00),(229,1,2,78,71,'2022-03-13 04:14:42','2022-03-13 04:14:42',NULL,'MAN102','BASIC MANDARIN FOR BEGINNERS LEVEL 2',100.0000,5.0000,'',0.000,115,NULL,NULL,'',0.000,1,0.00),(230,1,2,79,68,'2022-03-13 05:45:35','2022-03-13 05:45:35',NULL,'MAN101','BASIC MANDARIN FOR BEGINNERS LEVEL 1',100.0000,1.0000,'',0.000,116,NULL,NULL,'',0.000,1,0.00),(231,1,2,80,72,'2022-03-13 06:02:05','2022-03-13 06:02:05',NULL,'MAN101','BASIC MANDARIN FOR BEGINNERS LEVEL 1',100.0000,2.0000,'',0.000,117,NULL,NULL,'',0.000,1,0.00),(232,1,2,81,72,'2022-03-13 06:12:46','2022-03-13 06:12:46',NULL,'MAN101','BASIC MANDARIN FOR BEGINNERS LEVEL 1',100.0000,1.0000,'',0.000,118,NULL,NULL,'',0.000,1,0.00),(234,1,2,82,72,'2022-03-13 06:16:22','2022-03-13 06:16:22',NULL,'MAN101','BASIC MANDARIN FOR BEGINNERS LEVEL 1',100.0000,2.0000,'',0.000,119,NULL,NULL,'',0.000,1,0.00),(237,1,1,83,57,'2022-08-27 17:12:35','2022-08-27 17:12:35',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,120,NULL,NULL,'',0.000,1,0.00),(238,1,1,83,57,'2022-08-27 17:12:35','2022-08-27 17:12:35',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,121,NULL,NULL,'',0.000,1,0.00),(239,1,1,84,57,'2022-08-27 17:21:46','2022-08-27 17:21:46',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,122,NULL,NULL,'',0.000,1,0.00),(240,1,1,84,57,'2022-08-27 17:21:47','2022-08-27 17:21:47',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,123,NULL,NULL,'',0.000,1,0.00),(241,1,1,85,57,'2022-08-27 17:26:59','2022-08-27 17:26:59',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,124,NULL,NULL,'',0.000,1,0.00),(242,1,1,85,57,'2022-08-27 17:26:59','2022-08-27 17:26:59',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,125,NULL,NULL,'',0.000,1,0.00),(243,1,1,85,57,'2022-08-27 17:26:59','2022-08-27 17:26:59',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,126,NULL,NULL,'',0.000,1,0.00),(244,1,1,85,57,'2022-08-27 17:27:00','2022-08-27 17:27:00',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,127,NULL,NULL,'',0.000,1,0.00),(250,1,1,86,57,'2022-08-27 19:33:00','2022-08-27 19:33:00',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,128,NULL,NULL,'',0.000,1,0.00),(251,1,1,86,57,'2022-08-27 19:33:01','2022-08-27 19:33:01',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,129,NULL,NULL,'',0.000,1,0.00),(252,1,1,86,57,'2022-08-27 19:33:01','2022-08-27 19:33:01',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,130,NULL,NULL,'',0.000,1,0.00),(253,1,1,86,57,'2022-08-27 19:33:03','2022-08-27 19:33:03',NULL,'Testing','Testing',1.0000,1.0000,'',0.000,131,NULL,NULL,'',0.000,1,0.00),(254,1,1,86,57,'2022-08-27 19:33:05','2022-08-27 19:33:05',NULL,'Testing','Testing',1.0000,26.0000,'',0.000,132,NULL,NULL,'',0.000,1,0.00),(255,1,1,87,73,'2024-08-21 17:02:33','2024-08-21 17:02:33',NULL,'Computer','HONOR MagicBook X15 2022',2410.0000,1.0000,'',0.000,133,NULL,NULL,'',0.000,1,0.00),(256,1,1,88,57,'2024-08-21 17:42:44','2024-08-21 17:42:44',NULL,'Testing','Testing',1.0000,7.0000,'',0.000,134,NULL,NULL,'',0.000,1,0.00),(262,1,1,89,74,'2024-09-19 12:58:18','2024-09-19 12:58:18',NULL,'Latitude 3440 Laptop','12th Gen Intel® Core™ i5-1235U (12 MB cache, 10 cores, 12 threads, up to 4.4 GHz Turbo)\r\nWindows 11 Pro, English\r\nIntegrated Intel® Iris® Xe or UHD Graphics for i5-1235U Processor\r\n14\", FHD 1920x1080, 60Hz, WVA/IPS, Non-Touch, Anti-Glare, 250 nit, NTSC 45%, FHD Camera, WLAN\r\n8 GB: 1 x 8 GB, DDR4, 3200 MT/s\r\n512GB, M.2 2230, QLC PCIe Gen 4 NVMe\r\nIntel® Wi-Fi 6E AX211, 2x2, 802.11ax, Bluetooth® wireless card\r\nStereo speakers with Waves MaxxAudio® Pro, Realtek ALC3204 Audio Controller, 2 W x 2 = 4 W total\r\n1 USB 3.2 Gen 2 Type-C® port with DisplayPort Alt mode/Power Delivery\r\n2 USB 3.2 Gen 1 port\r\n1 USB 3.2 Gen 1 port with PowerShare\r\n1 HDMI 1.4 port\r\n1 universal audio port\r\n1 power-adapter port\r\n1 RJ-45 Ethernet port',4000.0000,1.0000,'',0.000,135,NULL,NULL,'',0.000,1,0.00),(263,1,1,89,75,'2024-09-19 12:58:18','2024-09-19 12:58:18',NULL,'Warranty','Manufacturer Warranty',0.0000,1.0000,'',0.000,136,NULL,NULL,'',0.000,1,0.00),(280,1,2,90,76,'2025-07-23 10:58:16','2025-07-23 10:58:16',NULL,'CPA','Fun gamers club NG MTN#1038',0.3500,1016.0000,'',0.000,143,NULL,NULL,'',0.000,1,0.00),(281,1,2,90,76,'2025-07-23 10:58:16','2025-07-23 10:58:16',NULL,'CPA','Fun gamers club NG MTN#1038',0.3500,1009.0000,'',0.000,144,NULL,NULL,'',0.000,1,0.00),(306,1,2,91,76,'2025-07-24 01:30:16','2025-07-24 01:30:16',NULL,'CPA','Fun gamers club NG MTN#1038',0.3500,2073.0000,'',0.000,145,NULL,NULL,'',0.000,1,0.00),(307,1,2,91,76,'2025-07-24 01:30:17','2025-07-24 01:30:17',NULL,'CPA','9jakids trivia NG MTN#1047',0.3500,2424.0000,'',0.000,146,NULL,NULL,'',0.000,1,0.00),(308,1,2,91,76,'2025-07-24 01:30:17','2025-07-24 01:30:17',NULL,'CPA','E-Limu NG MTN#1046',0.3500,16631.0000,'',0.000,147,NULL,NULL,'',0.000,1,10.00),(309,1,2,91,76,'2025-07-24 01:30:17','2025-07-24 01:30:17',NULL,'CPA','Wheel of Fortune MTN#1000',0.3500,0.0000,'',0.000,148,NULL,NULL,'',0.000,1,0.00);
/*!40000 ALTER TABLE `invoice_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `invoice_statuses`
--

DROP TABLE IF EXISTS `invoice_statuses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `invoice_statuses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `invoice_statuses`
--

LOCK TABLES `invoice_statuses` WRITE;
/*!40000 ALTER TABLE `invoice_statuses` DISABLE KEYS */;
INSERT INTO `invoice_statuses` (`id`, `name`) VALUES (1,'Draft'),(2,'Sent'),(3,'Viewed'),(4,'Approved'),(5,'Partial'),(6,'Paid');
/*!40000 ALTER TABLE `invoice_statuses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `invoices`
--

DROP TABLE IF EXISTS `invoices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `invoices` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `client_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `invoice_status_id` int(10) unsigned NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `invoice_number` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `discount` decimal(13,2) NOT NULL,
  `po_number` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `invoice_date` date DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `terms` text COLLATE utf8_unicode_ci NOT NULL,
  `public_notes` text COLLATE utf8_unicode_ci NOT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `is_recurring` tinyint(1) NOT NULL DEFAULT '0',
  `frequency_id` int(10) unsigned NOT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `last_sent_date` date DEFAULT NULL,
  `recurring_invoice_id` int(10) unsigned DEFAULT NULL,
  `tax_name1` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `tax_rate1` decimal(13,3) NOT NULL,
  `amount` decimal(13,2) NOT NULL,
  `balance` decimal(13,2) NOT NULL,
  `public_id` int(10) unsigned NOT NULL,
  `invoice_design_id` int(10) unsigned NOT NULL DEFAULT '1',
  `invoice_type_id` tinyint(1) NOT NULL DEFAULT '0',
  `quote_id` int(10) unsigned DEFAULT NULL,
  `quote_invoice_id` int(10) unsigned DEFAULT NULL,
  `custom_value1` decimal(13,2) NOT NULL DEFAULT '0.00',
  `custom_value2` decimal(13,2) NOT NULL DEFAULT '0.00',
  `custom_taxes1` tinyint(1) NOT NULL DEFAULT '0',
  `custom_taxes2` tinyint(1) NOT NULL DEFAULT '0',
  `is_amount_discount` tinyint(1) DEFAULT NULL,
  `invoice_footer` text COLLATE utf8_unicode_ci,
  `partial` decimal(13,2) DEFAULT NULL,
  `has_tasks` tinyint(1) NOT NULL DEFAULT '0',
  `auto_bill` tinyint(1) NOT NULL DEFAULT '0',
  `custom_text_value1` text COLLATE utf8_unicode_ci,
  `custom_text_value2` text COLLATE utf8_unicode_ci,
  `has_expenses` tinyint(1) NOT NULL DEFAULT '0',
  `tax_name2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `tax_rate2` decimal(13,3) NOT NULL,
  `client_enable_auto_bill` tinyint(1) NOT NULL DEFAULT '0',
  `is_public` tinyint(1) NOT NULL DEFAULT '0',
  `private_notes` text COLLATE utf8_unicode_ci,
  `partial_due_date` date DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `invoices_account_id_public_id_unique` (`account_id`,`public_id`),
  UNIQUE KEY `invoices_account_id_invoice_number_unique` (`account_id`,`invoice_number`),
  KEY `invoices_user_id_foreign` (`user_id`),
  KEY `invoices_invoice_status_id_foreign` (`invoice_status_id`),
  KEY `invoices_client_id_index` (`client_id`),
  KEY `invoices_account_id_index` (`account_id`),
  KEY `invoices_recurring_invoice_id_index` (`recurring_invoice_id`),
  KEY `invoices_public_id_index` (`public_id`),
  KEY `invoices_invoice_design_id_foreign` (`invoice_design_id`),
  CONSTRAINT `invoices_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `invoices_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
  CONSTRAINT `invoices_invoice_design_id_foreign` FOREIGN KEY (`invoice_design_id`) REFERENCES `invoice_designs` (`id`),
  CONSTRAINT `invoices_invoice_status_id_foreign` FOREIGN KEY (`invoice_status_id`) REFERENCES `invoice_statuses` (`id`),
  CONSTRAINT `invoices_recurring_invoice_id_foreign` FOREIGN KEY (`recurring_invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
  CONSTRAINT `invoices_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=92 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `invoices`
--

LOCK TABLES `invoices` WRITE;
/*!40000 ALTER TABLE `invoices` DISABLE KEYS */;
INSERT INTO `invoices` (`id`, `client_id`, `user_id`, `account_id`, `invoice_status_id`, `created_at`, `updated_at`, `deleted_at`, `invoice_number`, `discount`, `po_number`, `invoice_date`, `due_date`, `terms`, `public_notes`, `is_deleted`, `is_recurring`, `frequency_id`, `start_date`, `end_date`, `last_sent_date`, `recurring_invoice_id`, `tax_name1`, `tax_rate1`, `amount`, `balance`, `public_id`, `invoice_design_id`, `invoice_type_id`, `quote_id`, `quote_invoice_id`, `custom_value1`, `custom_value2`, `custom_taxes1`, `custom_taxes2`, `is_amount_discount`, `invoice_footer`, `partial`, `has_tasks`, `auto_bill`, `custom_text_value1`, `custom_text_value2`, `has_expenses`, `tax_name2`, `tax_rate2`, `client_enable_auto_bill`, `is_public`, `private_notes`, `partial_due_date`) VALUES (1,1,1,1,1,'2018-04-15 05:27:25','2018-04-15 05:40:50','2018-04-15 05:40:50','0001',0.00,'','2018-04-14','2018-04-30','','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,1700.00,1700.00,1,9,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(2,1,1,1,6,'2018-04-15 05:45:33','2018-05-14 18:39:46','2018-05-14 18:39:46','0002',0.00,'','2018-04-14','2018-04-30','','',1,0,0,NULL,NULL,NULL,NULL,'GST',6.000,3000.00,0.00,2,9,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(3,1,1,1,1,'2018-05-14 16:19:27','2018-05-14 18:39:34','2018-05-14 18:39:34','0003',0.00,'','2018-05-14','2018-05-31','','',1,0,0,NULL,NULL,'0000-00-00',NULL,'',0.000,3825.00,3825.00,3,5,2,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,'','',0,'',0.000,0,0,'',NULL),(4,1,1,1,1,'2018-05-14 19:40:05','2018-05-14 20:14:33','2018-05-14 20:14:33','2125',10.00,'','2018-05-14','2018-05-31','','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,3600.00,3600.00,4,5,2,NULL,5,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(5,1,1,1,1,'2018-05-14 19:42:05','2018-05-14 20:14:25','2018-05-14 20:14:25','0005',10.00,'','2018-05-14','2018-05-30','','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,3600.00,3600.00,5,5,1,4,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,0,NULL,NULL),(6,1,1,1,1,'2018-05-14 20:16:22','2018-05-14 20:16:44',NULL,'2521',10.00,'','2018-05-14','2018-05-31','','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,3600.00,3600.00,6,5,2,NULL,7,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(7,1,1,1,1,'2018-05-14 20:16:44','2018-05-14 20:18:25',NULL,'25213',10.00,'','2018-05-14','2018-05-30','','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,3600.00,3600.00,7,5,1,6,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(8,2,1,1,2,'2019-05-18 02:49:15','2020-09-24 02:49:10','2020-09-24 02:49:10','1558090155.876185',0.00,'37718','2019-05-17','1998-01-31','','',1,1,9,'2019-09-30','2030-09-30','2019-09-30',NULL,'',0.000,350.00,350.00,8,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,1,NULL,NULL,0,'',0.000,0,1,'',NULL),(9,3,1,1,3,'2019-07-12 23:30:29','2019-10-15 15:17:11','2019-10-15 15:17:11','5021',0.00,'','2019-07-12',NULL,'- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Prepayment is allow 3 time after completion development.\r\n- Payment : Cash / Cheque / Wire Transfer\r\n- Pay to MOBTEL HUB (Maybank : 564548148577)','Unpaid Quotation - 25354A 864046 (MYR 625)',1,0,0,NULL,NULL,'2019-07-12',NULL,'',0.000,500.00,500.00,9,5,2,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(10,3,1,1,5,'2019-07-13 04:49:10','2019-10-15 15:15:39','2019-10-15 15:15:39','864556',0.00,'864046','2018-10-02','2019-10-10','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Prepayment is allow 3 time after completion development.\r\n- Payment : Cash / Cheque / Wire Transfer\r\n- Pay to MOBTEL HUB (Maybank : 564548148577)','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,1650.00,1450.00,10,5,1,NULL,NULL,0.00,0.00,0,0,0,'',130.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(11,4,1,1,2,'2019-07-13 07:43:11','2019-07-13 08:05:18','2019-07-13 08:05:18','1001150',0.00,'','2019-06-26','2019-07-26','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Prepayment is allow 3 time after completion development.\r\n- Payment : Cash / Cheque / Wire Transfer\r\n- Pay to MOBTEL HUB (Maybank : 564548148577)','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,588.95,588.95,11,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,1,'',0.000,0,1,'',NULL),(12,4,1,1,2,'2019-07-13 08:02:56','2019-07-13 08:05:13','2019-07-13 08:05:13','35300000733',0.00,'','2019-06-30','2019-07-22','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer\r\n- Pay to MOBTEL HUB (Maybank : 564548148577)','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,963.34,963.34,12,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,1,'',0.000,0,1,'',NULL),(13,2,1,1,2,'2019-07-13 10:20:24','2019-07-13 10:21:04',NULL,'333947',0.00,'','2018-10-01','2018-11-01','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer\r\n- Pay to MOBTEL HUB (Maybank : 564548148577)','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,350.00,350.00,13,5,2,NULL,14,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(14,2,1,1,6,'2019-07-13 10:21:04','2019-07-13 10:23:13',NULL,'0013',0.00,'','2018-10-01','2018-11-01','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer\r\n- Pay to MOBTEL HUB (Maybank : 564548148577)','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,350.00,0.00,14,5,1,13,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(15,3,1,1,2,'2019-07-13 11:00:33','2019-10-15 15:16:55','2019-10-15 15:16:55','1562958033.614152',0.00,'','2019-07-13','1998-01-31','','',1,1,9,'2019-09-08','2030-09-08','2019-09-08',NULL,'',0.000,300.00,300.00,15,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,1,NULL,NULL,0,'',0.000,0,1,'',NULL),(16,4,1,1,6,'2019-07-14 10:04:39','2019-07-14 12:22:04','2019-07-14 12:22:04','0014',0.00,'','2019-07-14','2019-07-15','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer\r\n- Pay to MOBTEL HUB (Maybank : 564548148577)','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,3.03,0.00,16,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(17,4,1,1,6,'2019-07-14 10:20:41','2019-07-14 12:22:05','2019-07-14 12:22:05','0015',0.00,'','2019-07-14','2019-07-15','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer\r\n- Pay to MOBTEL HUB (Maybank : 564548148577)','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,3.26,0.00,17,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(18,4,1,1,6,'2019-07-14 10:30:40','2019-07-14 12:22:05','2019-07-14 12:22:05','0016',0.00,'','2019-07-14','2019-07-15','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer\r\n- Pay to MOBTEL HUB (Maybank : 564548148577)','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,3.24,0.00,18,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(19,4,1,1,2,'2019-07-14 11:26:59','2019-07-14 12:22:06','2019-07-14 12:22:06','0017',0.00,'','2019-07-14','2019-07-15','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer\r\n- Pay to MOBTEL HUB (Maybank : 564548148577)','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,3.05,3.05,19,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(20,4,1,1,2,'2019-07-14 11:59:07','2019-07-14 12:22:06','2019-07-14 12:22:06','0018',0.00,'','2019-07-14','2019-07-15','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer\r\n- Pay to MOBTEL HUB (Maybank : 564548148577)','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,3.12,3.12,20,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(21,4,1,1,2,'2019-07-14 12:28:54','2019-07-14 12:41:44','2019-07-14 12:41:44','0019',0.00,'','2019-07-14','2019-07-15','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer\r\n- Pay to MOBTEL HUB (Maybank : 564548148577)','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,1.00,1.00,21,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(22,4,2,1,3,'2019-07-14 13:10:01','2019-07-14 13:15:57','2019-07-14 13:15:57','0020',0.00,'','2019-07-14','2019-07-15','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer\r\n- Pay to MOBTEL HUB (Maybank : 564548148577)','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,1.00,1.00,22,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(23,4,2,1,2,'2019-07-14 13:16:25','2019-07-14 13:28:06','2019-07-14 13:28:06','0021',0.00,'','2019-07-14','2019-07-15','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer\r\n- Pay to MOBTEL HUB (Maybank : 564548148577)','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,3.12,3.12,23,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(24,4,1,1,2,'2019-07-15 04:45:48','2019-07-15 05:01:08','2019-07-15 05:01:08','25354I-873546',0.00,'','2019-07-14','2019-07-15','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,7.28,7.28,24,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(25,4,2,1,2,'2019-07-17 06:19:35','2019-07-17 06:43:30','2019-07-17 06:43:30','25354I-873547',0.00,'','2019-07-16','2019-07-17','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,3.24,3.24,25,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(26,4,1,1,2,'2019-07-18 09:08:51','2019-07-18 09:14:58','2019-07-18 09:14:58','25354I-873548',0.00,'','2019-07-18','2019-07-19','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,8.80,8.80,26,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(27,4,1,1,2,'2019-07-18 09:18:22','2019-07-18 09:20:44','2019-07-18 09:20:44','25354I-873549',0.00,'','2019-07-18','2019-07-19','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,5.05,5.05,27,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(28,4,1,1,2,'2019-07-18 10:09:21','2019-07-18 10:28:43','2019-07-18 10:28:43','25354I-873550',0.00,'','2019-07-18','2019-07-19','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,50.00,50.00,28,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(29,4,1,1,2,'2019-07-18 12:47:19','2019-07-18 12:52:03','2019-07-18 12:52:03','25354I-873551',0.00,'','2019-07-18','2019-07-19','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,10.00,10.00,29,5,1,NULL,NULL,0.00,0.00,0,0,0,'',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(30,4,1,1,2,'2019-07-23 23:18:45','2019-07-27 04:35:49','2019-07-27 04:35:49','25354I-873552',0.00,'','2019-07-23','2019-08-22','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,1.00,1.00,30,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(31,3,1,1,2,'2019-09-08 23:43:11','2019-10-15 15:15:31','2019-10-15 15:15:31','R25354I-873553',0.00,'','2019-09-08','2019-09-30','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',1,0,0,NULL,NULL,'2019-09-08',15,'',0.000,300.00,300.00,31,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',NULL,0,0,'','',0,'',0.000,0,1,NULL,NULL),(32,2,1,1,6,'2019-09-30 23:43:34','2019-10-03 08:54:21',NULL,'R25354I-873554',0.00,'37718','2019-09-30','2019-10-31','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',0,0,0,NULL,NULL,'2019-09-30',8,'',0.000,350.00,0.00,32,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,'','',0,'',0.000,0,1,'',NULL),(33,4,1,1,6,'2019-10-14 06:23:58','2019-10-14 06:35:27',NULL,'25354I-873555',0.00,'','2019-10-13','2019-11-12','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,2.00,0.00,33,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(34,4,1,1,2,'2019-10-15 15:22:14','2019-10-15 16:13:36','2019-10-15 16:13:36','25354I-873556',0.00,'','2019-10-15','2019-11-13','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,0.50,0.50,34,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(35,4,1,1,2,'2019-10-15 16:59:01','2019-10-15 17:00:13','2019-10-15 17:00:13','25354I-873557',0.00,'','2019-10-15','2019-11-14','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,2.00,2.00,35,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(36,4,1,1,6,'2019-10-21 07:53:05','2019-10-21 07:54:02',NULL,'25354I-873558',0.00,'','2019-10-20','2019-11-19','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,12.00,0.00,36,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(37,4,1,1,6,'2019-10-21 07:58:47','2019-10-21 07:59:32',NULL,'25354I-873559',0.00,'','2019-10-20','2019-11-19','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,4.00,0.00,37,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(38,4,1,1,6,'2019-10-21 08:03:44','2019-10-21 08:04:30',NULL,'25354I-873560',0.00,'','2019-10-21','2019-11-19','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,7.90,0.00,38,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(39,2,1,1,1,'2021-08-17 22:47:54','2021-08-17 22:48:06','2021-08-17 22:48:06','25354I-873561',10.00,'','2021-09-01','2021-09-30','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Payment : Cash / Cheque / Wire Transfer / Credit Card (Visa/MasterCard) / PayPal / Bitcoin','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,0.00,0.00,39,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(40,2,1,1,1,'2021-08-17 23:13:30','2021-08-17 23:21:59','2021-08-17 23:21:59','25354I-873562',10.00,'','2021-09-01','2021-09-30','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\nBank Address                     : 9, Jalan 3/76D,\r\n                                                Desa Pandan, 55100, \r\n                                                Kuala Lumpur, Malaysia.\r\n\r\nMake all cheques payable to MOBTEL HUB','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,350.00,350.00,40,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(41,2,1,1,6,'2021-08-17 23:26:32','2021-08-20 08:39:23',NULL,'25354I-873563',10.00,'','2021-09-01','2021-09-30','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\nBank Address                     : 9, Jalan 3/76D, Desa Pandan, 55100, Kuala Lumpur, Malaysia.\r\n\r\nMake all cheques payable to MOBTEL HUB','',0,0,0,NULL,NULL,'2021-08-17',NULL,'',0.000,350.00,0.00,41,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(42,4,1,1,6,'2021-08-19 10:14:40','2021-08-19 10:18:44',NULL,'25354I-873564',0.00,'','2021-08-19','2021-09-18','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\nBank Address                     : 9, Jalan 3/76D, Desa Pandan, 55100, Kuala Lumpur, Malaysia.\r\n\r\nMake all cheques payable to MOBTEL HUB','',0,0,0,NULL,NULL,'2021-08-19',NULL,'',0.000,3.73,0.00,42,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(43,2,1,1,6,'2021-08-19 10:45:15','2021-08-19 10:47:29',NULL,'25354I-873565',0.00,'','2020-09-24','2020-09-24','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\nBank Address                     : 9, Jalan 3/76D, Desa Pandan, 55100, Kuala Lumpur, Malaysia.\r\n\r\nMake all cheques payable to MOBTEL HUB','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,355.00,0.00,43,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(44,4,2,1,6,'2021-09-02 20:04:52','2021-09-02 20:26:04','2021-09-02 20:26:04','25354I-873566',0.00,'','2021-09-02','2021-10-02','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nMake all cheques payable to MOBTEL HUB','',1,0,0,NULL,NULL,'2021-09-02',NULL,'',0.000,71.00,0.00,44,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(45,4,2,1,6,'2021-09-02 21:29:42','2021-09-02 21:38:59','2021-09-02 21:38:59','25354I-873567',0.00,'','2021-09-02','2021-10-02','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,'2021-09-02',NULL,'',0.000,140.00,0.00,45,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(46,4,2,1,6,'2021-09-02 23:10:00','2021-09-03 00:40:54','2021-09-03 00:40:54','25354I-873568',0.00,'','2021-09-02','2021-10-02','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,'2021-09-02',NULL,'',0.000,140.00,0.00,46,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(47,4,2,1,2,'2021-09-02 23:44:05','2021-09-03 00:40:48','2021-09-03 00:40:48','25354I-873569',0.00,'','2021-09-02','2021-10-02','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,70.00,70.00,47,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(48,7,2,1,6,'2021-09-09 17:44:02','2021-09-10 18:22:34',NULL,'25354I-873570',0.00,'','2021-09-09','2021-10-09','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,'2021-09-09',NULL,'',0.000,100.00,0.00,48,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(49,8,2,1,6,'2021-09-09 17:56:52','2021-09-10 18:20:44',NULL,'25354I-873571',0.00,'','2021-09-09','2021-10-09','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,'2021-09-09',NULL,'',0.000,380.00,0.00,49,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(50,9,2,1,6,'2021-09-09 18:02:39','2021-09-10 18:23:32',NULL,'25354I-873572',0.00,'','2021-09-09','2021-10-09','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,'2021-09-09',NULL,'',0.000,100.00,0.00,50,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(51,10,2,1,6,'2021-09-09 18:08:33','2021-10-12 14:19:26',NULL,'25354I-873573',0.00,'','2021-09-09','2021-10-09','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,'2021-09-09',NULL,'',0.000,100.00,0.00,51,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(52,11,2,1,6,'2021-09-09 18:14:37','2021-09-10 18:25:28',NULL,'25354I-873574',0.00,'','2021-09-09','2021-10-09','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,'2021-09-09',NULL,'',0.000,92.00,0.00,52,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(53,10,2,1,1,'2021-10-12 14:25:46','2021-10-12 20:03:09','2021-10-12 20:03:09','25354I-873575',0.00,'','2021-10-12','2021-11-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,70.00,70.00,53,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(54,12,2,1,1,'2021-10-12 15:29:13','2021-10-12 20:03:03','2021-10-12 20:03:03','25354I-873576',0.00,'','2021-10-12','2021-11-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,100.00,100.00,54,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(55,7,2,1,1,'2021-10-12 18:36:33','2021-10-12 20:02:55','2021-10-12 20:02:55','25354I-873577',0.00,'','2021-10-12','2021-11-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,70.00,70.00,55,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(56,9,2,1,1,'2021-10-12 18:43:09','2021-10-12 20:02:48','2021-10-12 20:02:48','25354I-873578',0.00,'','2021-10-12','2021-11-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,70.00,70.00,56,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(57,13,2,1,1,'2021-10-12 19:21:22','2021-10-12 20:02:37','2021-10-12 20:02:37','25354I-873579',0.00,'','2021-10-12','2021-11-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,100.00,100.00,57,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(58,10,2,1,6,'2021-10-12 20:04:35','2021-10-12 20:06:54',NULL,'25354I-873580',0.00,'','2021-10-12','2021-11-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,70.00,0.00,58,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(59,12,2,1,6,'2021-10-12 20:08:40','2021-10-12 20:09:35',NULL,'25354I-873581',0.00,'','2021-10-12','2021-11-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,100.00,0.00,59,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(60,7,2,1,6,'2021-10-12 20:11:44','2021-10-12 20:12:50',NULL,'25354I-873582',0.00,'','2021-10-12','2021-11-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,70.00,0.00,60,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(61,9,2,1,6,'2021-10-12 20:14:36','2021-10-12 20:14:55',NULL,'25354I-873583',0.00,'','2021-10-12','2021-11-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,70.00,0.00,61,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(62,13,2,1,6,'2021-10-12 20:18:14','2021-10-12 20:18:39',NULL,'25354I-873584',0.00,'','2021-10-12','2021-11-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,100.00,0.00,62,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(63,11,2,1,6,'2021-10-12 20:22:10','2021-10-12 20:22:26',NULL,'25354I-873585',0.00,'','2021-10-12','2021-11-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,93.00,0.00,63,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(64,14,2,1,6,'2021-10-12 20:33:27','2021-10-12 20:34:00',NULL,'25354I-873586',0.00,'','2021-10-12','2021-11-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','September & October Fees',0,0,0,NULL,NULL,NULL,NULL,'',0.000,140.00,0.00,64,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(65,15,2,1,6,'2021-10-12 20:45:50','2021-10-12 20:47:52',NULL,'25354I-873587',0.00,'','2021-09-09','2021-10-09','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','September Fees',0,0,0,NULL,NULL,NULL,NULL,'',0.000,200.00,0.00,65,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(66,15,2,1,1,'2021-10-12 20:49:18','2024-09-19 12:10:36','2024-09-19 12:10:36','25354I-873588',0.00,'','2021-10-12','2021-11-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,140.00,140.00,66,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(67,16,2,1,6,'2021-10-12 20:58:05','2021-10-12 20:59:59',NULL,'25354I-873589',0.00,'','2021-09-11','2021-10-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','September fee',0,0,0,NULL,NULL,NULL,NULL,'',0.000,92.00,0.00,67,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(68,16,2,1,1,'2021-10-12 21:01:38','2024-09-19 12:10:37','2024-09-19 12:10:37','25354I-873590',0.00,'','2021-10-12','2021-11-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,70.00,70.00,68,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(69,17,2,1,6,'2021-10-21 15:44:13','2021-10-21 15:46:10',NULL,'25354I-873591',0.00,'','2021-10-12','2021-11-20','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,290.00,0.00,69,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(70,18,1,1,6,'2021-12-14 10:45:24','2021-12-14 10:46:21',NULL,'25354I-873592',0.00,'','2020-05-12','2020-05-12','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,2619.00,0.00,70,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(71,17,2,1,6,'2022-02-27 04:23:35','2024-09-19 12:10:56','2024-09-19 12:10:56','25354I-873593',0.00,'','2021-11-01','2022-01-31','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,210.00,-630.00,71,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(72,17,2,1,1,'2022-02-27 04:32:32','2024-09-19 12:10:37','2024-09-19 12:10:37','25354I-873594',0.00,'','2021-10-01','2022-01-31','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,840.00,840.00,72,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(73,17,2,1,1,'2022-02-27 09:45:49','2024-09-19 12:10:37','2024-09-19 12:10:37','25354I-873595',0.00,'','2021-11-01','2022-01-31','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,630.00,630.00,73,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(74,10,2,1,1,'2022-02-27 10:02:55','2024-09-19 12:10:37','2024-09-19 12:10:37','25354I-873596',0.00,'','2022-03-01','2022-04-01','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,75.00,75.00,74,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(75,13,2,1,1,'2022-02-27 10:11:27','2024-09-19 12:10:38','2024-09-19 12:10:38','25354I-873597',0.00,'','2022-03-11','2022-04-01','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,100.00,100.00,75,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(76,16,2,1,1,'2022-02-27 10:17:59','2024-09-19 12:10:38','2024-09-19 12:10:38','25354I-873598',0.00,'','2021-10-01','2022-01-31','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,280.00,280.00,76,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(77,20,2,1,1,'2022-03-13 04:02:36','2024-09-19 12:10:38','2024-09-19 12:10:38','25354I-873599',0.00,'','2022-03-04','2022-04-01','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,225.00,225.00,77,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(78,8,2,1,1,'2022-03-13 04:14:33','2024-09-19 12:10:39','2024-09-19 12:10:39','25354I-873600',0.00,'','2022-03-01','2022-07-31','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,500.00,500.00,78,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(79,21,2,1,1,'2022-03-13 05:45:31','2024-09-19 12:10:39','2024-09-19 12:10:39','25354I-873601',0.00,'','2022-02-28','2022-04-01','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,100.00,100.00,79,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(80,22,2,1,1,'2022-03-13 06:02:04','2024-09-19 12:10:39','2024-09-19 12:10:39','25354I-873602',0.00,'','2022-03-09','2022-07-31','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,200.00,200.00,80,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(81,24,2,1,1,'2022-03-13 06:12:45','2024-09-19 12:10:39','2024-09-19 12:10:39','25354I-873603',0.00,'','2022-03-05','2022-04-01','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,100.00,100.00,81,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(82,24,2,1,1,'2022-03-13 06:15:49','2024-09-19 12:10:40','2024-09-19 12:10:40','25354I-873604',0.00,'','2022-03-05','2022-04-01','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,NULL,NULL,'',0.000,200.00,200.00,82,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,0,'',NULL),(83,4,1,1,3,'2022-08-27 17:11:54','2022-08-27 17:20:30','2022-08-27 17:20:30','25354I-873605',0.00,'','2022-08-28','2022-09-26','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,'2022-08-27',NULL,'',0.000,2.00,2.00,83,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(84,4,1,1,3,'2022-08-27 17:21:46','2022-08-27 17:26:23','2022-08-27 17:26:23','25354I-873606',0.00,'','2022-08-28','2022-09-26','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,'2022-08-27',NULL,'',0.000,2.00,2.00,84,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(85,4,1,1,3,'2022-08-27 17:26:59','2024-09-19 12:09:38','2024-09-19 12:09:38','25354I-873607',0.00,'','2022-08-28','2022-09-26','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,'2022-08-27',NULL,'',0.000,4.00,4.00,85,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(86,4,1,1,3,'2022-08-27 19:01:43','2024-09-19 12:09:32','2024-09-19 12:09:32','25354I-873608',0.00,'','2022-08-28','2022-09-26','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',1,0,0,NULL,NULL,'2022-08-27',NULL,'',0.000,30.00,30.00,86,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(87,18,1,1,6,'2024-08-21 17:02:33','2024-08-21 17:03:29',NULL,'25354I-873609',0.00,'','2023-04-08','2023-04-08','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,2410.00,0.00,87,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(88,4,1,1,6,'2024-08-21 17:42:44','2024-08-21 17:46:05',NULL,'25354I-873610',0.00,'','2024-08-22','2024-09-20','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,'2024-08-21',NULL,'',0.000,7.00,0.00,88,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(89,26,1,1,5,'2024-09-19 12:37:03','2024-09-19 13:02:44',NULL,'25354I-873611',0.00,'','2024-09-19','2024-10-11','- Ordered items are subject to availability.\r\n- Goods sold are neither returnable nor refundable.\r\n- Price is subject to change without any notice.\r\n- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at sales@m-hub.asia','',0,0,0,NULL,NULL,NULL,NULL,'',0.000,4000.00,2000.00,89,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(90,27,2,1,6,'2025-06-10 03:43:51','2025-07-23 10:58:16',NULL,'25354I-873612',0.00,'','2025-06-10','2025-07-10','- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at khediryaakub@mobtelhub.com','',0,0,0,NULL,NULL,'2025-06-10',NULL,'',0.000,708.75,0.00,90,5,1,NULL,NULL,0.00,0.00,0,0,1,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL),(91,27,2,1,2,'2025-07-19 01:59:58','2025-07-24 01:30:24',NULL,'25354I-873613',0.00,'','2025-07-19','2025-08-18','- Card payment are accepted upon request.\r\n\r\nPlease Transfer To:\r\nBank Name                         : Malayan Banking Bhd\r\nAccount Name                   : MOBTEL HUB\r\nBank Account Number     : 564548148577\r\nSwift Code                          : MBBEMYKL\r\n\r\nPlease send to us payment advice at khediryaakub@mobtelhub.com','E-Limu NG MTN (Ref: #1046):\r\nA 10% discount has been applied to the total service amount.\r\nOriginal amount: USD 5,820.85\r\nDiscounted amount (after 10% deduction): USD 5,238.77',0,0,0,NULL,NULL,'2025-07-24',NULL,'',0.000,6812.72,6812.72,91,5,1,NULL,NULL,0.00,0.00,0,0,0,'This is a computer generated document. No signature is required.',0.00,0,0,NULL,NULL,0,'',0.000,0,1,'',NULL);
/*!40000 ALTER TABLE `invoices` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jobs`
--

DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `queue` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `payload` longtext COLLATE utf8_unicode_ci NOT NULL,
  `attempts` tinyint(3) unsigned NOT NULL,
  `reserved_at` int(10) unsigned DEFAULT NULL,
  `available_at` int(10) unsigned NOT NULL,
  `created_at` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `jobs_queue_reserved_at_index` (`queue`,`reserved_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jobs`
--

LOCK TABLES `jobs` WRITE;
/*!40000 ALTER TABLE `jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `jobs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `languages`
--

DROP TABLE IF EXISTS `languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `languages` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `locale` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `languages`
--

LOCK TABLES `languages` WRITE;
/*!40000 ALTER TABLE `languages` DISABLE KEYS */;
INSERT INTO `languages` (`id`, `name`, `locale`) VALUES (1,'English','en'),(2,'Italian','it'),(3,'German','de'),(4,'French','fr'),(5,'Portuguese - Brazilian','pt_BR'),(6,'Dutch','nl'),(7,'Spanish','es'),(8,'Norwegian','nb_NO'),(9,'Danish','da'),(10,'Japanese','ja'),(11,'Swedish','sv'),(12,'Spanish - Spain','es_ES'),(13,'French - Canada','fr_CA'),(14,'Lithuanian','lt'),(15,'Polish','pl'),(16,'Czech','cs'),(17,'Croatian','hr'),(18,'Albanian','sq'),(19,'Greek','el'),(20,'English - United Kingdom','en_GB'),(21,'Portuguese - Portugal','pt_PT'),(22,'Slovenian','sl'),(23,'Finnish','fi'),(24,'Romanian','ro'),(25,'Turkish - Turkey','tr_TR'),(26,'Thai','th'),(27,'Macedonian','mk_MK'),(28,'Chinese - Taiwan','zh_TW'),(29,'English - Australia','en_AU'),(30,'Serbian','sr_RS'),(31,'Bulgarian','bg'),(32,'Russian','ru_RU');
/*!40000 ALTER TABLE `languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `licenses`
--

DROP TABLE IF EXISTS `licenses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `licenses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `affiliate_id` int(10) unsigned DEFAULT NULL,
  `first_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `last_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `license_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `is_claimed` tinyint(1) DEFAULT NULL,
  `transaction_reference` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `licenses_license_key_unique` (`license_key`),
  KEY `licenses_affiliate_id_foreign` (`affiliate_id`),
  CONSTRAINT `licenses_affiliate_id_foreign` FOREIGN KEY (`affiliate_id`) REFERENCES `affiliates` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `licenses`
--

LOCK TABLES `licenses` WRITE;
/*!40000 ALTER TABLE `licenses` DISABLE KEYS */;
/*!40000 ALTER TABLE `licenses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lookup_account_tokens`
--

DROP TABLE IF EXISTS `lookup_account_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lookup_account_tokens` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `lookup_account_id` int(10) unsigned NOT NULL,
  `token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `lookup_tokens_token_unique` (`token`),
  KEY `lookup_tokens_lookup_account_id_index` (`lookup_account_id`),
  CONSTRAINT `lookup_tokens_lookup_account_id_foreign` FOREIGN KEY (`lookup_account_id`) REFERENCES `lookup_accounts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lookup_account_tokens`
--

LOCK TABLES `lookup_account_tokens` WRITE;
/*!40000 ALTER TABLE `lookup_account_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `lookup_account_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lookup_accounts`
--

DROP TABLE IF EXISTS `lookup_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lookup_accounts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `lookup_company_id` int(10) unsigned NOT NULL,
  `account_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `subdomain` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `lookup_accounts_account_key_unique` (`account_key`),
  UNIQUE KEY `lookup_accounts_subdomain_unique` (`subdomain`),
  KEY `lookup_accounts_lookup_company_id_index` (`lookup_company_id`),
  CONSTRAINT `lookup_accounts_lookup_company_id_foreign` FOREIGN KEY (`lookup_company_id`) REFERENCES `lookup_companies` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lookup_accounts`
--

LOCK TABLES `lookup_accounts` WRITE;
/*!40000 ALTER TABLE `lookup_accounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `lookup_accounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lookup_companies`
--

DROP TABLE IF EXISTS `lookup_companies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lookup_companies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `db_server_id` int(10) unsigned NOT NULL,
  `company_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `lookup_companies_db_server_id_company_id_unique` (`db_server_id`,`company_id`),
  KEY `lookup_companies_company_id_index` (`company_id`),
  CONSTRAINT `lookup_companies_db_server_id_foreign` FOREIGN KEY (`db_server_id`) REFERENCES `db_servers` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lookup_companies`
--

LOCK TABLES `lookup_companies` WRITE;
/*!40000 ALTER TABLE `lookup_companies` DISABLE KEYS */;
/*!40000 ALTER TABLE `lookup_companies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lookup_contacts`
--

DROP TABLE IF EXISTS `lookup_contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lookup_contacts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `lookup_account_id` int(10) unsigned NOT NULL,
  `contact_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `lookup_contacts_contact_key_unique` (`contact_key`),
  KEY `lookup_contacts_lookup_account_id_index` (`lookup_account_id`),
  CONSTRAINT `lookup_contacts_lookup_account_id_foreign` FOREIGN KEY (`lookup_account_id`) REFERENCES `lookup_accounts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lookup_contacts`
--

LOCK TABLES `lookup_contacts` WRITE;
/*!40000 ALTER TABLE `lookup_contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `lookup_contacts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lookup_invitations`
--

DROP TABLE IF EXISTS `lookup_invitations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lookup_invitations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `lookup_account_id` int(10) unsigned NOT NULL,
  `invitation_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `message_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `lookup_invitations_invitation_key_unique` (`invitation_key`),
  UNIQUE KEY `lookup_invitations_message_id_unique` (`message_id`),
  KEY `lookup_invitations_lookup_account_id_index` (`lookup_account_id`),
  CONSTRAINT `lookup_invitations_lookup_account_id_foreign` FOREIGN KEY (`lookup_account_id`) REFERENCES `lookup_accounts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lookup_invitations`
--

LOCK TABLES `lookup_invitations` WRITE;
/*!40000 ALTER TABLE `lookup_invitations` DISABLE KEYS */;
/*!40000 ALTER TABLE `lookup_invitations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lookup_proposal_invitations`
--

DROP TABLE IF EXISTS `lookup_proposal_invitations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lookup_proposal_invitations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `lookup_account_id` int(10) unsigned NOT NULL,
  `invitation_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `message_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `lookup_proposal_invitations_invitation_key_unique` (`invitation_key`),
  UNIQUE KEY `lookup_proposal_invitations_message_id_unique` (`message_id`),
  KEY `lookup_proposal_invitations_lookup_account_id_index` (`lookup_account_id`),
  CONSTRAINT `lookup_proposal_invitations_lookup_account_id_foreign` FOREIGN KEY (`lookup_account_id`) REFERENCES `lookup_accounts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lookup_proposal_invitations`
--

LOCK TABLES `lookup_proposal_invitations` WRITE;
/*!40000 ALTER TABLE `lookup_proposal_invitations` DISABLE KEYS */;
/*!40000 ALTER TABLE `lookup_proposal_invitations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lookup_users`
--

DROP TABLE IF EXISTS `lookup_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lookup_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `lookup_account_id` int(10) unsigned NOT NULL,
  `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `confirmation_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `oauth_user_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `referral_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `lookup_users_lookup_account_id_user_id_unique` (`lookup_account_id`,`user_id`),
  UNIQUE KEY `lookup_users_email_unique` (`email`),
  UNIQUE KEY `lookup_users_confirmation_code_unique` (`confirmation_code`),
  UNIQUE KEY `lookup_users_oauth_user_key_unique` (`oauth_user_key`),
  UNIQUE KEY `lookup_users_referral_code_unique` (`referral_code`),
  KEY `lookup_users_lookup_account_id_index` (`lookup_account_id`),
  KEY `lookup_users_user_id_index` (`user_id`),
  CONSTRAINT `lookup_users_lookup_account_id_foreign` FOREIGN KEY (`lookup_account_id`) REFERENCES `lookup_accounts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lookup_users`
--

LOCK TABLES `lookup_users` WRITE;
/*!40000 ALTER TABLE `lookup_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `lookup_users` 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 = utf8 */;
CREATE TABLE `migrations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `batch` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=118 DEFAULT CHARSET=utf8 COLLATE=utf8_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` (`id`, `migration`, `batch`) VALUES (1,'2013_11_05_180133_confide_setup_users_table',1),(2,'2013_11_28_195703_setup_countries_table',1),(3,'2014_02_13_151500_add_cascase_drops',1),(4,'2014_02_19_151817_add_support_for_invoice_designs',1),(5,'2014_03_03_155556_add_phone_to_account',1),(6,'2014_03_19_201454_add_language_support',1),(7,'2014_03_20_200300_create_payment_libraries',1),(8,'2014_03_23_051736_enable_forcing_jspdf',1),(9,'2014_03_25_102200_add_sort_and_recommended_to_gateways',1),(10,'2014_04_03_191105_add_pro_plan',1),(11,'2014_04_17_100523_add_remember_token',1),(12,'2014_04_17_145108_add_custom_fields',1),(13,'2014_04_23_170909_add_products_settings',1),(14,'2014_04_29_174315_add_advanced_settings',1),(15,'2014_05_17_175626_add_quotes',1),(16,'2014_06_17_131940_add_accepted_credit_cards_to_account_gateways',1),(17,'2014_07_13_142654_one_click_install',1),(18,'2014_07_17_205900_support_hiding_quantity',1),(19,'2014_07_24_171214_add_zapier_support',1),(20,'2014_10_01_141248_add_company_vat_number',1),(21,'2014_10_05_141856_track_last_seen_message',1),(22,'2014_10_06_103529_add_timesheets',1),(23,'2014_10_06_195330_add_invoice_design_table',1),(24,'2014_10_13_054100_add_invoice_number_settings',1),(25,'2014_10_14_225227_add_danish_translation',1),(26,'2014_10_22_174452_add_affiliate_price',1),(27,'2014_10_30_184126_add_company_id_number',1),(28,'2014_11_04_200406_allow_null_client_currency',1),(29,'2014_12_03_154119_add_discount_type',1),(30,'2015_02_12_102940_add_email_templates',1),(31,'2015_02_17_131714_support_token_billing',1),(32,'2015_02_27_081836_add_invoice_footer',1),(33,'2015_03_03_140259_add_tokens',1),(34,'2015_03_09_151011_add_ip_to_activity',1),(35,'2015_03_15_174122_add_pdf_email_attachment_option',1),(36,'2015_03_30_100000_create_password_resets_table',1),(37,'2015_04_12_093447_add_sv_language',1),(38,'2015_04_13_100333_add_notify_approved',1),(39,'2015_04_16_122647_add_partial_amount_to_invoices',1),(40,'2015_05_21_184104_add_font_size',1),(41,'2015_05_27_121828_add_tasks',1),(42,'2015_05_27_170808_add_custom_invoice_labels',1),(43,'2015_06_09_134208_add_has_tasks_to_invoices',1),(44,'2015_06_14_093410_enable_resuming_tasks',1),(45,'2015_06_14_173025_multi_company_support',1),(46,'2015_07_07_160257_support_locking_account',1),(47,'2015_07_08_114333_simplify_tasks',1),(48,'2015_07_19_081332_add_custom_design',1),(49,'2015_07_27_183830_add_pdfmake_support',1),(50,'2015_08_13_084041_add_formats_to_datetime_formats_table',1),(51,'2015_09_04_080604_add_swap_postal_code',1),(52,'2015_09_07_135935_add_account_domain',1),(53,'2015_09_10_185135_add_reminder_emails',1),(54,'2015_10_07_135651_add_social_login',1),(55,'2015_10_21_075058_add_default_tax_rates',1),(56,'2015_10_21_185724_add_invoice_number_pattern',1),(57,'2015_10_27_180214_add_is_system_to_activities',1),(58,'2015_10_29_133747_add_default_quote_terms',1),(59,'2015_11_01_080417_encrypt_tokens',1),(60,'2015_11_03_181318_improve_currency_localization',1),(61,'2015_11_30_133206_add_email_designs',1),(62,'2015_12_27_154513_add_reminder_settings',1),(63,'2015_12_30_042035_add_client_view_css',1),(64,'2016_01_04_175228_create_vendors_table',1),(65,'2016_01_06_153144_add_invoice_font_support',1),(66,'2016_01_17_155725_add_quote_to_invoice_option',1),(67,'2016_01_18_195351_add_bank_accounts',1),(68,'2016_01_24_112646_add_bank_subaccounts',1),(69,'2016_01_27_173015_add_header_footer_option',1),(70,'2016_02_01_135956_add_source_currency_to_expenses',1),(71,'2016_02_25_152948_add_client_password',1),(72,'2016_02_28_081424_add_custom_invoice_fields',1),(73,'2016_03_14_066181_add_user_permissions',1),(74,'2016_03_14_214710_add_support_three_decimal_taxes',1),(75,'2016_03_22_168362_add_documents',1),(76,'2016_03_23_215049_support_multiple_tax_rates',1),(77,'2016_04_16_103943_enterprise_plan',1),(78,'2016_04_18_174135_add_page_size',1),(79,'2016_04_23_182223_payments_changes',1),(80,'2016_05_16_102925_add_swap_currency_symbol_to_currency',1),(81,'2016_05_18_085739_add_invoice_type_support',1),(82,'2016_05_24_164847_wepay_ach',1),(83,'2016_07_08_083802_support_new_pricing',1),(84,'2016_07_13_083821_add_buy_now_buttons',1),(85,'2016_08_10_184027_add_support_for_bots',1),(86,'2016_09_05_150625_create_gateway_types',1),(87,'2016_10_20_191150_add_expense_to_activities',1),(88,'2016_11_03_113316_add_invoice_signature',1),(89,'2016_11_03_161149_add_bluevine_fields',1),(90,'2016_11_28_092904_add_task_projects',1),(91,'2016_12_13_113955_add_pro_plan_discount',1),(92,'2017_01_01_214241_add_inclusive_taxes',1),(93,'2017_02_23_095934_add_custom_product_fields',1),(94,'2017_03_16_085702_add_gateway_fee_location',1),(95,'2017_04_16_101744_add_custom_contact_fields',1),(96,'2017_04_30_174702_add_multiple_database_support',1),(97,'2017_05_10_144928_add_oauth_to_lookups',1),(98,'2017_05_16_101715_add_default_note_to_client',1),(99,'2017_06_19_111515_update_dark_mode',1),(100,'2017_07_18_124150_add_late_fees',1),(101,'2017_08_14_085334_increase_precision',1),(102,'2017_10_17_083846_add_default_rates',1),(103,'2017_11_15_114422_add_subdomain_to_lookups',1),(104,'2017_12_13_074024_add_remember_2fa_token',1),(105,'2018_01_10_073825_add_subscription_format',1),(106,'2018_03_08_150414_add_slack_notifications',1),(107,'2018_03_30_115805_add_more_custom_fields',2),(108,'2018_04_16_142434_add_custom_domain',2),(109,'2018_05_14_091806_limit_notifications',3),(110,'2018_05_19_095124_add_json_permissions',3),(111,'2018_06_29_110607_add_dart_format_column',3),(112,'2018_07_26_170243_fix_payment_contact_foreign_key',4),(113,'2018_10_22_084326_add_option_for_product_notes',5),(114,'2019_08_27_074711_add_app_store_order_id',6),(115,'2021_01_22_101548_remove_cyber_source_gateway',7),(116,'2021_06_22_234707_add_forward_url_for_v5',8),(117,'2021_07_24_002820_add_migration_flag_for_companies_table',9);
/*!40000 ALTER TABLE `migrations` 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 = utf8 */;
CREATE TABLE `password_resets` (
  `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `token` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_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` (`email`, `created_at`, `updated_at`, `token`) VALUES ('richard@tepatconsult.com','2021-08-17 23:44:52',NULL,'$2y$10$kLsilqsNGu2wPTMCH/C/2ePHjL2BxV7a/BLIIdRE3vQGA.Z9P7qPm'),('richard.j.rankin@gmail.com','2021-08-18 15:24:46',NULL,'$2y$10$qTyDHP9II41wQfkp3egIqOiri9rJsw8yPCQO.9fdz1i12Dz82c/sK');
/*!40000 ALTER TABLE `password_resets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_libraries`
--

DROP TABLE IF EXISTS `payment_libraries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_libraries` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `visible` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_libraries`
--

LOCK TABLES `payment_libraries` WRITE;
/*!40000 ALTER TABLE `payment_libraries` DISABLE KEYS */;
INSERT INTO `payment_libraries` (`id`, `created_at`, `updated_at`, `name`, `visible`) VALUES (1,'2018-04-15 19:25:16','2018-04-15 19:25:16','Omnipay',1),(2,'2018-04-15 19:25:16','2018-04-15 19:25:16','PHP-Payments [Deprecated]',1);
/*!40000 ALTER TABLE `payment_libraries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_methods`
--

DROP TABLE IF EXISTS `payment_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_methods` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `contact_id` int(10) unsigned DEFAULT NULL,
  `account_gateway_token_id` int(10) unsigned DEFAULT NULL,
  `payment_type_id` int(10) unsigned NOT NULL,
  `source_reference` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `routing_number` int(10) unsigned DEFAULT NULL,
  `last4` smallint(5) unsigned DEFAULT NULL,
  `expiration` date DEFAULT NULL,
  `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `currency_id` int(10) unsigned DEFAULT NULL,
  `status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `public_id` int(10) unsigned NOT NULL,
  `bank_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `ip` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `payment_methods_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `payment_methods_public_id_index` (`public_id`),
  KEY `payment_methods_user_id_foreign` (`user_id`),
  KEY `payment_methods_contact_id_foreign` (`contact_id`),
  KEY `payment_methods_payment_type_id_foreign` (`payment_type_id`),
  KEY `payment_methods_currency_id_foreign` (`currency_id`),
  KEY `payment_methods_account_gateway_token_id_foreign` (`account_gateway_token_id`),
  CONSTRAINT `payment_methods_account_gateway_token_id_foreign` FOREIGN KEY (`account_gateway_token_id`) REFERENCES `account_gateway_tokens` (`id`) ON DELETE CASCADE,
  CONSTRAINT `payment_methods_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `payment_methods_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `payment_methods_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `currencies` (`id`),
  CONSTRAINT `payment_methods_payment_type_id_foreign` FOREIGN KEY (`payment_type_id`) REFERENCES `payment_types` (`id`),
  CONSTRAINT `payment_methods_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_methods`
--

LOCK TABLES `payment_methods` WRITE;
/*!40000 ALTER TABLE `payment_methods` DISABLE KEYS */;
INSERT INTO `payment_methods` (`id`, `account_id`, `user_id`, `contact_id`, `account_gateway_token_id`, `payment_type_id`, `source_reference`, `routing_number`, `last4`, `expiration`, `email`, `currency_id`, `status`, `created_at`, `updated_at`, `deleted_at`, `public_id`, `bank_name`, `ip`) VALUES (1,1,1,9,1,6,'pm_1LbSwPLTMjZUPdCCIlRTQYe4',NULL,9882,'2027-05-01',NULL,NULL,NULL,'2022-08-27 17:38:03','2022-08-27 19:11:57','2022-08-27 19:11:57',1,NULL,'42.153.34.65'),(2,1,1,9,1,7,'pm_1PqIaxLTMjZUPdCCUtgXMQxt',NULL,4863,'2029-02-01',NULL,NULL,NULL,'2024-08-21 17:46:14','2024-08-21 17:46:14',NULL,2,NULL,'113.210.58.54');
/*!40000 ALTER TABLE `payment_methods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_statuses`
--

DROP TABLE IF EXISTS `payment_statuses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_statuses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_statuses`
--

LOCK TABLES `payment_statuses` WRITE;
/*!40000 ALTER TABLE `payment_statuses` DISABLE KEYS */;
INSERT INTO `payment_statuses` (`id`, `name`) VALUES (1,'Pending'),(2,'Voided'),(3,'Failed'),(4,'Completed'),(5,'Partially Refunded'),(6,'Refunded');
/*!40000 ALTER TABLE `payment_statuses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_terms`
--

DROP TABLE IF EXISTS `payment_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_terms` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `num_days` int(11) NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `public_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `payment_terms_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `payment_terms_public_id_index` (`public_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_terms`
--

LOCK TABLES `payment_terms` WRITE;
/*!40000 ALTER TABLE `payment_terms` DISABLE KEYS */;
INSERT INTO `payment_terms` (`id`, `num_days`, `name`, `created_at`, `updated_at`, `deleted_at`, `user_id`, `account_id`, `public_id`) VALUES (1,7,'Net 7','2018-04-15 19:25:16','2018-04-15 19:25:16',NULL,0,0,1),(2,10,'Net 10','2018-04-15 19:25:16','2018-04-15 19:25:16',NULL,0,0,2),(3,14,'Net 14','2018-04-15 19:25:16','2018-04-15 19:25:16',NULL,0,0,3),(4,15,'Net 15','2018-04-15 19:25:16','2018-04-15 19:25:16',NULL,0,0,4),(5,30,'Net 30','2018-04-15 19:25:16','2018-04-15 19:25:16',NULL,0,0,5),(6,60,'Net 60','2018-04-15 19:25:16','2018-04-15 19:25:16',NULL,0,0,6),(7,90,'Net 90','2018-04-15 19:25:16','2018-04-15 19:25:16',NULL,0,0,7),(8,-1,'Net 0','2018-04-15 19:25:16','2018-04-15 19:25:16',NULL,0,0,0),(9,16,'Net 16','2018-04-15 04:25:19','2018-04-15 04:25:19',NULL,1,1,1);
/*!40000 ALTER TABLE `payment_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_types`
--

DROP TABLE IF EXISTS `payment_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_types` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `gateway_type_id` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `payment_types_gateway_type_id_foreign` (`gateway_type_id`),
  CONSTRAINT `payment_types_gateway_type_id_foreign` FOREIGN KEY (`gateway_type_id`) REFERENCES `gateway_types` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_types`
--

LOCK TABLES `payment_types` WRITE;
/*!40000 ALTER TABLE `payment_types` DISABLE KEYS */;
INSERT INTO `payment_types` (`id`, `name`, `gateway_type_id`) VALUES (1,'Apply Credit',NULL),(2,'Bank Transfer',2),(3,'Cash',NULL),(4,'Debit',1),(5,'ACH',2),(6,'Visa Card',1),(7,'MasterCard',1),(8,'American Express',1),(9,'Discover Card',1),(10,'Diners Card',1),(11,'EuroCard',1),(12,'Nova',1),(13,'Credit Card Other',1),(14,'PayPal',3),(15,'Google Wallet',NULL),(16,'Check',NULL),(17,'Carte Blanche',1),(18,'UnionPay',1),(19,'JCB',1),(20,'Laser',1),(21,'Maestro',1),(22,'Solo',1),(23,'Switch',1),(24,'iZettle',1),(25,'Swish',2),(26,'Venmo',NULL),(27,'Money Order',NULL),(28,'Alipay',7),(29,'Sofort',8),(30,'SEPA',9),(31,'GoCardless',10),(32,'Bitcoin',4),(33,'Zelle',NULL);
/*!40000 ALTER TABLE `payment_types` 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 = utf8 */;
CREATE TABLE `payments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `invoice_id` int(10) unsigned NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `client_id` int(10) unsigned NOT NULL,
  `contact_id` int(10) unsigned DEFAULT NULL,
  `invitation_id` int(10) unsigned DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `account_gateway_id` int(10) unsigned DEFAULT NULL,
  `payment_type_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `amount` decimal(13,2) NOT NULL,
  `payment_date` date DEFAULT NULL,
  `transaction_reference` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payer_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `public_id` int(10) unsigned NOT NULL,
  `refunded` decimal(13,2) NOT NULL,
  `payment_status_id` int(10) unsigned NOT NULL DEFAULT '4',
  `routing_number` int(10) unsigned DEFAULT NULL,
  `last4` smallint(5) unsigned DEFAULT NULL,
  `expiration` date DEFAULT NULL,
  `gateway_error` text COLLATE utf8_unicode_ci,
  `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payment_method_id` int(10) unsigned DEFAULT NULL,
  `bank_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `ip` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `credit_ids` text COLLATE utf8_unicode_ci,
  `private_notes` text COLLATE utf8_unicode_ci,
  `exchange_rate` decimal(13,4) NOT NULL DEFAULT '1.0000',
  `exchange_currency_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `payments_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `payments_contact_id_foreign` (`contact_id`),
  KEY `payments_account_gateway_id_foreign` (`account_gateway_id`),
  KEY `payments_user_id_foreign` (`user_id`),
  KEY `payments_payment_type_id_foreign` (`payment_type_id`),
  KEY `payments_invoice_id_index` (`invoice_id`),
  KEY `payments_account_id_index` (`account_id`),
  KEY `payments_client_id_index` (`client_id`),
  KEY `payments_public_id_index` (`public_id`),
  KEY `payments_payment_status_id_foreign` (`payment_status_id`),
  KEY `payments_payment_method_id_foreign` (`payment_method_id`),
  CONSTRAINT `payments_account_gateway_id_foreign` FOREIGN KEY (`account_gateway_id`) REFERENCES `account_gateways` (`id`) ON DELETE CASCADE,
  CONSTRAINT `payments_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `payments_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
  CONSTRAINT `payments_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `payments_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
  CONSTRAINT `payments_payment_method_id_foreign` FOREIGN KEY (`payment_method_id`) REFERENCES `payment_methods` (`id`) ON DELETE CASCADE,
  CONSTRAINT `payments_payment_status_id_foreign` FOREIGN KEY (`payment_status_id`) REFERENCES `payment_statuses` (`id`),
  CONSTRAINT `payments_payment_type_id_foreign` FOREIGN KEY (`payment_type_id`) REFERENCES `payment_types` (`id`),
  CONSTRAINT `payments_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payments`
--

LOCK TABLES `payments` WRITE;
/*!40000 ALTER TABLE `payments` DISABLE KEYS */;
INSERT INTO `payments` (`id`, `invoice_id`, `account_id`, `client_id`, `contact_id`, `invitation_id`, `user_id`, `account_gateway_id`, `payment_type_id`, `created_at`, `updated_at`, `deleted_at`, `is_deleted`, `amount`, `payment_date`, `transaction_reference`, `payer_id`, `public_id`, `refunded`, `payment_status_id`, `routing_number`, `last4`, `expiration`, `gateway_error`, `email`, `payment_method_id`, `bank_name`, `ip`, `credit_ids`, `private_notes`, `exchange_rate`, `exchange_currency_id`) VALUES (1,2,1,1,NULL,NULL,1,NULL,14,'2018-04-15 05:56:51','2018-04-15 05:56:51',NULL,0,3000.00,'2018-04-14',NULL,NULL,1,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,0),(2,10,1,3,NULL,NULL,1,NULL,2,'2019-07-13 04:50:15','2019-07-13 08:08:49',NULL,0,200.00,'2018-10-08','Maybank - 5861500210',NULL,2,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(3,11,1,4,NULL,NULL,1,NULL,2,'2019-07-13 07:45:02','2019-07-13 08:04:49','2019-07-13 08:04:49',1,295.00,'2019-07-05','Maybank - 6622198942',NULL,3,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(4,14,1,2,NULL,NULL,1,NULL,2,'2019-07-13 10:23:13','2019-07-13 18:27:32',NULL,0,350.00,'2018-10-01','Maybank - 5842572737',NULL,4,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(5,16,1,4,9,22,1,2,NULL,'2019-07-14 10:08:51','2019-07-14 10:08:51',NULL,0,3.03,'2019-07-14','ch_1EvpeQLTMjZUPdCCHq9UCL6F',NULL,5,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'183.171.71.242',NULL,NULL,1.0000,0),(6,17,1,4,9,23,1,2,NULL,'2019-07-14 10:23:01','2019-07-14 10:23:01',NULL,0,3.26,'2019-07-14','ch_1Evps8LTMjZUPdCCra4499pN',NULL,6,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'183.171.71.242',NULL,NULL,1.0000,0),(7,18,1,4,9,24,1,2,NULL,'2019-07-14 10:47:09','2019-07-14 10:47:09',NULL,0,3.24,'2019-07-14','ch_1EvqFULTMjZUPdCCG15t9hK5',NULL,7,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'183.171.71.242',NULL,NULL,1.0000,0),(8,19,1,4,9,25,1,4,NULL,'2019-07-14 11:51:52','2019-07-14 12:21:06',NULL,0,3.05,'2019-07-14','70B25162Y48096408','V6SYQTJLY9KQW',8,3.05,6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'183.171.71.242',NULL,NULL,1.0000,0),(9,20,1,4,9,26,1,4,NULL,'2019-07-14 12:07:12','2019-07-14 12:20:56',NULL,0,3.12,'2019-07-14','8HR94726LJ043745W','V6SYQTJLY9KQW',9,3.12,6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'183.171.71.242',NULL,NULL,1.0000,0),(10,23,1,4,9,29,2,4,NULL,'2019-07-14 13:21:29','2019-07-14 13:27:54','2019-07-14 13:27:54',1,3.12,'2019-07-14','52P39108SD031025L','A677Y5KGNA3NE',10,3.12,6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'183.171.71.242',NULL,NULL,1.0000,0),(11,25,1,4,8,31,2,2,NULL,'2019-07-17 06:33:16','2019-07-17 06:38:42',NULL,0,3.24,'2019-07-16','ch_1EwriRLTMjZUPdCCArIHZDkT',NULL,11,3.24,6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'183.171.73.219',NULL,NULL,1.0000,0),(12,32,1,2,NULL,NULL,1,NULL,2,'2019-10-03 08:54:21','2019-10-03 08:54:21',NULL,0,350.00,'2019-10-02','Maybank 564548148577 - Ref 336984X853594',NULL,12,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(13,33,1,4,9,43,1,2,NULL,'2019-10-14 06:35:27','2019-10-14 06:35:27',NULL,0,2.00,'2019-10-13','ch_1FT8AMLTMjZUPdCCC6dkRzJv',NULL,13,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'183.171.101.140',NULL,NULL,1.0000,0),(14,36,1,4,9,48,1,2,NULL,'2019-10-21 07:54:01','2019-10-21 07:54:01',NULL,0,12.00,'2019-10-20','ch_1FVgjELTMjZUPdCCoWDJena1',NULL,14,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'183.171.65.10',NULL,NULL,1.0000,0),(15,37,1,4,9,49,1,2,NULL,'2019-10-21 07:59:31','2019-10-21 07:59:31',NULL,0,4.00,'2019-10-20','ch_1FVgoZLTMjZUPdCCFiZrj7e4',NULL,15,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'183.171.65.10',NULL,NULL,1.0000,0),(16,38,1,4,9,50,1,2,NULL,'2019-10-21 08:04:29','2019-10-21 08:04:29',NULL,0,7.90,'2019-10-21','ch_1FVgtMLTMjZUPdCCDJJFNrnf',NULL,16,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'183.171.65.10',NULL,NULL,1.0000,0),(17,42,1,4,9,57,1,2,NULL,'2021-08-19 10:18:43','2021-08-19 10:18:43',NULL,0,3.73,'2021-08-19','ch_3JQ0pYLTMjZUPdCC0N818D3x',NULL,17,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'42.153.146.47',NULL,NULL,1.0000,0),(18,43,1,2,NULL,NULL,1,NULL,4,'2021-08-19 10:47:29','2021-08-19 10:48:30',NULL,0,355.00,'2021-08-19','pi_1HUbKvLTMjZUPdCC1GoeUEMM xxx7447 (Visa)',NULL,18,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'xxx7447 (Visa)',1.0000,0),(19,41,1,2,NULL,NULL,1,NULL,2,'2021-08-20 08:39:22','2021-08-20 08:39:22',NULL,0,350.00,'2021-08-20','Maybank Transfer 20th Aug 2021',NULL,19,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(20,44,1,4,NULL,NULL,2,NULL,NULL,'2021-09-02 20:07:37','2021-09-02 20:07:37',NULL,0,71.00,'2021-09-02',NULL,NULL,20,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,0),(21,45,1,4,NULL,NULL,2,NULL,2,'2021-09-02 21:36:47','2021-09-02 21:36:47',NULL,0,140.00,'2021-09-02','Maybank Transfer',NULL,21,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(22,46,1,4,NULL,NULL,2,NULL,2,'2021-09-02 23:14:33','2021-09-02 23:14:33',NULL,0,140.00,'2021-09-02','Bank Transfer',NULL,22,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(23,49,1,8,NULL,NULL,2,NULL,2,'2021-09-10 18:20:44','2021-09-10 18:20:44',NULL,0,380.00,'2021-09-09','M2U',NULL,23,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(24,48,1,7,NULL,NULL,2,NULL,2,'2021-09-10 18:22:33','2021-09-10 18:22:33',NULL,0,100.00,'2021-09-10','M2U',NULL,24,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(25,50,1,9,NULL,NULL,2,NULL,2,'2021-09-10 18:23:32','2021-09-10 18:23:32',NULL,0,100.00,'2021-09-09','M2U',NULL,25,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(26,51,1,10,NULL,NULL,2,NULL,2,'2021-09-10 18:24:24','2021-09-10 18:24:24',NULL,0,100.00,'2021-09-09','M2U',NULL,26,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(27,52,1,11,NULL,NULL,2,NULL,2,'2021-09-10 18:25:28','2021-09-10 18:25:28',NULL,0,92.00,'2021-09-09','M2U',NULL,27,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(28,58,1,10,NULL,NULL,2,NULL,NULL,'2021-10-12 20:06:54','2021-10-12 20:06:54',NULL,0,70.00,'2021-10-12','',NULL,28,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(29,59,1,12,NULL,NULL,2,NULL,2,'2021-10-12 20:09:35','2021-10-12 20:09:35',NULL,0,100.00,'2021-10-12','',NULL,29,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(30,60,1,7,NULL,NULL,2,NULL,2,'2021-10-12 20:12:50','2021-10-12 20:12:50',NULL,0,70.00,'2021-10-12','',NULL,30,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(31,61,1,9,NULL,NULL,2,NULL,2,'2021-10-12 20:14:55','2021-10-12 20:14:55',NULL,0,70.00,'2021-10-12','',NULL,31,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(32,62,1,13,NULL,NULL,2,NULL,2,'2021-10-12 20:18:39','2021-10-12 20:18:39',NULL,0,100.00,'2021-10-12','',NULL,32,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(33,63,1,11,NULL,NULL,2,NULL,2,'2021-10-12 20:22:26','2021-10-12 20:22:26',NULL,0,93.00,'2021-10-12','',NULL,33,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(34,64,1,14,NULL,NULL,2,NULL,NULL,'2021-10-12 20:34:00','2021-10-12 20:34:00',NULL,0,140.00,'2021-10-12','',NULL,34,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(35,65,1,15,NULL,NULL,2,NULL,2,'2021-10-12 20:47:52','2021-10-12 20:47:52',NULL,0,200.00,'2021-09-09','',NULL,35,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(36,67,1,16,NULL,NULL,2,NULL,2,'2021-10-12 20:58:48','2021-10-12 20:58:48',NULL,0,92.00,'2021-09-11','',NULL,36,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(37,69,1,17,NULL,NULL,2,NULL,2,'2021-10-21 15:46:09','2021-10-21 15:46:09',NULL,0,290.00,'2021-10-16','',NULL,37,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(38,70,1,18,NULL,NULL,1,NULL,3,'2021-12-14 10:46:21','2021-12-14 10:46:21',NULL,0,2619.00,'2020-05-12','',NULL,38,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(39,71,1,17,NULL,NULL,2,NULL,2,'2022-02-27 04:35:19','2022-02-27 04:35:19',NULL,0,840.00,'2022-01-31','BASIC MANDARIN LEVEL 1 (MAN101)',NULL,39,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(40,85,1,4,9,100,1,2,NULL,'2022-08-27 17:37:45','2022-08-27 17:48:44',NULL,0,4.00,'2022-08-28','ch_3LbSwTLTMjZUPdCC1jC3wjEa',NULL,40,4.00,6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'42.153.34.65',NULL,NULL,1.0000,0),(41,87,1,18,NULL,NULL,1,NULL,2,'2024-08-21 17:03:28','2024-08-21 17:03:28',NULL,0,2410.00,'2024-08-22','Maybank',NULL,41,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Manual Payment',1.0000,0),(42,88,1,4,9,103,1,2,NULL,'2024-08-21 17:46:04','2024-08-21 17:46:04',NULL,0,7.00,'2024-08-22','ch_3PqIayLTMjZUPdCC1zfQUnh2',NULL,42,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'113.210.58.54',NULL,NULL,1.0000,0),(43,89,1,26,NULL,NULL,1,NULL,2,'2024-09-19 13:02:44','2024-09-19 13:02:44',NULL,0,2000.00,'2024-09-19','Maybank2u',NULL,43,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1.0000,0),(44,90,1,27,NULL,NULL,1,NULL,2,'2025-07-23 10:58:02','2025-07-23 11:39:02',NULL,0,708.75,'2025-07-23','A215F0613700',NULL,44,0.00,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',3.9882,19);
/*!40000 ALTER TABLE `payments` 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 = utf8 */;
CREATE TABLE `products` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `product_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `notes` text COLLATE utf8_unicode_ci NOT NULL,
  `cost` decimal(15,4) NOT NULL,
  `qty` decimal(15,4) DEFAULT '0.0000',
  `public_id` int(10) unsigned NOT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `custom_value1` text COLLATE utf8_unicode_ci,
  `custom_value2` text COLLATE utf8_unicode_ci,
  `tax_name1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `tax_rate1` decimal(13,3) NOT NULL,
  `tax_name2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `tax_rate2` decimal(13,3) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `products_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `products_user_id_foreign` (`user_id`),
  KEY `products_account_id_index` (`account_id`),
  CONSTRAINT `products_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `products_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=utf8 COLLATE=utf8_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` (`id`, `account_id`, `user_id`, `created_at`, `updated_at`, `deleted_at`, `product_key`, `notes`, `cost`, `qty`, `public_id`, `is_deleted`, `custom_value1`, `custom_value2`, `tax_name1`, `tax_rate1`, `tax_name2`, `tax_rate2`) VALUES (1,1,1,'2018-04-15 05:14:47','2019-10-15 16:46:36',NULL,'Website Development (Per Page)','Creating website per page',106.0000,1.0000,1,0,NULL,NULL,'',0.000,'',0.000),(2,1,1,'2018-04-15 05:15:21','2019-05-18 03:06:52','2019-05-18 03:06:52','Domain Renewal MRI','',100.0000,1.0000,2,1,NULL,NULL,'',0.000,'',0.000),(3,1,1,'2018-04-15 05:15:56','2019-05-18 03:07:31','2019-05-18 03:07:31','Hosting Renewal MRI','Domain & Hosting Renewal \r\n19th May 2018 - 19th May 2019\r\n\r\nRemote Support For PC One Year\r\n\r\nRemote Support For Mobile One Year\r\n\r\nOn-site visit 19th May 2018 - 19th May 2019',1500.0000,1.0000,3,1,NULL,NULL,'',0.000,'',0.000),(4,1,1,'2018-04-15 05:16:19','2019-05-18 03:07:38','2019-05-18 03:07:38','Remote Support Renewal MRI','',0.0000,1.0000,4,1,NULL,NULL,'',0.000,'',0.000),(5,1,1,'2018-04-15 05:16:39','2019-05-18 03:07:45','2019-05-18 03:07:45','On Site Service Renewal','',0.0000,1.0000,5,1,NULL,NULL,'',0.000,'',0.000),(6,1,1,'2018-04-15 05:16:56','2019-05-18 03:07:51','2019-05-18 03:07:51','Website Maintenance MRI','',500.0000,1.0000,6,1,NULL,NULL,'',0.000,'',0.000),(7,1,1,'2018-04-15 05:17:19','2019-10-15 16:47:05',NULL,'Complete Package Website Development (Static Page)','',6000.0000,1.0000,7,0,NULL,NULL,'',0.000,'',0.000),(8,1,1,'2018-04-15 05:17:43','2021-08-19 10:45:15',NULL,'Domain & Hosting Renewal','Renewal For 1 Year - tepatconsult.com\r\nWeb-Base File Sharing\r\nUnlimited Email\r\nWeb-Base Email Access\r\nSPAM Assassin\r\nVirus Protection\r\nMonthly Bandwidth 50 GB\r\nMultiple Domain Hosting Up To 5 Domain\r\nDisk Space 10 GB\r\nServer Hosting Location : Malaysia',385.0000,1.0000,8,0,NULL,NULL,'',0.000,'',0.000),(9,1,1,'2018-04-15 05:20:24','2019-05-18 03:08:02','2019-05-18 03:08:02','Laptop Purchasing','ACER SP513-52N-856T NOTEBOOK, INTEL CORE-I7, 8GB RAM, 256GB SSD, W10, GREY WITH BEG\r\nSN#:NXGR7SM00474602DCD66600',3000.0000,1.0000,9,1,NULL,NULL,'',0.000,'',0.000),(10,1,1,'2018-04-15 05:20:42','2019-05-18 03:08:12','2019-05-18 03:08:12','On Site Services MRI (Upon Request)','',150.0000,1.0000,10,1,NULL,NULL,'',0.000,'',0.000),(11,1,1,'2018-04-15 05:22:25','2019-05-18 03:07:17','2019-05-18 03:07:17','Delivery Charge','',50.0000,1.0000,11,1,NULL,NULL,'',0.000,'',0.000),(12,1,1,'2019-07-12 23:09:33','2019-10-15 16:48:35',NULL,'Website Development (Enhance From Old Website)','Enhancement Previous Website From 2 Language To Single Language',520.0000,1.0000,12,0,NULL,NULL,'',0.000,'',0.000),(13,1,1,'2019-07-13 04:41:10','2019-10-15 16:51:00',NULL,'Website Development - 2 Languages','Translate 2 Language',1200.0000,1.0000,13,0,NULL,NULL,'',0.000,'',0.000),(14,1,1,'2019-07-13 04:41:46','2019-10-15 16:51:35',NULL,'Domain & Hosting  (Linux Platform)','1 Year Fee\r\nWeb-Base File Sharing\r\nUnlimited Email\r\nWeb-Base Email Access\r\nSPAM Assassin\r\nVirus Protection\r\nMonthly Bandwidth 50GB\r\nMultiple Domain Hosting - Up To 5 Domains\r\nDisk Space 10GB',520.0000,1.0000,14,0,NULL,NULL,'',0.000,'',0.000),(15,1,1,'2019-07-13 04:42:55','2019-10-15 16:52:45',NULL,'Website & Hosting Maintenance / Support','Optional\r\nRM106 / Request\r\nRM1243 / Yearly',0.0000,1.0000,15,0,NULL,NULL,'',0.000,'',0.000),(16,1,1,'2019-07-13 07:03:52','2019-10-15 16:53:28',NULL,'Hosting (Linux Standard Plan)','Disk Space 10 GB\r\nMonthly Bandwidth 50 GB\r\nMultiple Domain Hosting 5 Domain\r\nMoney Back Guarantee 30 Days\r\nDomain Name None\r\nSitebuilder V1 Free',85.0000,1.0000,16,0,NULL,NULL,NULL,0.000,NULL,0.000),(17,1,1,'2019-07-13 07:05:36','2019-10-15 16:53:46',NULL,'Hosting (Linux Surfers Plan)','15 GB of webspace\r\n80 GB of monthly bandwidth\r\nCpanel Hosting Control Panel\r\nSupport Up to 15 add-On Domain\r\nCompatible with Wordpress & other CMS\r\nUnlimited Email Aliases\r\nUnlimited MYSQL Databases',85.0000,1.0000,17,0,NULL,NULL,NULL,0.000,NULL,0.000),(18,1,1,'2019-07-13 07:07:36','2019-10-15 16:56:10',NULL,'Hosting (Wordpress Web Plan)','50 GB SSD Storage\r\n100 GB Monthly Bandwidth\r\n5 Addon Domains\r\n1 GB Memory\r\nUnlimited Parked Domain\r\nUnlimited Subdomain\r\nUnlimited Database\r\nUnlimited E-Mail Accounts\r\n1-Click CMS Auto Installer WordPress Optimized\r\nLiteSpeed Web Server\r\nPre-Uploaded Wordpress with LiteSpeed Plugin\r\nFREE SSL (HTTPS)\r\nPHP 7 Support\r\nCPanel Hosting\r\nControl Panel',312.0000,1.0000,18,0,NULL,NULL,NULL,0.000,NULL,0.000),(19,1,1,'2019-07-13 07:08:06','2019-07-13 07:08:06',NULL,'Hosting (Wordpress Standard Plan)','30 GB SSD Storage\r\n50 GB Monthly Bandwidth\r\n2 Addon Domains\r\n512 MB Memory\r\nUnlimited Parked Domain\r\nUnlimited Subdomain\r\nUnlimited Database\r\nUnlimited E-Mail Accounts\r\n1-Click CMS Auto Installer\r\nWordPress Optimized\r\nLiteSpeed Web Server\r\nPre-Uploaded Wordpress with LiteSpeed Plugin\r\nFREE SSL (HTTPS)\r\nPHP 7 Support\r\nCPanel Hosting',199.0000,1.0000,19,0,NULL,NULL,NULL,0.000,NULL,0.000),(20,1,1,'2019-07-13 07:08:41','2019-07-13 07:08:41',NULL,'Hosting (Wordpress Mega Plan)','100 GB SSD Storage\r\n150 GB Monthly Bandwidth\r\n10 Addon Domains\r\n2 GB Memory\r\nUnlimited Parked Domain\r\nUnlimited Subdomain\r\nUnlimited Database\r\nUnlimited E-Mail Accounts\r\n1-Click CMS Auto Installer\r\nWordPress Optimized\r\nLiteSpeed Web Server\r\nPre-Uploaded Wordpress with LiteSpeed Plugin\r\nFREE SSL (HTTPS)\r\nPHP 7 Support\r\nCPanel Hosting\r\nControl Panel',399.0000,1.0000,20,0,NULL,NULL,NULL,0.000,NULL,0.000),(21,1,1,'2019-07-13 07:09:21','2019-07-13 07:09:21',NULL,'Hosting (LinuxPro Supreme Plan)','Disk Space 100 GB\r\nMonthly Bandwidth 200 GB\r\nMultiple Domain Hosting Unlimited Domain\r\nMoney Back Guarantee 30 Days\r\nDomain Name Free\r\nSitebuilder Pro V3 Free',300.0000,1.0000,21,0,NULL,NULL,NULL,0.000,NULL,0.000),(22,1,1,'2019-07-13 07:09:58','2019-07-13 07:09:58',NULL,'Hosting (Linux Advance Plan)','Disk Space 40 GB\r\nMonthly Bandwidth 120 GB\r\nMultiple Domain Hosting 15 Domain\r\nMoney Back Guarantee 30 Days\r\nDomain Name None\r\nSitebuilder V1 Free',150.0000,1.0000,22,0,NULL,NULL,NULL,0.000,NULL,0.000),(23,1,1,'2019-07-13 07:10:32','2019-07-13 07:10:32',NULL,'Hosting (Linux Surfers Extra Plan)','30 GB of webspace\r\n100 GB of monthly bandwidth\r\nCpanel Hosting Control Panel\r\nSupport Up to 15 add-On Domain\r\nCompatible with Wordpress & other CMS\r\nUnlimited Email Aliases\r\nUnlimited MYSQL Databases',120.0000,1.0000,23,0,NULL,NULL,NULL,0.000,NULL,0.000),(24,1,1,'2019-07-13 07:11:03','2019-07-13 07:11:03',NULL,'Hosting (Linux Surfers Unlimited Plan)','Unlimited of webspace\r\nUnlimited of monthly bandwidth\r\nCpanel Hosting Control Panel\r\nSupport Up to 15 add-On Domain\r\nCompatible with Wordpress & other CMS\r\nUnlimited Email Aliases\r\nUnlimited MYSQL Databases',350.0000,1.0000,24,0,NULL,NULL,NULL,0.000,NULL,0.000),(25,1,1,'2019-07-13 07:12:09','2019-07-13 07:12:09',NULL,'Positive SSL Certificates','Positive SSL Certificates\r\nGreen Adress Bar - No\r\nTechnical Support for - Email, Web\r\nStandard Support for - Email, Web\r\nWarranty By Comodo for - Not Available\r\nStandard Support for - Email, Web\r\nSSL Encryption - 128/256 bit*\r\nSecures - Single Domain Name (FQDN)\r\n30 day money back guarantee - Yes\r\nReissuance Timeframe - Unlimited\r\nFull validation / authentication - Domain Only',180.0000,1.0000,25,0,NULL,NULL,NULL,0.000,NULL,0.000),(26,1,1,'2019-07-13 07:12:35','2019-07-13 07:12:35',NULL,'Positive SSL Wildcard Certificates','Positive SSL Wildcard Certificates\r\nGreen Adress Bar - No\r\nTechnical Support for - Email, Web\r\nStandard Support for - Email, Web\r\nWarranty By Comodo for - Not Available\r\nStandard Support for - Email, Web\r\nSSL Encryption - 128/256 bit*\r\nSecures - Multiple subdomains on a Single Domain Name\r\n30 day money back guarantee - Yes\r\nReissuance Timeframe - Unlimited\r\nFull validation / authentication - Domain Only',850.0000,1.0000,26,0,NULL,NULL,NULL,0.000,NULL,0.000),(27,1,1,'2019-07-13 07:13:02','2019-07-13 07:13:02',NULL,'Comodo EV SSL Certificates','Comodo EV SSL Certificates\r\nTrustLogo worth P.O.A. included - Yes\r\nGreen Adress Bar - Yes\r\nFree TrustFax - Yes\r\nFast Track Support P.O.A. - Yes\r\nTechnical Support - Tel, Email, Web\r\nStandard Support - Tel, Email, Web\r\nWarranty By Comodo - $1,750,000\r\nSSL Encryption - 128/256 bit*\r\nSecures - Single Domain Name\r\nNetwork Security Audit - Yes\r\n30 day money back guarantee - Yes\r\nReissuance Timeframe - Unlimited\r\nFull Business validation - Yes',1350.0000,1.0000,27,0,NULL,NULL,NULL,0.000,NULL,0.000),(28,1,1,'2019-07-13 09:50:57','2019-07-13 09:53:50',NULL,'Mobile Application Development (Silver Apps)','3-4 Ready Features\r\nProfessional Layout\r\nAbility to push message\r\nAbility to push with URL\r\nAbility to push with cover image\r\nAbility to push message to only specific location (GEOFENCE)\r\nAbility to push message to specific user\r\nAbility to message in schedule / create schedule\r\nApps UI Design Service\r\nImage & Database Hosting Service\r\nAndroid Platform',3360.0000,1.0000,28,0,NULL,NULL,NULL,0.000,NULL,0.000),(29,1,1,'2019-07-13 09:53:29','2019-07-13 09:53:29',NULL,'Mobile Application Development (Gold Apps)','5-15 Ready Features\r\nE-commerce Ready\r\nMalaysia Online Internet Banking BillPlz & PayPal\r\nProfessional Layout\r\nAbility to push message\r\nAbility to push with URL\r\nAbility to push with cover image\r\nAbility to push message to only specific location (GEOFENCE)\r\nAbility to push message to specific user\r\nAbility to message in schedule / create schedule\r\nApps UI Design Service\r\nImage & Database Hosting Service\r\nAndroid Platform',4560.0000,1.0000,29,0,NULL,NULL,NULL,0.000,NULL,0.000),(30,1,1,'2019-07-13 10:00:50','2019-07-13 10:00:50',NULL,'Domain Name (.com)','Yearly',50.0000,1.0000,30,0,NULL,NULL,NULL,0.000,NULL,0.000),(31,1,1,'2019-07-13 10:03:34','2019-07-13 10:03:34',NULL,'Domain Name (.net)','Yearly',60.0000,1.0000,31,0,NULL,NULL,NULL,0.000,NULL,0.000),(32,1,1,'2019-07-13 10:04:03','2019-07-13 10:04:03',NULL,'Domain Name (.org)','Yearly',55.0000,1.0000,32,0,NULL,NULL,NULL,0.000,NULL,0.000),(33,1,1,'2019-07-13 10:04:49','2019-07-13 10:04:49',NULL,'Domain Name (.biz)','Yearly',60.0000,1.0000,33,0,NULL,NULL,NULL,0.000,NULL,0.000),(34,1,1,'2019-07-13 10:05:11','2019-07-13 10:05:11',NULL,'Domain Name (.info)','Yearly',55.0000,1.0000,34,0,NULL,NULL,NULL,0.000,NULL,0.000),(35,1,1,'2019-07-13 10:05:32','2019-07-13 10:05:32',NULL,'Domain Name (.asia)','Yearly',70.0000,1.0000,35,0,NULL,NULL,NULL,0.000,NULL,0.000),(36,1,1,'2019-07-13 10:05:53','2019-07-13 10:05:53',NULL,'Domain Name (.name)','Yearly',50.0000,1.0000,36,0,NULL,NULL,NULL,0.000,NULL,0.000),(37,1,1,'2019-07-13 10:06:16','2019-07-13 10:06:16',NULL,'Domain Name (.tv)','Yearly',240.0000,1.0000,37,0,NULL,NULL,NULL,0.000,NULL,0.000),(38,1,1,'2019-07-13 10:06:43','2019-07-13 10:06:43',NULL,'Domain Name (.us)','Yearly',50.0000,1.0000,38,0,NULL,NULL,NULL,0.000,NULL,0.000),(39,1,1,'2019-07-13 10:07:04','2019-07-13 10:07:04',NULL,'Domain Name (.co.uk)','Yearly',50.0000,1.0000,39,0,NULL,NULL,NULL,0.000,NULL,0.000),(40,1,1,'2019-07-13 10:07:28','2019-07-13 10:07:28',NULL,'Domain Name (.co)','Yearly',140.0000,1.0000,40,0,NULL,NULL,NULL,0.000,NULL,0.000),(41,1,1,'2019-07-13 10:07:51','2019-07-13 10:07:51',NULL,'Domain Name (.cn)','Yearly',100.0000,1.0000,41,0,NULL,NULL,NULL,0.000,NULL,0.000),(42,1,1,'2019-07-13 10:08:14','2019-07-13 10:08:14',NULL,'Domain Name (.my)','Yearly',59.9000,1.0000,42,0,NULL,NULL,NULL,0.000,NULL,0.000),(43,1,1,'2019-07-13 10:08:38','2019-07-13 10:08:38',NULL,'Domain Name (.com.my)','Yearly',59.9000,1.0000,43,0,NULL,NULL,NULL,0.000,NULL,0.000),(44,1,1,'2019-07-13 10:09:08','2019-07-13 10:09:08',NULL,'Domain Name (.net.my)','Yearly',59.9000,1.0000,44,0,NULL,NULL,NULL,0.000,NULL,0.000),(45,1,1,'2019-07-13 10:09:32','2019-07-13 10:09:32',NULL,'Domain Name (.org.my)','Yearly',59.9000,1.0000,45,0,NULL,NULL,NULL,0.000,NULL,0.000),(46,1,1,'2019-07-13 10:10:03','2019-07-13 10:10:03',NULL,'Domain Name (.edu.my)','Yearly',80.0000,1.0000,46,0,NULL,NULL,NULL,0.000,NULL,0.000),(47,1,1,'2019-07-13 10:10:30','2019-07-13 10:10:30',NULL,'Domain Name (.gov.my)','Yearly',80.0000,1.0000,47,0,NULL,NULL,NULL,0.000,NULL,0.000),(48,1,1,'2019-07-13 10:10:57','2019-07-13 10:10:57',NULL,'Domain Name (.mil.my)','Yearly',80.0000,1.0000,48,0,NULL,NULL,NULL,0.000,NULL,0.000),(49,1,1,'2019-07-13 10:11:17','2019-07-13 10:11:17',NULL,'Domain Name (.name.my)','Yearly',30.0000,1.0000,49,0,NULL,NULL,NULL,0.000,NULL,0.000),(50,1,1,'2019-07-13 10:11:39','2019-07-13 10:11:39',NULL,'Domain Name (.online)','Yearly',160.0000,1.0000,50,0,NULL,NULL,NULL,0.000,NULL,0.000),(51,1,1,'2019-07-13 10:12:01','2019-07-13 10:12:01',NULL,'Domain Name (.work)','Yearly',50.0000,1.0000,51,0,NULL,NULL,NULL,0.000,NULL,0.000),(52,1,1,'2019-07-13 10:12:19','2019-07-13 10:12:19',NULL,'Domain Name (.media)','Yearly',150.0000,1.0000,52,0,NULL,NULL,NULL,0.000,NULL,0.000),(53,1,1,'2019-07-13 10:12:41','2019-07-13 10:12:41',NULL,'Domain Name (.agency)','Yearly',120.0000,1.0000,53,0,NULL,NULL,NULL,0.000,NULL,0.000),(54,1,1,'2019-07-13 10:13:00','2019-07-13 10:13:00',NULL,'Domain Name (.club)','Yearly',60.0000,1.0000,54,0,NULL,NULL,NULL,0.000,NULL,0.000),(55,1,1,'2019-07-13 10:51:24','2019-07-13 10:54:44',NULL,'Domain & Hosting Renewal','Renewal For 1 Year - tourguide.asia\r\nWeb-Base File Sharing\r\nUnlimited Email\r\nWeb-Base Email Access\r\nSPAM Assassin\r\nVirus Protection\r\nMonthly Bandwidth 50 GB\r\nMultiple Domain Hosting Up To 5 Domain\r\nDisk Space 10 GB\r\nServer Hosting Location : Malaysia',300.0000,1.0000,55,0,NULL,NULL,NULL,0.000,NULL,0.000),(56,1,1,'2019-07-13 10:56:51','2019-07-13 10:58:20','2019-07-13 10:58:20','Domain & Hosting Renewal TepatConsult.com','Renewal For 1 Year - tepatconsult.com\r\nWeb-Base File Sharing\r\nUnlimited Email\r\nWeb-Base Email Access\r\nSPAM Assassin\r\nVirus Protection\r\nMonthly Bandwidth 50 GB\r\nMultiple Domain Hosting Up To 5 Domain\r\nDisk Space 10 GB\r\nServer Hosting Location : Malaysia',0.0000,0.0000,56,1,NULL,NULL,'',0.000,'',0.000),(57,1,1,'2019-07-14 10:03:37','2024-08-21 17:42:44',NULL,'Testing','Testing',1.0000,1.0000,57,0,NULL,NULL,'',0.000,'',0.000),(58,1,2,'2021-09-02 19:25:04','2022-03-13 05:47:15','2022-03-13 05:47:15','Basic Mandarin for kids: Beginners Module 1 (MAN0101)','- Age 7-9 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month: October 2021\r\n- Student\'s Name: Nur Maisarah bte Asri\r\n\r\nSession :-\r\n\r\nSaturday 11:30am- 12:30pm (MAN0101)',70.0000,1.0000,58,1,NULL,NULL,'',0.000,'',0.000),(59,1,2,'2021-09-02 19:28:23','2022-03-13 05:48:07','2022-03-13 05:48:07','Basic Mandarin for kids: Beginners Module 1 (MAN0102)','- Age 7-9 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month: September 2021\r\n- Student\'s Name: Ainul Aisyah\r\n\r\nSession :-\r\n\r\nSunday 11:30am- 12:30pm (MAN0102)',70.0000,1.0000,59,1,NULL,NULL,'',0.000,'',0.000),(60,1,2,'2021-09-02 19:29:34','2022-03-13 05:48:28','2022-03-13 05:48:28','Basic Mandarin for kids: Beginners Module 1 (MAN0103)','- Age 7-9 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month :- \r\n\r\nSession :-\r\n\r\nTuesday 8:00pm- 9:00pm (MAN0103)',70.0000,1.0000,60,1,NULL,NULL,'',0.000,'',0.000),(61,1,2,'2021-09-02 19:31:13','2022-03-13 05:49:32','2022-03-13 05:49:32','Basic Mandarin for kids: Beginners Module 1 (MAN0201)','- Age 10-12 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month:- October 2021\r\n- Student\'s Name: Muhammad Rayyan bin Mohamad Zulfadhli\r\n\r\nSession :-\r\n\r\nSaturday 11:30am- 12:30am (MAN101)',70.0000,1.0000,61,1,NULL,NULL,'',0.000,'',0.000),(62,1,2,'2021-09-02 19:32:46','2022-03-13 05:49:53','2022-03-13 05:49:53','Basic Mandarin for kids: Beginners Module 1 (MAN0202)','- Age 10-12 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month :-\r\n\r\nSession :-\r\n\r\nSunday 9:30am- 10:30am (MAN0202)',70.0000,1.0000,62,1,NULL,NULL,'',0.000,'',0.000),(63,1,2,'2021-09-02 19:34:08','2022-03-13 05:50:14','2022-03-13 05:50:14','Basic Mandarin for kids: Beginners Module 1 (MAN0203)','- Age 10-12 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment for Month :-\r\n\r\nSession :-\r\n\r\nMonday 8:00pm- 9:00pm (MAN0203)',70.0000,1.0000,63,1,NULL,NULL,'',0.000,'',0.000),(64,1,2,'2021-10-12 15:14:10','2022-03-13 05:50:49','2022-03-13 05:50:49','Basic Mandarin for kids: SRJKC Year 2 Module 1 (MAN0402)','- Age 8 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment for Month :- October 2021\r\n- Student\'s Name: Sofea Qaleesya binti Shahrul Aizat 苏菲亚 sū fēi yà\r\n\r\nSession :-\r\n\r\nFriday 8:00pm- 9:00pm (MAN402)',100.0000,1.0000,64,1,NULL,NULL,'',0.000,'',0.000),(65,1,2,'2021-10-12 19:21:22','2022-03-13 05:51:10','2022-03-13 05:51:10','Basic Mandarin for kids: Beginners Module 1 (MAN101)','- Age 7-12 years old\r\n- Duration: 4 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month:- OCT 2021 - JAN 2022\r\n\r\nSession :-\r\n\r\nTHURSDAY 8-9PM',0.0000,1.0000,65,1,NULL,NULL,'',0.000,'',0.000),(66,1,2,'2021-10-12 19:52:12','2022-03-13 05:51:29','2022-03-13 05:51:29','MAN301','ELEMENTARY MANDARIN',70.0000,1.0000,66,1,NULL,NULL,'',0.000,'',0.000),(67,1,2,'2021-10-12 19:54:58','2022-03-13 05:51:47','2022-03-13 05:51:47','MAN402','SRJKC YEAR 2',100.0000,1.0000,67,1,NULL,NULL,'',0.000,'',0.000),(68,1,2,'2021-10-12 19:55:46','2022-03-13 05:52:56','2022-03-13 05:52:56','MAN101','BASIC MANDARIN FOR BEGINNERS LEVEL 1',100.0000,1.0000,68,0,NULL,NULL,'',0.000,'',0.000),(69,1,1,'2021-12-14 10:43:35','2021-12-14 10:45:24',NULL,'HP Laptop Notebook 15s-fq2513TU Gold (15.6\"/1366x768/Intel Core i3-1115G4/512 GB PCIe NVMe M.2 SSD/Intel UHD Graphics)','Operating system	Windows 10 Home Single Language 64\r\nProcessor	Intel® Core™ i3-1115G4 (up to 4.1 GHz with Intel® Turbo Boost Technology, 6 MB L3 cache, 2 cores)\r\nChipset	Intel® Integrated SoC\r\nForm factor	Standard laptop\r\nMEMORY\r\nMemory	8 GB DDR4-2666 MHz RAM (1 x 8 GB)\r\nSTORAGE\r\nHard drive description	512 GB PCIe® NVMe™ M.2 SSD\r\nStorage type	SSD\r\nOptical drive	Optical drive not included\r\nDISPLAY AND GRAPHICS\r\nDisplay	15.6\" diagonal, HD (1366 x 768), micro-edge, BrightView, 250 nits, 45% NTSC\r\nGraphics	Intel® UHD Graphics',2619.0000,1.0000,69,0,NULL,NULL,'',0.000,'',0.000),(70,1,2,'2022-02-27 09:39:37','2022-03-13 05:53:27','2022-03-13 05:53:27','Basic Mandarin for kids: Beginners Module 1','- Age 7-9 years old\r\n- Duration: 5 Months (1 hour per week) \r\n- Medium: Google Meet, Cisco Webex\r\n- Payment For Month: October 2021\r\n- Student\'s Name: Nur Maisarah bte Asri\r\n\r\nSession :-\r\n\r\nSaturday 11:30am- 12:30pm (MAN0101)',0.0000,1.0000,70,0,NULL,NULL,'',0.000,'',0.000),(71,1,2,'2022-03-13 01:20:10','2022-03-13 04:14:41',NULL,'MAN102','BASIC MANDARIN FOR BEGINNERS LEVEL 2',100.0000,1.0000,71,0,NULL,NULL,'',0.000,'',0.000),(72,1,2,'2022-03-13 05:19:26','2022-03-13 06:16:22',NULL,'MAN101','BASIC MANDARIN FOR BEGINNERS LEVEL 1',100.0000,1.0000,72,0,NULL,NULL,'',0.000,'',0.000),(73,1,1,'2024-08-21 17:02:33','2024-08-21 17:02:33',NULL,'Computer','HONOR MagicBook X15 2022',0.0000,0.0000,73,0,NULL,NULL,'',0.000,'',0.000),(74,1,1,'2024-09-19 12:33:06','2024-09-19 12:58:18',NULL,'Latitude 3440 Laptop','12th Gen Intel® Core™ i5-1235U (12 MB cache, 10 cores, 12 threads, up to 4.4 GHz Turbo)\r\nWindows 11 Pro, English\r\nIntegrated Intel® Iris® Xe or UHD Graphics for i5-1235U Processor\r\n14\", FHD 1920x1080, 60Hz, WVA/IPS, Non-Touch, Anti-Glare, 250 nit, NTSC 45%, FHD Camera, WLAN\r\n8 GB: 1 x 8 GB, DDR4, 3200 MT/s\r\n512GB, M.2 2230, QLC PCIe Gen 4 NVMe\r\nIntel® Wi-Fi 6E AX211, 2x2, 802.11ax, Bluetooth® wireless card\r\nStereo speakers with Waves MaxxAudio® Pro, Realtek ALC3204 Audio Controller, 2 W x 2 = 4 W total\r\n1 USB 3.2 Gen 2 Type-C® port with DisplayPort Alt mode/Power Delivery\r\n2 USB 3.2 Gen 1 port\r\n1 USB 3.2 Gen 1 port with PowerShare\r\n1 HDMI 1.4 port\r\n1 universal audio port\r\n1 power-adapter port\r\n1 RJ-45 Ethernet port',4000.0000,1.0000,74,0,NULL,NULL,'',0.000,'',0.000),(75,1,1,'2024-09-19 12:39:31','2024-09-19 12:58:18',NULL,'Warranty','Manufacturer Warranty',0.0000,1.0000,75,0,NULL,NULL,'',0.000,'',0.000),(76,1,2,'2025-06-10 03:32:02','2025-07-24 01:30:17',NULL,'CPA','Wheel of Fortune MTN#1000',0.0000,1.0000,76,0,NULL,NULL,'',0.000,'',0.000),(77,1,2,'2025-07-19 01:49:40','2025-07-19 01:49:51',NULL,'9jakids trivia NG MTN#1047','',0.3500,1.0000,77,0,NULL,NULL,NULL,0.000,NULL,0.000),(78,1,2,'2025-07-19 01:50:17','2025-07-19 01:50:25',NULL,'E-Limu NG MTN#1046','',0.3500,1.0000,78,0,NULL,NULL,NULL,0.000,NULL,0.000),(79,1,2,'2025-07-19 01:51:24','2025-07-19 01:51:24',NULL,'Wheel of Fortune MTN#1000','',0.3500,1.0000,79,0,NULL,NULL,NULL,0.000,NULL,0.000);
/*!40000 ALTER TABLE `products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `projects`
--

DROP TABLE IF EXISTS `projects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `projects` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `client_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `public_id` int(10) unsigned NOT NULL,
  `task_rate` decimal(12,4) NOT NULL DEFAULT '0.0000',
  `due_date` date DEFAULT NULL,
  `private_notes` text COLLATE utf8_unicode_ci,
  `budgeted_hours` double(8,2) NOT NULL,
  `custom_value1` text COLLATE utf8_unicode_ci,
  `custom_value2` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `projects_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `projects_user_id_foreign` (`user_id`),
  KEY `projects_account_id_index` (`account_id`),
  KEY `projects_client_id_index` (`client_id`),
  KEY `projects_public_id_index` (`public_id`),
  CONSTRAINT `projects_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `projects_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
  CONSTRAINT `projects_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `projects`
--

LOCK TABLES `projects` WRITE;
/*!40000 ALTER TABLE `projects` DISABLE KEYS */;
INSERT INTO `projects` (`id`, `user_id`, `account_id`, `client_id`, `created_at`, `updated_at`, `deleted_at`, `name`, `is_deleted`, `public_id`, `task_rate`, `due_date`, `private_notes`, `budgeted_hours`, `custom_value1`, `custom_value2`) VALUES (1,1,1,3,'2019-07-13 04:36:17','2019-07-13 04:36:17',NULL,'Website Development (Enhance From Previous Website)',0,1,0.0000,NULL,'',0.00,NULL,NULL);
/*!40000 ALTER TABLE `projects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `proposal_categories`
--

DROP TABLE IF EXISTS `proposal_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `proposal_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `public_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `proposal_categories_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `proposal_categories_user_id_foreign` (`user_id`),
  KEY `proposal_categories_public_id_index` (`public_id`),
  CONSTRAINT `proposal_categories_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `proposal_categories_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `proposal_categories`
--

LOCK TABLES `proposal_categories` WRITE;
/*!40000 ALTER TABLE `proposal_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `proposal_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `proposal_invitations`
--

DROP TABLE IF EXISTS `proposal_invitations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `proposal_invitations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `contact_id` int(10) unsigned NOT NULL,
  `proposal_id` int(10) unsigned NOT NULL,
  `invitation_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `sent_date` timestamp NULL DEFAULT NULL,
  `viewed_date` timestamp NULL DEFAULT NULL,
  `opened_date` timestamp NULL DEFAULT NULL,
  `message_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `email_error` text COLLATE utf8_unicode_ci,
  `public_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `proposal_invitations_account_id_public_id_unique` (`account_id`,`public_id`),
  UNIQUE KEY `proposal_invitations_invitation_key_unique` (`invitation_key`),
  KEY `proposal_invitations_user_id_foreign` (`user_id`),
  KEY `proposal_invitations_contact_id_foreign` (`contact_id`),
  KEY `proposal_invitations_proposal_id_index` (`proposal_id`),
  KEY `proposal_invitations_public_id_index` (`public_id`),
  CONSTRAINT `proposal_invitations_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `proposal_invitations_proposal_id_foreign` FOREIGN KEY (`proposal_id`) REFERENCES `proposals` (`id`) ON DELETE CASCADE,
  CONSTRAINT `proposal_invitations_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `proposal_invitations`
--

LOCK TABLES `proposal_invitations` WRITE;
/*!40000 ALTER TABLE `proposal_invitations` DISABLE KEYS */;
/*!40000 ALTER TABLE `proposal_invitations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `proposal_snippets`
--

DROP TABLE IF EXISTS `proposal_snippets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `proposal_snippets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `proposal_category_id` int(10) unsigned DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `icon` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `private_notes` text COLLATE utf8_unicode_ci NOT NULL,
  `html` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `css` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `public_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `proposal_snippets_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `proposal_snippets_user_id_foreign` (`user_id`),
  KEY `proposal_snippets_public_id_index` (`public_id`),
  CONSTRAINT `proposal_snippets_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `proposal_snippets_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `proposal_snippets`
--

LOCK TABLES `proposal_snippets` WRITE;
/*!40000 ALTER TABLE `proposal_snippets` DISABLE KEYS */;
/*!40000 ALTER TABLE `proposal_snippets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `proposal_templates`
--

DROP TABLE IF EXISTS `proposal_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `proposal_templates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `private_notes` text COLLATE utf8_unicode_ci NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `html` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `css` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `public_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `proposal_templates_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `proposal_templates_user_id_foreign` (`user_id`),
  KEY `proposal_templates_public_id_index` (`public_id`),
  CONSTRAINT `proposal_templates_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `proposal_templates_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `proposal_templates`
--

LOCK TABLES `proposal_templates` WRITE;
/*!40000 ALTER TABLE `proposal_templates` DISABLE KEYS */;
INSERT INTO `proposal_templates` (`id`, `account_id`, `user_id`, `created_at`, `updated_at`, `deleted_at`, `is_deleted`, `private_notes`, `name`, `html`, `css`, `public_id`) VALUES (1,NULL,NULL,'2018-04-15 19:25:16','2018-07-26 23:59:43',NULL,0,'','Clean','<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n\n	<tr class=\"grey-bg\">\n		<td><img src=\"$logoUrl\" width=\"193\"/></td>\n		<td align=\"right\"><p class=\"quote quote-number grey-upper\">Proposal #$quoteNumber</p></td>\n	</tr>\n\n	<tr class=\"top-header grey-bg\">\n		<td colspan=\"2\" align=\"center\">\n			<h1 class=\"cover-heading\">New Business Proposal</h1>\n			<p class=\"quote quoteDate grey-upper\">Valid Until $validUntil</p>\n		</td>\n	</tr>\n\n	<tr align=\"center\" class=\"grey-bg proposal-info\">\n		<td width=\"50%\">\n			<p class=\"blue-upper\">Prepared for:</p>\n			<h3 class=\"client name\">$client.name</h3>\n			<p>\n				<span class=\"client address1\">$client.address1</span><br/>\n				<span class=\"client city\">$client.city</span>, <span class=\"client state\">$client.state</span> <span class=\"client postal-code\">$client.postal_code</span>\n			</p>\n		</td>\n		<td width=\"50%\">\n			<p class=\"blue-upper\">Prepared by:</p>\n			<h3 class=\"account name\">$account.name</h3>\n			<p>\n				<span class=\"account address1\">$account.address1</span><br/>\n				<span class=\"account city\">$account.city</span>, <span class=\"account state\">$account.state</span> <span class=\"account postal-code\">$account.postal_code</span></p>\n			</td>\n		</tr>\n	</td>\n</tr>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n	<tr>\n		<td colspan=\"2\" class=\"card-content\">\n			<h2 class=\"card-title\">PROJECT DESCRIPTION:</h2>\n			<p class=\"card-text\">Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.</p><br/>\n		</td>\n	</tr>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n	<tr>\n		<td colspan=\"2\">\n			<hr/>\n		</td>\n	</tr>\n</table>\n\n<table>\n	<tr>\n		<td class=\"grid-item-card card-content\">\n			<h2 class=\"card-title\">OBJECTIVE:</h2>\n			<p class=\"card-text\">Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.</p>\n		</td>\n		<td class=\"grid-item-card card-content\">\n			<h2 class=\"card-title\">GOAL:</h2>\n			<p class=\"card-text\">Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.</p>\n		</td>\n	</tr>\n</table>\n\n<table>\n	<tr class=\"block-quote\" align=\"center\">\n		<td colspan=\"2\">\n			<img src=\"$quoteImageUrl\" width=\"25\"/>\n			<p class=\"quote\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce congue auctor magna id sodales. Maecenas mollis justo sed tempor facilisis. Ut malesuada in nibh ultrices auctor. Proin id maximus ipsum. Sed eu magna ac nisl sollicitudin porta in non augue. Mauris feugiat interdum aliquam. Aliquam ultrices interdum dolor.</p>\n		</td>\n	</tr>\n</table>\n\n<table>\n	<tr>\n		<td class=\"card-content\">\n			<img width=\"150px\" srcx=\"img/thumb-square.jpg\"/>\n		</td>\n		<td class=\"card-content\">\n			<h2 class=\"card-title\">OBJECTIVE:</h2>\n			<p class=\"card-text\">Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.</p>\n		</td>\n	</tr>\n	<tr>\n		<td class=\"card-content\">\n			<img width=\"150px\" srcx=\"img/thumb-square.jpg\"/>\n		</td>\n		<td class=\"card-content\">\n			<h2 class=\"card-title\">OBJECTIVE:</h2>\n			<p class=\"card-text\">Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.</p>\n		</td>\n	</tr>\n</table>\n\n<table>\n	<tr>\n		<td colspan=\"2\">\n			<hr/>\n		</td>\n	</tr>\n\n	<tr>\n		<td class=\"grid-item-card card-content\">\n			<img/>\n			<h2 class=\"card-title\">OBJECTIVE:</h2>\n			<p class=\"card-text\">Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.</p>\n		</td>\n		<td class=\"grid-item-card card-content\">\n			<img/>\n			<h2 class=\"card-title\">GOAL:</h2>\n			<p class=\"card-text\">Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.</p>\n		</td>\n	</tr>\n\n	<tr class=\"footer\" align=\"center\">\n		<td colspan=\"2\"></td>\n	</tr>\n\n</table>\n','body {\n    font-family: \'Open Sans\', Helvetica, arial, sans-serif;\n    color: #161616;\n}\n\n.grey-upper {\n	font-size: 11px;\n	letter-spacing: 3px;\n	text-transform: uppercase;\n	color: #9a9a9a;\n}\n\n.blue-upper {\n	padding-bottom: 8px;\n	font-size: 11px;\n	letter-spacing: 3px;\n	text-transform: uppercase;\n	color: #37a3c6;\n	margin: 0;\n}\n\np span.client  {\n	margin:5px 0px 0px 0px;\n}\n\nh1.cover-heading {\n	font-size: 48px;\n	line-height: 53px;\n	text-transform: uppercase;\n	font-weight: 100;\n	letter-spacing: 3px;\n	padding: 0 50px;\n}\n\nh3.client.name {\n	padding: 0;\n	margin: 0 0 -10px 0;\n	font-size:18px;\n	font-weight: 600;\n}\n\nspan.client.address1, span.client.city, span.client.state, span.client.postal-code {\n	font-size: 14px;\n	line-height: 18.5px;\n}\n\nh3.account.name {\n	padding: 0;\n	margin: 0 0 -10px 0;\n	font-size:18px;\n	font-weight: 600;\n}\n\nspan.account.address1, span.account.city, span.account.state, span.account.postal-code {\n	font-size: 14px;\n	line-height: 18.5px;\n}\n\n\n.heading,\n.card-title {\n	font-size: 14px;\n	letter-spacing: 3px;\n	color: #37a3c6;\n	font-weight: 600;\n}\n\n.card-text {\n	font-size: 15px;\n	line-height: 21px;\n}\n\na.button {\n	background: #37a3c6;\n	padding: 12px 25px;\n	border-radius: 2px;\n	color: #fff;\n	text-transform: uppercase;\n	font-size: 12px;\n	text-decoration: none;\n	letter-spacing: 3px;\n	font-weight: 600;\n	margin: 15px 0;\n}\n\na.button:hover {\n	background: #161616;\n}\n\n/****** Table *****************************************/\n\n.grey-bg {\n	background: #eeefef;\n}\n\n.card-content {\n	padding: 20px;\n}\n\ntd {\n    vertical-align: top;\n}\n\ntr.top-header {\n	height: 350px;\n}\n\ntr.top-header td {\n	padding: 80px 0 0 0;\n	border-bottom: 1px solid #dddcdc;\n}\n\ntr.top-header h1.heading {\n	margin: 0;\n}\n\ntr.top-header p {\n	margin: 5px 0 0 0;\n}\n\n.proposal-info {\n	height: 350px;\n}\n\n.proposal-info td {\n	padding: 0 0 120px 0;\n}\n\ntr.block-quote {\n	margin: 50px 0 ;\n}\n\ntr.block-quote td {\n	background: #fbfbfb;\n	font-style: italic;\n	padding: 0 75px;\n	font-size: 17px;\n	line-height: 24px;\n	padding: 80px 120px;\n	color: #686766;\n	border-top: 1px solid #dddcdc;\n	border-bottom: 1px solid #dddcdc;\n}\n\ntr.footer td {\n	background: #f0efef;\n	font-size: 12px;\n	letter-spacing: 3px;\n	color: #8c8b8a;\n	padding: 50px 0;\n	text-transform: uppercase;\n}\n\n/****** Misc *****************************************/\n\n\nhr {\n	border: 0;\n	height: 1px;\n	background: #dddada;\n}\n\n.footer img {\n	vertical-align: middle;\n}\n',1);
/*!40000 ALTER TABLE `proposal_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `proposals`
--

DROP TABLE IF EXISTS `proposals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `proposals` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `invoice_id` int(10) unsigned NOT NULL,
  `proposal_template_id` int(10) unsigned DEFAULT NULL,
  `private_notes` text COLLATE utf8_unicode_ci NOT NULL,
  `html` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `css` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `public_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `proposals_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `proposals_user_id_foreign` (`user_id`),
  KEY `proposals_invoice_id_index` (`invoice_id`),
  KEY `proposals_proposal_template_id_index` (`proposal_template_id`),
  KEY `proposals_public_id_index` (`public_id`),
  CONSTRAINT `proposals_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `proposals_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
  CONSTRAINT `proposals_proposal_template_id_foreign` FOREIGN KEY (`proposal_template_id`) REFERENCES `proposal_templates` (`id`) ON DELETE CASCADE,
  CONSTRAINT `proposals_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `proposals`
--

LOCK TABLES `proposals` WRITE;
/*!40000 ALTER TABLE `proposals` DISABLE KEYS */;
/*!40000 ALTER TABLE `proposals` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `recurring_expenses`
--

DROP TABLE IF EXISTS `recurring_expenses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `recurring_expenses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `vendor_id` int(10) unsigned DEFAULT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `client_id` int(10) unsigned DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `amount` decimal(13,2) NOT NULL,
  `private_notes` text COLLATE utf8_unicode_ci NOT NULL,
  `public_notes` text COLLATE utf8_unicode_ci NOT NULL,
  `invoice_currency_id` int(10) unsigned DEFAULT NULL,
  `expense_currency_id` int(10) unsigned DEFAULT NULL,
  `should_be_invoiced` tinyint(1) NOT NULL DEFAULT '1',
  `expense_category_id` int(10) unsigned DEFAULT NULL,
  `tax_name1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `tax_rate1` decimal(13,3) NOT NULL,
  `tax_name2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `tax_rate2` decimal(13,3) NOT NULL,
  `frequency_id` int(10) unsigned NOT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `last_sent_date` date DEFAULT NULL,
  `public_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `recurring_expenses_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `recurring_expenses_user_id_foreign` (`user_id`),
  KEY `recurring_expenses_account_id_index` (`account_id`),
  KEY `recurring_expenses_invoice_currency_id_index` (`invoice_currency_id`),
  KEY `recurring_expenses_expense_currency_id_index` (`expense_currency_id`),
  KEY `recurring_expenses_expense_category_id_index` (`expense_category_id`),
  KEY `recurring_expenses_public_id_index` (`public_id`),
  CONSTRAINT `recurring_expenses_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `recurring_expenses_expense_category_id_foreign` FOREIGN KEY (`expense_category_id`) REFERENCES `expense_categories` (`id`) ON DELETE CASCADE,
  CONSTRAINT `recurring_expenses_expense_currency_id_foreign` FOREIGN KEY (`expense_currency_id`) REFERENCES `currencies` (`id`),
  CONSTRAINT `recurring_expenses_invoice_currency_id_foreign` FOREIGN KEY (`invoice_currency_id`) REFERENCES `currencies` (`id`),
  CONSTRAINT `recurring_expenses_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `recurring_expenses`
--

LOCK TABLES `recurring_expenses` WRITE;
/*!40000 ALTER TABLE `recurring_expenses` DISABLE KEYS */;
INSERT INTO `recurring_expenses` (`id`, `created_at`, `updated_at`, `deleted_at`, `account_id`, `vendor_id`, `user_id`, `client_id`, `is_deleted`, `amount`, `private_notes`, `public_notes`, `invoice_currency_id`, `expense_currency_id`, `should_be_invoiced`, `expense_category_id`, `tax_name1`, `tax_rate1`, `tax_name2`, `tax_rate2`, `frequency_id`, `start_date`, `end_date`, `last_sent_date`, `public_id`) VALUES (1,'2019-07-13 10:37:40','2020-03-28 23:43:08',NULL,1,5,1,4,0,200.00,'','',NULL,19,1,6,'',0.000,'',0.000,9,'2020-03-28','2030-03-28','2020-03-28',1);
/*!40000 ALTER TABLE `recurring_expenses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `scheduled_reports`
--

DROP TABLE IF EXISTS `scheduled_reports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scheduled_reports` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `config` text COLLATE utf8_unicode_ci NOT NULL,
  `frequency` enum('daily','weekly','biweekly','monthly') COLLATE utf8_unicode_ci NOT NULL,
  `send_date` date NOT NULL,
  `public_id` int(10) unsigned DEFAULT NULL,
  `ip` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `scheduled_reports_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `scheduled_reports_user_id_foreign` (`user_id`),
  KEY `scheduled_reports_account_id_index` (`account_id`),
  CONSTRAINT `scheduled_reports_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `scheduled_reports_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `scheduled_reports`
--

LOCK TABLES `scheduled_reports` WRITE;
/*!40000 ALTER TABLE `scheduled_reports` DISABLE KEYS */;
/*!40000 ALTER TABLE `scheduled_reports` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `security_codes`
--

DROP TABLE IF EXISTS `security_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `security_codes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `contact_id` int(10) unsigned DEFAULT NULL,
  `attempts` smallint(6) NOT NULL,
  `code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `bot_user_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  UNIQUE KEY `security_codes_bot_user_id_unique` (`bot_user_id`),
  KEY `security_codes_account_id_index` (`account_id`),
  KEY `security_codes_user_id_foreign` (`user_id`),
  KEY `security_codes_contact_id_foreign` (`contact_id`),
  CONSTRAINT `security_codes_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `security_codes_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `security_codes_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `security_codes`
--

LOCK TABLES `security_codes` WRITE;
/*!40000 ALTER TABLE `security_codes` DISABLE KEYS */;
/*!40000 ALTER TABLE `security_codes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sizes`
--

DROP TABLE IF EXISTS `sizes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sizes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sizes`
--

LOCK TABLES `sizes` WRITE;
/*!40000 ALTER TABLE `sizes` DISABLE KEYS */;
INSERT INTO `sizes` (`id`, `name`) VALUES (1,'1 - 3'),(2,'4 - 10'),(3,'11 - 50'),(4,'51 - 100'),(5,'101 - 500'),(6,'500+');
/*!40000 ALTER TABLE `sizes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `subscriptions`
--

DROP TABLE IF EXISTS `subscriptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `subscriptions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `event_id` int(10) unsigned DEFAULT NULL,
  `target_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `public_id` int(10) unsigned DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `format` enum('JSON','UBL') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'JSON',
  PRIMARY KEY (`id`),
  UNIQUE KEY `subscriptions_account_id_public_id_unique` (`account_id`,`public_id`),
  CONSTRAINT `subscriptions_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `subscriptions`
--

LOCK TABLES `subscriptions` WRITE;
/*!40000 ALTER TABLE `subscriptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `subscriptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `task_statuses`
--

DROP TABLE IF EXISTS `task_statuses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `task_statuses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `sort_order` smallint(6) NOT NULL DEFAULT '0',
  `public_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `task_statuses_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `task_statuses_user_id_foreign` (`user_id`),
  KEY `task_statuses_account_id_index` (`account_id`),
  KEY `task_statuses_public_id_index` (`public_id`),
  CONSTRAINT `task_statuses_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `task_statuses_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `task_statuses`
--

LOCK TABLES `task_statuses` WRITE;
/*!40000 ALTER TABLE `task_statuses` DISABLE KEYS */;
/*!40000 ALTER TABLE `task_statuses` 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 = utf8 */;
CREATE TABLE `tasks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `client_id` int(10) unsigned DEFAULT NULL,
  `invoice_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `description` text COLLATE utf8_unicode_ci,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `public_id` int(10) unsigned NOT NULL,
  `is_running` tinyint(1) NOT NULL DEFAULT '0',
  `time_log` text COLLATE utf8_unicode_ci,
  `project_id` int(10) unsigned DEFAULT NULL,
  `task_status_id` int(10) unsigned DEFAULT NULL,
  `task_status_sort_order` smallint(6) NOT NULL DEFAULT '0',
  `custom_value1` text COLLATE utf8_unicode_ci,
  `custom_value2` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `tasks_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `tasks_user_id_foreign` (`user_id`),
  KEY `tasks_invoice_id_foreign` (`invoice_id`),
  KEY `tasks_client_id_foreign` (`client_id`),
  KEY `tasks_account_id_index` (`account_id`),
  KEY `tasks_public_id_index` (`public_id`),
  KEY `tasks_project_id_index` (`project_id`),
  KEY `tasks_task_status_id_index` (`task_status_id`),
  CONSTRAINT `tasks_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `tasks_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
  CONSTRAINT `tasks_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
  CONSTRAINT `tasks_project_id_foreign` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
  CONSTRAINT `tasks_task_status_id_foreign` FOREIGN KEY (`task_status_id`) REFERENCES `task_statuses` (`id`) ON DELETE CASCADE,
  CONSTRAINT `tasks_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tasks`
--

LOCK TABLES `tasks` WRITE;
/*!40000 ALTER TABLE `tasks` DISABLE KEYS */;
/*!40000 ALTER TABLE `tasks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_rates`
--

DROP TABLE IF EXISTS `tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_rates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `rate` decimal(13,3) NOT NULL,
  `public_id` int(10) unsigned NOT NULL,
  `is_inclusive` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `tax_rates_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `tax_rates_user_id_foreign` (`user_id`),
  KEY `tax_rates_account_id_index` (`account_id`),
  CONSTRAINT `tax_rates_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `tax_rates_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_rates`
--

LOCK TABLES `tax_rates` WRITE;
/*!40000 ALTER TABLE `tax_rates` DISABLE KEYS */;
INSERT INTO `tax_rates` (`id`, `account_id`, `user_id`, `created_at`, `updated_at`, `deleted_at`, `name`, `rate`, `public_id`, `is_inclusive`) VALUES (1,1,1,'2018-04-15 03:40:56','2018-04-15 03:40:56',NULL,'GST',6.000,1,0),(2,1,1,'2019-07-13 01:00:34','2025-08-07 03:29:39',NULL,'SST',8.000,2,0);
/*!40000 ALTER TABLE `tax_rates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `themes`
--

DROP TABLE IF EXISTS `themes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `themes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `themes`
--

LOCK TABLES `themes` WRITE;
/*!40000 ALTER TABLE `themes` DISABLE KEYS */;
INSERT INTO `themes` (`id`, `name`) VALUES (1,'amelia'),(2,'cerulean'),(3,'cosmo'),(4,'cyborg'),(5,'flatly'),(6,'journal'),(7,'readable'),(8,'simplex'),(9,'slate'),(10,'spacelab'),(11,'united'),(12,'yeti');
/*!40000 ALTER TABLE `themes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `timezones`
--

DROP TABLE IF EXISTS `timezones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `timezones` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `location` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=114 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `timezones`
--

LOCK TABLES `timezones` WRITE;
/*!40000 ALTER TABLE `timezones` DISABLE KEYS */;
INSERT INTO `timezones` (`id`, `name`, `location`) VALUES (1,'Pacific/Midway','(GMT-11:00) Midway Island'),(2,'US/Samoa','(GMT-11:00) Samoa'),(3,'US/Hawaii','(GMT-10:00) Hawaii'),(4,'US/Alaska','(GMT-09:00) Alaska'),(5,'US/Pacific','(GMT-08:00) Pacific Time (US &amp; Canada)'),(6,'America/Tijuana','(GMT-08:00) Tijuana'),(7,'US/Arizona','(GMT-07:00) Arizona'),(8,'US/Mountain','(GMT-07:00) Mountain Time (US &amp; Canada)'),(9,'America/Chihuahua','(GMT-07:00) Chihuahua'),(10,'America/Mazatlan','(GMT-07:00) Mazatlan'),(11,'America/Mexico_City','(GMT-06:00) Mexico City'),(12,'America/Monterrey','(GMT-06:00) Monterrey'),(13,'Canada/Saskatchewan','(GMT-06:00) Saskatchewan'),(14,'US/Central','(GMT-06:00) Central Time (US &amp; Canada)'),(15,'US/Eastern','(GMT-05:00) Eastern Time (US &amp; Canada)'),(16,'US/East-Indiana','(GMT-05:00) Indiana (East)'),(17,'America/Bogota','(GMT-05:00) Bogota'),(18,'America/Lima','(GMT-05:00) Lima'),(19,'America/Caracas','(GMT-04:30) Caracas'),(20,'Canada/Atlantic','(GMT-04:00) Atlantic Time (Canada)'),(21,'America/La_Paz','(GMT-04:00) La Paz'),(22,'America/Santiago','(GMT-04:00) Santiago'),(23,'Canada/Newfoundland','(GMT-03:30) Newfoundland'),(24,'America/Buenos_Aires','(GMT-03:00) Buenos Aires'),(25,'America/Godthab','(GMT-03:00) Greenland'),(26,'Atlantic/Stanley','(GMT-02:00) Stanley'),(27,'Atlantic/Azores','(GMT-01:00) Azores'),(28,'Atlantic/Cape_Verde','(GMT-01:00) Cape Verde Is.'),(29,'Africa/Casablanca','(GMT) Casablanca'),(30,'Europe/Dublin','(GMT) Dublin'),(31,'Europe/Lisbon','(GMT) Lisbon'),(32,'Europe/London','(GMT) London'),(33,'Africa/Monrovia','(GMT) Monrovia'),(34,'Europe/Amsterdam','(GMT+01:00) Amsterdam'),(35,'Europe/Belgrade','(GMT+01:00) Belgrade'),(36,'Europe/Berlin','(GMT+01:00) Berlin'),(37,'Europe/Bratislava','(GMT+01:00) Bratislava'),(38,'Europe/Brussels','(GMT+01:00) Brussels'),(39,'Europe/Budapest','(GMT+01:00) Budapest'),(40,'Europe/Copenhagen','(GMT+01:00) Copenhagen'),(41,'Europe/Ljubljana','(GMT+01:00) Ljubljana'),(42,'Europe/Madrid','(GMT+01:00) Madrid'),(43,'Europe/Paris','(GMT+01:00) Paris'),(44,'Europe/Prague','(GMT+01:00) Prague'),(45,'Europe/Rome','(GMT+01:00) Rome'),(46,'Europe/Sarajevo','(GMT+01:00) Sarajevo'),(47,'Europe/Skopje','(GMT+01:00) Skopje'),(48,'Europe/Stockholm','(GMT+01:00) Stockholm'),(49,'Europe/Vienna','(GMT+01:00) Vienna'),(50,'Europe/Warsaw','(GMT+01:00) Warsaw'),(51,'Europe/Zagreb','(GMT+01:00) Zagreb'),(52,'Europe/Athens','(GMT+02:00) Athens'),(53,'Europe/Bucharest','(GMT+02:00) Bucharest'),(54,'Africa/Cairo','(GMT+02:00) Cairo'),(55,'Africa/Harare','(GMT+02:00) Harare'),(56,'Europe/Helsinki','(GMT+02:00) Helsinki'),(57,'Europe/Istanbul','(GMT+02:00) Istanbul'),(58,'Asia/Jerusalem','(GMT+02:00) Jerusalem'),(59,'Europe/Kiev','(GMT+02:00) Kyiv'),(60,'Europe/Minsk','(GMT+02:00) Minsk'),(61,'Europe/Riga','(GMT+02:00) Riga'),(62,'Europe/Sofia','(GMT+02:00) Sofia'),(63,'Europe/Tallinn','(GMT+02:00) Tallinn'),(64,'Europe/Vilnius','(GMT+02:00) Vilnius'),(65,'Asia/Baghdad','(GMT+03:00) Baghdad'),(66,'Asia/Kuwait','(GMT+03:00) Kuwait'),(67,'Africa/Nairobi','(GMT+03:00) Nairobi'),(68,'Asia/Riyadh','(GMT+03:00) Riyadh'),(69,'Asia/Tehran','(GMT+03:30) Tehran'),(70,'Europe/Moscow','(GMT+04:00) Moscow'),(71,'Asia/Baku','(GMT+04:00) Baku'),(72,'Europe/Volgograd','(GMT+04:00) Volgograd'),(73,'Asia/Muscat','(GMT+04:00) Muscat'),(74,'Asia/Tbilisi','(GMT+04:00) Tbilisi'),(75,'Asia/Yerevan','(GMT+04:00) Yerevan'),(76,'Asia/Kabul','(GMT+04:30) Kabul'),(77,'Asia/Karachi','(GMT+05:00) Karachi'),(78,'Asia/Tashkent','(GMT+05:00) Tashkent'),(79,'Asia/Kolkata','(GMT+05:30) Kolkata'),(80,'Asia/Kathmandu','(GMT+05:45) Kathmandu'),(81,'Asia/Yekaterinburg','(GMT+06:00) Ekaterinburg'),(82,'Asia/Almaty','(GMT+06:00) Almaty'),(83,'Asia/Dhaka','(GMT+06:00) Dhaka'),(84,'Asia/Novosibirsk','(GMT+07:00) Novosibirsk'),(85,'Asia/Bangkok','(GMT+07:00) Bangkok'),(86,'Asia/Ho_Chi_Minh','(GMT+07.00) Ho Chi Minh'),(87,'Asia/Jakarta','(GMT+07:00) Jakarta'),(88,'Asia/Krasnoyarsk','(GMT+08:00) Krasnoyarsk'),(89,'Asia/Chongqing','(GMT+08:00) Chongqing'),(90,'Asia/Hong_Kong','(GMT+08:00) Hong Kong'),(91,'Asia/Kuala_Lumpur','(GMT+08:00) Kuala Lumpur'),(92,'Australia/Perth','(GMT+08:00) Perth'),(93,'Asia/Singapore','(GMT+08:00) Singapore'),(94,'Asia/Taipei','(GMT+08:00) Taipei'),(95,'Asia/Ulaanbaatar','(GMT+08:00) Ulaan Bataar'),(96,'Asia/Urumqi','(GMT+08:00) Urumqi'),(97,'Asia/Irkutsk','(GMT+09:00) Irkutsk'),(98,'Asia/Seoul','(GMT+09:00) Seoul'),(99,'Asia/Tokyo','(GMT+09:00) Tokyo'),(100,'Australia/Adelaide','(GMT+09:30) Adelaide'),(101,'Australia/Darwin','(GMT+09:30) Darwin'),(102,'Asia/Yakutsk','(GMT+10:00) Yakutsk'),(103,'Australia/Brisbane','(GMT+10:00) Brisbane'),(104,'Australia/Canberra','(GMT+10:00) Canberra'),(105,'Pacific/Guam','(GMT+10:00) Guam'),(106,'Australia/Hobart','(GMT+10:00) Hobart'),(107,'Australia/Melbourne','(GMT+10:00) Melbourne'),(108,'Pacific/Port_Moresby','(GMT+10:00) Port Moresby'),(109,'Australia/Sydney','(GMT+10:00) Sydney'),(110,'Asia/Vladivostok','(GMT+11:00) Vladivostok'),(111,'Asia/Magadan','(GMT+12:00) Magadan'),(112,'Pacific/Auckland','(GMT+12:00) Auckland'),(113,'Pacific/Fiji','(GMT+12:00) Fiji');
/*!40000 ALTER TABLE `timezones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_accounts`
--

DROP TABLE IF EXISTS `user_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_accounts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id1` int(10) unsigned DEFAULT NULL,
  `user_id2` int(10) unsigned DEFAULT NULL,
  `user_id3` int(10) unsigned DEFAULT NULL,
  `user_id4` int(10) unsigned DEFAULT NULL,
  `user_id5` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_accounts_user_id1_index` (`user_id1`),
  KEY `user_accounts_user_id2_index` (`user_id2`),
  KEY `user_accounts_user_id3_index` (`user_id3`),
  KEY `user_accounts_user_id4_index` (`user_id4`),
  KEY `user_accounts_user_id5_index` (`user_id5`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_accounts`
--

LOCK TABLES `user_accounts` WRITE;
/*!40000 ALTER TABLE `user_accounts` DISABLE KEYS */;
INSERT INTO `user_accounts` (`id`, `user_id1`, `user_id2`, `user_id3`, `user_id4`, `user_id5`) VALUES (1,1,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `user_accounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `first_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `last_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `username` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `confirmation_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `registered` tinyint(1) NOT NULL DEFAULT '0',
  `confirmed` tinyint(1) NOT NULL DEFAULT '0',
  `notify_sent` tinyint(1) NOT NULL DEFAULT '1',
  `notify_viewed` tinyint(1) NOT NULL DEFAULT '0',
  `notify_paid` tinyint(1) NOT NULL DEFAULT '1',
  `public_id` int(10) unsigned DEFAULT NULL,
  `force_pdfjs` tinyint(1) NOT NULL DEFAULT '0',
  `remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `news_feed_id` int(10) unsigned DEFAULT NULL,
  `notify_approved` tinyint(1) NOT NULL DEFAULT '1',
  `failed_logins` smallint(6) DEFAULT NULL,
  `dark_mode` tinyint(1) DEFAULT '1',
  `referral_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `oauth_user_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `oauth_provider_id` int(10) unsigned DEFAULT NULL,
  `is_admin` tinyint(1) NOT NULL DEFAULT '1',
  `bot_user_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `google_2fa_secret` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `remember_2fa_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `slack_webhook_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `accepted_terms_version` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `accepted_terms_timestamp` timestamp NULL DEFAULT NULL,
  `accepted_terms_ip` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `only_notify_owned` tinyint(1) DEFAULT '0',
  `permissions` longtext COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_username_unique` (`username`),
  UNIQUE KEY `users_account_id_public_id_unique` (`account_id`,`public_id`),
  UNIQUE KEY `users_oauth_user_id_oauth_provider_id_unique` (`oauth_user_id`,`oauth_provider_id`),
  KEY `users_account_id_index` (`account_id`),
  CONSTRAINT `users_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users`
--

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` (`id`, `account_id`, `created_at`, `updated_at`, `deleted_at`, `first_name`, `last_name`, `phone`, `username`, `email`, `password`, `confirmation_code`, `registered`, `confirmed`, `notify_sent`, `notify_viewed`, `notify_paid`, `public_id`, `force_pdfjs`, `remember_token`, `news_feed_id`, `notify_approved`, `failed_logins`, `dark_mode`, `referral_code`, `oauth_user_id`, `oauth_provider_id`, `is_admin`, `bot_user_id`, `google_2fa_secret`, `remember_2fa_token`, `slack_webhook_url`, `accepted_terms_version`, `accepted_terms_timestamp`, `accepted_terms_ip`, `only_notify_owned`, `permissions`) VALUES (1,1,'2018-04-15 19:25:16','2021-09-21 03:24:14',NULL,'System','Administrator','+60192220293','helpdesk@m-hub.asia','helpdesk@m-hub.asia','$2y$10$u8jVC.pTcPu12R4bPEHmKOaKmSStM.yR/LExmkivwYPRdG9OE2RD6',NULL,1,1,1,1,1,NULL,0,'lkmbMszImduGu08NUEDtsQDKTJW9EReYGvdNpeyu1b2IrbumjtrZTokpKgaC',NULL,1,0,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'','1.0.1','2019-05-18 02:36:34','183.171.83.97',0,''),(2,1,'2018-04-15 04:15:28','2025-06-12 07:57:06',NULL,'Khedir','Yaakub','+60178283608','khediryaakub@mobtelhub.com','khediryaakub@mobtelhub.com','$2y$10$AzCzYyTVSQaqWGVz0YpYEO3ebsdmdqMnZ5QJcaLq0TLXGClYwMmCm',NULL,1,1,1,1,1,1,0,'tIVLHb6SqEwxWgASJ32UxnzfWfpobLHypwAUvt9rLgekGcY1jA42ZbegzbHP',NULL,1,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'1.0.1','2019-07-14 06:24:31','210.195.146.239',0,'{\"0\":\"create_client\",\"1\":\"view_client\",\"9\":\"create_invoice\",\"10\":\"view_invoice\",\"12\":\"create_payment\",\"13\":\"view_payment\",\"15\":\"create_product\",\"16\":\"view_product\",\"27\":\"create_reports\",\"28\":\"view_reports\",\"36\":\"create_recurring_invoice\",\"37\":\"view_recurring_invoice\",\"39\":\"view_contact\",\"40\":\"create_contact\"}'),(3,1,'2018-04-15 04:16:38','2019-05-18 04:02:27','2019-05-18 04:02:27','Suhaili','Suhaili',NULL,'aili@m-hub.asia','aili@m-hub.asia','$2y$10$HdiOQAkwGczaFu5.lLM23eDyKNV5qHto8fVQVP/EThp9qU0puF0ye',NULL,1,1,1,0,1,2,0,'KOo7uV1SUmX2O15U34jByQmebtoh4nrQVZB4gkRsfTKYNXivsnmbqezHQ2OJ',NULL,1,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'[\"create_proposal\",\"create_expense\",\"create_project\",\"create_vendor\",\"create_product\",\"create_task\",\"create_quote\",\"create_credit\",\"create_payment\",\"create_contact\",\"create_invoice\",\"create_client\",\"create_recurring_invoice\",\"create_reports\",\"edit_proposal\",\"edit_expense\",\"edit_project\",\"edit_vendor\",\"edit_product\",\"edit_task\",\"edit_quote\",\"edit_credit\",\"edit_payment\",\"edit_contact\",\"edit_invoice\",\"edit_client\",\"edit_recurring_invoice\",\"edit_reports\",\"view_proposal\",\"view_expense\",\"view_project\",\"view_vendor\",\"view_product\",\"view_task\",\"view_quote\",\"view_credit\",\"view_payment\",\"view_contact\",\"view_invoice\",\"view_client\",\"view_recurring_invoice\",\"view_reports\"]'),(4,1,'2018-04-16 19:24:14','2019-05-18 04:02:32','2019-05-18 04:02:32','Salmah','Salmah',NULL,'salmah@m-hub.asia','salmah@m-hub.asia','$2y$10$cH1xYcJeMubU.75O8HWDMesxPwxhHWbhO4/R6JZEy6afLkGX3igum',NULL,1,1,1,0,1,3,0,'U73vSm9DjAuGGXksUcV7JPkhn2fMezXzRqcPsEBEh3fAHY5G7NyT9oZoDk50',NULL,1,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'[\"create_proposal\",\"create_expense\",\"create_project\",\"create_vendor\",\"create_product\",\"create_task\",\"create_quote\",\"create_credit\",\"create_payment\",\"create_contact\",\"create_invoice\",\"create_client\",\"create_recurring_invoice\",\"create_reports\",\"edit_proposal\",\"edit_expense\",\"edit_project\",\"edit_vendor\",\"edit_product\",\"edit_task\",\"edit_quote\",\"edit_credit\",\"edit_payment\",\"edit_contact\",\"edit_invoice\",\"edit_client\",\"edit_recurring_invoice\",\"edit_reports\",\"view_proposal\",\"view_expense\",\"view_project\",\"view_vendor\",\"view_product\",\"view_task\",\"view_quote\",\"view_credit\",\"view_payment\",\"view_contact\",\"view_invoice\",\"view_client\",\"view_recurring_invoice\",\"view_reports\"]'),(7,1,'2020-11-12 12:19:57','2021-09-02 21:58:09','2021-09-02 21:58:09','Farah','Dahli','','farahdahli90@gmail.com','farahdahli90@gmail.com','$2y$10$QMFtrRshDTzVKaqL7JlN9u3bzYtTEYBS5/OlAUgXVVX1YsfF9ByEe',NULL,1,1,1,1,1,4,0,'xhvSh7oIFBTOuotuLLx8buYxJrl6pOEAYeXEzDqV3q45tqN5h3JhntD7NBE8',NULL,1,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'1.0.1','2020-11-12 12:20:53','113.210.55.46',0,'[]');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vendor_contacts`
--

DROP TABLE IF EXISTS `vendor_contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vendor_contacts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `vendor_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT '0',
  `first_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `last_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `public_id` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `vendor_contacts_account_id_public_id_unique` (`account_id`,`public_id`),
  KEY `vendor_contacts_user_id_foreign` (`user_id`),
  KEY `vendor_contacts_vendor_id_index` (`vendor_id`),
  CONSTRAINT `vendor_contacts_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `vendor_contacts_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `vendor_contacts_vendor_id_foreign` FOREIGN KEY (`vendor_id`) REFERENCES `vendors` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vendor_contacts`
--

LOCK TABLES `vendor_contacts` WRITE;
/*!40000 ALTER TABLE `vendor_contacts` DISABLE KEYS */;
INSERT INTO `vendor_contacts` (`id`, `account_id`, `user_id`, `vendor_id`, `created_at`, `updated_at`, `deleted_at`, `is_primary`, `first_name`, `last_name`, `email`, `phone`, `public_id`) VALUES (1,1,1,1,'2018-04-15 05:19:44','2019-07-13 07:58:54',NULL,1,'Radius Fuel Cards. Sdn. Bhd','','credit@radiusfuelcards.com.my','+60392126655',1),(2,1,1,2,'2018-04-15 05:21:20','2018-04-15 05:21:20',NULL,1,NULL,NULL,NULL,NULL,2),(3,1,1,3,'2019-07-13 04:18:21','2019-07-13 04:29:08',NULL,1,'GrabCar Sdn. Bhd','','nurul.rahman@grab.com','1300805858',3),(4,1,1,4,'2019-07-13 04:24:27','2019-08-06 12:53:19',NULL,1,'Celcom Mobile Sdn Bhd','','ech@celcom.com.my','+60196011111',4),(5,1,1,5,'2019-07-13 04:34:03','2020-01-28 19:14:31',NULL,1,'SKSA Technology Sdn. Bhd','','sales@internet-webhosting.com','+60320969121',5),(9,1,1,9,'2019-12-27 10:26:06','2019-12-27 10:28:50',NULL,1,'MAYBANK INVESTMENT BANK','','mgcc@maybank.com.my','1300886688',6),(10,1,1,10,'2019-12-27 10:52:31','2019-12-27 10:59:43',NULL,1,'Corporate Helpdesk','','corporate@malindoair.com','+60320356699',7),(11,1,1,10,'2019-12-27 10:52:31','2019-12-27 10:59:43',NULL,0,'Corporate Sales Representative','','jazlee.fazzlee@malindoair.com','+601121216975',8),(12,1,1,10,'2019-12-27 10:52:31','2019-12-27 10:59:43',NULL,0,'Corporate Sales Representative','','tan.yeekwan@malindoair.com','+60163308382',9),(13,1,1,11,'2019-12-27 11:12:17','2020-12-02 00:06:16',NULL,1,'CORPORATE CLIENT','SUPPORT TEAM','clientsupport@airasia.com','+60386600001, +60386604680',10),(14,1,1,11,'2019-12-27 11:12:17','2020-12-02 00:06:16',NULL,0,'CORPORATE CLIENT','SUPPORT TEAM','maa_distsupport@airasia.com','+60386600001, +60386604680',11),(15,1,1,11,'2019-12-27 11:12:17','2020-12-02 00:06:16',NULL,0,'CORPORATE CLIENT','SUPPORT TEAM','maa_corpsales@airasia.com','+60386600001, +60386604680',12),(16,1,1,12,'2021-08-20 14:27:56','2021-08-20 14:27:56',NULL,1,'','','','',13);
/*!40000 ALTER TABLE `vendor_contacts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vendors`
--

DROP TABLE IF EXISTS `vendors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vendors` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `currency_id` int(10) unsigned DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address1` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `address2` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `city` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `state` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `postal_code` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `country_id` int(10) unsigned DEFAULT NULL,
  `work_phone` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `private_notes` text COLLATE utf8_unicode_ci NOT NULL,
  `website` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT '0',
  `public_id` int(11) NOT NULL DEFAULT '0',
  `vat_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `id_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `transaction_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `custom_value1` text COLLATE utf8_unicode_ci,
  `custom_value2` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `vendors_account_id_foreign` (`account_id`),
  KEY `vendors_user_id_foreign` (`user_id`),
  KEY `vendors_country_id_foreign` (`country_id`),
  KEY `vendors_currency_id_foreign` (`currency_id`),
  CONSTRAINT `vendors_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `vendors_country_id_foreign` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`),
  CONSTRAINT `vendors_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `currencies` (`id`),
  CONSTRAINT `vendors_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vendors`
--

LOCK TABLES `vendors` WRITE;
/*!40000 ALTER TABLE `vendors` DISABLE KEYS */;
INSERT INTO `vendors` (`id`, `created_at`, `updated_at`, `deleted_at`, `user_id`, `account_id`, `currency_id`, `name`, `address1`, `address2`, `city`, `state`, `postal_code`, `country_id`, `work_phone`, `private_notes`, `website`, `is_deleted`, `public_id`, `vat_number`, `id_number`, `transaction_name`, `custom_value1`, `custom_value2`) VALUES (1,'2018-04-15 05:19:44','2019-07-13 07:58:54',NULL,1,1,NULL,'Radius Fuel Cards. Sdn. Bhd','Suite 7.05, Level 7, The Gardens North Tower,','Mid Valley City, Lingkaran Syed Putra,','Kuala Lumpur','Wilayah Persekutuan','59200',458,'+60392126655','Account No :- 6448001\r\nBank: Radius Fuel Cards Sdn Bhd\r\nBank Account No: 98928000004118\r\nBank Swift Code: CIBBMYKL','https://www.radiusfuelcards.com.my/',0,1,'','1180138H',NULL,NULL,NULL),(2,'2018-04-15 05:21:20','2019-07-13 03:57:05','2019-07-13 03:57:05',1,1,NULL,'Meal','','','','','',NULL,'','','',1,2,NULL,NULL,NULL,NULL,NULL),(3,'2019-07-13 04:18:20','2019-07-13 04:29:08',NULL,1,1,NULL,'GrabCar Sdn. Bhd','Level 17, 1,','First Avenue, Bandar Utama','Kuala Lumpur','Wilayah Persekutuan','47800',458,'1300805858','Bank Name : Malayan Banking Bhd\r\nAccount Name : GrabCar Sdn. Bhd\r\nBank Account Number : 512334315402\r\nSwift Code : MBBEMYKL','https://business.grab.com',0,3,'W10-1808-32002108','1089444V',NULL,NULL,NULL),(4,'2019-07-13 04:24:27','2019-07-13 04:24:27',NULL,1,1,NULL,'Celcom Mobile Sdn Bhd','82, Menara Celcom','Jalan Raja Muda Abdul Aziz','Kuala Lumpur','Wilayah Persekutuan','50300',458,'+60196011111','','https://www.celcom.com.my',0,4,'W10-1808-32000450','0027910A',NULL,NULL,NULL),(5,'2019-07-13 04:34:03','2020-01-28 19:14:31',NULL,1,1,NULL,'SKSA Technology Sdn. Bhd','No. 36-3 & 38-3,','Subang Business Center, Jalan USJ 9/5Q ,','Subang Jaya','Selangor Darul Ehsan','47600',458,'+60320969121','Bank : Maybank Berhad\r\nBank Account no. : 512361128477\r\nAccount Name : SKSA Technology\r\nBusiness Registration No : 001448857-K\r\nBank Swift Code : MBBEMYKL','https://www.internet-webhosting.com/',0,5,'001052942336','0785198H',NULL,NULL,NULL),(9,'2019-12-27 10:26:06','2019-12-27 10:28:50',NULL,1,1,NULL,'Maybank2u','100 Jalan Tun Perak','Menara Maybank','Kuala Lumpur','Wilayah Persekutuan','50050',458,'1300886688','Account type: Sole Proprietor CA-i\r\nAccount number:	564548148577\r\nAccount name: MOBTEL HUB\r\n\r\n26-Dec-2019 HALF-YEARLY SERVICE CHARGE RM10.00','https://www.maybank2u.com.my',0,6,'','0015938H',NULL,NULL,NULL),(10,'2019-12-27 10:52:31','2019-12-27 10:59:43',NULL,1,1,NULL,'Malindo Airways Sdn. Bhd','No .2 , Jalan PJU 1 A/2 , Ara Damansara','Meritus @ Oasis Corporate Park','Petaling Jaya','Selangor Darul Ehsan','47301',458,'+60378415388','Your Account Code - MYKULCA2331\r\nUser ID - Alif\r\nPassword - Matrix_50\r\n\r\nBank - CIMB\r\nAccount Number - 8007168327','https://b2b.malindoair.com/MalindoAirAgentsPortal/CorporateDefault.aspx',0,7,'B16 -1808 -31014229','1018546-W',NULL,NULL,NULL),(11,'2019-12-27 11:12:17','2020-12-02 00:06:16',NULL,1,1,NULL,'AirAsia Berhad','Jalan Pekeliling 5','Lapangan Terbang Antarabangsa Kuala Lumpur (KLIA2)','KLIA','Selangor Darul Ehsan','64000',458,'+60386600001, +60386604680','Your User ID (Agency Number) is: SMEMY01536_ADMIN\r\nPassword: Matrix_50\r\n\r\nManager User ID: Khedir\r\nPassword: Khedir@2019','https://www.airasia.com/agent/login/en/gb',0,8,'','0284669-W',NULL,NULL,NULL),(12,'2021-08-20 14:27:56','2021-08-20 14:27:56',NULL,1,1,NULL,'SSM Biz License','','','','','',NULL,'','','',0,9,'','',NULL,NULL,NULL);
/*!40000 ALTER TABLE `vendors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'mhubasia_ninj416'
--

--
-- Dumping routines for database 'mhubasia_ninj416'
--
/*!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 2026-03-02  0:20:50
