From 83d48bd7e1c1eccb9905cceae02e7b5b61c94156 Mon Sep 17 00:00:00 2001
From: jingh <jingh@LAPTOP-I53VDLOO>
Date: 星期一, 16 八月 2021 19:26:33 +0800
Subject: [PATCH] 流转卡拆分增加字段;工艺路线导入增加进度条

---
 WorkM/流转卡管理/Sc_ProcessExchangeBill_CF.cs |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git "a/WorkM/\346\265\201\350\275\254\345\215\241\347\256\241\347\220\206/Sc_ProcessExchangeBill_CF.cs" "b/WorkM/\346\265\201\350\275\254\345\215\241\347\256\241\347\220\206/Sc_ProcessExchangeBill_CF.cs"
index 0a629ae..659e23f 100644
--- "a/WorkM/\346\265\201\350\275\254\345\215\241\347\256\241\347\220\206/Sc_ProcessExchangeBill_CF.cs"
+++ "b/WorkM/\346\265\201\350\275\254\345\215\241\347\256\241\347\220\206/Sc_ProcessExchangeBill_CF.cs"
@@ -944,6 +944,7 @@
                 this.txtHWWOrderBillNo.Text = BillOld.omodel.HWWOrderBillNo;
                 this.txtHICMOBillNo.Text = BillOld.omodel.HICMOBillNo;
                 this.txtHICMOBillNo.Tag = BillOld.omodel.HICMOInterID.ToString();
+                this.txtHICMOEntryID.Text = BillOld.omodel.HICMOEntryID.ToString();
                 this.txtHExplanation.Text = BillOld.omodel.HExplanation;
                 this.txtHInnerBillNo.Text = BillOld.omodel.HInnerBillNo;
                 this.txtHBatchNo.Text = BillOld.omodel.HBatchNo;
@@ -1266,6 +1267,7 @@
             BillNew.omodel.HWWOrderEntryID = ClsPub.isLong(this.txtHWWOrderEntryID.Text.ToString());
             BillNew.omodel.HWWOrderBillNo = ClsPub.isStrNull(this.txtHWWOrderBillNo.Text);
             BillNew.omodel.HICMOInterID = ClsPub.isLong(this.txtHICMOBillNo.Tag);
+            BillNew.omodel.HICMOEntryID = ClsPub.isLong(this.txtHICMOEntryID.Text);
             BillNew.omodel.HICMOBillNo = ClsPub.isStrNull(this.txtHICMOBillNo.Text);
             BillNew.omodel.HPrevMainSourceInterID = ClsPub.isLong(txtHPrevMainSourceInterID.Text);
             BillNew.omodel.HMainSourceInterID = ClsPub.isLong(txtHMainSourceInterID.Text);
@@ -1372,6 +1374,7 @@
                     //
                     oSub.HICMOBillNo = DBUtility.ClsPub.isStrNull(grdMain.Rows[i].Cells[HICMOBillNoCol].Value);
                     oSub.HICMOInterID = DBUtility.ClsPub.isLong(grdMain.Rows[i].Cells[HICMOInterIDCol].Value);
+                    //oSub.HICMOEntryID = DBUtility.ClsPub.isLong(grdMain.Rows[i].Cells[HICMOEntryIDCol].Value);
                     oSub.HSeOrderInterID = DBUtility.ClsPub.isLong(grdMain.Rows[i].Cells[HSeOrderInterIDCol].Value);
                     oSub.HSeOrderEntryID = DBUtility.ClsPub.isLong(grdMain.Rows[i].Cells[HSeOrderEntryIDCol].Value);
                     oSub.HSeOrderBillNo = DBUtility.ClsPub.isStrNull(grdMain.Rows[i].Cells[HSeOrderBillNoCol].Value);

--
Gitblit v1.9.1