in src/app/teller/customer/transaction/deposit/form.component.ts [146:154]
private getAmountMaxValue(productInstance: ProductInstance): number {
if (this.checkBalanceLimit && this.checkCashdrawLimit) {
return Math.min(this.cashdrawLimit, productInstance.balance);
}
if (this.checkBalanceLimit && !this.checkCashdrawLimit) {
return productInstance.balance;
}
}