@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
|
@@ -7515,25 +7515,25 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7515
7515
|
function () {
|
|
7516
7516
|
/** @type {?} */
|
|
7517
7517
|
var creds = (/** @type {?} */ (this.remissionForm.controls.feesList));
|
|
7518
|
-
if
|
|
7519
|
-
|
|
7520
|
-
|
|
7521
|
-
|
|
7522
|
-
|
|
7523
|
-
|
|
7524
|
-
|
|
7525
|
-
|
|
7526
|
-
|
|
7527
|
-
|
|
7528
|
-
|
|
7529
|
-
|
|
7530
|
-
|
|
7531
|
-
|
|
7532
|
-
|
|
7533
|
-
|
|
7534
|
-
}
|
|
7535
|
-
this.cd.detectChanges();
|
|
7518
|
+
// if(creds.controls.length > 0) {
|
|
7519
|
+
for (var i = 0; i < this.fees.length; i++) {
|
|
7520
|
+
creds.push(this.formBuilder.group({
|
|
7521
|
+
id: this.fees[i].id,
|
|
7522
|
+
code: this.fees[i].code,
|
|
7523
|
+
volume: this.fees[i].volume,
|
|
7524
|
+
calculated_amount: this.fees[i].calculated_amount,
|
|
7525
|
+
apportion_amount: this.fees[i].apportion_amount,
|
|
7526
|
+
ccd_case_number: this.fees[i].ccd_case_number,
|
|
7527
|
+
description: this.fees[i].description,
|
|
7528
|
+
net_amount: this.fees[i].net_amount,
|
|
7529
|
+
version: this.fees[i].version,
|
|
7530
|
+
refund_amount: [''],
|
|
7531
|
+
selected: [''],
|
|
7532
|
+
updated_volume: this.fees[i].volume
|
|
7533
|
+
}));
|
|
7536
7534
|
}
|
|
7535
|
+
this.cd.detectChanges();
|
|
7536
|
+
//}
|
|
7537
7537
|
};
|
|
7538
7538
|
Object.defineProperty(AddRemissionComponent.prototype, "feesList", {
|
|
7539
7539
|
get: /**
|