From 4e213607fd1bd97281460cc9424292200b5a857d Mon Sep 17 00:00:00 2001
From: zrg <z1873@LAPTOP-EAVL132E>
Date: 星期三, 15 四月 2026 17:01:09 +0800
Subject: [PATCH] 1.来料检验单 保存时存入组织字段,2.报工平台调整异常反馈的时候,增加流转卡生产订单字段返回 3.优化设备故障维修全流程页面与功能
---
WebAPI/Controllers/ZWDBController.cs | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/WebAPI/Controllers/ZWDBController.cs b/WebAPI/Controllers/ZWDBController.cs
index 6725600..141c0c3 100644
--- a/WebAPI/Controllers/ZWDBController.cs
+++ b/WebAPI/Controllers/ZWDBController.cs
@@ -25,7 +25,8 @@
List<object> columnNameList = new List<object>();
try
{
- DataSet ds = oCn.RunProcReturn("select * from h_v_ZWDB where 1=1 order by HItemID desc", "h_v_ZWDB");
+ string sql = $"select * from h_v_ZWDB where 1=1 and 鍒涘缓浜�='{user}' order by HItemID desc";
+ DataSet ds = oCn.RunProcReturn(sql, "h_v_ZWDB");
foreach(DataColumn col in ds.Tables[0].Columns)
{
Type dataType = col.DataType;
--
Gitblit v1.9.1