From 68083196eeccad1fdf279ccb2bede54b8280b353 Mon Sep 17 00:00:00 2001 From: xiang2lin <251481237@qq.com> Date: Thu, 4 Jul 2024 16:54:37 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=B7=A5=E8=B5=84=E5=8F=91?= =?UTF-8?q?=E6=94=BE=E6=9F=A5=E8=AF=A2=E7=BB=93=E6=9E=9C=E6=97=B6=EF=BC=8C?= =?UTF-8?q?=E6=8A=8A=E6=94=AF=E4=BB=98=E6=97=B6=E9=97=B4=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E5=88=B0=E4=B8=BB=E8=A1=A8=202024=E5=B9=B47=E6=9C=884=E6=97=A5?= =?UTF-8?q?=2016:54:31?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../frame/plugin/cbs8/service/impl/CbsPluginServiceImpl.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/service/impl/CbsPluginServiceImpl.java b/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/service/impl/CbsPluginServiceImpl.java index 5f0c5f1d..81d79be3 100644 --- a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/service/impl/CbsPluginServiceImpl.java +++ b/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/service/impl/CbsPluginServiceImpl.java @@ -371,7 +371,7 @@ public class CbsPluginServiceImpl implements ICbsPluginService { } else { result.setPayResult(PayState.payStateGetValue(pay_status));//支付状态 支付状态和支付申请状态用一个 } - agentPaymentService.updateResult(result); + //更新明细表 List agentDetails = agentPayResultResDTO.getAgentDetails(); for (AgentPayQueryDTO d : agentDetails) { @@ -386,6 +386,8 @@ public class CbsPluginServiceImpl implements ICbsPluginService { detail.setDataSourceCode(oa_data_source_code); agentPaymentDetailService.updatePayResult(detail); } + result.setPayDate(CBSUtil.convertTimestampToString(agentDetails.get(0).getDtlPayTime())); + agentPaymentService.updateResult(result); } } return agentPayResultResDTO;