Compare View
Commits (2)
Showing
3 changed files
Show diff stats
app.js
| @@ -395,6 +395,9 @@ app.post('/MGOfferInfo/NativeOfferInfo/getCurrentFriendFamilyList', require('./i | @@ -395,6 +395,9 @@ app.post('/MGOfferInfo/NativeOfferInfo/getCurrentFriendFamilyList', require('./i | ||
| 395 | app.post('/MGOfferInfo/NativeOfferInfo/getCurrentSpendingLimitList', require('./int').getCurrentSpendingLimitList); | 395 | app.post('/MGOfferInfo/NativeOfferInfo/getCurrentSpendingLimitList', require('./int').getCurrentSpendingLimitList); |
| 396 | app.post('/MGOfferInfo/NativeOfferInfo/getCurrentCreditLimitAtSubList', require('./int').getCurrentCreditLimitAtSubList); | 396 | app.post('/MGOfferInfo/NativeOfferInfo/getCurrentCreditLimitAtSubList', require('./int').getCurrentCreditLimitAtSubList); |
| 397 | app.post('/MGOfferInfo/NativeOfferInfo/getCurrentSplitChargeInfo', require('./int').getCurrentSplitChargeInfo); | 397 | app.post('/MGOfferInfo/NativeOfferInfo/getCurrentSplitChargeInfo', require('./int').getCurrentSplitChargeInfo); |
| 398 | +app.post('/v1/get_BillImage/', require('./int').getBillImage); | ||
| 399 | + | ||
| 400 | +app.get('/MGCCBSInvoiceInfo/MGCCBSInvoiceInfo/getAllCCBSInvoiceList/:ban/:pageSize/:pageNo', require('./intx').getAllCCBSInvoiceList); | ||
| 398 | 401 | ||
| 399 | app.post('/SBMWSREALCCP3G15/DoServiceFromXML', express.text({type:"*/*"}), require('./sbm').getCheckBalance_SBMWSREALCCP); | 402 | app.post('/SBMWSREALCCP3G15/DoServiceFromXML', express.text({type:"*/*"}), require('./sbm').getCheckBalance_SBMWSREALCCP); |
| 400 | app.post('/SBMWSREAL3G15/DoServiceFromXML', express.text({type:"*/*"}), require('./sbm').getCheckBalance_SBMWSREAL); | 403 | app.post('/SBMWSREAL3G15/DoServiceFromXML', express.text({type:"*/*"}), require('./sbm').getCheckBalance_SBMWSREAL); |
| @@ -568,4 +571,6 @@ q.on('success', function (result, job) { | @@ -568,4 +571,6 @@ q.on('success', function (result, job) { | ||
| 568 | 571 | ||
| 569 | // whileLoop() | 572 | // whileLoop() |
| 570 | 573 | ||
| 571 | -app.listen(port, () => console.log('app listening on port ' + port + '!')) | ||
| 572 | \ No newline at end of file | 574 | \ No newline at end of file |
| 575 | +app.listen(port, () => console.log('app listening on port ' + port + '!')) | ||
| 576 | + | ||
| 577 | +//test | ||
| 573 | \ No newline at end of file | 578 | \ No newline at end of file |
int.js
| @@ -547,4 +547,48 @@ module.exports.getCurrentSplitChargeInfo = async (req, res) => { | @@ -547,4 +547,48 @@ module.exports.getCurrentSplitChargeInfo = async (req, res) => { | ||
| 547 | } | 547 | } |
| 548 | 548 | ||
| 549 | res.status(200).send(response) | 549 | res.status(200).send(response) |
| 550 | -} | ||
| 551 | \ No newline at end of file | 550 | \ No newline at end of file |
| 551 | +} | ||
| 552 | + | ||
| 553 | +module.exports.getBillImage = async (req, res) => { | ||
| 554 | + console.log('===== POST getBillImage =====') | ||
| 555 | + console.log('url', req.originalUrl); | ||
| 556 | + console.log('headers', req.headers); | ||
| 557 | + console.log('query', req.query); | ||
| 558 | + console.log('params', req.params); | ||
| 559 | + console.log('body', JSON.stringify(req.body)); | ||
| 560 | + | ||
| 561 | + let responseErr = { | ||
| 562 | + "errorCode": "INT10001", | ||
| 563 | + "message": "error.", | ||
| 564 | + } | ||
| 565 | + | ||
| 566 | + let response = { | ||
| 567 | + "errorCode": "OSBbllngA00001", | ||
| 568 | + "message": "Success.", | ||
| 569 | + "uuid": "e3d8a473-6111-48cb-bf7c-dc0e5c024d24", | ||
| 570 | + "backendResponseList": { | ||
| 571 | + "backendResponseInfoArray": [ | ||
| 572 | + { | ||
| 573 | + "apiName": "getBillDocumentInfo", | ||
| 574 | + "errorCode": "OSBbllngA00001", | ||
| 575 | + "message": "Success.", | ||
| 576 | + "system": "OSB", | ||
| 577 | + "url": "http://172.19.204.90:8011/ESB_Get_FinancialManagementInfo/Interfaces/Proxy/BillingInfoPS" | ||
| 578 | + }, | ||
| 579 | + { | ||
| 580 | + "apiName": "getBillImageBySearchList", | ||
| 581 | + "errorCode": "OSBbllngA00001", | ||
| 582 | + "message": "Success.", | ||
| 583 | + "system": "CCCSOA", | ||
| 584 | + "url": "http://172.19.216.171:8180/BillingServiceIntegration/BillingServiceIntegrationSI" | ||
| 585 | + } | ||
| 586 | + ], | ||
| 587 | + "size": 2 | ||
| 588 | + }, | ||
| 589 | + "billImageInfo": { | ||
| 590 | + "fileBytesArray": "JVBERi0xLjYKJeLjz9MKMSAwIG9iago8PAovVHlwZSAvQ2F0YWxvZwovUGFnZXMg..." | ||
| 591 | + } | ||
| 592 | + } | ||
| 593 | + | ||
| 594 | + res.status(200).send(response) | ||
| 595 | +} |
| @@ -0,0 +1,1736 @@ | @@ -0,0 +1,1736 @@ | ||
| 1 | +module.exports.getAllCCBSInvoiceList = async (req, res) => { | ||
| 2 | + console.log('===== GET getAllCCBSInvoiceList =====') | ||
| 3 | + console.log('url', req.originalUrl); | ||
| 4 | + console.log('headers', req.headers); | ||
| 5 | + console.log('query', req.query); | ||
| 6 | + console.log('params', req.params); | ||
| 7 | + console.log('body', req.body); | ||
| 8 | + | ||
| 9 | + let responseErr = { | ||
| 10 | + "getAllInvoiceListResponse": { | ||
| 11 | + "return": { | ||
| 12 | + "uuid": "ed41f948-565c-4900-a94d-ee63100e2fa4", | ||
| 13 | + "errorCode": "OSBbllngA10001", | ||
| 14 | + "message": "error." | ||
| 15 | + } | ||
| 16 | + } | ||
| 17 | + } | ||
| 18 | + | ||
| 19 | + let response = { | ||
| 20 | + "getAllInvoiceListResponse": { | ||
| 21 | + "return": { | ||
| 22 | + "invoiceList": { | ||
| 23 | + "size": "28", | ||
| 24 | + "invoiceInfoArray": [ | ||
| 25 | + { | ||
| 26 | + "discountTaxAmount": "-140", | ||
| 27 | + "adjustmentNetAmount": "0", | ||
| 28 | + "availableAdjustmentNetAmount": "1099", | ||
| 29 | + "invoiceBcBanId": "700046423", | ||
| 30 | + "dueDate": "2021-06-03T00:00:00.000+07:00", | ||
| 31 | + "orderIdGroup": "", | ||
| 32 | + "vatRate": "0.00", | ||
| 33 | + "converageEndDate": "2021-06-09T00:00:00.000+07:00", | ||
| 34 | + "discountAmount": "-2000", | ||
| 35 | + "invoiceTFaxAmount": "76.93", | ||
| 36 | + "invoiceAmount": "1099", | ||
| 37 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 38 | + "paymentAmount": "1175.93", | ||
| 39 | + "baNo": "200078606", | ||
| 40 | + "billTaxAmount": "307.72", | ||
| 41 | + "billingDocumentType": { | ||
| 42 | + "code": "BL", | ||
| 43 | + "description": "Bill" | ||
| 44 | + }, | ||
| 45 | + "billAmount": "4703.72", | ||
| 46 | + "invoiceType": "BILL", | ||
| 47 | + "converageStartDate": "2021-05-10T00:00:00.000+07:00", | ||
| 48 | + "currency": "THB", | ||
| 49 | + "billSequenceNo": "13522", | ||
| 50 | + "invoiceNo": "070520211000425014", | ||
| 51 | + "originalBalanceAmount": "1175.93", | ||
| 52 | + "customerManagerBaNo": "200078606", | ||
| 53 | + "invoiceCreationDate": "2021-06-02T00:00:00.000+07:00", | ||
| 54 | + "unpaidNetAmount": "0", | ||
| 55 | + "availableAdjustmentAmount": "1266.72", | ||
| 56 | + "discountNetAmount": "-2000", | ||
| 57 | + "billDate": "2021-05-11T00:00:00.000+07:00", | ||
| 58 | + "disputeNetAmount": "1.0", | ||
| 59 | + "creditTaxAmount": "0", | ||
| 60 | + "accountId": "200078606", | ||
| 61 | + "billProductType": "", | ||
| 62 | + "billingDocumentStatus": { | ||
| 63 | + "code": "N", | ||
| 64 | + "description": "Confirmed" | ||
| 65 | + }, | ||
| 66 | + "unpaidAmount": "0", | ||
| 67 | + "restrictionAmount": "2000", | ||
| 68 | + "disputeTaxAmount": "0.00", | ||
| 69 | + "invoiceCycle": { | ||
| 70 | + "code": "10", | ||
| 71 | + "month": "5", | ||
| 72 | + "year": "2021" | ||
| 73 | + }, | ||
| 74 | + "convergenceInvoiceNo": "000520211000134302", | ||
| 75 | + "coveredAmount": "1175.93", | ||
| 76 | + "invoiceId": "1067822", | ||
| 77 | + "performanceIndStatus": "", | ||
| 78 | + "unpaidTaxAmount": "0", | ||
| 79 | + "invoiceStatus": "C", | ||
| 80 | + "adjustmentAmount": "0", | ||
| 81 | + "restrictionTaxAmount": "140", | ||
| 82 | + "periodCvrgStartDate": "2021-04-10T00:00:00.000+07:00", | ||
| 83 | + "periodCvrgEndDate": "2021-05-09T00:00:00.000+07:00", | ||
| 84 | + "invoiceChargeType": "BILL" | ||
| 85 | + }, | ||
| 86 | + { | ||
| 87 | + "discountTaxAmount": "-140", | ||
| 88 | + "adjustmentNetAmount": "0", | ||
| 89 | + "availableAdjustmentNetAmount": "1099", | ||
| 90 | + "invoiceBcBanId": "700046423", | ||
| 91 | + "dueDate": "2021-05-03T00:00:00.000+07:00", | ||
| 92 | + "orderIdGroup": "", | ||
| 93 | + "vatRate": "0.00", | ||
| 94 | + "converageEndDate": "2021-05-09T00:00:00.000+07:00", | ||
| 95 | + "discountAmount": "-2000", | ||
| 96 | + "invoiceTaxAmount": "76.93", | ||
| 97 | + "invoiceAmount": "1099", | ||
| 98 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 99 | + "paymentAmount": "1175.93", | ||
| 100 | + "baNo": "200078606", | ||
| 101 | + "billTaxAmount": "307.72", | ||
| 102 | + "billingDocumentType": { | ||
| 103 | + "code": "BL", | ||
| 104 | + "description": "Bill" | ||
| 105 | + }, | ||
| 106 | + "billAmount": "4703.72", | ||
| 107 | + "invoiceType": "BILL", | ||
| 108 | + "converageStartDate": "2021-04-10T00:00:00.000+07:00", | ||
| 109 | + "currency": "THB", | ||
| 110 | + "billSequenceNo": "13521", | ||
| 111 | + "invoiceNo": "070420211000419181", | ||
| 112 | + "originalBalanceAmount": "1175.93", | ||
| 113 | + "customerManagerBaNo": "200078606", | ||
| 114 | + "invoiceCreationDate": "2021-04-29T00:00:00.000+07:00", | ||
| 115 | + "unpaidNetAmount": "0", | ||
| 116 | + "availableAdjustmentAmount": "1266.72", | ||
| 117 | + "discountNetAmount": "-2000", | ||
| 118 | + "billDate": "2021-04-29T00:00:00.000+07:00", | ||
| 119 | + "disputeNetAmount": "0.00", | ||
| 120 | + "creditTaxAmount": "0", | ||
| 121 | + "accountId": "200078606", | ||
| 122 | + "billProductType": "", | ||
| 123 | + "billingDocumentStatus": { | ||
| 124 | + "code": "N", | ||
| 125 | + "description": "Confirmed" | ||
| 126 | + }, | ||
| 127 | + "unpaidAmount": "0", | ||
| 128 | + "restrictionAmount": "2000", | ||
| 129 | + "disputeTaxAmount": "0.00", | ||
| 130 | + "invoiceCycle": { | ||
| 131 | + "code": "10", | ||
| 132 | + "month": "4", | ||
| 133 | + "year": "2021" | ||
| 134 | + }, | ||
| 135 | + "convergenceInvoiceNo": "000420211000131905", | ||
| 136 | + "coveredAmount": "1175.93", | ||
| 137 | + "invoiceId": "1039597", | ||
| 138 | + "performanceIndStatus": "", | ||
| 139 | + "unpaidTaxAmount": "0", | ||
| 140 | + "invoiceStatus": "C", | ||
| 141 | + "adjustmentAmount": "0", | ||
| 142 | + "restrictionTaxAmount": "140", | ||
| 143 | + "periodCvrgStartDate": "2021-03-10T00:00:00.000+07:00", | ||
| 144 | + "periodCvrgEndDate": "2021-04-09T00:00:00.000+07:00", | ||
| 145 | + "invoiceChargeType": "BILL" | ||
| 146 | + }, | ||
| 147 | + { | ||
| 148 | + "discountTaxAmount": "0", | ||
| 149 | + "adjustmentNetAmount": "0", | ||
| 150 | + "availableAdjustmentNetAmount": "30", | ||
| 151 | + "dueDate": "2021-05-03T00:00:00.000+07:00", | ||
| 152 | + "orderIdGroup": "INTEREST", | ||
| 153 | + "vatRate": "0.00", | ||
| 154 | + "discountAmount": "0", | ||
| 155 | + "invoiceTaxAmount": "0", | ||
| 156 | + "invoiceAmount": "30", | ||
| 157 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 158 | + "paymentAmount": "30.00", | ||
| 159 | + "baNo": "200078606", | ||
| 160 | + "billTaxAmount": "0", | ||
| 161 | + "billingDocumentType": { | ||
| 162 | + "code": null, | ||
| 163 | + "description": "" | ||
| 164 | + }, | ||
| 165 | + "billAmount": "30", | ||
| 166 | + "invoiceType": "DCB", | ||
| 167 | + "currency": "THB", | ||
| 168 | + "billSequenceNo": "-1", | ||
| 169 | + "invoiceNo": "AR1008437", | ||
| 170 | + "originalBalanceAmount": "30", | ||
| 171 | + "customerManagerBaNo": "200078606", | ||
| 172 | + "invoiceCreationDate": "2021-03-25T00:00:00.000+07:00", | ||
| 173 | + "unpaidNetAmount": "30.00", | ||
| 174 | + "availableAdjustmentAmount": "30", | ||
| 175 | + "discountNetAmount": "0", | ||
| 176 | + "disputeNetAmount": "0.00", | ||
| 177 | + "creditTaxAmount": "0", | ||
| 178 | + "accountId": "200078606", | ||
| 179 | + "billProductType": "", | ||
| 180 | + "billingDocumentStatus": { | ||
| 181 | + "code": null, | ||
| 182 | + "description": "" | ||
| 183 | + }, | ||
| 184 | + "unpaidAmount": "0", | ||
| 185 | + "restrictionAmount": "0", | ||
| 186 | + "disputeTaxAmount": "0.00", | ||
| 187 | + "invoiceCycle": { | ||
| 188 | + "code": "10", | ||
| 189 | + "month": "4", | ||
| 190 | + "year": "2021" | ||
| 191 | + }, | ||
| 192 | + "convergenceInvoiceNo": "", | ||
| 193 | + "coveredAmount": "30", | ||
| 194 | + "invoiceId": "1008437", | ||
| 195 | + "performanceIndStatus": "", | ||
| 196 | + "unpaidTaxAmount": "0", | ||
| 197 | + "invoiceStatus": "C", | ||
| 198 | + "adjustmentAmount": "0", | ||
| 199 | + "restrictionTaxAmount": "0", | ||
| 200 | + "chargeCode": "CN", | ||
| 201 | + "invoiceChargeType": "INTEREST" | ||
| 202 | + }, | ||
| 203 | + { | ||
| 204 | + "discountTaxAmount": "0", | ||
| 205 | + "adjustmentNetAmount": "0", | ||
| 206 | + "availableAdjustmentNetAmount": "20", | ||
| 207 | + "dueDate": "2021-06-30T00:00:00.000+07:00", | ||
| 208 | + "orderIdGroup": "COLLECTION", | ||
| 209 | + "vatRate": "0.00", | ||
| 210 | + "discountAmount": "0", | ||
| 211 | + "invoiceTaxAmount": "1.4", | ||
| 212 | + "invoiceAmount": "20", | ||
| 213 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 214 | + "paymentAmount": "21.40", | ||
| 215 | + "baNo": "200078606", | ||
| 216 | + "billTaxAmount": "1.4", | ||
| 217 | + "billingDocumentType": { | ||
| 218 | + "code": null, | ||
| 219 | + "description": "" | ||
| 220 | + }, | ||
| 221 | + "billAmount": "21.4", | ||
| 222 | + "invoiceType": "IMCG", | ||
| 223 | + "currency": "THB", | ||
| 224 | + "billSequenceNo": "-1", | ||
| 225 | + "invoiceNo": "AR1008438", | ||
| 226 | + "originalBalanceAmount": "21.4", | ||
| 227 | + "customerManagerBaNo": "200078606", | ||
| 228 | + "invoiceCreationDate": "2021-03-25T00:00:00.000+07:00", | ||
| 229 | + "unpaidNetAmount": "0", | ||
| 230 | + "availableAdjustmentAmount": "21.4", | ||
| 231 | + "discountNetAmount": "0", | ||
| 232 | + "disputeNetAmount": "0.00", | ||
| 233 | + "creditTaxAmount": "0", | ||
| 234 | + "accountId": "200078606", | ||
| 235 | + "billProductType": "", | ||
| 236 | + "billingDocumentStatus": { | ||
| 237 | + "code": null, | ||
| 238 | + "description": "" | ||
| 239 | + }, | ||
| 240 | + "unpaidAmount": "0", | ||
| 241 | + "restrictionAmount": "0", | ||
| 242 | + "disputeTaxAmount": "0.00", | ||
| 243 | + "invoiceCycle": { | ||
| 244 | + "code": "10", | ||
| 245 | + "month": "4", | ||
| 246 | + "year": "2021" | ||
| 247 | + }, | ||
| 248 | + "convergenceInvoiceNo": "", | ||
| 249 | + "coveredAmount": "21.4", | ||
| 250 | + "invoiceId": "1008438", | ||
| 251 | + "performanceIndStatus": "", | ||
| 252 | + "unpaidTaxAmount": "0", | ||
| 253 | + "invoiceStatus": "C", | ||
| 254 | + "adjustmentAmount": "0", | ||
| 255 | + "restrictionTaxAmount": "0", | ||
| 256 | + "chargeCode": "OCOLETYPEN", | ||
| 257 | + "invoiceChargeType": "COLLECTION", | ||
| 258 | + "periodCvrgStartDate": "test" | ||
| 259 | + }, | ||
| 260 | + { | ||
| 261 | + "discountTaxAmount": "-140", | ||
| 262 | + "adjustmentNetAmount": "0", | ||
| 263 | + "availableAdjustmentNetAmount": "1099", | ||
| 264 | + "invoiceBcBanId": "700046423", | ||
| 265 | + "dueDate": "2021-04-03T00:00:00.000+07:00", | ||
| 266 | + "orderIdGroup": "", | ||
| 267 | + "vatRate": "0.00", | ||
| 268 | + "converageEndDate": "2021-04-09T00:00:00.000+07:00", | ||
| 269 | + "discountAmount": "-2000", | ||
| 270 | + "invoiceTaxAmount": "76.93", | ||
| 271 | + "invoiceAmount": "1099", | ||
| 272 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 273 | + "paymentAmount": "1175.93", | ||
| 274 | + "baNo": "200078606", | ||
| 275 | + "billTaxAmount": "307.72", | ||
| 276 | + "billingDocumentType": { | ||
| 277 | + "code": "BL", | ||
| 278 | + "description": "Bill" | ||
| 279 | + }, | ||
| 280 | + "billAmount": "4703.72", | ||
| 281 | + "invoiceType": "BILL", | ||
| 282 | + "converageStartDate": "2021-03-10T00:00:00.000+07:00", | ||
| 283 | + "currency": "THB", | ||
| 284 | + "billSequenceNo": "13520", | ||
| 285 | + "invoiceNo": "070320211000407751", | ||
| 286 | + "originalBalanceAmount": "1175.93", | ||
| 287 | + "customerManagerBaNo": "200078606", | ||
| 288 | + "invoiceCreationDate": "2021-03-11T00:00:00.000+07:00", | ||
| 289 | + "unpaidNetAmount": "0", | ||
| 290 | + "availableAdjustmentAmount": "1266.72", | ||
| 291 | + "discountNetAmount": "-2000", | ||
| 292 | + "billDate": "2021-03-11T00:00:00.000+07:00", | ||
| 293 | + "disputeNetAmount": "0.00", | ||
| 294 | + "creditTaxAmount": "0", | ||
| 295 | + "accountId": "200078606", | ||
| 296 | + "billProductType": "", | ||
| 297 | + "billingDocumentStatus": { | ||
| 298 | + "code": "N", | ||
| 299 | + "description": "Confirmed" | ||
| 300 | + }, | ||
| 301 | + "unpaidAmount": "0", | ||
| 302 | + "restrictionAmount": "2000", | ||
| 303 | + "disputeTaxAmount": "0.00", | ||
| 304 | + "invoiceCycle": { | ||
| 305 | + "code": "10", | ||
| 306 | + "month": "3", | ||
| 307 | + "year": "2021" | ||
| 308 | + }, | ||
| 309 | + "convergenceInvoiceNo": "000320211000127159", | ||
| 310 | + "coveredAmount": "1175.93", | ||
| 311 | + "invoiceId": "1000161", | ||
| 312 | + "performanceIndStatus": "", | ||
| 313 | + "unpaidTaxAmount": "0", | ||
| 314 | + "invoiceStatus": "C", | ||
| 315 | + "adjustmentAmount": "0", | ||
| 316 | + "restrictionTaxAmount": "140", | ||
| 317 | + "periodCvrgStartDate": "2021-02-10T00:00:00.000+07:00", | ||
| 318 | + "periodCvrgEndDate": "2021-03-09T00:00:00.000+07:00", | ||
| 319 | + "invoiceChargeType": "BILL" | ||
| 320 | + }, | ||
| 321 | + { | ||
| 322 | + "discountTaxAmount": "-140", | ||
| 323 | + "adjustmentNetAmount": "0", | ||
| 324 | + "availableAdjustmentNetAmount": "1099", | ||
| 325 | + "invoiceBcBanId": "700046423", | ||
| 326 | + "dueDate": "2021-03-06T00:00:00.000+07:00", | ||
| 327 | + "orderIdGroup": "", | ||
| 328 | + "vatRate": "0.00", | ||
| 329 | + "converageEndDate": "2021-03-09T00:00:00.000+07:00", | ||
| 330 | + "discountAmount": "-2000", | ||
| 331 | + "invoiceTaxAmount": "76.93", | ||
| 332 | + "invoiceAmount": "1099", | ||
| 333 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 334 | + "paymentAmount": "1175.93", | ||
| 335 | + "baNo": "200078606", | ||
| 336 | + "billTaxAmount": "307.72", | ||
| 337 | + "billingDocumentType": { | ||
| 338 | + "code": "BL", | ||
| 339 | + "description": "Bill" | ||
| 340 | + }, | ||
| 341 | + "billAmount": "4703.72", | ||
| 342 | + "invoiceType": "BILL", | ||
| 343 | + "converageStartDate": "2021-02-10T00:00:00.000+07:00", | ||
| 344 | + "currency": "THB", | ||
| 345 | + "billSequenceNo": "13519", | ||
| 346 | + "invoiceNo": "070220211000401371", | ||
| 347 | + "originalBalanceAmount": "1175.93", | ||
| 348 | + "customerManagerBaNo": "200078606", | ||
| 349 | + "invoiceCreationDate": "2021-02-11T00:00:00.000+07:00", | ||
| 350 | + "unpaidNetAmount": "0", | ||
| 351 | + "availableAdjustmentAmount": "1266.72", | ||
| 352 | + "discountNetAmount": "-2000", | ||
| 353 | + "billDate": "2021-02-11T00:00:00.000+07:00", | ||
| 354 | + "disputeNetAmount": "0.00", | ||
| 355 | + "creditTaxAmount": "0", | ||
| 356 | + "accountId": "200078606", | ||
| 357 | + "billProductType": "", | ||
| 358 | + "billingDocumentStatus": { | ||
| 359 | + "code": "N", | ||
| 360 | + "description": "Confirmed" | ||
| 361 | + }, | ||
| 362 | + "unpaidAmount": "0", | ||
| 363 | + "restrictionAmount": "2000", | ||
| 364 | + "disputeTaxAmount": "0.00", | ||
| 365 | + "invoiceCycle": { | ||
| 366 | + "code": "10", | ||
| 367 | + "month": "2", | ||
| 368 | + "year": "2021" | ||
| 369 | + }, | ||
| 370 | + "convergenceInvoiceNo": "000220211000124604", | ||
| 371 | + "coveredAmount": "1175.93", | ||
| 372 | + "invoiceId": "980412", | ||
| 373 | + "performanceIndStatus": "", | ||
| 374 | + "unpaidTaxAmount": "0", | ||
| 375 | + "invoiceStatus": "C", | ||
| 376 | + "adjustmentAmount": "0", | ||
| 377 | + "restrictionTaxAmount": "140", | ||
| 378 | + "periodCvrgStartDate": "2021-01-10T00:00:00.000+07:00", | ||
| 379 | + "periodCvrgEndDate": "2021-02-09T00:00:00.000+07:00", | ||
| 380 | + "invoiceChargeType": "BILL" | ||
| 381 | + }, | ||
| 382 | + { | ||
| 383 | + "discountTaxAmount": "-140", | ||
| 384 | + "adjustmentNetAmount": "0", | ||
| 385 | + "availableAdjustmentNetAmount": "1099", | ||
| 386 | + "invoiceBcBanId": "700046423", | ||
| 387 | + "dueDate": "2021-02-04T00:00:00.000+07:00", | ||
| 388 | + "orderIdGroup": "", | ||
| 389 | + "vatRate": "0.00", | ||
| 390 | + "converageEndDate": "2021-02-09T00:00:00.000+07:00", | ||
| 391 | + "discountAmount": "-2000", | ||
| 392 | + "invoiceTaxAmount": "76.93", | ||
| 393 | + "invoiceAmount": "1099", | ||
| 394 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 395 | + "paymentAmount": "1175.93", | ||
| 396 | + "baNo": "200078606", | ||
| 397 | + "billTaxAmount": "307.72", | ||
| 398 | + "billingDocumentType": { | ||
| 399 | + "code": "BL", | ||
| 400 | + "description": "Bill" | ||
| 401 | + }, | ||
| 402 | + "billAmount": "4703.72", | ||
| 403 | + "invoiceType": "BILL", | ||
| 404 | + "converageStartDate": "2021-01-10T00:00:00.000+07:00", | ||
| 405 | + "currency": "THB", | ||
| 406 | + "billSequenceNo": "13518", | ||
| 407 | + "invoiceNo": "070120211000396255", | ||
| 408 | + "originalBalanceAmount": "1175.93", | ||
| 409 | + "customerManagerBaNo": "200078606", | ||
| 410 | + "invoiceCreationDate": "2021-02-09T00:00:00.000+07:00", | ||
| 411 | + "unpaidNetAmount": "0", | ||
| 412 | + "availableAdjustmentAmount": "1266.72", | ||
| 413 | + "discountNetAmount": "-2000", | ||
| 414 | + "billDate": "2021-01-12T00:00:00.000+07:00", | ||
| 415 | + "disputeNetAmount": "0.00", | ||
| 416 | + "creditTaxAmount": "0", | ||
| 417 | + "accountId": "200078606", | ||
| 418 | + "billProductType": "", | ||
| 419 | + "billingDocumentStatus": { | ||
| 420 | + "code": "N", | ||
| 421 | + "description": "Confirmed" | ||
| 422 | + }, | ||
| 423 | + "unpaidAmount": "0", | ||
| 424 | + "restrictionAmount": "2000", | ||
| 425 | + "disputeTaxAmount": "0.00", | ||
| 426 | + "invoiceCycle": { | ||
| 427 | + "code": "10", | ||
| 428 | + "month": "1", | ||
| 429 | + "year": "2021" | ||
| 430 | + }, | ||
| 431 | + "convergenceInvoiceNo": "000120211000122719", | ||
| 432 | + "coveredAmount": "1175.93", | ||
| 433 | + "invoiceId": "972993", | ||
| 434 | + "performanceIndStatus": "", | ||
| 435 | + "unpaidTaxAmount": "0", | ||
| 436 | + "invoiceStatus": "C", | ||
| 437 | + "adjustmentAmount": "0", | ||
| 438 | + "restrictionTaxAmount": "140", | ||
| 439 | + "periodCvrgStartDate": "2020-12-10T00:00:00.000+07:00", | ||
| 440 | + "periodCvrgEndDate": "2021-01-09T00:00:00.000+07:00", | ||
| 441 | + "invoiceChargeType": "BILL" | ||
| 442 | + }, | ||
| 443 | + { | ||
| 444 | + "discountTaxAmount": "-140", | ||
| 445 | + "adjustmentNetAmount": "0", | ||
| 446 | + "availableAdjustmentNetAmount": "1099", | ||
| 447 | + "invoiceBcBanId": "700046423", | ||
| 448 | + "dueDate": "2021-01-03T00:00:00.000+07:00", | ||
| 449 | + "orderIdGroup": "", | ||
| 450 | + "vatRate": "0.00", | ||
| 451 | + "converageEndDate": "2021-01-09T00:00:00.000+07:00", | ||
| 452 | + "discountAmount": "-2000", | ||
| 453 | + "invoiceTaxAmount": "76.93", | ||
| 454 | + "invoiceAmount": "1099", | ||
| 455 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 456 | + "paymentAmount": "1175.93", | ||
| 457 | + "baNo": "200078606", | ||
| 458 | + "billTaxAmount": "307.72", | ||
| 459 | + "billingDocumentType": { | ||
| 460 | + "code": "BL", | ||
| 461 | + "description": "Bill" | ||
| 462 | + }, | ||
| 463 | + "billAmount": "4703.72", | ||
| 464 | + "invoiceType": "BILL", | ||
| 465 | + "converageStartDate": "2020-12-10T00:00:00.000+07:00", | ||
| 466 | + "currency": "THB", | ||
| 467 | + "billSequenceNo": "13517", | ||
| 468 | + "invoiceNo": "071220201000390140", | ||
| 469 | + "originalBalanceAmount": "1175.93", | ||
| 470 | + "customerManagerBaNo": "200078606", | ||
| 471 | + "invoiceCreationDate": "2021-01-11T00:00:00.000+07:00", | ||
| 472 | + "unpaidNetAmount": "0", | ||
| 473 | + "availableAdjustmentAmount": "1266.72", | ||
| 474 | + "discountNetAmount": "-2000", | ||
| 475 | + "billDate": "2020-12-11T00:00:00.000+07:00", | ||
| 476 | + "disputeNetAmount": "0.00", | ||
| 477 | + "creditTaxAmount": "0", | ||
| 478 | + "accountId": "200078606", | ||
| 479 | + "billProductType": "", | ||
| 480 | + "billingDocumentStatus": { | ||
| 481 | + "code": "N", | ||
| 482 | + "description": "Confirmed" | ||
| 483 | + }, | ||
| 484 | + "unpaidAmount": "0", | ||
| 485 | + "restrictionAmount": "2000", | ||
| 486 | + "disputeTaxAmount": "0.00", | ||
| 487 | + "invoiceCycle": { | ||
| 488 | + "code": "10", | ||
| 489 | + "month": "12", | ||
| 490 | + "year": "2020" | ||
| 491 | + }, | ||
| 492 | + "convergenceInvoiceNo": "001220201000120357", | ||
| 493 | + "coveredAmount": "1175.93", | ||
| 494 | + "invoiceId": "947231", | ||
| 495 | + "performanceIndStatus": "", | ||
| 496 | + "unpaidTaxAmount": "0", | ||
| 497 | + "invoiceStatus": "C", | ||
| 498 | + "adjustmentAmount": "0", | ||
| 499 | + "restrictionTaxAmount": "140", | ||
| 500 | + "periodCvrgStartDate": "2020-11-10T00:00:00.000+07:00", | ||
| 501 | + "periodCvrgEndDate": "2020-12-09T00:00:00.000+07:00", | ||
| 502 | + "invoiceChargeType": "BILL" | ||
| 503 | + }, | ||
| 504 | + { | ||
| 505 | + "discountTaxAmount": "-140", | ||
| 506 | + "adjustmentNetAmount": "0", | ||
| 507 | + "availableAdjustmentNetAmount": "1099", | ||
| 508 | + "invoiceBcBanId": "700046423", | ||
| 509 | + "dueDate": "2020-12-04T00:00:00.000+07:00", | ||
| 510 | + "orderIdGroup": "", | ||
| 511 | + "vatRate": "0.00", | ||
| 512 | + "converageEndDate": "2020-12-09T00:00:00.000+07:00", | ||
| 513 | + "discountAmount": "-2000", | ||
| 514 | + "invoiceTaxAmount": "76.93", | ||
| 515 | + "invoiceAmount": "1099", | ||
| 516 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 517 | + "paymentAmount": "1175.93", | ||
| 518 | + "baNo": "200078606", | ||
| 519 | + "billTaxAmount": "307.72", | ||
| 520 | + "billingDocumentType": { | ||
| 521 | + "code": "BL", | ||
| 522 | + "description": "Bill" | ||
| 523 | + }, | ||
| 524 | + "billAmount": "4703.72", | ||
| 525 | + "invoiceType": "BILL", | ||
| 526 | + "converageStartDate": "2020-11-10T00:00:00.000+07:00", | ||
| 527 | + "currency": "THB", | ||
| 528 | + "billSequenceNo": "12322", | ||
| 529 | + "invoiceNo": "071120201000380044", | ||
| 530 | + "originalBalanceAmount": "1175.93", | ||
| 531 | + "customerManagerBaNo": "200078606", | ||
| 532 | + "invoiceCreationDate": "2020-12-10T00:00:00.000+07:00", | ||
| 533 | + "unpaidNetAmount": "0", | ||
| 534 | + "availableAdjustmentAmount": "1266.72", | ||
| 535 | + "discountNetAmount": "-2000", | ||
| 536 | + "billDate": "2020-11-11T00:00:00.000+07:00", | ||
| 537 | + "disputeNetAmount": "0.00", | ||
| 538 | + "creditTaxAmount": "0", | ||
| 539 | + "accountId": "200078606", | ||
| 540 | + "billProductType": "", | ||
| 541 | + "billingDocumentStatus": { | ||
| 542 | + "code": "N", | ||
| 543 | + "description": "Confirmed" | ||
| 544 | + }, | ||
| 545 | + "unpaidAmount": "0", | ||
| 546 | + "restrictionAmount": "2000", | ||
| 547 | + "disputeTaxAmount": "0.00", | ||
| 548 | + "invoiceCycle": { | ||
| 549 | + "code": "10", | ||
| 550 | + "month": "11", | ||
| 551 | + "year": "2020" | ||
| 552 | + }, | ||
| 553 | + "convergenceInvoiceNo": "001120201000116354", | ||
| 554 | + "coveredAmount": "1175.93", | ||
| 555 | + "invoiceId": "923352", | ||
| 556 | + "performanceIndStatus": "", | ||
| 557 | + "unpaidTaxAmount": "0", | ||
| 558 | + "invoiceStatus": "C", | ||
| 559 | + "adjustmentAmount": "0", | ||
| 560 | + "restrictionTaxAmount": "140", | ||
| 561 | + "periodCvrgStartDate": "2020-10-10T00:00:00.000+07:00", | ||
| 562 | + "periodCvrgEndDate": "2020-11-09T00:00:00.000+07:00", | ||
| 563 | + "invoiceChargeType": "BILL" | ||
| 564 | + }, | ||
| 565 | + { | ||
| 566 | + "discountTaxAmount": "-140", | ||
| 567 | + "adjustmentNetAmount": "0", | ||
| 568 | + "availableAdjustmentNetAmount": "1099", | ||
| 569 | + "invoiceBcBanId": "700046423", | ||
| 570 | + "dueDate": "2020-11-07T00:00:00.000+07:00", | ||
| 571 | + "orderIdGroup": "", | ||
| 572 | + "vatRate": "0.00", | ||
| 573 | + "converageEndDate": "2020-11-09T00:00:00.000+07:00", | ||
| 574 | + "discountAmount": "-2000", | ||
| 575 | + "invoiceTaxAmount": "76.93", | ||
| 576 | + "invoiceAmount": "1099", | ||
| 577 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 578 | + "paymentAmount": "1175.93", | ||
| 579 | + "baNo": "200078606", | ||
| 580 | + "billTaxAmount": "307.72", | ||
| 581 | + "billingDocumentType": { | ||
| 582 | + "code": "BL", | ||
| 583 | + "description": "Bill" | ||
| 584 | + }, | ||
| 585 | + "billAmount": "4703.72", | ||
| 586 | + "invoiceType": "BILL", | ||
| 587 | + "converageStartDate": "2020-10-10T00:00:00.000+07:00", | ||
| 588 | + "currency": "THB", | ||
| 589 | + "billSequenceNo": "12321", | ||
| 590 | + "invoiceNo": "071020201000372117", | ||
| 591 | + "originalBalanceAmount": "1175.93", | ||
| 592 | + "customerManagerBaNo": "200078606", | ||
| 593 | + "invoiceCreationDate": "2020-11-10T00:00:00.000+07:00", | ||
| 594 | + "unpaidNetAmount": "0", | ||
| 595 | + "availableAdjustmentAmount": "1266.72", | ||
| 596 | + "discountNetAmount": "-2000", | ||
| 597 | + "billDate": "2020-10-15T00:00:00.000+07:00", | ||
| 598 | + "disputeNetAmount": "0.00", | ||
| 599 | + "creditTaxAmount": "0", | ||
| 600 | + "accountId": "200078606", | ||
| 601 | + "billProductType": "", | ||
| 602 | + "billingDocumentStatus": { | ||
| 603 | + "code": "N", | ||
| 604 | + "description": "Confirmed" | ||
| 605 | + }, | ||
| 606 | + "unpaidAmount": "0", | ||
| 607 | + "restrictionAmount": "2000", | ||
| 608 | + "disputeTaxAmount": "0.00", | ||
| 609 | + "invoiceCycle": { | ||
| 610 | + "code": "10", | ||
| 611 | + "month": "10", | ||
| 612 | + "year": "2020" | ||
| 613 | + }, | ||
| 614 | + "convergenceInvoiceNo": "001020201000113150", | ||
| 615 | + "coveredAmount": "1175.93", | ||
| 616 | + "invoiceId": "897899", | ||
| 617 | + "performanceIndStatus": "", | ||
| 618 | + "unpaidTaxAmount": "0", | ||
| 619 | + "invoiceStatus": "C", | ||
| 620 | + "adjustmentAmount": "0", | ||
| 621 | + "restrictionTaxAmount": "140", | ||
| 622 | + "periodCvrgStartDate": "2020-09-10T00:00:00.000+07:00", | ||
| 623 | + "periodCvrgEndDate": "2020-10-09T00:00:00.000+07:00", | ||
| 624 | + "invoiceChargeType": "BILL" | ||
| 625 | + }, | ||
| 626 | + { | ||
| 627 | + "discountTaxAmount": "-140", | ||
| 628 | + "adjustmentNetAmount": "0", | ||
| 629 | + "availableAdjustmentNetAmount": "1099", | ||
| 630 | + "invoiceBcBanId": "700046423", | ||
| 631 | + "dueDate": "2020-10-04T00:00:00.000+07:00", | ||
| 632 | + "orderIdGroup": "", | ||
| 633 | + "vatRate": "0.00", | ||
| 634 | + "converageEndDate": "2020-10-09T00:00:00.000+07:00", | ||
| 635 | + "discountAmount": "-2000", | ||
| 636 | + "invoiceTaxAmount": "76.93", | ||
| 637 | + "invoiceAmount": "1099", | ||
| 638 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 639 | + "paymentAmount": "1175.93", | ||
| 640 | + "baNo": "200078606", | ||
| 641 | + "billTaxAmount": "307.72", | ||
| 642 | + "billingDocumentType": { | ||
| 643 | + "code": "BL", | ||
| 644 | + "description": "Bill" | ||
| 645 | + }, | ||
| 646 | + "billAmount": "4703.72", | ||
| 647 | + "invoiceType": "BILL", | ||
| 648 | + "converageStartDate": "2020-09-10T00:00:00.000+07:00", | ||
| 649 | + "currency": "THB", | ||
| 650 | + "billSequenceNo": "12320", | ||
| 651 | + "invoiceNo": "070920201000365119", | ||
| 652 | + "originalBalanceAmount": "1175.93", | ||
| 653 | + "customerManagerBaNo": "200078606", | ||
| 654 | + "invoiceCreationDate": "2020-10-12T00:00:00.000+07:00", | ||
| 655 | + "unpaidNetAmount": "0", | ||
| 656 | + "availableAdjustmentAmount": "1266.72", | ||
| 657 | + "discountNetAmount": "-2000", | ||
| 658 | + "billDate": "2020-09-11T00:00:00.000+07:00", | ||
| 659 | + "disputeNetAmount": "0.00", | ||
| 660 | + "creditTaxAmount": "0", | ||
| 661 | + "accountId": "200078606", | ||
| 662 | + "billProductType": "", | ||
| 663 | + "billingDocumentStatus": { | ||
| 664 | + "code": "N", | ||
| 665 | + "description": "Confirmed" | ||
| 666 | + }, | ||
| 667 | + "unpaidAmount": "0", | ||
| 668 | + "restrictionAmount": "2000", | ||
| 669 | + "disputeTaxAmount": "0.00", | ||
| 670 | + "invoiceCycle": { | ||
| 671 | + "code": "10", | ||
| 672 | + "month": "9", | ||
| 673 | + "year": "2020" | ||
| 674 | + }, | ||
| 675 | + "convergenceInvoiceNo": "000920201000110303", | ||
| 676 | + "coveredAmount": "1175.93", | ||
| 677 | + "invoiceId": "876673", | ||
| 678 | + "performanceIndStatus": "", | ||
| 679 | + "unpaidTaxAmount": "0", | ||
| 680 | + "invoiceStatus": "C", | ||
| 681 | + "adjustmentAmount": "0", | ||
| 682 | + "restrictionTaxAmount": "140", | ||
| 683 | + "periodCvrgStartDate": "2020-08-10T00:00:00.000+07:00", | ||
| 684 | + "periodCvrgEndDate": "2020-09-09T00:00:00.000+07:00", | ||
| 685 | + "invoiceChargeType": "BILL" | ||
| 686 | + }, | ||
| 687 | + { | ||
| 688 | + "discountTaxAmount": "-140", | ||
| 689 | + "adjustmentNetAmount": "0", | ||
| 690 | + "availableAdjustmentNetAmount": "1099", | ||
| 691 | + "invoiceBcBanId": "700046423", | ||
| 692 | + "dueDate": "2020-09-03T00:00:00.000+07:00", | ||
| 693 | + "orderIdGroup": "", | ||
| 694 | + "vatRate": "0.00", | ||
| 695 | + "converageEndDate": "2020-09-09T00:00:00.000+07:00", | ||
| 696 | + "discountAmount": "-2000", | ||
| 697 | + "invoiceTaxAmount": "76.93", | ||
| 698 | + "invoiceAmount": "1099", | ||
| 699 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 700 | + "paymentAmount": "1175.93", | ||
| 701 | + "baNo": "200078606", | ||
| 702 | + "billTaxAmount": "307.72", | ||
| 703 | + "billingDocumentType": { | ||
| 704 | + "code": "BL", | ||
| 705 | + "description": "Bill" | ||
| 706 | + }, | ||
| 707 | + "billAmount": "4703.72", | ||
| 708 | + "invoiceType": "BILL", | ||
| 709 | + "converageStartDate": "2020-08-10T00:00:00.000+07:00", | ||
| 710 | + "currency": "THB", | ||
| 711 | + "billSequenceNo": "12319", | ||
| 712 | + "invoiceNo": "070820201000358413", | ||
| 713 | + "originalBalanceAmount": "1175.93", | ||
| 714 | + "customerManagerBaNo": "200078606", | ||
| 715 | + "invoiceCreationDate": "2020-09-10T00:00:00.000+07:00", | ||
| 716 | + "unpaidNetAmount": "0", | ||
| 717 | + "availableAdjustmentAmount": "1266.72", | ||
| 718 | + "discountNetAmount": "-2000", | ||
| 719 | + "billDate": "2020-08-11T00:00:00.000+07:00", | ||
| 720 | + "disputeNetAmount": "0.00", | ||
| 721 | + "creditTaxAmount": "0", | ||
| 722 | + "accountId": "200078606", | ||
| 723 | + "billProductType": "", | ||
| 724 | + "billingDocumentStatus": { | ||
| 725 | + "code": "N", | ||
| 726 | + "description": "Confirmed" | ||
| 727 | + }, | ||
| 728 | + "unpaidAmount": "0", | ||
| 729 | + "restrictionAmount": "2000", | ||
| 730 | + "disputeTaxAmount": "0.00", | ||
| 731 | + "invoiceCycle": { | ||
| 732 | + "code": "10", | ||
| 733 | + "month": "8", | ||
| 734 | + "year": "2020" | ||
| 735 | + }, | ||
| 736 | + "convergenceInvoiceNo": "000820201000107389", | ||
| 737 | + "coveredAmount": "1175.93", | ||
| 738 | + "invoiceId": "853865", | ||
| 739 | + "performanceIndStatus": "", | ||
| 740 | + "unpaidTaxAmount": "0", | ||
| 741 | + "invoiceStatus": "C", | ||
| 742 | + "adjustmentAmount": "0", | ||
| 743 | + "restrictionTaxAmount": "140", | ||
| 744 | + "periodCvrgStartDate": "2020-07-10T00:00:00.000+07:00", | ||
| 745 | + "periodCvrgEndDate": "2020-08-09T00:00:00.000+07:00", | ||
| 746 | + "invoiceChargeType": "BILL" | ||
| 747 | + }, | ||
| 748 | + { | ||
| 749 | + "discountTaxAmount": "-140", | ||
| 750 | + "adjustmentNetAmount": "0", | ||
| 751 | + "availableAdjustmentNetAmount": "1099", | ||
| 752 | + "invoiceBcBanId": "700046423", | ||
| 753 | + "dueDate": "2020-08-07T00:00:00.000+07:00", | ||
| 754 | + "orderIdGroup": "", | ||
| 755 | + "vatRate": "0.00", | ||
| 756 | + "converageEndDate": "2020-08-09T00:00:00.000+07:00", | ||
| 757 | + "discountAmount": "-2000", | ||
| 758 | + "invoiceTaxAmount": "76.93", | ||
| 759 | + "invoiceAmount": "1099", | ||
| 760 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 761 | + "paymentAmount": "1175.93", | ||
| 762 | + "baNo": "200078606", | ||
| 763 | + "billTaxAmount": "307.72", | ||
| 764 | + "billingDocumentType": { | ||
| 765 | + "code": "BL", | ||
| 766 | + "description": "Bill" | ||
| 767 | + }, | ||
| 768 | + "billAmount": "4703.72", | ||
| 769 | + "invoiceType": "BILL", | ||
| 770 | + "converageStartDate": "2020-07-10T00:00:00.000+07:00", | ||
| 771 | + "currency": "THB", | ||
| 772 | + "billSequenceNo": "12318", | ||
| 773 | + "invoiceNo": "070720201000353116", | ||
| 774 | + "originalBalanceAmount": "1175.93", | ||
| 775 | + "customerManagerBaNo": "200078606", | ||
| 776 | + "invoiceCreationDate": "2020-07-14T00:00:00.000+07:00", | ||
| 777 | + "unpaidNetAmount": "0", | ||
| 778 | + "availableAdjustmentAmount": "1266.72", | ||
| 779 | + "discountNetAmount": "-2000", | ||
| 780 | + "billDate": "2020-07-15T00:00:00.000+07:00", | ||
| 781 | + "disputeNetAmount": "0.00", | ||
| 782 | + "creditTaxAmount": "0", | ||
| 783 | + "accountId": "200078606", | ||
| 784 | + "billProductType": "", | ||
| 785 | + "billingDocumentStatus": { | ||
| 786 | + "code": "N", | ||
| 787 | + "description": "Confirmed" | ||
| 788 | + }, | ||
| 789 | + "unpaidAmount": "0", | ||
| 790 | + "restrictionAmount": "2000", | ||
| 791 | + "disputeTaxAmount": "0.00", | ||
| 792 | + "invoiceCycle": { | ||
| 793 | + "code": "10", | ||
| 794 | + "month": "7", | ||
| 795 | + "year": "2020" | ||
| 796 | + }, | ||
| 797 | + "convergenceInvoiceNo": "000720201000105073", | ||
| 798 | + "coveredAmount": "1175.93", | ||
| 799 | + "invoiceId": "821290", | ||
| 800 | + "performanceIndStatus": "", | ||
| 801 | + "unpaidTaxAmount": "0", | ||
| 802 | + "invoiceStatus": "C", | ||
| 803 | + "adjustmentAmount": "0", | ||
| 804 | + "restrictionTaxAmount": "140", | ||
| 805 | + "periodCvrgStartDate": "2020-06-10T00:00:00.000+07:00", | ||
| 806 | + "periodCvrgEndDate": "2020-07-09T00:00:00.000+07:00", | ||
| 807 | + "invoiceChargeType": "BILL" | ||
| 808 | + }, | ||
| 809 | + { | ||
| 810 | + "discountTaxAmount": "-140", | ||
| 811 | + "adjustmentNetAmount": "0", | ||
| 812 | + "availableAdjustmentNetAmount": "1099", | ||
| 813 | + "invoiceBcBanId": "700046423", | ||
| 814 | + "dueDate": "2020-07-04T00:00:00.000+07:00", | ||
| 815 | + "orderIdGroup": "", | ||
| 816 | + "vatRate": "0.00", | ||
| 817 | + "converageEndDate": "2020-07-09T00:00:00.000+07:00", | ||
| 818 | + "discountAmount": "-2000", | ||
| 819 | + "invoiceTaxAmount": "76.93", | ||
| 820 | + "invoiceAmount": "1099", | ||
| 821 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 822 | + "paymentAmount": "1175.93", | ||
| 823 | + "baNo": "200078606", | ||
| 824 | + "billTaxAmount": "307.72", | ||
| 825 | + "billingDocumentType": { | ||
| 826 | + "code": "BL", | ||
| 827 | + "description": "Bill" | ||
| 828 | + }, | ||
| 829 | + "billAmount": "4703.72", | ||
| 830 | + "invoiceType": "BILL", | ||
| 831 | + "converageStartDate": "2020-06-10T00:00:00.000+07:00", | ||
| 832 | + "currency": "THB", | ||
| 833 | + "billSequenceNo": "12317", | ||
| 834 | + "invoiceNo": "070620201000344204", | ||
| 835 | + "originalBalanceAmount": "1175.93", | ||
| 836 | + "customerManagerBaNo": "200078606", | ||
| 837 | + "invoiceCreationDate": "2020-07-10T00:00:00.000+07:00", | ||
| 838 | + "unpaidNetAmount": "0", | ||
| 839 | + "availableAdjustmentAmount": "1266.72", | ||
| 840 | + "discountNetAmount": "-2000", | ||
| 841 | + "billDate": "2020-06-11T00:00:00.000+07:00", | ||
| 842 | + "disputeNetAmount": "0.00", | ||
| 843 | + "creditTaxAmount": "0", | ||
| 844 | + "accountId": "200078606", | ||
| 845 | + "billProductType": "", | ||
| 846 | + "billingDocumentStatus": { | ||
| 847 | + "code": "N", | ||
| 848 | + "description": "Confirmed" | ||
| 849 | + }, | ||
| 850 | + "unpaidAmount": "0", | ||
| 851 | + "restrictionAmount": "2000", | ||
| 852 | + "disputeTaxAmount": "0.00", | ||
| 853 | + "invoiceCycle": { | ||
| 854 | + "code": "10", | ||
| 855 | + "month": "6", | ||
| 856 | + "year": "2020" | ||
| 857 | + }, | ||
| 858 | + "convergenceInvoiceNo": "000620201000101367", | ||
| 859 | + "coveredAmount": "1175.93", | ||
| 860 | + "invoiceId": "817165", | ||
| 861 | + "performanceIndStatus": "", | ||
| 862 | + "unpaidTaxAmount": "0", | ||
| 863 | + "invoiceStatus": "C", | ||
| 864 | + "adjustmentAmount": "0", | ||
| 865 | + "restrictionTaxAmount": "140", | ||
| 866 | + "periodCvrgStartDate": "2020-05-10T00:00:00.000+07:00", | ||
| 867 | + "periodCvrgEndDate": "2020-06-09T00:00:00.000+07:00", | ||
| 868 | + "invoiceChargeType": "BILL" | ||
| 869 | + }, | ||
| 870 | + { | ||
| 871 | + "discountTaxAmount": "-140", | ||
| 872 | + "adjustmentNetAmount": "0", | ||
| 873 | + "availableAdjustmentNetAmount": "1099", | ||
| 874 | + "invoiceBcBanId": "700046423", | ||
| 875 | + "dueDate": "2020-06-04T00:00:00.000+07:00", | ||
| 876 | + "orderIdGroup": "", | ||
| 877 | + "vatRate": "0.00", | ||
| 878 | + "converageEndDate": "2020-06-09T00:00:00.000+07:00", | ||
| 879 | + "discountAmount": "-2000", | ||
| 880 | + "invoiceTaxAmount": "76.93", | ||
| 881 | + "invoiceAmount": "1099", | ||
| 882 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 883 | + "paymentAmount": "1175.93", | ||
| 884 | + "baNo": "200078606", | ||
| 885 | + "billTaxAmount": "307.72", | ||
| 886 | + "billingDocumentType": { | ||
| 887 | + "code": "BL", | ||
| 888 | + "description": "Bill" | ||
| 889 | + }, | ||
| 890 | + "billAmount": "4703.72", | ||
| 891 | + "invoiceType": "BILL", | ||
| 892 | + "converageStartDate": "2020-05-10T00:00:00.000+07:00", | ||
| 893 | + "currency": "THB", | ||
| 894 | + "billSequenceNo": "12316", | ||
| 895 | + "invoiceNo": "070520201000333087", | ||
| 896 | + "originalBalanceAmount": "1175.93", | ||
| 897 | + "customerManagerBaNo": "200078606", | ||
| 898 | + "invoiceCreationDate": "2020-06-10T00:00:00.000+07:00", | ||
| 899 | + "unpaidNetAmount": "0", | ||
| 900 | + "availableAdjustmentAmount": "1266.72", | ||
| 901 | + "discountNetAmount": "-2000", | ||
| 902 | + "billDate": "2020-05-12T00:00:00.000+07:00", | ||
| 903 | + "disputeNetAmount": "0.00", | ||
| 904 | + "creditTaxAmount": "0", | ||
| 905 | + "accountId": "200078606", | ||
| 906 | + "billProductType": "", | ||
| 907 | + "billingDocumentStatus": { | ||
| 908 | + "code": "N", | ||
| 909 | + "description": "Confirmed" | ||
| 910 | + }, | ||
| 911 | + "unpaidAmount": "0", | ||
| 912 | + "restrictionAmount": "2000", | ||
| 913 | + "disputeTaxAmount": "0.00", | ||
| 914 | + "invoiceCycle": { | ||
| 915 | + "code": "10", | ||
| 916 | + "month": "5", | ||
| 917 | + "year": "2020" | ||
| 918 | + }, | ||
| 919 | + "convergenceInvoiceNo": "000520201000096853", | ||
| 920 | + "coveredAmount": "1175.93", | ||
| 921 | + "invoiceId": "799731", | ||
| 922 | + "performanceIndStatus": "", | ||
| 923 | + "unpaidTaxAmount": "0", | ||
| 924 | + "invoiceStatus": "C", | ||
| 925 | + "adjustmentAmount": "0", | ||
| 926 | + "restrictionTaxAmount": "140", | ||
| 927 | + "periodCvrgStartDate": "2020-04-10T00:00:00.000+07:00", | ||
| 928 | + "periodCvrgEndDate": "2020-05-09T00:00:00.000+07:00", | ||
| 929 | + "invoiceChargeType": "BILL" | ||
| 930 | + }, | ||
| 931 | + { | ||
| 932 | + "discountTaxAmount": "-140", | ||
| 933 | + "adjustmentNetAmount": "0", | ||
| 934 | + "availableAdjustmentNetAmount": "1099", | ||
| 935 | + "invoiceBcBanId": "700046423", | ||
| 936 | + "dueDate": "2020-05-08T00:00:00.000+07:00", | ||
| 937 | + "orderIdGroup": "", | ||
| 938 | + "vatRate": "0.00", | ||
| 939 | + "converageEndDate": "2020-05-09T00:00:00.000+07:00", | ||
| 940 | + "discountAmount": "-2000", | ||
| 941 | + "invoiceTaxAmount": "76.93", | ||
| 942 | + "invoiceAmount": "1099", | ||
| 943 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 944 | + "paymentAmount": "1175.93", | ||
| 945 | + "baNo": "200078606", | ||
| 946 | + "billTaxAmount": "307.72", | ||
| 947 | + "billingDocumentType": { | ||
| 948 | + "code": "BL", | ||
| 949 | + "description": "Bill" | ||
| 950 | + }, | ||
| 951 | + "billAmount": "4703.72", | ||
| 952 | + "invoiceType": "BILL", | ||
| 953 | + "converageStartDate": "2020-04-10T00:00:00.000+07:00", | ||
| 954 | + "currency": "THB", | ||
| 955 | + "billSequenceNo": "12315", | ||
| 956 | + "invoiceNo": "070420201000328372", | ||
| 957 | + "originalBalanceAmount": "1175.93", | ||
| 958 | + "customerManagerBaNo": "200078606", | ||
| 959 | + "invoiceCreationDate": "2020-04-15T00:00:00.000+07:00", | ||
| 960 | + "unpaidNetAmount": "0", | ||
| 961 | + "availableAdjustmentAmount": "1266.72", | ||
| 962 | + "discountNetAmount": "-2000", | ||
| 963 | + "billDate": "2020-04-15T00:00:00.000+07:00", | ||
| 964 | + "disputeNetAmount": "0.00", | ||
| 965 | + "creditTaxAmount": "0", | ||
| 966 | + "accountId": "200078606", | ||
| 967 | + "billProductType": "", | ||
| 968 | + "billingDocumentStatus": { | ||
| 969 | + "code": "N", | ||
| 970 | + "description": "Confirmed" | ||
| 971 | + }, | ||
| 972 | + "unpaidAmount": "0", | ||
| 973 | + "restrictionAmount": "2000", | ||
| 974 | + "disputeTaxAmount": "0.00", | ||
| 975 | + "invoiceCycle": { | ||
| 976 | + "code": "10", | ||
| 977 | + "month": "4", | ||
| 978 | + "year": "2020" | ||
| 979 | + }, | ||
| 980 | + "convergenceInvoiceNo": "000420201000094791", | ||
| 981 | + "coveredAmount": "1175.93", | ||
| 982 | + "invoiceId": "765860", | ||
| 983 | + "performanceIndStatus": "", | ||
| 984 | + "unpaidTaxAmount": "0", | ||
| 985 | + "invoiceStatus": "C", | ||
| 986 | + "adjustmentAmount": "0", | ||
| 987 | + "restrictionTaxAmount": "140", | ||
| 988 | + "periodCvrgStartDate": "2020-03-10T00:00:00.000+07:00", | ||
| 989 | + "periodCvrgEndDate": "2020-04-09T00:00:00.000+07:00", | ||
| 990 | + "invoiceChargeType": "BILL" | ||
| 991 | + }, | ||
| 992 | + { | ||
| 993 | + "discountTaxAmount": "-140", | ||
| 994 | + "adjustmentNetAmount": "0", | ||
| 995 | + "availableAdjustmentNetAmount": "1099", | ||
| 996 | + "invoiceBcBanId": "700046423", | ||
| 997 | + "dueDate": "2020-04-03T00:00:00.000+07:00", | ||
| 998 | + "orderIdGroup": "", | ||
| 999 | + "vatRate": "0.00", | ||
| 1000 | + "converageEndDate": "2020-04-09T00:00:00.000+07:00", | ||
| 1001 | + "discountAmount": "-2000", | ||
| 1002 | + "invoiceTaxAmount": "76.93", | ||
| 1003 | + "invoiceAmount": "1099", | ||
| 1004 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 1005 | + "paymentAmount": "1175.93", | ||
| 1006 | + "baNo": "200078606", | ||
| 1007 | + "billTaxAmount": "307.72", | ||
| 1008 | + "billingDocumentType": { | ||
| 1009 | + "code": "BL", | ||
| 1010 | + "description": "Bill" | ||
| 1011 | + }, | ||
| 1012 | + "billAmount": "4703.72", | ||
| 1013 | + "invoiceType": "BILL", | ||
| 1014 | + "converageStartDate": "2020-03-10T00:00:00.000+07:00", | ||
| 1015 | + "currency": "THB", | ||
| 1016 | + "billSequenceNo": "12314", | ||
| 1017 | + "invoiceNo": "070320201000323209", | ||
| 1018 | + "originalBalanceAmount": "1175.93", | ||
| 1019 | + "customerManagerBaNo": "200078606", | ||
| 1020 | + "invoiceCreationDate": "2020-03-12T00:00:00.000+07:00", | ||
| 1021 | + "unpaidNetAmount": "0", | ||
| 1022 | + "availableAdjustmentAmount": "1266.72", | ||
| 1023 | + "discountNetAmount": "-2000", | ||
| 1024 | + "billDate": "2020-03-11T00:00:00.000+07:00", | ||
| 1025 | + "disputeNetAmount": "0.00", | ||
| 1026 | + "creditTaxAmount": "0", | ||
| 1027 | + "accountId": "200078606", | ||
| 1028 | + "billProductType": "", | ||
| 1029 | + "billingDocumentStatus": { | ||
| 1030 | + "code": "N", | ||
| 1031 | + "description": "Confirmed" | ||
| 1032 | + }, | ||
| 1033 | + "unpaidAmount": "0", | ||
| 1034 | + "restrictionAmount": "2000", | ||
| 1035 | + "disputeTaxAmount": "0.00", | ||
| 1036 | + "invoiceCycle": { | ||
| 1037 | + "code": "10", | ||
| 1038 | + "month": "3", | ||
| 1039 | + "year": "2020" | ||
| 1040 | + }, | ||
| 1041 | + "convergenceInvoiceNo": "000320201000092460", | ||
| 1042 | + "coveredAmount": "1175.93", | ||
| 1043 | + "invoiceId": "756239", | ||
| 1044 | + "performanceIndStatus": "", | ||
| 1045 | + "unpaidTaxAmount": "0", | ||
| 1046 | + "invoiceStatus": "C", | ||
| 1047 | + "adjustmentAmount": "0", | ||
| 1048 | + "restrictionTaxAmount": "140", | ||
| 1049 | + "periodCvrgStartDate": "2020-02-10T00:00:00.000+07:00", | ||
| 1050 | + "periodCvrgEndDate": "2020-03-09T00:00:00.000+07:00", | ||
| 1051 | + "invoiceChargeType": "BILL" | ||
| 1052 | + }, | ||
| 1053 | + { | ||
| 1054 | + "discountTaxAmount": "-140", | ||
| 1055 | + "adjustmentNetAmount": "0", | ||
| 1056 | + "availableAdjustmentNetAmount": "1099", | ||
| 1057 | + "invoiceBcBanId": "700046423", | ||
| 1058 | + "dueDate": "2020-03-06T00:00:00.000+07:00", | ||
| 1059 | + "orderIdGroup": "", | ||
| 1060 | + "vatRate": "0.00", | ||
| 1061 | + "converageEndDate": "2020-03-09T00:00:00.000+07:00", | ||
| 1062 | + "discountAmount": "-2000", | ||
| 1063 | + "invoiceTaxAmount": "76.93", | ||
| 1064 | + "invoiceAmount": "1099", | ||
| 1065 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 1066 | + "paymentAmount": "1175.93", | ||
| 1067 | + "baNo": "200078606", | ||
| 1068 | + "billTaxAmount": "307.72", | ||
| 1069 | + "billingDocumentType": { | ||
| 1070 | + "code": "BL", | ||
| 1071 | + "description": "Bill" | ||
| 1072 | + }, | ||
| 1073 | + "billAmount": "4703.72", | ||
| 1074 | + "invoiceType": "BILL", | ||
| 1075 | + "converageStartDate": "2020-02-10T00:00:00.000+07:00", | ||
| 1076 | + "currency": "THB", | ||
| 1077 | + "billSequenceNo": "11365", | ||
| 1078 | + "invoiceNo": "070220201000320402", | ||
| 1079 | + "originalBalanceAmount": "1175.93", | ||
| 1080 | + "customerManagerBaNo": "200078606", | ||
| 1081 | + "invoiceCreationDate": "2020-02-13T00:00:00.000+07:00", | ||
| 1082 | + "unpaidNetAmount": "0", | ||
| 1083 | + "availableAdjustmentAmount": "1266.72", | ||
| 1084 | + "discountNetAmount": "-2000", | ||
| 1085 | + "billDate": "2020-02-12T00:00:00.000+07:00", | ||
| 1086 | + "disputeNetAmount": "0.00", | ||
| 1087 | + "creditTaxAmount": "0", | ||
| 1088 | + "accountId": "200078606", | ||
| 1089 | + "billProductType": "", | ||
| 1090 | + "billingDocumentStatus": { | ||
| 1091 | + "code": "N", | ||
| 1092 | + "description": "Confirmed" | ||
| 1093 | + }, | ||
| 1094 | + "unpaidAmount": "0", | ||
| 1095 | + "restrictionAmount": "2000", | ||
| 1096 | + "disputeTaxAmount": "0.00", | ||
| 1097 | + "invoiceCycle": { | ||
| 1098 | + "code": "10", | ||
| 1099 | + "month": "2", | ||
| 1100 | + "year": "2020" | ||
| 1101 | + }, | ||
| 1102 | + "convergenceInvoiceNo": "000220201000091241", | ||
| 1103 | + "coveredAmount": "1175.93", | ||
| 1104 | + "invoiceId": "737341", | ||
| 1105 | + "performanceIndStatus": "", | ||
| 1106 | + "unpaidTaxAmount": "0", | ||
| 1107 | + "invoiceStatus": "C", | ||
| 1108 | + "adjustmentAmount": "0", | ||
| 1109 | + "restrictionTaxAmount": "140", | ||
| 1110 | + "periodCvrgStartDate": "2020-01-10T00:00:00.000+07:00", | ||
| 1111 | + "periodCvrgEndDate": "2020-02-09T00:00:00.000+07:00", | ||
| 1112 | + "invoiceChargeType": "BILL" | ||
| 1113 | + }, | ||
| 1114 | + { | ||
| 1115 | + "discountTaxAmount": "-140", | ||
| 1116 | + "adjustmentNetAmount": "0", | ||
| 1117 | + "availableAdjustmentNetAmount": "1099", | ||
| 1118 | + "invoiceBcBanId": "700046423", | ||
| 1119 | + "dueDate": "2020-02-06T00:00:00.000+07:00", | ||
| 1120 | + "orderIdGroup": "", | ||
| 1121 | + "vatRate": "0.00", | ||
| 1122 | + "converageEndDate": "2020-02-09T00:00:00.000+07:00", | ||
| 1123 | + "discountAmount": "-2000", | ||
| 1124 | + "invoiceTaxAmount": "76.93", | ||
| 1125 | + "invoiceAmount": "1099", | ||
| 1126 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 1127 | + "paymentAmount": "1175.93", | ||
| 1128 | + "baNo": "200078606", | ||
| 1129 | + "billTaxAmount": "307.72", | ||
| 1130 | + "billingDocumentType": { | ||
| 1131 | + "code": "BL", | ||
| 1132 | + "description": "Bill" | ||
| 1133 | + }, | ||
| 1134 | + "billAmount": "4703.72", | ||
| 1135 | + "invoiceType": "BILL", | ||
| 1136 | + "converageStartDate": "2020-01-10T00:00:00.000+07:00", | ||
| 1137 | + "currency": "THB", | ||
| 1138 | + "billSequenceNo": "11364", | ||
| 1139 | + "invoiceNo": "070120201000316273", | ||
| 1140 | + "originalBalanceAmount": "1175.93", | ||
| 1141 | + "customerManagerBaNo": "200078606", | ||
| 1142 | + "invoiceCreationDate": "2020-02-11T00:00:00.000+07:00", | ||
| 1143 | + "unpaidNetAmount": "0", | ||
| 1144 | + "availableAdjustmentAmount": "1266.72", | ||
| 1145 | + "discountNetAmount": "-2000", | ||
| 1146 | + "billDate": "2020-01-14T00:00:00.000+07:00", | ||
| 1147 | + "disputeNetAmount": "0.00", | ||
| 1148 | + "creditTaxAmount": "0", | ||
| 1149 | + "accountId": "200078606", | ||
| 1150 | + "billProductType": "", | ||
| 1151 | + "billingDocumentStatus": { | ||
| 1152 | + "code": "N", | ||
| 1153 | + "description": "Confirmed" | ||
| 1154 | + }, | ||
| 1155 | + "unpaidAmount": "0", | ||
| 1156 | + "restrictionAmount": "2000", | ||
| 1157 | + "disputeTaxAmount": "0.00", | ||
| 1158 | + "invoiceCycle": { | ||
| 1159 | + "code": "10", | ||
| 1160 | + "month": "1", | ||
| 1161 | + "year": "2020" | ||
| 1162 | + }, | ||
| 1163 | + "convergenceInvoiceNo": "000120201000089461", | ||
| 1164 | + "coveredAmount": "1175.93", | ||
| 1165 | + "invoiceId": "733755", | ||
| 1166 | + "performanceIndStatus": "", | ||
| 1167 | + "unpaidTaxAmount": "0", | ||
| 1168 | + "invoiceStatus": "C", | ||
| 1169 | + "adjustmentAmount": "0", | ||
| 1170 | + "restrictionTaxAmount": "140", | ||
| 1171 | + "periodCvrgStartDate": "2019-12-10T00:00:00.000+07:00", | ||
| 1172 | + "periodCvrgEndDate": "2020-01-09T00:00:00.000+07:00", | ||
| 1173 | + "invoiceChargeType": "BILL" | ||
| 1174 | + }, | ||
| 1175 | + { | ||
| 1176 | + "discountTaxAmount": "-140", | ||
| 1177 | + "adjustmentNetAmount": "0", | ||
| 1178 | + "availableAdjustmentNetAmount": "1099", | ||
| 1179 | + "invoiceBcBanId": "700046423", | ||
| 1180 | + "dueDate": "2020-01-03T00:00:00.000+07:00", | ||
| 1181 | + "orderIdGroup": "", | ||
| 1182 | + "vatRate": "0.00", | ||
| 1183 | + "converageEndDate": "2020-01-09T00:00:00.000+07:00", | ||
| 1184 | + "discountAmount": "-2000", | ||
| 1185 | + "invoiceTaxAmount": "76.93", | ||
| 1186 | + "invoiceAmount": "1099", | ||
| 1187 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 1188 | + "paymentAmount": "1175.93", | ||
| 1189 | + "baNo": "200078606", | ||
| 1190 | + "billTaxAmount": "307.72", | ||
| 1191 | + "billingDocumentType": { | ||
| 1192 | + "code": "BL", | ||
| 1193 | + "description": "Bill" | ||
| 1194 | + }, | ||
| 1195 | + "billAmount": "4703.72", | ||
| 1196 | + "invoiceType": "BILL", | ||
| 1197 | + "converageStartDate": "2019-12-10T00:00:00.000+07:00", | ||
| 1198 | + "currency": "THB", | ||
| 1199 | + "billSequenceNo": "11363", | ||
| 1200 | + "invoiceNo": "071220191000303593", | ||
| 1201 | + "originalBalanceAmount": "1175.93", | ||
| 1202 | + "customerManagerBaNo": "200078606", | ||
| 1203 | + "invoiceCreationDate": "2020-01-10T00:00:00.000+07:00", | ||
| 1204 | + "unpaidNetAmount": "0", | ||
| 1205 | + "availableAdjustmentAmount": "1266.72", | ||
| 1206 | + "discountNetAmount": "-2000", | ||
| 1207 | + "billDate": "2019-12-12T00:00:00.000+07:00", | ||
| 1208 | + "disputeNetAmount": "0.00", | ||
| 1209 | + "creditTaxAmount": "0", | ||
| 1210 | + "accountId": "200078606", | ||
| 1211 | + "billProductType": "", | ||
| 1212 | + "billingDocumentStatus": { | ||
| 1213 | + "code": "N", | ||
| 1214 | + "description": "Confirmed" | ||
| 1215 | + }, | ||
| 1216 | + "unpaidAmount": "0", | ||
| 1217 | + "restrictionAmount": "2000", | ||
| 1218 | + "disputeTaxAmount": "0.00", | ||
| 1219 | + "invoiceCycle": { | ||
| 1220 | + "code": "10", | ||
| 1221 | + "month": "12", | ||
| 1222 | + "year": "2019" | ||
| 1223 | + }, | ||
| 1224 | + "convergenceInvoiceNo": "001220191000085698", | ||
| 1225 | + "coveredAmount": "1175.93", | ||
| 1226 | + "invoiceId": "721672", | ||
| 1227 | + "performanceIndStatus": "", | ||
| 1228 | + "unpaidTaxAmount": "0", | ||
| 1229 | + "invoiceStatus": "C", | ||
| 1230 | + "adjustmentAmount": "0", | ||
| 1231 | + "restrictionTaxAmount": "140", | ||
| 1232 | + "periodCvrgStartDate": "2019-11-10T00:00:00.000+07:00", | ||
| 1233 | + "periodCvrgEndDate": "2019-12-09T00:00:00.000+07:00", | ||
| 1234 | + "invoiceChargeType": "BILL" | ||
| 1235 | + }, | ||
| 1236 | + { | ||
| 1237 | + "discountTaxAmount": "-140", | ||
| 1238 | + "adjustmentNetAmount": "0", | ||
| 1239 | + "availableAdjustmentNetAmount": "1099", | ||
| 1240 | + "invoiceBcBanId": "700046423", | ||
| 1241 | + "dueDate": "2019-12-03T00:00:00.000+07:00", | ||
| 1242 | + "orderIdGroup": "", | ||
| 1243 | + "vatRate": "0.00", | ||
| 1244 | + "converageEndDate": "2019-12-09T00:00:00.000+07:00", | ||
| 1245 | + "discountAmount": "-2000", | ||
| 1246 | + "invoiceTaxAmount": "76.93", | ||
| 1247 | + "invoiceAmount": "1099", | ||
| 1248 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 1249 | + "paymentAmount": "1175.93", | ||
| 1250 | + "baNo": "200078606", | ||
| 1251 | + "billTaxAmount": "307.72", | ||
| 1252 | + "billingDocumentType": { | ||
| 1253 | + "code": "BL", | ||
| 1254 | + "description": "Bill" | ||
| 1255 | + }, | ||
| 1256 | + "billAmount": "4703.72", | ||
| 1257 | + "invoiceType": "BILL", | ||
| 1258 | + "converageStartDate": "2019-11-10T00:00:00.000+07:00", | ||
| 1259 | + "currency": "THB", | ||
| 1260 | + "billSequenceNo": "11362", | ||
| 1261 | + "invoiceNo": "071120191000300541", | ||
| 1262 | + "originalBalanceAmount": "1175.93", | ||
| 1263 | + "customerManagerBaNo": "200078606", | ||
| 1264 | + "invoiceCreationDate": "2019-12-11T00:00:00.000+07:00", | ||
| 1265 | + "unpaidNetAmount": "0", | ||
| 1266 | + "availableAdjustmentAmount": "1266.72", | ||
| 1267 | + "discountNetAmount": "-2000", | ||
| 1268 | + "billDate": "2019-11-14T00:00:00.000+07:00", | ||
| 1269 | + "disputeNetAmount": "0.00", | ||
| 1270 | + "creditTaxAmount": "0", | ||
| 1271 | + "accountId": "200078606", | ||
| 1272 | + "billProductType": "", | ||
| 1273 | + "billingDocumentStatus": { | ||
| 1274 | + "code": "N", | ||
| 1275 | + "description": "Confirmed" | ||
| 1276 | + }, | ||
| 1277 | + "unpaidAmount": "0", | ||
| 1278 | + "restrictionAmount": "2000", | ||
| 1279 | + "disputeTaxAmount": "0.00", | ||
| 1280 | + "invoiceCycle": { | ||
| 1281 | + "code": "10", | ||
| 1282 | + "month": "11", | ||
| 1283 | + "year": "2019" | ||
| 1284 | + }, | ||
| 1285 | + "convergenceInvoiceNo": "001120191000084238", | ||
| 1286 | + "coveredAmount": "1175.93", | ||
| 1287 | + "invoiceId": "710941", | ||
| 1288 | + "performanceIndStatus": "", | ||
| 1289 | + "unpaidTaxAmount": "0", | ||
| 1290 | + "invoiceStatus": "C", | ||
| 1291 | + "adjustmentAmount": "0", | ||
| 1292 | + "restrictionTaxAmount": "140", | ||
| 1293 | + "periodCvrgStartDate": "2019-10-10T00:00:00.000+07:00", | ||
| 1294 | + "periodCvrgEndDate": "2019-11-09T00:00:00.000+07:00", | ||
| 1295 | + "invoiceChargeType": "BILL" | ||
| 1296 | + }, | ||
| 1297 | + { | ||
| 1298 | + "discountTaxAmount": "-140", | ||
| 1299 | + "adjustmentNetAmount": "0", | ||
| 1300 | + "availableAdjustmentNetAmount": "1099", | ||
| 1301 | + "invoiceBcBanId": "700046423", | ||
| 1302 | + "dueDate": "2019-11-03T00:00:00.000+07:00", | ||
| 1303 | + "orderIdGroup": "", | ||
| 1304 | + "vatRate": "0.00", | ||
| 1305 | + "converageEndDate": "2019-11-09T00:00:00.000+07:00", | ||
| 1306 | + "discountAmount": "-2000", | ||
| 1307 | + "invoiceTaxAmount": "76.93", | ||
| 1308 | + "invoiceAmount": "1099", | ||
| 1309 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 1310 | + "paymentAmount": "1175.93", | ||
| 1311 | + "baNo": "200078606", | ||
| 1312 | + "billTaxAmount": "307.72", | ||
| 1313 | + "billingDocumentType": { | ||
| 1314 | + "code": "BL", | ||
| 1315 | + "description": "Bill" | ||
| 1316 | + }, | ||
| 1317 | + "billAmount": "4703.72", | ||
| 1318 | + "invoiceType": "BILL", | ||
| 1319 | + "converageStartDate": "2019-10-10T00:00:00.000+07:00", | ||
| 1320 | + "currency": "THB", | ||
| 1321 | + "billSequenceNo": "11361", | ||
| 1322 | + "invoiceNo": "071020191000294086", | ||
| 1323 | + "originalBalanceAmount": "1175.93", | ||
| 1324 | + "customerManagerBaNo": "200078606", | ||
| 1325 | + "invoiceCreationDate": "2019-10-29T00:00:00.000+07:00", | ||
| 1326 | + "unpaidNetAmount": "0", | ||
| 1327 | + "availableAdjustmentAmount": "1266.72", | ||
| 1328 | + "discountNetAmount": "-2000", | ||
| 1329 | + "billDate": "2019-10-12T00:00:00.000+07:00", | ||
| 1330 | + "disputeNetAmount": "0.00", | ||
| 1331 | + "creditTaxAmount": "0", | ||
| 1332 | + "accountId": "200078606", | ||
| 1333 | + "billProductType": "", | ||
| 1334 | + "billingDocumentStatus": { | ||
| 1335 | + "code": "N", | ||
| 1336 | + "description": "Confirmed" | ||
| 1337 | + }, | ||
| 1338 | + "unpaidAmount": "0", | ||
| 1339 | + "restrictionAmount": "2000", | ||
| 1340 | + "disputeTaxAmount": "0.00", | ||
| 1341 | + "invoiceCycle": { | ||
| 1342 | + "code": "10", | ||
| 1343 | + "month": "10", | ||
| 1344 | + "year": "2019" | ||
| 1345 | + }, | ||
| 1346 | + "convergenceInvoiceNo": "001020191000081198", | ||
| 1347 | + "coveredAmount": "1175.93", | ||
| 1348 | + "invoiceId": "698525", | ||
| 1349 | + "performanceIndStatus": "", | ||
| 1350 | + "unpaidTaxAmount": "0", | ||
| 1351 | + "invoiceStatus": "C", | ||
| 1352 | + "adjustmentAmount": "0", | ||
| 1353 | + "restrictionTaxAmount": "140", | ||
| 1354 | + "periodCvrgStartDate": "2019-09-10T00:00:00.000+07:00", | ||
| 1355 | + "periodCvrgEndDate": "2019-10-09T00:00:00.000+07:00", | ||
| 1356 | + "invoiceChargeType": "BILL" | ||
| 1357 | + }, | ||
| 1358 | + { | ||
| 1359 | + "discountTaxAmount": "-140", | ||
| 1360 | + "adjustmentNetAmount": "0", | ||
| 1361 | + "availableAdjustmentNetAmount": "1099", | ||
| 1362 | + "invoiceBcBanId": "700046423", | ||
| 1363 | + "dueDate": "2019-10-03T00:00:00.000+07:00", | ||
| 1364 | + "orderIdGroup": "", | ||
| 1365 | + "vatRate": "0.00", | ||
| 1366 | + "converageEndDate": "2019-10-09T00:00:00.000+07:00", | ||
| 1367 | + "discountAmount": "-2000", | ||
| 1368 | + "invoiceTaxAmount": "76.93", | ||
| 1369 | + "invoiceAmount": "1099", | ||
| 1370 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 1371 | + "paymentAmount": "1175.93", | ||
| 1372 | + "baNo": "200078606", | ||
| 1373 | + "billTaxAmount": "307.72", | ||
| 1374 | + "billingDocumentType": { | ||
| 1375 | + "code": "BL", | ||
| 1376 | + "description": "Bill" | ||
| 1377 | + }, | ||
| 1378 | + "billAmount": "4703.72", | ||
| 1379 | + "invoiceType": "BILL", | ||
| 1380 | + "converageStartDate": "2019-09-10T00:00:00.000+07:00", | ||
| 1381 | + "currency": "THB", | ||
| 1382 | + "billSequenceNo": "11360", | ||
| 1383 | + "invoiceNo": "070920191000287463", | ||
| 1384 | + "originalBalanceAmount": "1175.93", | ||
| 1385 | + "customerManagerBaNo": "200078606", | ||
| 1386 | + "invoiceCreationDate": "2019-10-10T00:00:00.000+07:00", | ||
| 1387 | + "unpaidNetAmount": "0", | ||
| 1388 | + "availableAdjustmentAmount": "1266.72", | ||
| 1389 | + "discountNetAmount": "-2000", | ||
| 1390 | + "billDate": "2019-09-11T00:00:00.000+07:00", | ||
| 1391 | + "disputeNetAmount": "0.00", | ||
| 1392 | + "creditTaxAmount": "0", | ||
| 1393 | + "accountId": "200078606", | ||
| 1394 | + "billProductType": "", | ||
| 1395 | + "billingDocumentStatus": { | ||
| 1396 | + "code": "N", | ||
| 1397 | + "description": "Confirmed" | ||
| 1398 | + }, | ||
| 1399 | + "unpaidAmount": "0", | ||
| 1400 | + "restrictionAmount": "2000", | ||
| 1401 | + "disputeTaxAmount": "0.00", | ||
| 1402 | + "invoiceCycle": { | ||
| 1403 | + "code": "10", | ||
| 1404 | + "month": "9", | ||
| 1405 | + "year": "2019" | ||
| 1406 | + }, | ||
| 1407 | + "convergenceInvoiceNo": "000920191000077944", | ||
| 1408 | + "coveredAmount": "1175.93", | ||
| 1409 | + "invoiceId": "686376", | ||
| 1410 | + "performanceIndStatus": "", | ||
| 1411 | + "unpaidTaxAmount": "0", | ||
| 1412 | + "invoiceStatus": "C", | ||
| 1413 | + "adjustmentAmount": "0", | ||
| 1414 | + "restrictionTaxAmount": "140", | ||
| 1415 | + "periodCvrgStartDate": "2019-08-10T00:00:00.000+07:00", | ||
| 1416 | + "periodCvrgEndDate": "2019-09-09T00:00:00.000+07:00", | ||
| 1417 | + "invoiceChargeType": "BILL" | ||
| 1418 | + }, | ||
| 1419 | + { | ||
| 1420 | + "discountTaxAmount": "-140", | ||
| 1421 | + "adjustmentNetAmount": "0", | ||
| 1422 | + "availableAdjustmentNetAmount": "1099", | ||
| 1423 | + "invoiceBcBanId": "700046423", | ||
| 1424 | + "dueDate": "2019-09-15T00:00:00.000+07:00", | ||
| 1425 | + "orderIdGroup": "", | ||
| 1426 | + "vatRate": "0.00", | ||
| 1427 | + "converageEndDate": "2019-09-09T00:00:00.000+07:00", | ||
| 1428 | + "discountAmount": "-2000", | ||
| 1429 | + "invoiceTaxAmount": "76.93", | ||
| 1430 | + "invoiceAmount": "1099", | ||
| 1431 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 1432 | + "paymentAmount": "1175.93", | ||
| 1433 | + "baNo": "200078606", | ||
| 1434 | + "billTaxAmount": "307.72", | ||
| 1435 | + "billingDocumentType": { | ||
| 1436 | + "code": "BL", | ||
| 1437 | + "description": "Bill" | ||
| 1438 | + }, | ||
| 1439 | + "billAmount": "4703.72", | ||
| 1440 | + "invoiceType": "BILL", | ||
| 1441 | + "converageStartDate": "2019-08-10T00:00:00.000+07:00", | ||
| 1442 | + "currency": "THB", | ||
| 1443 | + "billSequenceNo": "11359", | ||
| 1444 | + "invoiceNo": "070820191000283117", | ||
| 1445 | + "originalBalanceAmount": "1175.93", | ||
| 1446 | + "customerManagerBaNo": "200078606", | ||
| 1447 | + "invoiceCreationDate": "2019-09-10T00:00:00.000+07:00", | ||
| 1448 | + "unpaidNetAmount": "0", | ||
| 1449 | + "availableAdjustmentAmount": "1266.72", | ||
| 1450 | + "discountNetAmount": "-2000", | ||
| 1451 | + "billDate": "2019-08-23T00:00:00.000+07:00", | ||
| 1452 | + "disputeNetAmount": "0.00", | ||
| 1453 | + "creditTaxAmount": "0", | ||
| 1454 | + "accountId": "200078606", | ||
| 1455 | + "billProductType": "", | ||
| 1456 | + "billingDocumentStatus": { | ||
| 1457 | + "code": "N", | ||
| 1458 | + "description": "Confirmed" | ||
| 1459 | + }, | ||
| 1460 | + "unpaidAmount": "0", | ||
| 1461 | + "restrictionAmount": "2000", | ||
| 1462 | + "disputeTaxAmount": "0.00", | ||
| 1463 | + "invoiceCycle": { | ||
| 1464 | + "code": "10", | ||
| 1465 | + "month": "8", | ||
| 1466 | + "year": "2019" | ||
| 1467 | + }, | ||
| 1468 | + "convergenceInvoiceNo": "000820191000075952", | ||
| 1469 | + "coveredAmount": "1175.93", | ||
| 1470 | + "invoiceId": "673817", | ||
| 1471 | + "performanceIndStatus": "", | ||
| 1472 | + "unpaidTaxAmount": "0", | ||
| 1473 | + "invoiceStatus": "C", | ||
| 1474 | + "adjustmentAmount": "0", | ||
| 1475 | + "restrictionTaxAmount": "140", | ||
| 1476 | + "periodCvrgStartDate": "2019-07-10T00:00:00.000+07:00", | ||
| 1477 | + "periodCvrgEndDate": "2019-08-09T00:00:00.000+07:00", | ||
| 1478 | + "invoiceChargeType": "BILL" | ||
| 1479 | + }, | ||
| 1480 | + { | ||
| 1481 | + "discountTaxAmount": "-140", | ||
| 1482 | + "adjustmentNetAmount": "0", | ||
| 1483 | + "availableAdjustmentNetAmount": "1099", | ||
| 1484 | + "invoiceBcBanId": "700046423", | ||
| 1485 | + "dueDate": "2019-08-03T00:00:00.000+07:00", | ||
| 1486 | + "orderIdGroup": "", | ||
| 1487 | + "vatRate": "0.00", | ||
| 1488 | + "converageEndDate": "2019-08-09T00:00:00.000+07:00", | ||
| 1489 | + "discountAmount": "-2000", | ||
| 1490 | + "invoiceTaxAmount": "76.93", | ||
| 1491 | + "invoiceAmount": "1099", | ||
| 1492 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 1493 | + "paymentAmount": "1175.93", | ||
| 1494 | + "baNo": "200078606", | ||
| 1495 | + "billTaxAmount": "307.72", | ||
| 1496 | + "billingDocumentType": { | ||
| 1497 | + "code": "BL", | ||
| 1498 | + "description": "Bill" | ||
| 1499 | + }, | ||
| 1500 | + "billAmount": "4703.72", | ||
| 1501 | + "invoiceType": "BILL", | ||
| 1502 | + "converageStartDate": "2019-07-10T00:00:00.000+07:00", | ||
| 1503 | + "currency": "THB", | ||
| 1504 | + "billSequenceNo": "10826", | ||
| 1505 | + "invoiceNo": "070720191000277763", | ||
| 1506 | + "originalBalanceAmount": "1175.93", | ||
| 1507 | + "customerManagerBaNo": "200078606", | ||
| 1508 | + "invoiceCreationDate": "2019-08-15T00:00:00.000+07:00", | ||
| 1509 | + "unpaidNetAmount": "0", | ||
| 1510 | + "availableAdjustmentAmount": "1266.72", | ||
| 1511 | + "discountNetAmount": "-2000", | ||
| 1512 | + "billDate": "2019-07-11T00:00:00.000+07:00", | ||
| 1513 | + "disputeNetAmount": "0.00", | ||
| 1514 | + "creditTaxAmount": "0", | ||
| 1515 | + "accountId": "200078606", | ||
| 1516 | + "billProductType": "", | ||
| 1517 | + "billingDocumentStatus": { | ||
| 1518 | + "code": "N", | ||
| 1519 | + "description": "Confirmed" | ||
| 1520 | + }, | ||
| 1521 | + "unpaidAmount": "0", | ||
| 1522 | + "restrictionAmount": "2000", | ||
| 1523 | + "disputeTaxAmount": "0.00", | ||
| 1524 | + "invoiceCycle": { | ||
| 1525 | + "code": "10", | ||
| 1526 | + "month": "7", | ||
| 1527 | + "year": "2019" | ||
| 1528 | + }, | ||
| 1529 | + "convergenceInvoiceNo": "000720191000073449", | ||
| 1530 | + "coveredAmount": "1175.93", | ||
| 1531 | + "invoiceId": "657230", | ||
| 1532 | + "performanceIndStatus": "", | ||
| 1533 | + "unpaidTaxAmount": "0", | ||
| 1534 | + "invoiceStatus": "C", | ||
| 1535 | + "adjustmentAmount": "0", | ||
| 1536 | + "restrictionTaxAmount": "140", | ||
| 1537 | + "periodCvrgStartDate": "2019-06-10T00:00:00.000+07:00", | ||
| 1538 | + "periodCvrgEndDate": "2019-07-09T00:00:00.000+07:00", | ||
| 1539 | + "invoiceChargeType": "BILL" | ||
| 1540 | + }, | ||
| 1541 | + { | ||
| 1542 | + "discountTaxAmount": "-140", | ||
| 1543 | + "adjustmentNetAmount": "0", | ||
| 1544 | + "availableAdjustmentNetAmount": "1273.19", | ||
| 1545 | + "invoiceBcBanId": "700046423", | ||
| 1546 | + "dueDate": "2019-07-25T00:00:00.000+07:00", | ||
| 1547 | + "orderIdGroup": "", | ||
| 1548 | + "vatRate": "0.00", | ||
| 1549 | + "converageEndDate": "2019-07-09T00:00:00.000+07:00", | ||
| 1550 | + "discountAmount": "-2000", | ||
| 1551 | + "invoiceTaxAmount": "89.12", | ||
| 1552 | + "invoiceAmount": "1273.19", | ||
| 1553 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 1554 | + "paymentAmount": "1362.31", | ||
| 1555 | + "baNo": "200078606", | ||
| 1556 | + "billTaxAmount": "534.72", | ||
| 1557 | + "billingDocumentType": { | ||
| 1558 | + "code": "BL", | ||
| 1559 | + "description": "Bill" | ||
| 1560 | + }, | ||
| 1561 | + "billAmount": "8173.86", | ||
| 1562 | + "invoiceType": "BILL", | ||
| 1563 | + "converageStartDate": "2019-05-23T00:00:00.000+07:00", | ||
| 1564 | + "currency": "THB", | ||
| 1565 | + "billSequenceNo": "10825", | ||
| 1566 | + "invoiceNo": "070620191000273678", | ||
| 1567 | + "originalBalanceAmount": "1362.31", | ||
| 1568 | + "customerManagerBaNo": "200078606", | ||
| 1569 | + "invoiceCreationDate": "2019-07-08T00:00:00.000+07:00", | ||
| 1570 | + "unpaidNetAmount": "0", | ||
| 1571 | + "availableAdjustmentAmount": "1667.91", | ||
| 1572 | + "discountNetAmount": "-2000", | ||
| 1573 | + "billDate": "2019-07-02T00:00:00.000+07:00", | ||
| 1574 | + "disputeNetAmount": "0.00", | ||
| 1575 | + "creditTaxAmount": "0", | ||
| 1576 | + "accountId": "200078606", | ||
| 1577 | + "billProductType": "", | ||
| 1578 | + "billingDocumentStatus": { | ||
| 1579 | + "code": "N", | ||
| 1580 | + "description": "Confirmed" | ||
| 1581 | + }, | ||
| 1582 | + "unpaidAmount": "0", | ||
| 1583 | + "restrictionAmount": "2000", | ||
| 1584 | + "disputeTaxAmount": "0.00", | ||
| 1585 | + "invoiceCycle": { | ||
| 1586 | + "code": "10", | ||
| 1587 | + "month": "6", | ||
| 1588 | + "year": "2019" | ||
| 1589 | + }, | ||
| 1590 | + "convergenceInvoiceNo": "000620191000071939", | ||
| 1591 | + "coveredAmount": "1362.31", | ||
| 1592 | + "invoiceId": "641486", | ||
| 1593 | + "performanceIndStatus": "", | ||
| 1594 | + "unpaidTaxAmount": "0", | ||
| 1595 | + "invoiceStatus": "C", | ||
| 1596 | + "adjustmentAmount": "0", | ||
| 1597 | + "restrictionTaxAmount": "140", | ||
| 1598 | + "periodCvrgStartDate": "2019-05-10T00:00:00.000+07:00", | ||
| 1599 | + "periodCvrgEndDate": "2019-06-09T00:00:00.000+07:00", | ||
| 1600 | + "invoiceChargeType": "BILL" | ||
| 1601 | + }, | ||
| 1602 | + { | ||
| 1603 | + "discountTaxAmount": "-140", | ||
| 1604 | + "adjustmentNetAmount": "0", | ||
| 1605 | + "availableAdjustmentNetAmount": "799", | ||
| 1606 | + "invoiceBcBanId": "700046423", | ||
| 1607 | + "dueDate": "2019-06-07T00:00:00.000+07:00", | ||
| 1608 | + "orderIdGroup": "", | ||
| 1609 | + "vatRate": "0.00", | ||
| 1610 | + "converageEndDate": "2019-06-09T00:00:00.000+07:00", | ||
| 1611 | + "discountAmount": "-2000", | ||
| 1612 | + "invoiceTaxAmount": "55.93", | ||
| 1613 | + "invoiceAmount": "799", | ||
| 1614 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 1615 | + "paymentAmount": "854.93", | ||
| 1616 | + "baNo": "200078606", | ||
| 1617 | + "billTaxAmount": "111.86", | ||
| 1618 | + "billingDocumentType": { | ||
| 1619 | + "code": "BL", | ||
| 1620 | + "description": "Bill" | ||
| 1621 | + }, | ||
| 1622 | + "billAmount": "1709.86", | ||
| 1623 | + "invoiceType": "BILL", | ||
| 1624 | + "converageStartDate": "2019-05-10T00:00:00.000+07:00", | ||
| 1625 | + "currency": "THB", | ||
| 1626 | + "billSequenceNo": "10824", | ||
| 1627 | + "invoiceNo": "070520191000267249", | ||
| 1628 | + "originalBalanceAmount": "854.93", | ||
| 1629 | + "customerManagerBaNo": "200078606", | ||
| 1630 | + "invoiceCreationDate": "2019-05-14T00:00:00.000+07:00", | ||
| 1631 | + "unpaidNetAmount": "0", | ||
| 1632 | + "availableAdjustmentAmount": "770.86", | ||
| 1633 | + "discountNetAmount": "-2000", | ||
| 1634 | + "billDate": "2019-05-15T00:00:00.000+07:00", | ||
| 1635 | + "disputeNetAmount": "0.00", | ||
| 1636 | + "creditTaxAmount": "0", | ||
| 1637 | + "accountId": "200078606", | ||
| 1638 | + "billProductType": "", | ||
| 1639 | + "billingDocumentStatus": { | ||
| 1640 | + "code": "N", | ||
| 1641 | + "description": "Confirmed" | ||
| 1642 | + }, | ||
| 1643 | + "unpaidAmount": "0", | ||
| 1644 | + "restrictionAmount": "2000", | ||
| 1645 | + "disputeTaxAmount": "0.00", | ||
| 1646 | + "invoiceCycle": { | ||
| 1647 | + "code": "10", | ||
| 1648 | + "month": "5", | ||
| 1649 | + "year": "2019" | ||
| 1650 | + }, | ||
| 1651 | + "convergenceInvoiceNo": "000520191000069097", | ||
| 1652 | + "coveredAmount": "854.93", | ||
| 1653 | + "invoiceId": "618286", | ||
| 1654 | + "performanceIndStatus": "", | ||
| 1655 | + "unpaidTaxAmount": "0", | ||
| 1656 | + "invoiceStatus": "C", | ||
| 1657 | + "adjustmentAmount": "0", | ||
| 1658 | + "restrictionTaxAmount": "140", | ||
| 1659 | + "periodCvrgStartDate": "2019-04-10T00:00:00.000+07:00", | ||
| 1660 | + "periodCvrgEndDate": "2019-05-09T00:00:00.000+07:00", | ||
| 1661 | + "invoiceChargeType": "BILL" | ||
| 1662 | + }, | ||
| 1663 | + { | ||
| 1664 | + "discountTaxAmount": "-203.22", | ||
| 1665 | + "adjustmentNetAmount": "0", | ||
| 1666 | + "availableAdjustmentNetAmount": "1159.84", | ||
| 1667 | + "invoiceBcBanId": "700046423", | ||
| 1668 | + "dueDate": "2019-05-04T00:00:00.000+07:00", | ||
| 1669 | + "orderIdGroup": "", | ||
| 1670 | + "vatRate": "0.00", | ||
| 1671 | + "converageEndDate": "2019-05-09T00:00:00.000+07:00", | ||
| 1672 | + "discountAmount": "-2903.22", | ||
| 1673 | + "invoiceTaxAmount": "81.19", | ||
| 1674 | + "invoiceAmount": "1159.84", | ||
| 1675 | + "invoiceStatusChangeDate": "2021-06-15T00:00:00.000+07:00", | ||
| 1676 | + "paymentAmount": "1241.03", | ||
| 1677 | + "baNo": "200078606", | ||
| 1678 | + "billTaxAmount": "324.76", | ||
| 1679 | + "billingDocumentType": { | ||
| 1680 | + "code": "BL", | ||
| 1681 | + "description": "Bill" | ||
| 1682 | + }, | ||
| 1683 | + "billAmount": "4964.12", | ||
| 1684 | + "invoiceType": "BILL", | ||
| 1685 | + "converageStartDate": "2019-03-27T00:00:00.000+07:00", | ||
| 1686 | + "currency": "THB", | ||
| 1687 | + "billSequenceNo": "10823", | ||
| 1688 | + "invoiceNo": "070420191000263712", | ||
| 1689 | + "originalBalanceAmount": "1241.03", | ||
| 1690 | + "customerManagerBaNo": "200078606", | ||
| 1691 | + "invoiceCreationDate": "2019-05-07T00:00:00.000+07:00", | ||
| 1692 | + "unpaidNetAmount": "0", | ||
| 1693 | + "availableAdjustmentAmount": "1281.38", | ||
| 1694 | + "discountNetAmount": "-2903.22", | ||
| 1695 | + "billDate": "2019-04-11T00:00:00.000+07:00", | ||
| 1696 | + "disputeNetAmount": "0.00", | ||
| 1697 | + "creditTaxAmount": "0", | ||
| 1698 | + "accountId": "200078606", | ||
| 1699 | + "billProductType": "", | ||
| 1700 | + "billingDocumentStatus": { | ||
| 1701 | + "code": "N", | ||
| 1702 | + "description": "Confirmed" | ||
| 1703 | + }, | ||
| 1704 | + "unpaidAmount": "0", | ||
| 1705 | + "restrictionAmount": "2903.22", | ||
| 1706 | + "disputeTaxAmount": "0.00", | ||
| 1707 | + "invoiceCycle": { | ||
| 1708 | + "code": "10", | ||
| 1709 | + "month": "4", | ||
| 1710 | + "year": "2019" | ||
| 1711 | + }, | ||
| 1712 | + "convergenceInvoiceNo": "000420191000067436", | ||
| 1713 | + "coveredAmount": "1241.03", | ||
| 1714 | + "invoiceId": "615220", | ||
| 1715 | + "performanceIndStatus": "", | ||
| 1716 | + "unpaidTaxAmount": "0", | ||
| 1717 | + "invoiceStatus": "C", | ||
| 1718 | + "adjustmentAmount": "0", | ||
| 1719 | + "restrictionTaxAmount": "203.22", | ||
| 1720 | + "periodCvrgStartDate": "2019-03-27T00:00:00.000+07:00", | ||
| 1721 | + "periodCvrgEndDate": "2019-04-09T00:00:00.000+07:00", | ||
| 1722 | + "invoiceChargeType": "BILL" | ||
| 1723 | + } | ||
| 1724 | + ] | ||
| 1725 | + }, | ||
| 1726 | + "totalSize": "28", | ||
| 1727 | + "calculatedPageSize": "100", | ||
| 1728 | + "errorCode": "OSBbllngA00001", | ||
| 1729 | + "message": "Success.", | ||
| 1730 | + "uuid": "07b92f9a-df39-4ed0-8123-042debc974ba" | ||
| 1731 | + } | ||
| 1732 | + } | ||
| 1733 | + } | ||
| 1734 | + | ||
| 1735 | + res.status(200).send(response) | ||
| 1736 | +} | ||
| 0 | \ No newline at end of file | 1737 | \ No newline at end of file |