This commit is contained in:
zhangqinlin
2022-04-08 10:34:03 +08:00
parent 8b96235c29
commit a2ed3fcfe5
@@ -218,6 +218,9 @@ public class PrincipalPeopleStatisticsController {
if (s.getComeAllMoney() == null || s.getComeAllMoney().equals("")) { if (s.getComeAllMoney() == null || s.getComeAllMoney().equals("")) {
s.setComeAllMoney("0.00"); s.setComeAllMoney("0.00");
} }
if(s.getFinishRate() == null || s.getFinishRate().equals("")){
s.setFinishRate("0.00%");
}
} }
return AmountUtil.exportListXls(pageList, PrincipalPeopleList.class, "个人来款"); return AmountUtil.exportListXls(pageList, PrincipalPeopleList.class, "个人来款");