xxxxxxxxxx
if (totalAmt > this.claimModel.billedAmount) {
this.billAmountCustomValidationError = "Billed Amount should be equal or less than $" + (this.claimModel.billedAmount - billamt);
this.getClaimServicesFormControls.billedAmount.setErrors({ billAmountCustomError: true });
}
else {
this.billAmountCustomValidationError = '';
this.getClaimServicesFormControls.billedAmount.setErrors(null);
}