From aed7f0e9be4e88a4ed632f9ca7aca05fa1e7f6b8 Mon Sep 17 00:00:00 2001
From: ludc
Date: 星期四, 12 九月 2024 17:44:21 +0800
Subject: [PATCH] UI上下文导出树查询和导出接口
---
Source/Service/BOFactory/src/com/vci/server/bof/server/create/BatchCreateBOLONoCheckLog.java | 13 +++++++------
1 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/Source/Service/BOFactory/src/com/vci/server/bof/server/create/BatchCreateBOLONoCheckLog.java b/Source/Service/BOFactory/src/com/vci/server/bof/server/create/BatchCreateBOLONoCheckLog.java
index 5b2a401..7dc39b0 100644
--- a/Source/Service/BOFactory/src/com/vci/server/bof/server/create/BatchCreateBOLONoCheckLog.java
+++ b/Source/Service/BOFactory/src/com/vci/server/bof/server/create/BatchCreateBOLONoCheckLog.java
@@ -5,6 +5,7 @@
import com.vci.common.log.ServerWithLog4j;
import com.vci.corba.common.data.VCIInvocationInfo;
import com.vci.server.base.persistence.dao.HibernateSessionFactory;
+import com.vci.server.base.utility.LogRecordUtil;
import com.vci.server.bof.server.ServiceFacadeExecuteHelper;
import com.vci.server.bof.service.BOFactoryServices;
import com.vci.corba.common.VCIError;
@@ -26,12 +27,12 @@
BOFactoryServices services = BOFactoryServices.getInstance();
StringHolder ts = new StringHolder();
services.batchCreateBusinessObjectWithLinkNoCheck(params.getBos(), params.getLos(), ts);
- VCIInvocationInfo info = HibernateSessionFactory.getVciSessionInfo();
- String ip = "127.0.0.1";
- if(info!=null){
- ip = info.clientIPInfo == null||"".equals(info.clientIPInfo) ?"127.0.0.1":info.clientIPInfo;
- }
- batchRecordLog(params.getBos(), ip, "鍒涘缓");
+// VCIInvocationInfo info = HibernateSessionFactory.getVciSessionInfo();
+// String ip = "127.0.0.1";
+// if(info!=null){
+// ip = info.clientIPInfo == null||"".equals(info.clientIPInfo) ?"127.0.0.1":info.clientIPInfo;
+// }
+ LogRecordUtil.batchWriteLog(params.getBos(), "鍒涘缓");
return true;
} catch (VCIError e) {
throw this.getLocalString(e.code, e);
--
Gitblit v1.9.3