@hmcts/ccpay-web-component 5.0.1-beta170 → 5.0.1-beta171
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 +18 -16
- 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/add-remission/add-remission.component.js +19 -17
- package/esm5/lib/components/add-remission/add-remission.component.js +19 -17
- package/fesm2015/hmcts-ccpay-web-component.js +18 -16
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +18 -16
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/package.json +1 -1
|
@@ -7371,23 +7371,25 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7371
7371
|
function () {
|
|
7372
7372
|
/** @type {?} */
|
|
7373
7373
|
var creds = (/** @type {?} */ (this.remissionForm.controls.feesList));
|
|
7374
|
-
|
|
7375
|
-
|
|
7376
|
-
|
|
7377
|
-
|
|
7378
|
-
|
|
7379
|
-
|
|
7380
|
-
|
|
7381
|
-
|
|
7382
|
-
|
|
7383
|
-
|
|
7384
|
-
|
|
7385
|
-
|
|
7386
|
-
|
|
7387
|
-
|
|
7388
|
-
|
|
7374
|
+
if (creds.controls.length > 0) {
|
|
7375
|
+
for (var i = 0; i < this.fees.length; i++) {
|
|
7376
|
+
creds.push(this.formBuilder.group({
|
|
7377
|
+
id: this.fees[i].id,
|
|
7378
|
+
code: this.fees[i].code,
|
|
7379
|
+
volume: this.fees[i].volume,
|
|
7380
|
+
calculated_amount: this.fees[i].calculated_amount,
|
|
7381
|
+
apportion_amount: this.fees[i].apportion_amount,
|
|
7382
|
+
ccd_case_number: this.fees[i].ccd_case_number,
|
|
7383
|
+
description: this.fees[i].description,
|
|
7384
|
+
net_amount: this.fees[i].net_amount,
|
|
7385
|
+
version: this.fees[i].version,
|
|
7386
|
+
amounttorefund: [''],
|
|
7387
|
+
selected: [''],
|
|
7388
|
+
updatedVolume: ''
|
|
7389
|
+
}));
|
|
7390
|
+
}
|
|
7391
|
+
this.cd.detectChanges();
|
|
7389
7392
|
}
|
|
7390
|
-
this.cd.detectChanges();
|
|
7391
7393
|
};
|
|
7392
7394
|
Object.defineProperty(AddRemissionComponent.prototype, "feesList", {
|
|
7393
7395
|
get: /**
|