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(); } } }