Fixed Balance < 0 for Insufficient funds

This commit is contained in:
eric-martin 2018-11-10 21:05:53 -06:00
parent a3ff5263fc
commit 84029b0281
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ public class TellerService {
bankAccountService.transfer(fromAccontId, toAccountId, amount);
auditService.log(fromAccontId, toAccountId, amount);
BigDecimal balance = bankAccountService.balanceOf(fromAccontId);
if (balance.compareTo(BigDecimal.ZERO) <= 0) {
if (balance.compareTo(BigDecimal.ZERO) < 0) {
throw new RuntimeException("Insufficient fund.");
}
}
@ -35,7 +35,7 @@ public class TellerService {
bankAccountService.transfer(fromAccontId, toAccountId, amount);
auditService.log(fromAccontId, toAccountId, amount);
BigDecimal balance = bankAccountService.balanceOf(fromAccontId);
if (balance.compareTo(BigDecimal.ZERO) <= 0) {
if (balance.compareTo(BigDecimal.ZERO) < 0) {
userTransaction.rollback();
throw new RuntimeException("Insufficient fund.");
} else {