Commit da9c3176 authored by 季圣华's avatar 季圣华
Browse files

解决账户统计报表展示金额的bug

parent ec45e0cf
......@@ -115,6 +115,7 @@ public class AccountController {
BigDecimal balance = accountService.getAccountSum(accountId, timeStr, "date").add(accountService.getAccountSumByHead(accountId, timeStr, "date"))
.add(accountService.getAccountSumByDetail(accountId, timeStr, "date")).add(accountService.getManyAccountSum(accountId, timeStr, "date")).add(initialAmount);
aEx.setBalance(balance);
aEx.setAccountId(accountId);
dataArray.add(aEx);
}
}
......
......@@ -4,6 +4,8 @@ import java.math.BigDecimal;
public class AccountVo4InOutList {
private Long accountId;
private String number;
private String type;
......@@ -24,6 +26,14 @@ public class AccountVo4InOutList {
private Long tenantId;
public Long getAccountId() {
return accountId;
}
public void setAccountId(Long accountId) {
this.accountId = accountId;
}
public String getNumber() {
return number;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment