|
|
@ -1143,7 +1143,6 @@ public class ScmFinanceAdjustApplyService extends MybatisBaseService<ScmFinanceA |
|
|
|
if (!scmFileVos.isEmpty() && scmFileVos.size() > 0) { |
|
|
|
List<String> files = new ArrayList<>(); |
|
|
|
for (ScmFileVo scmFileVo : scmFileVos) { |
|
|
|
QueryUrl url = new QueryUrl(); |
|
|
|
String filePath = scmFileVo.getFilePath(); |
|
|
|
String urlPrefix = fileUploadComponent.getUrlPrefix(); |
|
|
|
filePath = urlPrefix + filePath; |
|
|
@ -1179,7 +1178,12 @@ public class ScmFinanceAdjustApplyService extends MybatisBaseService<ScmFinanceA |
|
|
|
} |
|
|
|
vo.setList(list); |
|
|
|
} |
|
|
|
vo.setTotal("订单贴息金额:" + d + ",上传贴息金额:" + s + ",差额:" + c + ",已调整金额:" + y + ",当前差额:" + d + ",本次调整金额:" + b); |
|
|
|
vo.setEstimateRebateTotal(t.toString()); |
|
|
|
vo.setUploadMoneyTotal(s.toString()); |
|
|
|
vo.setAdjustmentMoneyTotal(c.toString()); |
|
|
|
vo.setAlreadyMoneyTotal(y.toString()); |
|
|
|
vo.setNowDiffAmountTotal(d.toString()); |
|
|
|
vo.setNowAdjustmentMoneyTotal(b.toString()); |
|
|
|
} |
|
|
|
return rb.success().setData(vo); |
|
|
|
} |
|
|
|