@hmcts/ccpay-web-component 5.2.8-beta03 → 5.2.8-beta04
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 +6 -2
- 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/unprocessed-payments/unprocessed-payments.component.js +7 -3
- package/fesm2015/hmcts-ccpay-web-component.js +6 -2
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -4251,11 +4251,15 @@
|
|
|
4251
4251
|
if (this.isUnprocessedRecordSelected && this.isExceptionCase) {
|
|
4252
4252
|
this.isMarkAsUnidentifiedbtnEnabled = true;
|
|
4253
4253
|
}
|
|
4254
|
-
else if (this.isUnprocessedRecordSelected && !this.isExceptionCase &&
|
|
4254
|
+
else if (this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {
|
|
4255
|
+
//SNI-3692 - WIP
|
|
4256
|
+
//} else if ( this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS!== null && !this.FEE_RECORDS_EXISTS) {
|
|
4255
4257
|
this.isAllocateToExistingFeebtnEnabled = false;
|
|
4256
4258
|
this.isAllocatedToNewFeebtnEnabled = true;
|
|
4257
4259
|
}
|
|
4258
|
-
else if (this.isUnprocessedRecordSelected && !this.isExceptionCase &&
|
|
4260
|
+
else if (this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS) {
|
|
4261
|
+
//SNI-3692 - WIP
|
|
4262
|
+
//} else if( this.isUnprocessedRecordSelected && !this.isExceptionCase && (this.FEE_RECORDS_EXISTS === null || this.FEE_RECORDS_EXISTS) ) {
|
|
4259
4263
|
if (!this.ISTURNOFF) {
|
|
4260
4264
|
this.isAllocateToExistingFeebtnEnabled = true;
|
|
4261
4265
|
this.isAllocatedToNewFeebtnEnabled = false;
|