fix 87981 工作组来款详情--到账金额保留位数不对

This commit is contained in:
lijiarao
2024-08-02 14:39:29 +08:00
parent 0c7334b431
commit 1616ecb636
@@ -163,10 +163,10 @@ public class PayWorkingGroupStatisticsController {
}
for (PayWorkGroupSubletStatistics s : pageList.getRecords()) {
if (s.getAllMoney() == null || s.getAllMoney().equals("")) {
s.setAllMoney("0.0");
s.setAllMoney(CommonConstant.ZERO);
}
if (s.getComeAllMoney() == null || s.getComeAllMoney().equals("")) {
s.setComeAllMoney("0.0");
s.setComeAllMoney(CommonConstant.ZERO);
}
}
hashMap.put("pageList", pageList);