From 5029c8357635c9556e63bd78f262d860df51e7fb Mon Sep 17 00:00:00 2001
From: cdk <2441919651@qq.com>
Date: 星期六, 02 八月 2025 15:49:56 +0800
Subject: [PATCH] 增加排班管理代码,到货计划增加超采比例,物料信息增加超采比例字段
---
DevApp/Gs.DevApp/DevFrm/Ck/SelectSctk.cs | 16 +++++++++-------
1 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/DevApp/Gs.DevApp/DevFrm/Ck/SelectSctk.cs b/DevApp/Gs.DevApp/DevFrm/Ck/SelectSctk.cs
index 7a70a52..628e646 100644
--- a/DevApp/Gs.DevApp/DevFrm/Ck/SelectSctk.cs
+++ b/DevApp/Gs.DevApp/DevFrm/Ck/SelectSctk.cs
@@ -1,6 +1,4 @@
-锘縰sing DevExpress.XtraEditors;
-using Gs.DevApp.Entity;
-using Gs.DevApp.ToolBox;
+锘縰sing Gs.DevApp.ToolBox;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
@@ -19,7 +17,7 @@
Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, null, null, null, "", null, null, false);
getPageList(1);
}
-
+
/// <summary>
/// </summary>
/// <param name="curPage">绗嚑椤�</param>
@@ -77,12 +75,16 @@
{
return;
}
- var mxName = dr["depotName"].ToString();
var list = new List<dynamic>();
list.Add(new
{
- guid = mxGuid,
- name = mxName,
+ rkmxGuid = mxGuid,
+ workShop = dr["workShop"].ToString(),
+ itemId = dr["itemId"].ToString(),
+ itemNo = dr["itemNo"].ToString(),
+ itemName = dr["itemName"].ToString(),
+ itemModel = dr["itemModel"].ToString(),
+ dwName = dr["dwName"].ToString(),
});
UpdateParent?.Invoke(this, new UpdateParentEventArgs { DynamicList = list });
Close();
--
Gitblit v1.9.3