Commit faa62242 authored by fangxinjiang's avatar fangxinjiang

Merge remote-tracking branch 'origin/MVP1.7.2' into MVP1.7.2

parents 5407864f a268c512
...@@ -754,6 +754,7 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn ...@@ -754,6 +754,7 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
saveIcbcLogBaseInfoBySumbit(returnR.getData(), wxNo, fdId); saveIcbcLogBaseInfoBySumbit(returnR.getData(), wxNo, fdId);
// 发放次数+1,改主表或明细表“发放状态”为“发放中” // 发放次数+1,改主表或明细表“发放状态”为“发放中”
detail.setFdHandleStatus("发放中"); detail.setFdHandleStatus("发放中");
detail.setFdCreateTime(LocalDateTime.now());
detail.setFdGrantNum(detail.getFdGrantNum() + 1); detail.setFdGrantNum(detail.getFdGrantNum() + 1);
ekpBankGrantDetailService.updateById(detail); ekpBankGrantDetailService.updateById(detail);
} }
...@@ -973,7 +974,7 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn ...@@ -973,7 +974,7 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
logDetail.setFdRecipientBank(vo.getFdRecipientBank()); logDetail.setFdRecipientBank(vo.getFdRecipientBank());
ekpBankGrantLogDetailService.save(logDetail); ekpBankGrantLogDetailService.save(logDetail);
detailData = new EkpBankGrantDetail(); detailData = new EkpBankGrantDetail();
detailData.setFdParentId(vo.getFdId()); detailData.setFdId(vo.getFdId());
detailData.setFdSerialNumber(data.getPlatDetailId()); detailData.setFdSerialNumber(data.getPlatDetailId());
if ("02".equals(data.getResult())) { if ("02".equals(data.getResult())) {
// 失败总笔数 // 失败总笔数
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment