From bd18c8aa75d885c5bea8a9c77fd4d6f9ab4fba90 Mon Sep 17 00:00:00 2001
From: xiang2lin <251481237@qq.com>
Date: Sat, 29 Jun 2024 15:50:48 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9A=82=E5=AD=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .../plugin/cbs8/service/impl/CbsPluginServiceImpl.java   | 9 ++++++++-
 1 file changed, 8 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 583e3010..44def4c6 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
@@ -26,6 +26,7 @@ import com.hzya.frame.seeyon.entity.CtpAttachmentEntity;
 import com.hzya.frame.seeyon.entity.CtpFileEntity;
 import com.hzya.frame.seeyon.service.ICtpAttachmentService;
 import com.hzya.frame.seeyon.util.RestUtil;
+import com.hzya.frame.sysnew.integtationTaskLivingDetails.entity.IntegrationTaskLivingDetailsEntity;
 import com.hzya.frame.uuid.UUIDLong;
 import com.hzya.frame.web.exception.BaseSystemException;
 import org.apache.commons.collections.CollectionUtils;
@@ -97,8 +98,14 @@ public class CbsPluginServiceImpl implements ICbsPluginService {
                 pay.setDataSourceCode(oa_data_source_code);
                 pay.setApplyCode(payResponseDTO.getBusNum());
                 paymentService.updatePayState(pay);
-                //5、记录操作日志
+                //5、记录操作日志到OA底表
                 savePayLog(pay,payResponseDTO);
+                //6、记录系统日志
+                IntegrationTaskLivingDetailsEntity logTask = new IntegrationTaskLivingDetailsEntity();
+                logTask.setRootAppPk(pay.getFormsonId());
+                logTask.setRootAppBill(pay.getReferenceNum());
+                //logTask.setNewTransmitInfo();
+                //saveTaskLog();
             }
         }
     }