@hmcts/ccpay-web-component 5.0.10-beta01 → 5.0.10-beta02
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 +4 -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/case-transactions/case-transactions.component.js +5 -1
- package/esm5/lib/components/case-transactions/case-transactions.component.js +5 -1
- package/fesm2015/hmcts-ccpay-web-component.js +4 -0
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +4 -0
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/package.json +1 -1
|
@@ -3592,6 +3592,10 @@
|
|
|
3592
3592
|
_this.orderStatus = paymentGroup.service_request_status;
|
|
3593
3593
|
_this.orderAddBtnEnable = true;
|
|
3594
3594
|
}
|
|
3595
|
+
else if (paymentGroup.service_request_status === 'Disputed') {
|
|
3596
|
+
_this.orderStatus = paymentGroup.service_request_status;
|
|
3597
|
+
_this.orderAddBtnEnable = true;
|
|
3598
|
+
}
|
|
3595
3599
|
//this.orderLevelFees.push({orderRefId:paymentGroup['payment_group_reference'],orderTotalFees: this.orderFeesTotal,orderStatus: this.orderStatus,orderParty:'Santosh', orderCCDEvent:'Case Creation',orderCreated: new Date(), orderAddBtnEnable: this.orderAddBtnEnable}); this.cpoDetails['createdTimestamp']
|
|
3596
3600
|
if (_this.cpoDetails !== null) {
|
|
3597
3601
|
_this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: _this.orderFeesTotal, orderStatus: _this.orderStatus, orderParty: _this.cpoDetails['responsibleParty'], orderCCDEvent: _this.cpoDetails['action'], orderCreated: paymentGroup['date_created'], orderAddBtnEnable: _this.orderAddBtnEnable });
|