账户的当前余额改为只读

This commit is contained in:
季圣华
2017-01-22 23:27:11 +08:00
parent fddbfd5f81
commit da798323db
3 changed files with 3 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ public class AccountAction extends BaseAction<AccountModel>
Account Account = new Account();
Account.setName(model.getName());
Account.setSerialNo(model.getSerialNo());
Account.setInitialAmount(model.getInitialAmount());
Account.setInitialAmount(model.getInitialAmount()!=null ? model.getInitialAmount() : 0);
Account.setCurrentAmount(model.getCurrentAmount());
Account.setRemark(model.getRemark());
accountService.create(Account);
@@ -139,7 +139,7 @@ public class AccountAction extends BaseAction<AccountModel>
Account Account = accountService.get(model.getAccountID());
Account.setName(model.getName());
Account.setSerialNo(model.getSerialNo());
Account.setInitialAmount(model.getInitialAmount());
Account.setInitialAmount(model.getInitialAmount()!=null ? model.getInitialAmount() : 0);
Account.setCurrentAmount(model.getCurrentAmount());
Account.setRemark(model.getRemark());
accountService.update(Account);