@hmcts/ccpay-web-component 5.0.7-beta11 → 5.0.7-beta14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/hmcts-ccpay-web-component.umd.js +15 -0
- package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
- package/esm2015/lib/components/reports/reports.component.js +16 -1
- package/esm5/lib/components/reports/reports.component.js +16 -1
- package/fesm2015/hmcts-ccpay-web-component.js +15 -0
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +15 -0
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/package.json +1 -1
|
@@ -9342,6 +9342,21 @@
|
|
|
9342
9342
|
if (res['data'][i]["representment_status"] !== undefined) {
|
|
9343
9343
|
res['data'][i]['representment_status'] = res['data'][i]["representment_status"].toLowerCase() === 'yes' ? 'Success' : 'Failure';
|
|
9344
9344
|
}
|
|
9345
|
+
if (res['data'][i]['representment_status'] === undefined) {
|
|
9346
|
+
res['data'][i]['representment_status'] = 'No representment received';
|
|
9347
|
+
}
|
|
9348
|
+
if (res['data'][i]['representment_date'] === undefined) {
|
|
9349
|
+
res['data'][i]['representment_date'] = 'N/A';
|
|
9350
|
+
}
|
|
9351
|
+
if (res['data'][i]['refund_reference'] === undefined) {
|
|
9352
|
+
res['data'][i]['refund_reference'] = 'No refund available';
|
|
9353
|
+
}
|
|
9354
|
+
if (res['data'][i]['refund_amount'] === undefined) {
|
|
9355
|
+
res['data'][i]['refund_amount'] = 'N/A';
|
|
9356
|
+
}
|
|
9357
|
+
if (res['data'][i]['refund_date'] === undefined) {
|
|
9358
|
+
res['data'][i]['refund_date'] = 'N/A';
|
|
9359
|
+
}
|
|
9345
9360
|
}
|
|
9346
9361
|
}
|
|
9347
9362
|
_this.isDownLoadButtondisabled = false;
|