|
@ -731,6 +731,37 @@ public class FinPaymentapplyService extends MybatisBaseService<FinPaymentapplyMa |
|
|
//本次付款说明
|
|
|
//本次付款说明
|
|
|
finPaymentrecordDto.setPayRemark(finPaymentapply.getPayCompany() + "/" + finPaymentapplyDetailsBelowDetailsVo.getRemarks()); |
|
|
finPaymentrecordDto.setPayRemark(finPaymentapply.getPayCompany() + "/" + finPaymentapplyDetailsBelowDetailsVo.getRemarks()); |
|
|
finPaymentrecordService.saveDto(finPaymentrecordDto); |
|
|
finPaymentrecordService.saveDto(finPaymentrecordDto); |
|
|
|
|
|
List<FinPaymentapplyDetailsBelowEveDetailsVo> finPaymentapplyDetailsBelowEveList = finPaymentapplyDetailsBelowDetailsVo.getFinPaymentapplyDetailsBelowEveList(); |
|
|
|
|
|
for (FinPaymentapplyDetailsBelowEveDetailsVo finPaymentapplyDetailsBelowEveDetailsVo : finPaymentapplyDetailsBelowEveList) { |
|
|
|
|
|
finPaymentrecordDto.setFinDataType(1); |
|
|
|
|
|
//款项名称
|
|
|
|
|
|
finPaymentrecordDto.setCostTypeKey(""); |
|
|
|
|
|
finPaymentrecordDto.setCostTypeValue(finPaymentapplyDetailsBelowEveDetailsVo.getCostTitleValue()); |
|
|
|
|
|
//款项详情
|
|
|
|
|
|
finPaymentrecordDto.setCostTitleKey(""); |
|
|
|
|
|
finPaymentrecordDto.setCostTitleValue(finPaymentapplyDetailsBelowEveDetailsVo.getCostTitleValue()); |
|
|
|
|
|
//付款方式
|
|
|
|
|
|
finPaymentrecordDto.setPayWayKey(finPaymentapplyDetailsBelowDetailsVo.getPaymentTypeKey()); |
|
|
|
|
|
finPaymentrecordDto.setPayWayValue(finPaymentapplyDetailsBelowDetailsVo.getPaymentType()); |
|
|
|
|
|
//是否推送回款返利
|
|
|
|
|
|
finPaymentrecordDto.setIsPushHkfl(0); |
|
|
|
|
|
finPaymentrecordDto.setBusSid(finPaymentapplyDetailsBelowEveDetailsVo.getSid()); |
|
|
|
|
|
//收款银行账号
|
|
|
|
|
|
finPaymentrecordDto.setReceiveBankAccount(finPaymentapplyDetailsBelowEveDetailsVo.getReceivingAccount()); |
|
|
|
|
|
finPaymentrecordDto.setReceiveBank(finPaymentapplyDetailsBelowEveDetailsVo.getBank()); |
|
|
|
|
|
//收款单位名称
|
|
|
|
|
|
finPaymentrecordDto.setReceiveCompany(finPaymentapplyDetailsBelowEveDetailsVo.getReceiveCompany()); |
|
|
|
|
|
//金额
|
|
|
|
|
|
if (finPaymentapplyDetailsBelowEveDetailsVo.getExePayPrice() != null) { |
|
|
|
|
|
finPaymentrecordDto.setCost(finPaymentapplyDetailsBelowEveDetailsVo.getExePayPrice().toString()); |
|
|
|
|
|
finPaymentrecordDto.setAccountsReceive(finPaymentapplyDetailsBelowEveDetailsVo.getExePayPrice().toString()); |
|
|
|
|
|
} |
|
|
|
|
|
//备注
|
|
|
|
|
|
finPaymentrecordDto.setRemarks(finPaymentrecordDto.getCostTypeValue() + finPaymentrecordDto.getCostTitleValue()); |
|
|
|
|
|
//本次付款说明
|
|
|
|
|
|
finPaymentrecordDto.setPayRemark(finPaymentapply.getPayCompany() + "/" + finPaymentapplyDetailsBelowEveDetailsVo.getRemarks()); |
|
|
|
|
|
finPaymentrecordService.saveDto(finPaymentrecordDto); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|