@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
|
@@ -6582,25 +6582,25 @@ class AddRemissionComponent {
|
|
|
6582
6582
|
refundFeesList() {
|
|
6583
6583
|
/** @type {?} */
|
|
6584
6584
|
const creds = (/** @type {?} */ (this.remissionForm.controls.feesList));
|
|
6585
|
-
if
|
|
6586
|
-
|
|
6587
|
-
|
|
6588
|
-
|
|
6589
|
-
|
|
6590
|
-
|
|
6591
|
-
|
|
6592
|
-
|
|
6593
|
-
|
|
6594
|
-
|
|
6595
|
-
|
|
6596
|
-
|
|
6597
|
-
|
|
6598
|
-
|
|
6599
|
-
|
|
6600
|
-
|
|
6601
|
-
}
|
|
6602
|
-
this.cd.detectChanges();
|
|
6585
|
+
// if(creds.controls.length > 0) {
|
|
6586
|
+
for (var i = 0; i < this.fees.length; i++) {
|
|
6587
|
+
creds.push(this.formBuilder.group({
|
|
6588
|
+
id: this.fees[i].id,
|
|
6589
|
+
code: this.fees[i].code,
|
|
6590
|
+
volume: this.fees[i].volume,
|
|
6591
|
+
calculated_amount: this.fees[i].calculated_amount,
|
|
6592
|
+
apportion_amount: this.fees[i].apportion_amount,
|
|
6593
|
+
ccd_case_number: this.fees[i].ccd_case_number,
|
|
6594
|
+
description: this.fees[i].description,
|
|
6595
|
+
net_amount: this.fees[i].net_amount,
|
|
6596
|
+
version: this.fees[i].version,
|
|
6597
|
+
refund_amount: [''],
|
|
6598
|
+
selected: [''],
|
|
6599
|
+
updated_volume: this.fees[i].volume
|
|
6600
|
+
}));
|
|
6603
6601
|
}
|
|
6602
|
+
this.cd.detectChanges();
|
|
6603
|
+
//}
|
|
6604
6604
|
}
|
|
6605
6605
|
/**
|
|
6606
6606
|
* @return {?}
|