From f2a352ef00e1b5d3c0723eb8b9aada1bea1b2713 Mon Sep 17 00:00:00 2001
From: lg <123456>
Date: 星期三, 26 十一月 2025 15:59:45 +0800
Subject: [PATCH] 退补料打印
---
DevApp/Gs.DevApp/DevFrm/WW/SelectWwTbl.cs | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/DevApp/Gs.DevApp/DevFrm/WW/SelectWwTbl.cs b/DevApp/Gs.DevApp/DevFrm/WW/SelectWwTbl.cs
index 50a6efc..4933702 100644
--- a/DevApp/Gs.DevApp/DevFrm/WW/SelectWwTbl.cs
+++ b/DevApp/Gs.DevApp/DevFrm/WW/SelectWwTbl.cs
@@ -16,7 +16,6 @@
public SelectWwTbl(string _daaGuid)
{
InitializeComponent();
-
this.gridView1.CustomDrawColumnHeader += (s, e) => { Gs.DevApp.ToolBox.UtilityHelper.CustomDrawColumnHeader(s, e); };
this.gridView1.MouseUp += (s, e) => { Gs.DevApp.ToolBox.UtilityHelper.CustomMouseUp(s, e, gcMain, gridView1); };
this.colChkInt.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
@@ -36,7 +35,7 @@
foreach (DataRow dr in dt.Rows)
{
string checkBox = dr["chkInt"].ToString();
- string _guid = dr["dabGuid"].ToString();
+ string _guid = dr["guid"].ToString();
if (Gs.DevApp.ToolBox.UtilityHelper.ToCheck(checkBox))
{
list.Add(_guid);
@@ -78,7 +77,6 @@
gcMain.DataSource = dt;
gcMain.ForceInitialize();
gridView1.BestFitColumns(); Gs.DevApp.ToolBox.UtilityHelper.SetGridLayout(gridView1);
-
}
catch (Exception ex)
{
--
Gitblit v1.9.3