From d34506fc224f8c3132cc29540c65c1528eb61065 Mon Sep 17 00:00:00 2001
From: 南骏 池 <chiffly@163.com>
Date: 星期四, 22 五月 2025 09:50:55 +0800
Subject: [PATCH] 1.OA接口字段调整。 2.SRM新增条码未全部打印,无法扫描限制。 3.新增携客云确认到货流程
---
util/LogUtil.cs | 37 ++++++++++++++++++++++++++++++++++++-
1 files changed, 36 insertions(+), 1 deletions(-)
diff --git a/util/LogUtil.cs b/util/LogUtil.cs
index 5840796..7c96c8c 100644
--- a/util/LogUtil.cs
+++ b/util/LogUtil.cs
@@ -22,7 +22,7 @@
.Select(it => it.Guid) //
.First();
- detail = "[PDA]" + detail;
+ //detail = "[PDA]" + detail;
// 鎵ц瀛樺偍杩囩▼
db.Ado.ExecuteCommand(
"exec prc_log_create @edtUserGuid, @abtGuid, @abtTable, @detail, @orderNo",
@@ -36,5 +36,40 @@
}
);
}
+
+
+ public void CreateLogI(
+ SqlSugarScope db,
+ Guid edtUserGuid,
+ string abtGuid,
+ string abtTable,
+ string detail,
+ string orderNo,
+ string sendJson,
+ string rtnJson,
+ string xkyBeginTime,
+ string xkyEndTime,
+ int sendStatus,
+ string executeTime)
+ {
+ db.Ado.ExecuteCommand(
+ "exec prc_log_create @edtUserGuid, @abtGuid, @abtTable, @detail, @hNo,@RtnLogGuid, @SendJson, @RtnJson, @xkyBeginTime, @xkyEndTime, @sendStatus, @executeTime",
+ new {
+ edtUserGuid,
+ abtGuid = string.IsNullOrEmpty(abtGuid) ? DBNull.Value : (object)abtGuid,
+ abtTable = (object)abtTable ?? DBNull.Value,
+ detail,
+ hNo = orderNo,
+ RtnLogGuid = DBNull.Value,
+ SendJson = sendJson,
+ RtnJson = rtnJson,
+ xkyBeginTime = (object)xkyBeginTime ?? DBNull.Value,
+ xkyEndTime = (object)xkyEndTime ?? DBNull.Value,
+ sendStatus = (object)sendStatus ?? DBNull.Value,
+ executeTime = (object)executeTime ?? DBNull.Value
+ });
}
+ }
+
+
}
\ No newline at end of file
--
Gitblit v1.9.3