账户的当前余额改为只读

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

@ -74,7 +74,7 @@
</div>
<div class="fitem" style="padding:5px">
<label id="currentAmountLabel">当前余额</label>
<input name="currentAmount" id="currentAmount" type="text" class="easyui-numberbox" data-options="min:0,precision:2" style="width: 230px;height: 20px"></input>
<input name="currentAmount" id="currentAmount" type="text" disabled="disabled" class="easyui-numberbox" data-options="min:0,precision:2" style="width: 230px;height: 20px"></input>
</div>
<div class="fitem" style="padding:5px">
<label id="remarkLabel">备&nbsp;&nbsp;&nbsp;&nbsp;注</label>

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);