@hmcts/ccpay-web-component 5.0.2-beta58 → 5.0.2-beta59
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 -18
- 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 -19
- package/esm5/lib/components/add-remission/add-remission.component.js +19 -19
- package/fesm2015/hmcts-ccpay-web-component.js +18 -18
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +18 -18
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/package.json +1 -1
|
@@ -7400,25 +7400,25 @@
|
|
|
7400
7400
|
function () {
|
|
7401
7401
|
/** @type {?} */
|
|
7402
7402
|
var creds = ( /** @type {?} */(this.remissionForm.controls.feesList));
|
|
7403
|
-
if
|
|
7404
|
-
|
|
7405
|
-
|
|
7406
|
-
|
|
7407
|
-
|
|
7408
|
-
|
|
7409
|
-
|
|
7410
|
-
|
|
7411
|
-
|
|
7412
|
-
|
|
7413
|
-
|
|
7414
|
-
|
|
7415
|
-
|
|
7416
|
-
|
|
7417
|
-
|
|
7418
|
-
|
|
7419
|
-
}
|
|
7420
|
-
this.cd.detectChanges();
|
|
7403
|
+
// if(creds.controls.length > 0) {
|
|
7404
|
+
for (var i = 0; i < this.fees.length; i++) {
|
|
7405
|
+
creds.push(this.formBuilder.group({
|
|
7406
|
+
id: this.fees[i].id,
|
|
7407
|
+
code: this.fees[i].code,
|
|
7408
|
+
volume: this.fees[i].volume,
|
|
7409
|
+
calculated_amount: this.fees[i].calculated_amount,
|
|
7410
|
+
apportion_amount: this.fees[i].apportion_amount,
|
|
7411
|
+
ccd_case_number: this.fees[i].ccd_case_number,
|
|
7412
|
+
description: this.fees[i].description,
|
|
7413
|
+
net_amount: this.fees[i].net_amount,
|
|
7414
|
+
version: this.fees[i].version,
|
|
7415
|
+
refund_amount: [''],
|
|
7416
|
+
selected: [''],
|
|
7417
|
+
updated_volume: this.fees[i].volume
|
|
7418
|
+
}));
|
|
7421
7419
|
}
|
|
7420
|
+
this.cd.detectChanges();
|
|
7421
|
+
//}
|
|
7422
7422
|
};
|
|
7423
7423
|
Object.defineProperty(AddRemissionComponent.prototype, "feesList", {
|
|
7424
7424
|
get: /**
|