From 7621b93f3417e2327be3155dd9f6bc25f7b09adf Mon Sep 17 00:00:00 2001
From: duhe <226547893@qq.com>
Date: 星期二, 09 四月 2024 14:29:00 +0800
Subject: [PATCH] 销售订单下推生产订单、生产订单下推工序流转卡:将销售订单号带入为订单跟踪号 HPlanOrderProcNo varchar(100) //订单跟踪号

---
 WebAPI/Controllers/BaseSet/Xt_grdAlignment_WMESController.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/WebAPI/Controllers/BaseSet/Xt_grdAlignment_WMESController.cs b/WebAPI/Controllers/BaseSet/Xt_grdAlignment_WMESController.cs
index 200d402..69c2f00 100644
--- a/WebAPI/Controllers/BaseSet/Xt_grdAlignment_WMESController.cs
+++ b/WebAPI/Controllers/BaseSet/Xt_grdAlignment_WMESController.cs
@@ -387,8 +387,8 @@
                     foreach (DataRow row in ds.Tables[0].Rows)
                     {
                         TreeModel Three = new TreeModel();
-                        Three.id = ds.Tables[0].Rows[0]["HInterID"].ToString();
-                        Three.title = ds.Tables[0].Rows[0]["HName"].ToString();
+                        Three.id = row["HInterID"].ToString();
+                        Three.title = row["HName"].ToString();
                         treeModels.Add(Three);
                     }
                 }

--
Gitblit v1.9.1