@hmcts/ccpay-web-component 5.2.8 → 5.2.9-1
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 +19 -16
- 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 +17 -15
- package/fesm2015/hmcts-ccpay-web-component.js +16 -14
- 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
|
@@ -4248,23 +4248,26 @@
|
|
|
4248
4248
|
}
|
|
4249
4249
|
};
|
|
4250
4250
|
UnprocessedPaymentsComponent.prototype.validateButtons = function () {
|
|
4251
|
-
|
|
4252
|
-
|
|
4253
|
-
|
|
4254
|
-
|
|
4255
|
-
|
|
4256
|
-
|
|
4257
|
-
|
|
4258
|
-
|
|
4259
|
-
|
|
4260
|
-
|
|
4261
|
-
|
|
4262
|
-
|
|
4263
|
-
|
|
4264
|
-
|
|
4265
|
-
|
|
4251
|
+
var _this = this;
|
|
4252
|
+
setTimeout(function () {
|
|
4253
|
+
if (_this.isUnprocessedRecordSelected && _this.isExceptionCase) {
|
|
4254
|
+
_this.isMarkAsUnidentifiedbtnEnabled = true;
|
|
4255
|
+
}
|
|
4256
|
+
else if (_this.isUnprocessedRecordSelected && !_this.isExceptionCase && !_this.FEE_RECORDS_EXISTS) {
|
|
4257
|
+
_this.isAllocateToExistingFeebtnEnabled = false;
|
|
4258
|
+
_this.isAllocatedToNewFeebtnEnabled = true;
|
|
4259
|
+
}
|
|
4260
|
+
else if (_this.isUnprocessedRecordSelected && !_this.isExceptionCase && _this.FEE_RECORDS_EXISTS) {
|
|
4261
|
+
if (!_this.ISTURNOFF) {
|
|
4262
|
+
_this.isAllocateToExistingFeebtnEnabled = true;
|
|
4263
|
+
_this.isAllocatedToNewFeebtnEnabled = false;
|
|
4264
|
+
}
|
|
4265
|
+
else {
|
|
4266
|
+
_this.isAllocateToExistingFeebtnEnabled = _this.IS_OS_AMT_AVAILABLE;
|
|
4267
|
+
_this.isAllocatedToNewFeebtnEnabled = true;
|
|
4268
|
+
}
|
|
4266
4269
|
}
|
|
4267
|
-
}
|
|
4270
|
+
}, 4000);
|
|
4268
4271
|
};
|
|
4269
4272
|
UnprocessedPaymentsComponent.prototype.unprocessedPaymentUnSelectEvent = function (event) {
|
|
4270
4273
|
event.preventDefault();
|