提交 116caa2b authored 作者: huyufan's avatar huyufan

资金负数展示

上级 d856566d
...@@ -225,7 +225,16 @@ public class NetworkDriverRunningWaterRecordServiceImpl implements NetworkDriver ...@@ -225,7 +225,16 @@ public class NetworkDriverRunningWaterRecordServiceImpl implements NetworkDriver
record.setAlterationBalance(record.getAlterationBalance().negate()); record.setAlterationBalance(record.getAlterationBalance().negate());
} }
} }
} else if (param.getFundType() == null ) {
if (CollectionUtil.isNotEmpty(page.getRecords())) {
for (APPNetworkDriverRunningWaterRecordVO record : page.getRecords()) {
if (NetworkDriverAccountEnum.RunningWaterStatus.CASE_OUT_SUCCESS.getCode().equals( record.getRunningWaterType())){
record.setAlterationBalance(record.getAlterationBalance().negate());
}
} }
}
}
return page; return page;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论