From eb86c89d85599da5b3f237a0e1214e45f6a90225 Mon Sep 17 00:00:00 2001
From: cnf <3283105747@qq.com>
Date: 星期三, 17 十二月 2025 16:47:37 +0800
Subject: [PATCH] 期初打印明细查询优化
---
WebApi/Gs.Wom/Service/WompbaGxManager.cs | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/WebApi/Gs.Wom/Service/WompbaGxManager.cs b/WebApi/Gs.Wom/Service/WompbaGxManager.cs
index 2816efd..184e9ca 100644
--- a/WebApi/Gs.Wom/Service/WompbaGxManager.cs
+++ b/WebApi/Gs.Wom/Service/WompbaGxManager.cs
@@ -498,6 +498,7 @@
public ReturnDto<ExpandoObject> EditModelSubmit([FromBody] dynamic mode)
{
string _guid = mode.guid;
+ string chkOut = mode.chkOut;
dynamic m = new ExpandoObject();
m.outSum = -1;
m.outMsg = "";
@@ -516,7 +517,7 @@
new("@inEdtUserGuid", _userGuid),
new("@inOrderGuid", _guid),
new("@inFieldValue", 1),
- new("@in1", ""),
+ new("@in1", chkOut),
new("@in2", "")
};
parameters[0].Direction = ParameterDirection.Output;
--
Gitblit v1.9.3