Compare commits
3 Commits
3c44a5cce4
...
1156b3f5dd
| Author | SHA1 | Date |
|---|---|---|
|
|
1156b3f5dd | |
|
|
fb239f34ed | |
|
|
8168a42b61 |
Binary file not shown.
|
|
@ -405,11 +405,13 @@ public class SalaryAcctExcelServiceImpl extends Service implements SalaryAcctExc
|
||||||
if (openSum != null && StringUtils.isNotBlank(openSum.getConfValue()) && OpenEnum.parseByValue(openSum.getConfValue()) == OpenEnum.OPEN) {
|
if (openSum != null && StringUtils.isNotBlank(openSum.getConfValue()) && OpenEnum.parseByValue(openSum.getConfValue()) == OpenEnum.OPEN) {
|
||||||
total = true;
|
total = true;
|
||||||
Map<String, Object> sumRow = getSalaryAcctResultService(user).sumRow(queryParam);
|
Map<String, Object> sumRow = getSalaryAcctResultService(user).sumRow(queryParam);
|
||||||
sumRow.forEach((k, v) -> {
|
if (sumRow != null) {
|
||||||
if (NumberUtils.isCreatable(v.toString())) {
|
sumRow.forEach((k, v) -> {
|
||||||
sumRow.put(k, new BigDecimal(v.toString()));
|
if (NumberUtils.isCreatable(v.toString())) {
|
||||||
}
|
sumRow.put(k, new BigDecimal(v.toString()));
|
||||||
});
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
if (sumRow != null) {
|
if (sumRow != null) {
|
||||||
sumRow.put("taxAgentName", "总计");
|
sumRow.put("taxAgentName", "总计");
|
||||||
resultMapList.add(sumRow);
|
resultMapList.add(sumRow);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue