From 85170f9ab975d8e2dccbbf97f8f4dc7bbf4fafaa Mon Sep 17 00:00:00 2001
From: duhe <226547893@qq.com>
Date: 星期五, 24 五月 2024 15:50:34 +0800
Subject: [PATCH] 2.自动组托界面: (已完成)初始化页面时,若当前托条码存在组托记录,则取第一个子条码中的物料获取组托数量。 同时记录条码中的源单主ID、子ID (已完成)扫描子条码时,判断当前子条码是否是第一个,如果是的话,根据条码中的物料获取组托数量。 同时记录条码中的源单主ID、子ID (已完成)自动组托时,组托完成后,将组托数量清空。 同时清空记录的源单主ID、子ID
---
WorkM/报表分析/Mes_OrderProcFlowAllReport.cs | 36 ++++++++++++++++++------------------
1 files changed, 18 insertions(+), 18 deletions(-)
diff --git "a/WorkM/\346\212\245\350\241\250\345\210\206\346\236\220/Mes_OrderProcFlowAllReport.cs" "b/WorkM/\346\212\245\350\241\250\345\210\206\346\236\220/Mes_OrderProcFlowAllReport.cs"
index 98e06f8..9ef9d4a 100644
--- "a/WorkM/\346\212\245\350\241\250\345\210\206\346\236\220/Mes_OrderProcFlowAllReport.cs"
+++ "b/WorkM/\346\212\245\350\241\250\345\210\206\346\236\220/Mes_OrderProcFlowAllReport.cs"
@@ -255,24 +255,24 @@
}
}
- for (int j = HRecProc1Col; j < grdMain.Columns.Count-2; j++)
- {
- if (checkBox1.Checked == false)
- {
- if (ClsPub.isStrNull(grdMain.Columns[j].HeaderText).ToUpper().Trim().Contains("涓嶅悎鏍�") == true)
- {
- grdMain.Columns[j].Visible = false;
- }
- else
- {
- grdMain.Columns[j].Visible = true;
- }
- }
- else
- {
- grdMain.Columns[j].Visible = true;
- }
- }
+ //for (int j = HRecProc1Col; j < grdMain.Columns.Count-2; j++)
+ //{
+ // if (checkBox1.Checked == false)
+ // {
+ // if (ClsPub.isStrNull(grdMain.Columns[j].HeaderText).ToUpper().Trim().Contains("涓嶅悎鏍�") == true)
+ // {
+ // grdMain.Columns[j].Visible = false;
+ // }
+ // else
+ // {
+ // grdMain.Columns[j].Visible = true;
+ // }
+ // }
+ // else
+ // {
+ // grdMain.Columns[j].Visible = true;
+ // }
+ //}
//
}
--
Gitblit v1.9.1