From 2148a6167e10dfd99e143fbf509be96f2bc8e369 Mon Sep 17 00:00:00 2001 From: yxj <yxj@hz-kingdee.com> Date: 星期三, 21 二月 2024 10:56:28 +0800 Subject: [PATCH] 新增扫描班组条码调用方法,新增生产汇报单上传方法,新增生产汇报、委外入库扫描源单条码调用方法 --- WebAPI/Properties/Settings.settings | 2 WebAPI/Web References/WebS/WebService1.wsdl | 696 +- WebAPI/Web References/WebS/Reference.cs | 13957 ++++++++++++++++++++++++++++--------------------------- WebAPI/Controllers/条码管理/WEBSController.cs | 243 WebAPI/Properties/Settings.Designer.cs | 2 WebAPI/WebAPI.csproj | 4 WebAPI/Web References/WebS/Reference.map | 4 WebAPI/Web References/WebS/WebService1.disco | 6 8 files changed, 7,769 insertions(+), 7,145 deletions(-) diff --git "a/WebAPI/Controllers/\346\235\241\347\240\201\347\256\241\347\220\206/WEBSController.cs" "b/WebAPI/Controllers/\346\235\241\347\240\201\347\256\241\347\220\206/WEBSController.cs" index de2fc6d..64eaf38 100644 --- "a/WebAPI/Controllers/\346\235\241\347\240\201\347\256\241\347\220\206/WEBSController.cs" +++ "b/WebAPI/Controllers/\346\235\241\347\240\201\347\256\241\347\220\206/WEBSController.cs" @@ -770,6 +770,88 @@ #endregion + #region 鐝粍璧勬枡 + + /// <summary> + /// 鎵爜杩斿洖鐝粍淇℃伅 + /// </summary> + /// <returns></returns> + [Route("WEBSController/GetGroup_Json")] + [HttpGet] + public object GetGroup_Json(string HBarCode, Int64 HStockOrgID) + { + try + { + Int64 HGroupID = 0; + HGroupID = DBUtility.ClsPub.isLong(HBarCode); + ds = oCn.RunProcReturn("select HItemID,HNumber,HName from Gy_Group with(nolock) where HStopflag=0 and HItemID=" + HGroupID.ToString() + " and HUSEORGID = " + HStockOrgID.ToString(), "Gy_Group"); + if (ds == null || ds.Tables[0].Rows.Count == 0) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "娌℃湁杩斿洖浠讳綍璁板綍锛岃纭鎵�鎵彮缁勬潯鐮佹槸鍚﹀睘浜庤缁勭粐锛屼笖涓洪潪绂佺敤鐘舵�侊紒"; + objJsonResult.data = null; + return objJsonResult; + } + else + { + objJsonResult.code = "0"; + objJsonResult.count = 1; + objJsonResult.Message = "鎴愬姛锛�"; + objJsonResult.data = ds.Tables[0]; + return objJsonResult; + } + } + catch (Exception e) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "杩斿洖鐝粍淇℃伅澶辫触锛�" + e.ToString(); + objJsonResult.data = null; + return objJsonResult; + } + } + + /// <summary> + /// 鑾峰彇鐝粍鍒楄〃淇℃伅 + /// </summary> + /// <returns></returns> + [Route("WEBSController/GetGroupList_Json")] + [HttpGet] + public object GetGroupList_Json(string Group, Int64 HStockOrgID) + { + try + { + ds = oCn.RunProcReturn("select HItemID,HNumber,HName from Gy_Group with(nolock) where HStopflag=0 and HUSEORGID=" + HStockOrgID.ToString() + " and (HNumber like '%" + Group + "%' or HName like '%" + Group + "%')", "Gy_Group"); + if (ds == null || ds.Tables[0].Rows.Count == 0) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "娌℃湁杩斿洖浠讳綍鐝粍璁板綍锛�"; + objJsonResult.data = null; + return objJsonResult; + } + else + { + objJsonResult.code = "0"; + objJsonResult.count = 1; + objJsonResult.Message = "鎴愬姛锛�"; + objJsonResult.data = ds.Tables[0]; + return objJsonResult; + } + } + catch (Exception e) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "杩斿洖鐝粍淇℃伅澶辫触锛�" + e.ToString(); + objJsonResult.data = null; + return objJsonResult; + } + } + + #endregion + #endregion @@ -1278,6 +1360,80 @@ #region 鎻愪氦鐢熷崟澶勭悊鏂规硶 + + #region 鐢熶骇姹囨姤 涓婁紶鐢熷崟 + + #region 鐢熶骇姹囨姤 鏂板妯″紡 + + /// <summary> + /// 鐢熶骇姹囨姤鏂板涓婁紶 + /// </summary> + /// <returns></returns> + [Route("WEBSController/set_SaveICMOReportBill_Json")] + [HttpPost] + public object set_SaveICMOReportBill_Json([FromBody] JObject oMain) + { + var _value = oMain["oMain"].ToString(); + string msg1 = _value.ToString(); + try + { + List<Model.ClsSc_ICMOReportBillMain> lsmain = new List<Model.ClsSc_ICMOReportBillMain>(); + ListModels oListModels = new ListModels(); + lsmain = oListModels.getICMOReportBillMainByJson(msg1); + WebS.ClsSc_ICMOReportBillMain websLsmain = new WebS.ClsSc_ICMOReportBillMain(); + string sSourceType = lsmain[0].HMainSourceBillType; + websLsmain.HInterID = lsmain[0].HInterID; + websLsmain.HBillNo = lsmain[0].HBillNo; + websLsmain.HBillType = lsmain[0].HBillType; + websLsmain.HDate = lsmain[0].HDate; + websLsmain.HDeptID = lsmain[0].HDeptID; + websLsmain.HGroupID = lsmain[0].HGroupID; + websLsmain.HEmpID = lsmain[0].HEmpID; + websLsmain.HCheckType = lsmain[0].HCheckType; + websLsmain.HRemark = lsmain[0].HRemark; + websLsmain.HBillSubType = lsmain[0].HBillSubType; + if (lsmain[0].HMainSourceBillType == "3710") + { + websLsmain.HMainSourceBillType = "鐢熶骇璁㈠崟"; + } + else + { + websLsmain.HMainSourceBillType = "鎵嬪伐褰曞叆"; + } + websLsmain.HMaker = lsmain[0].HMaker; + websLsmain.HBillerID = lsmain[0].HBillerID; + websLsmain.HPRDORGID = lsmain[0].HSTOCKORGID; + + if (oWebs.set_SaveICMOReportBill_New(websLsmain, sSourceType, ref DBUtility.ClsPub.sErrInfo)) + { + objJsonResult.code = "0"; + objJsonResult.count = 1; + objJsonResult.Message = DBUtility.ClsPub.sErrInfo; //鎴愬姛锛� + objJsonResult.data = null; + return objJsonResult; + } + else + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = DBUtility.ClsPub.sErrInfo; //澶辫触锛� + objJsonResult.data = null; + return objJsonResult; + } + } + catch (Exception e) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "鐢熶骇姹囨姤鍗曚笂浼犲け璐ワ紒" + e.ToString(); + objJsonResult.data = null; + return objJsonResult; + } + } + + #endregion + + #endregion #region 鐢熶骇鍏ュ簱 涓婁紶鐢熷崟 @@ -2291,6 +2447,48 @@ #region 婧愬崟鏉$爜澶勭悊鏂规硶 + #region 鐢熶骇姹囨姤 鎵弿婧愬崟鏉$爜 + + /// <summary> + /// 鐢熶骇姹囨姤 鎵弿婧愬崟鏉$爜 + /// </summary> + /// <returns></returns> + [Route("WEBSController/Get_SourceBarCode_ICMOReport_Json")] + [HttpGet] + public object get_SourceBarCode_ICMOReport_Json(Int64 HInterID, string HBillNo, string HBillType, string HSourceBillNo, string HSourceBillType, string HMaker, Int64 HStockOrgID) + { + try + { + WebSoBar = oWebs.get_SourceBarCode_ICMOReport(HInterID, HBillNo, HBillType, HSourceBillNo, HSourceBillType, HMaker, HStockOrgID, ref DBUtility.ClsPub.sErrInfo); + if (WebSoBar == null) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = DBUtility.ClsPub.sErrInfo; + objJsonResult.data = null; + return objJsonResult; + } + else + { + objJsonResult.code = "0"; + objJsonResult.count = 1; + objJsonResult.Message = "鎴愬姛"; + objJsonResult.data = WebSoBar; + return objJsonResult; + } + } + catch (Exception e) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "鎵弿婧愬崟鏉$爜澶辫触锛�" + e.ToString(); + objJsonResult.data = null; + return objJsonResult; + } + } + + #endregion + #region 鐢熶骇鍏ュ簱 鎵弿婧愬崟鏉$爜 /// <summary> @@ -2375,6 +2573,48 @@ #endregion + #region 濮斿鍏ュ簱 鎵弿婧愬崟鏉$爜 + + /// <summary> + /// 濮斿鍏ュ簱 鎵弿婧愬崟鏉$爜 + /// </summary> + /// <returns></returns> + [Route("WEBSController/Get_SourceBarCode_EntrustIn_Json")] + [HttpGet] + public object get_SourceBarCode_EntrustIn_Json(Int64 HInterID, string HBillNo, string HBillType, string HSourceBillNo, string HSourceBillType, string HMaker, Int64 HStockOrgID) + { + try + { + WebSoBar = oWebs.get_SourceBarCode_EntrustIn(HInterID, HBillNo, HBillType, HSourceBillNo, HSourceBillType, HMaker, HStockOrgID, ref DBUtility.ClsPub.sErrInfo); + if (WebSoBar == null) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = DBUtility.ClsPub.sErrInfo; + objJsonResult.data = null; + return objJsonResult; + } + else + { + objJsonResult.code = "0"; + objJsonResult.count = 1; + objJsonResult.Message = "鎴愬姛"; + objJsonResult.data = WebSoBar; + return objJsonResult; + } + } + catch (Exception e) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "鎵弿婧愬崟鏉$爜澶辫触锛�" + e.ToString(); + objJsonResult.data = null; + return objJsonResult; + } + } + + #endregion + #region 鍏朵粬鍏ュ簱 鎵弿婧愬崟鏉$爜 /// <summary> @@ -2416,9 +2656,6 @@ } #endregion - - - #region 鐢熶骇棰嗘枡 鎵弿婧愬崟鏉$爜 diff --git a/WebAPI/Properties/Settings.Designer.cs b/WebAPI/Properties/Settings.Designer.cs index 8d1f948..7d5a9b0 100644 --- a/WebAPI/Properties/Settings.Designer.cs +++ b/WebAPI/Properties/Settings.Designer.cs @@ -26,7 +26,7 @@ [global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.WebServiceUrl)] - [global::System.Configuration.DefaultSettingValueAttribute("http://192.168.63.20/WEBS-WMS/WebService1.asmx")] + [global::System.Configuration.DefaultSettingValueAttribute("http://192.168.63.53/WEBS-WMS/WebService1.asmx")] public string WebAPI_WebS_WebService1 { get { return ((string)(this["WebAPI_WebS_WebService1"])); diff --git a/WebAPI/Properties/Settings.settings b/WebAPI/Properties/Settings.settings index d7c7b6e..4eee4ca 100644 --- a/WebAPI/Properties/Settings.settings +++ b/WebAPI/Properties/Settings.settings @@ -3,7 +3,7 @@ <Profiles /> <Settings> <Setting Name="WebAPI_WebS_WebService1" Type="(Web Service URL)" Scope="Application"> - <Value Profile="(Default)">http://192.168.63.20/WEBS-WMS/WebService1.asmx</Value> + <Value Profile="(Default)">http://192.168.63.53/WEBS-WMS/WebService1.asmx</Value> </Setting> </Settings> </SettingsFile> \ No newline at end of file diff --git a/WebAPI/Web References/WebS/Reference.cs b/WebAPI/Web References/WebS/Reference.cs index 0c2e132..14942a0 100644 --- a/WebAPI/Web References/WebS/Reference.cs +++ b/WebAPI/Web References/WebS/Reference.cs @@ -34,6 +34,12 @@ [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsXt_BaseBillMain))] public partial class WebService1 : System.Web.Services.Protocols.SoapHttpClientProtocol { + private System.Threading.SendOrPostCallback set_SaveMouldStockBill_NewOperationCompleted; + + private System.Threading.SendOrPostCallback MouldTempList_ModifyOperationCompleted; + + private System.Threading.SendOrPostCallback GetMouldSourceOperationCompleted; + private System.Threading.SendOrPostCallback GetSc_MouldStockBillMain_TempListOperationCompleted; private System.Threading.SendOrPostCallback DeleteMouldBillListOperationCompleted; @@ -154,6 +160,8 @@ private System.Threading.SendOrPostCallback set_SavePonderationBillMain_Temp_BarCode_MouldOperationCompleted; + private System.Threading.SendOrPostCallback get_InfoByBarCodeForReportOperationCompleted; + private System.Threading.SendOrPostCallback get_InfoByStationInBillOperationCompleted; private System.Threading.SendOrPostCallback get_InfoByStationOutBillOperationCompleted; @@ -264,9 +272,13 @@ private System.Threading.SendOrPostCallback GetSourceBillListOperationCompleted; + private System.Threading.SendOrPostCallback get_SourceBarCode_ICMOReportOperationCompleted; + private System.Threading.SendOrPostCallback get_SourceBarCode_ProductInOperationCompleted; private System.Threading.SendOrPostCallback get_SourceBarCode_POStockInOperationCompleted; + + private System.Threading.SendOrPostCallback get_SourceBarCode_EntrustInOperationCompleted; private System.Threading.SendOrPostCallback get_SourceBarCode_OtherInOperationCompleted; @@ -316,11 +328,7 @@ private System.Threading.SendOrPostCallback set_DelSc_MouldStockBillMain_TempOperationCompleted; - private System.Threading.SendOrPostCallback set_SaveMouldStockBill_NewOperationCompleted; - - private System.Threading.SendOrPostCallback MouldTempList_ModifyOperationCompleted; - - private System.Threading.SendOrPostCallback GetMouldSourceOperationCompleted; + private System.Threading.SendOrPostCallback set_CheckOtherInBillOperationCompleted; private System.Threading.SendOrPostCallback set_AuditOtherInBillOperationCompleted; @@ -464,8 +472,6 @@ private System.Threading.SendOrPostCallback get_InfoByBarCode_SourceOperationCompleted; - private System.Threading.SendOrPostCallback get_InfoByBarCodeForReportOperationCompleted; - private System.Threading.SendOrPostCallback set_SaveEntrustOutBill_BillCheckOperationCompleted; private System.Threading.SendOrPostCallback set_SaveOtherOutBackBillOperationCompleted; @@ -570,8 +576,6 @@ private System.Threading.SendOrPostCallback set_CheckAddOtherInBillOperationCompleted; - private System.Threading.SendOrPostCallback set_CheckOtherInBillOperationCompleted; - private System.Threading.SendOrPostCallback set_SaveMoveStockStepInBill_NewOperationCompleted; private System.Threading.SendOrPostCallback set_SaveMoveStockStepInBill_CLD_NewOperationCompleted; @@ -597,6 +601,8 @@ private System.Threading.SendOrPostCallback set_SaveSellOutBill_NewOperationCompleted; private System.Threading.SendOrPostCallback set_SaveSellOutBill_CLD_NewOperationCompleted; + + private System.Threading.SendOrPostCallback set_SaveSellOutBill_MESOperationCompleted; private System.Threading.SendOrPostCallback set_SaveSellOutBill_CLDOperationCompleted; @@ -1189,6 +1195,15 @@ } /// <remarks/> + public event set_SaveMouldStockBill_NewCompletedEventHandler set_SaveMouldStockBill_NewCompleted; + + /// <remarks/> + public event MouldTempList_ModifyCompletedEventHandler MouldTempList_ModifyCompleted; + + /// <remarks/> + public event GetMouldSourceCompletedEventHandler GetMouldSourceCompleted; + + /// <remarks/> public event GetSc_MouldStockBillMain_TempListCompletedEventHandler GetSc_MouldStockBillMain_TempListCompleted; /// <remarks/> @@ -1369,6 +1384,9 @@ public event set_SavePonderationBillMain_Temp_BarCode_MouldCompletedEventHandler set_SavePonderationBillMain_Temp_BarCode_MouldCompleted; /// <remarks/> + public event get_InfoByBarCodeForReportCompletedEventHandler get_InfoByBarCodeForReportCompleted; + + /// <remarks/> public event get_InfoByStationInBillCompletedEventHandler get_InfoByStationInBillCompleted; /// <remarks/> @@ -1534,10 +1552,16 @@ public event GetSourceBillListCompletedEventHandler GetSourceBillListCompleted; /// <remarks/> + public event get_SourceBarCode_ICMOReportCompletedEventHandler get_SourceBarCode_ICMOReportCompleted; + + /// <remarks/> public event get_SourceBarCode_ProductInCompletedEventHandler get_SourceBarCode_ProductInCompleted; /// <remarks/> public event get_SourceBarCode_POStockInCompletedEventHandler get_SourceBarCode_POStockInCompleted; + + /// <remarks/> + public event get_SourceBarCode_EntrustInCompletedEventHandler get_SourceBarCode_EntrustInCompleted; /// <remarks/> public event get_SourceBarCode_OtherInCompletedEventHandler get_SourceBarCode_OtherInCompleted; @@ -1612,13 +1636,7 @@ public event set_DelSc_MouldStockBillMain_TempCompletedEventHandler set_DelSc_MouldStockBillMain_TempCompleted; /// <remarks/> - public event set_SaveMouldStockBill_NewCompletedEventHandler set_SaveMouldStockBill_NewCompleted; - - /// <remarks/> - public event MouldTempList_ModifyCompletedEventHandler MouldTempList_ModifyCompleted; - - /// <remarks/> - public event GetMouldSourceCompletedEventHandler GetMouldSourceCompleted; + public event set_CheckOtherInBillCompletedEventHandler set_CheckOtherInBillCompleted; /// <remarks/> public event set_AuditOtherInBillCompletedEventHandler set_AuditOtherInBillCompleted; @@ -1834,9 +1852,6 @@ public event get_InfoByBarCode_SourceCompletedEventHandler get_InfoByBarCode_SourceCompleted; /// <remarks/> - public event get_InfoByBarCodeForReportCompletedEventHandler get_InfoByBarCodeForReportCompleted; - - /// <remarks/> public event set_SaveEntrustOutBill_BillCheckCompletedEventHandler set_SaveEntrustOutBill_BillCheckCompleted; /// <remarks/> @@ -1993,9 +2008,6 @@ public event set_CheckAddOtherInBillCompletedEventHandler set_CheckAddOtherInBillCompleted; /// <remarks/> - public event set_CheckOtherInBillCompletedEventHandler set_CheckOtherInBillCompleted; - - /// <remarks/> public event set_SaveMoveStockStepInBill_NewCompletedEventHandler set_SaveMoveStockStepInBill_NewCompleted; /// <remarks/> @@ -2033,6 +2045,9 @@ /// <remarks/> public event set_SaveSellOutBill_CLD_NewCompletedEventHandler set_SaveSellOutBill_CLD_NewCompleted; + + /// <remarks/> + public event set_SaveSellOutBill_MESCompletedEventHandler set_SaveSellOutBill_MESCompleted; /// <remarks/> public event set_SaveSellOutBill_CLDCompletedEventHandler set_SaveSellOutBill_CLDCompleted; @@ -2861,6 +2876,112 @@ /// <remarks/> public event GetSc_ICMOBackBillListCompletedEventHandler GetSc_ICMOBackBillListCompleted; + + /// <remarks/> + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/set_SaveMouldStockBill_New", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public bool set_SaveMouldStockBill_New(ClsSc_MouldStockBillMain oMain, string sHSourceType, ref string sErrMsg) { + object[] results = this.Invoke("set_SaveMouldStockBill_New", new object[] { + oMain, + sHSourceType, + sErrMsg}); + sErrMsg = ((string)(results[1])); + return ((bool)(results[0])); + } + + /// <remarks/> + public void set_SaveMouldStockBill_NewAsync(ClsSc_MouldStockBillMain oMain, string sHSourceType, string sErrMsg) { + this.set_SaveMouldStockBill_NewAsync(oMain, sHSourceType, sErrMsg, null); + } + + /// <remarks/> + public void set_SaveMouldStockBill_NewAsync(ClsSc_MouldStockBillMain oMain, string sHSourceType, string sErrMsg, object userState) { + if ((this.set_SaveMouldStockBill_NewOperationCompleted == null)) { + this.set_SaveMouldStockBill_NewOperationCompleted = new System.Threading.SendOrPostCallback(this.Onset_SaveMouldStockBill_NewOperationCompleted); + } + this.InvokeAsync("set_SaveMouldStockBill_New", new object[] { + oMain, + sHSourceType, + sErrMsg}, this.set_SaveMouldStockBill_NewOperationCompleted, userState); + } + + private void Onset_SaveMouldStockBill_NewOperationCompleted(object arg) { + if ((this.set_SaveMouldStockBill_NewCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.set_SaveMouldStockBill_NewCompleted(this, new set_SaveMouldStockBill_NewCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// <remarks/> + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MouldTempList_Modify", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public bool MouldTempList_Modify(long sHInterID, string sHBillNo, string sHBillType, ref string sErrMsg) { + object[] results = this.Invoke("MouldTempList_Modify", new object[] { + sHInterID, + sHBillNo, + sHBillType, + sErrMsg}); + sErrMsg = ((string)(results[1])); + return ((bool)(results[0])); + } + + /// <remarks/> + public void MouldTempList_ModifyAsync(long sHInterID, string sHBillNo, string sHBillType, string sErrMsg) { + this.MouldTempList_ModifyAsync(sHInterID, sHBillNo, sHBillType, sErrMsg, null); + } + + /// <remarks/> + public void MouldTempList_ModifyAsync(long sHInterID, string sHBillNo, string sHBillType, string sErrMsg, object userState) { + if ((this.MouldTempList_ModifyOperationCompleted == null)) { + this.MouldTempList_ModifyOperationCompleted = new System.Threading.SendOrPostCallback(this.OnMouldTempList_ModifyOperationCompleted); + } + this.InvokeAsync("MouldTempList_Modify", new object[] { + sHInterID, + sHBillNo, + sHBillType, + sErrMsg}, this.MouldTempList_ModifyOperationCompleted, userState); + } + + private void OnMouldTempList_ModifyOperationCompleted(object arg) { + if ((this.MouldTempList_ModifyCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.MouldTempList_ModifyCompleted(this, new MouldTempList_ModifyCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// <remarks/> + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetMouldSource", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetMouldSource(string HBillType, string HSourceBillNo, string HSourceType, ref string sErrMsg) { + object[] results = this.Invoke("GetMouldSource", new object[] { + HBillType, + HSourceBillNo, + HSourceType, + sErrMsg}); + sErrMsg = ((string)(results[1])); + return ((System.Data.DataSet)(results[0])); + } + + /// <remarks/> + public void GetMouldSourceAsync(string HBillType, string HSourceBillNo, string HSourceType, string sErrMsg) { + this.GetMouldSourceAsync(HBillType, HSourceBillNo, HSourceType, sErrMsg, null); + } + + /// <remarks/> + public void GetMouldSourceAsync(string HBillType, string HSourceBillNo, string HSourceType, string sErrMsg, object userState) { + if ((this.GetMouldSourceOperationCompleted == null)) { + this.GetMouldSourceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetMouldSourceOperationCompleted); + } + this.InvokeAsync("GetMouldSource", new object[] { + HBillType, + HSourceBillNo, + HSourceType, + sErrMsg}, this.GetMouldSourceOperationCompleted, userState); + } + + private void OnGetMouldSourceOperationCompleted(object arg) { + if ((this.GetMouldSourceCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetMouldSourceCompleted(this, new GetMouldSourceCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } /// <remarks/> [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetSc_MouldStockBillMain_TempList", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] @@ -5344,6 +5465,38 @@ if ((this.set_SavePonderationBillMain_Temp_BarCode_MouldCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.set_SavePonderationBillMain_Temp_BarCode_MouldCompleted(this, new set_SavePonderationBillMain_Temp_BarCode_MouldCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// <remarks/> + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/get_InfoByBarCodeForReport", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ClsGy_BarCodeBill_WMS_Model_View get_InfoByBarCodeForReport(string sBarCode, ref string sErrMsg) { + object[] results = this.Invoke("get_InfoByBarCodeForReport", new object[] { + sBarCode, + sErrMsg}); + sErrMsg = ((string)(results[1])); + return ((ClsGy_BarCodeBill_WMS_Model_View)(results[0])); + } + + /// <remarks/> + public void get_InfoByBarCodeForReportAsync(string sBarCode, string sErrMsg) { + this.get_InfoByBarCodeForReportAsync(sBarCode, sErrMsg, null); + } + + /// <remarks/> + public void get_InfoByBarCodeForReportAsync(string sBarCode, string sErrMsg, object userState) { + if ((this.get_InfoByBarCodeForReportOperationCompleted == null)) { + this.get_InfoByBarCodeForReportOperationCompleted = new System.Threading.SendOrPostCallback(this.Onget_InfoByBarCodeForReportOperationCompleted); + } + this.InvokeAsync("get_InfoByBarCodeForReport", new object[] { + sBarCode, + sErrMsg}, this.get_InfoByBarCodeForReportOperationCompleted, userState); + } + + private void Onget_InfoByBarCodeForReportOperationCompleted(object arg) { + if ((this.get_InfoByBarCodeForReportCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.get_InfoByBarCodeForReportCompleted(this, new get_InfoByBarCodeForReportCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } @@ -8441,6 +8594,50 @@ } /// <remarks/> + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/get_SourceBarCode_ICMOReport", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ClsKf_ICStockBill_WMS get_SourceBarCode_ICMOReport(long HInterID, string HBillNo, string HBillType, string HSourceBillNo, string HSourceBillType, string HMaker, long HStockOrgID, ref string sErrMsg) { + object[] results = this.Invoke("get_SourceBarCode_ICMOReport", new object[] { + HInterID, + HBillNo, + HBillType, + HSourceBillNo, + HSourceBillType, + HMaker, + HStockOrgID, + sErrMsg}); + sErrMsg = ((string)(results[1])); + return ((ClsKf_ICStockBill_WMS)(results[0])); + } + + /// <remarks/> + public void get_SourceBarCode_ICMOReportAsync(long HInterID, string HBillNo, string HBillType, string HSourceBillNo, string HSourceBillType, string HMaker, long HStockOrgID, string sErrMsg) { + this.get_SourceBarCode_ICMOReportAsync(HInterID, HBillNo, HBillType, HSourceBillNo, HSourceBillType, HMaker, HStockOrgID, sErrMsg, null); + } + + /// <remarks/> + public void get_SourceBarCode_ICMOReportAsync(long HInterID, string HBillNo, string HBillType, string HSourceBillNo, string HSourceBillType, string HMaker, long HStockOrgID, string sErrMsg, object userState) { + if ((this.get_SourceBarCode_ICMOReportOperationCompleted == null)) { + this.get_SourceBarCode_ICMOReportOperationCompleted = new System.Threading.SendOrPostCallback(this.Onget_SourceBarCode_ICMOReportOperationCompleted); + } + this.InvokeAsync("get_SourceBarCode_ICMOReport", new object[] { + HInterID, + HBillNo, + HBillType, + HSourceBillNo, + HSourceBillType, + HMaker, + HStockOrgID, + sErrMsg}, this.get_SourceBarCode_ICMOReportOperationCompleted, userState); + } + + private void Onget_SourceBarCode_ICMOReportOperationCompleted(object arg) { + if ((this.get_SourceBarCode_ICMOReportCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.get_SourceBarCode_ICMOReportCompleted(this, new get_SourceBarCode_ICMOReportCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// <remarks/> [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/get_SourceBarCode_ProductIn", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] public ClsKf_ICStockBill_WMS get_SourceBarCode_ProductIn(long HInterID, string HBillNo, string HBillType, string HSourceBillNo, string HSourceBillType, string HMaker, long HStockOrgID, ref string sErrMsg) { object[] results = this.Invoke("get_SourceBarCode_ProductIn", new object[] { @@ -8525,6 +8722,50 @@ if ((this.get_SourceBarCode_POStockInCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.get_SourceBarCode_POStockInCompleted(this, new get_SourceBarCode_POStockInCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// <remarks/> + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/get_SourceBarCode_EntrustIn", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ClsKf_ICStockBill_WMS get_SourceBarCode_EntrustIn(long HInterID, string HBillNo, string HBillType, string HSourceBillNo, string HSourceBillType, string HMaker, long HStockOrgID, ref string sErrMsg) { + object[] results = this.Invoke("get_SourceBarCode_EntrustIn", new object[] { + HInterID, + HBillNo, + HBillType, + HSourceBillNo, + HSourceBillType, + HMaker, + HStockOrgID, + sErrMsg}); + sErrMsg = ((string)(results[1])); + return ((ClsKf_ICStockBill_WMS)(results[0])); + } + + /// <remarks/> + public void get_SourceBarCode_EntrustInAsync(long HInterID, string HBillNo, string HBillType, string HSourceBillNo, string HSourceBillType, string HMaker, long HStockOrgID, string sErrMsg) { + this.get_SourceBarCode_EntrustInAsync(HInterID, HBillNo, HBillType, HSourceBillNo, HSourceBillType, HMaker, HStockOrgID, sErrMsg, null); + } + + /// <remarks/> + public void get_SourceBarCode_EntrustInAsync(long HInterID, string HBillNo, string HBillType, string HSourceBillNo, string HSourceBillType, string HMaker, long HStockOrgID, string sErrMsg, object userState) { + if ((this.get_SourceBarCode_EntrustInOperationCompleted == null)) { + this.get_SourceBarCode_EntrustInOperationCompleted = new System.Threading.SendOrPostCallback(this.Onget_SourceBarCode_EntrustInOperationCompleted); + } + this.InvokeAsync("get_SourceBarCode_EntrustIn", new object[] { + HInterID, + HBillNo, + HBillType, + HSourceBillNo, + HSourceBillType, + HMaker, + HStockOrgID, + sErrMsg}, this.get_SourceBarCode_EntrustInOperationCompleted, userState); + } + + private void Onget_SourceBarCode_EntrustInOperationCompleted(object arg) { + if ((this.get_SourceBarCode_EntrustInCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.get_SourceBarCode_EntrustInCompleted(this, new get_SourceBarCode_EntrustInCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } @@ -10112,108 +10353,34 @@ } /// <remarks/> - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/set_SaveMouldStockBill_New", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public bool set_SaveMouldStockBill_New(ClsSc_MouldStockBillMain oMain, string sHSourceType, ref string sErrMsg) { - object[] results = this.Invoke("set_SaveMouldStockBill_New", new object[] { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/set_CheckOtherInBill", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public bool set_CheckOtherInBill(ClsKf_OtherInBillMain_K3 oMain, ref string sErrMsg) { + object[] results = this.Invoke("set_CheckOtherInBill", new object[] { oMain, - sHSourceType, sErrMsg}); sErrMsg = ((string)(results[1])); return ((bool)(results[0])); } /// <remarks/> - public void set_SaveMouldStockBill_NewAsync(ClsSc_MouldStockBillMain oMain, string sHSourceType, string sErrMsg) { - this.set_SaveMouldStockBill_NewAsync(oMain, sHSourceType, sErrMsg, null); + public void set_CheckOtherInBillAsync(ClsKf_OtherInBillMain_K3 oMain, string sErrMsg) { + this.set_CheckOtherInBillAsync(oMain, sErrMsg, null); } /// <remarks/> - public void set_SaveMouldStockBill_NewAsync(ClsSc_MouldStockBillMain oMain, string sHSourceType, string sErrMsg, object userState) { - if ((this.set_SaveMouldStockBill_NewOperationCompleted == null)) { - this.set_SaveMouldStockBill_NewOperationCompleted = new System.Threading.SendOrPostCallback(this.Onset_SaveMouldStockBill_NewOperationCompleted); + public void set_CheckOtherInBillAsync(ClsKf_OtherInBillMain_K3 oMain, string sErrMsg, object userState) { + if ((this.set_CheckOtherInBillOperationCompleted == null)) { + this.set_CheckOtherInBillOperationCompleted = new System.Threading.SendOrPostCallback(this.Onset_CheckOtherInBillOperationCompleted); } - this.InvokeAsync("set_SaveMouldStockBill_New", new object[] { + this.InvokeAsync("set_CheckOtherInBill", new object[] { oMain, - sHSourceType, - sErrMsg}, this.set_SaveMouldStockBill_NewOperationCompleted, userState); + sErrMsg}, this.set_CheckOtherInBillOperationCompleted, userState); } - private void Onset_SaveMouldStockBill_NewOperationCompleted(object arg) { - if ((this.set_SaveMouldStockBill_NewCompleted != null)) { + private void Onset_CheckOtherInBillOperationCompleted(object arg) { + if ((this.set_CheckOtherInBillCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.set_SaveMouldStockBill_NewCompleted(this, new set_SaveMouldStockBill_NewCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// <remarks/> - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MouldTempList_Modify", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public bool MouldTempList_Modify(long sHInterID, string sHBillNo, string sHBillType, ref string sErrMsg) { - object[] results = this.Invoke("MouldTempList_Modify", new object[] { - sHInterID, - sHBillNo, - sHBillType, - sErrMsg}); - sErrMsg = ((string)(results[1])); - return ((bool)(results[0])); - } - - /// <remarks/> - public void MouldTempList_ModifyAsync(long sHInterID, string sHBillNo, string sHBillType, string sErrMsg) { - this.MouldTempList_ModifyAsync(sHInterID, sHBillNo, sHBillType, sErrMsg, null); - } - - /// <remarks/> - public void MouldTempList_ModifyAsync(long sHInterID, string sHBillNo, string sHBillType, string sErrMsg, object userState) { - if ((this.MouldTempList_ModifyOperationCompleted == null)) { - this.MouldTempList_ModifyOperationCompleted = new System.Threading.SendOrPostCallback(this.OnMouldTempList_ModifyOperationCompleted); - } - this.InvokeAsync("MouldTempList_Modify", new object[] { - sHInterID, - sHBillNo, - sHBillType, - sErrMsg}, this.MouldTempList_ModifyOperationCompleted, userState); - } - - private void OnMouldTempList_ModifyOperationCompleted(object arg) { - if ((this.MouldTempList_ModifyCompleted != null)) { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.MouldTempList_ModifyCompleted(this, new MouldTempList_ModifyCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// <remarks/> - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetMouldSource", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetMouldSource(string HBillType, string HSourceBillNo, string HSourceType, ref string sErrMsg) { - object[] results = this.Invoke("GetMouldSource", new object[] { - HBillType, - HSourceBillNo, - HSourceType, - sErrMsg}); - sErrMsg = ((string)(results[1])); - return ((System.Data.DataSet)(results[0])); - } - - /// <remarks/> - public void GetMouldSourceAsync(string HBillType, string HSourceBillNo, string HSourceType, string sErrMsg) { - this.GetMouldSourceAsync(HBillType, HSourceBillNo, HSourceType, sErrMsg, null); - } - - /// <remarks/> - public void GetMouldSourceAsync(string HBillType, string HSourceBillNo, string HSourceType, string sErrMsg, object userState) { - if ((this.GetMouldSourceOperationCompleted == null)) { - this.GetMouldSourceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetMouldSourceOperationCompleted); - } - this.InvokeAsync("GetMouldSource", new object[] { - HBillType, - HSourceBillNo, - HSourceType, - sErrMsg}, this.GetMouldSourceOperationCompleted, userState); - } - - private void OnGetMouldSourceOperationCompleted(object arg) { - if ((this.GetMouldSourceCompleted != null)) { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetMouldSourceCompleted(this, new GetMouldSourceCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + this.set_CheckOtherInBillCompleted(this, new set_CheckOtherInBillCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } @@ -12617,38 +12784,6 @@ } /// <remarks/> - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/get_InfoByBarCodeForReport", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ClsGy_BarCodeBill_WMS_Model_View get_InfoByBarCodeForReport(string sBarCode, ref string sErrMsg) { - object[] results = this.Invoke("get_InfoByBarCodeForReport", new object[] { - sBarCode, - sErrMsg}); - sErrMsg = ((string)(results[1])); - return ((ClsGy_BarCodeBill_WMS_Model_View)(results[0])); - } - - /// <remarks/> - public void get_InfoByBarCodeForReportAsync(string sBarCode, string sErrMsg) { - this.get_InfoByBarCodeForReportAsync(sBarCode, sErrMsg, null); - } - - /// <remarks/> - public void get_InfoByBarCodeForReportAsync(string sBarCode, string sErrMsg, object userState) { - if ((this.get_InfoByBarCodeForReportOperationCompleted == null)) { - this.get_InfoByBarCodeForReportOperationCompleted = new System.Threading.SendOrPostCallback(this.Onget_InfoByBarCodeForReportOperationCompleted); - } - this.InvokeAsync("get_InfoByBarCodeForReport", new object[] { - sBarCode, - sErrMsg}, this.get_InfoByBarCodeForReportOperationCompleted, userState); - } - - private void Onget_InfoByBarCodeForReportOperationCompleted(object arg) { - if ((this.get_InfoByBarCodeForReportCompleted != null)) { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.get_InfoByBarCodeForReportCompleted(this, new get_InfoByBarCodeForReportCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// <remarks/> [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/set_SaveEntrustOutBill_BillCheck", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] public bool set_SaveEntrustOutBill_BillCheck(ClsKf_EntrustOutBillMain oMain, ref string sErrMsg) { object[] results = this.Invoke("set_SaveEntrustOutBill_BillCheck", new object[] { @@ -14410,38 +14545,6 @@ } /// <remarks/> - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/set_CheckOtherInBill", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public bool set_CheckOtherInBill(ClsKf_OtherInBillMain_K3 oMain, ref string sErrMsg) { - object[] results = this.Invoke("set_CheckOtherInBill", new object[] { - oMain, - sErrMsg}); - sErrMsg = ((string)(results[1])); - return ((bool)(results[0])); - } - - /// <remarks/> - public void set_CheckOtherInBillAsync(ClsKf_OtherInBillMain_K3 oMain, string sErrMsg) { - this.set_CheckOtherInBillAsync(oMain, sErrMsg, null); - } - - /// <remarks/> - public void set_CheckOtherInBillAsync(ClsKf_OtherInBillMain_K3 oMain, string sErrMsg, object userState) { - if ((this.set_CheckOtherInBillOperationCompleted == null)) { - this.set_CheckOtherInBillOperationCompleted = new System.Threading.SendOrPostCallback(this.Onset_CheckOtherInBillOperationCompleted); - } - this.InvokeAsync("set_CheckOtherInBill", new object[] { - oMain, - sErrMsg}, this.set_CheckOtherInBillOperationCompleted, userState); - } - - private void Onset_CheckOtherInBillOperationCompleted(object arg) { - if ((this.set_CheckOtherInBillCompleted != null)) { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.set_CheckOtherInBillCompleted(this, new set_CheckOtherInBillCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// <remarks/> [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/set_SaveMoveStockStepInBill_New", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] public bool set_SaveMoveStockStepInBill_New(ClsKf_MoveStockStepInBillMain oMain, string sHSourceType, ref string sErrMsg) { object[] results = this.Invoke("set_SaveMoveStockStepInBill_New", new object[] { @@ -14885,6 +14988,42 @@ if ((this.set_SaveSellOutBill_CLD_NewCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.set_SaveSellOutBill_CLD_NewCompleted(this, new set_SaveSellOutBill_CLD_NewCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// <remarks/> + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/set_SaveSellOutBill_MES", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public bool set_SaveSellOutBill_MES(ClsKf_SellOutBillMain oMain, string sHSourceType, ClsXt_SystemParameterMain oSystemParameterMain, ref string sErrMsg) { + object[] results = this.Invoke("set_SaveSellOutBill_MES", new object[] { + oMain, + sHSourceType, + oSystemParameterMain, + sErrMsg}); + sErrMsg = ((string)(results[1])); + return ((bool)(results[0])); + } + + /// <remarks/> + public void set_SaveSellOutBill_MESAsync(ClsKf_SellOutBillMain oMain, string sHSourceType, ClsXt_SystemParameterMain oSystemParameterMain, string sErrMsg) { + this.set_SaveSellOutBill_MESAsync(oMain, sHSourceType, oSystemParameterMain, sErrMsg, null); + } + + /// <remarks/> + public void set_SaveSellOutBill_MESAsync(ClsKf_SellOutBillMain oMain, string sHSourceType, ClsXt_SystemParameterMain oSystemParameterMain, string sErrMsg, object userState) { + if ((this.set_SaveSellOutBill_MESOperationCompleted == null)) { + this.set_SaveSellOutBill_MESOperationCompleted = new System.Threading.SendOrPostCallback(this.Onset_SaveSellOutBill_MESOperationCompleted); + } + this.InvokeAsync("set_SaveSellOutBill_MES", new object[] { + oMain, + sHSourceType, + oSystemParameterMain, + sErrMsg}, this.set_SaveSellOutBill_MESOperationCompleted, userState); + } + + private void Onset_SaveSellOutBill_MESOperationCompleted(object arg) { + if ((this.set_SaveSellOutBill_MESCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.set_SaveSellOutBill_MESCompleted(this, new set_SaveSellOutBill_MESCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } @@ -24352,265 +24491,41 @@ [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] - public partial class ClsKf_ICStockBill_WMS { + public partial class ClsSc_MouldStockBillMain : ClsXt_BaseBillMain { - private long hItemIDField; - - private string hBarTypeField; - - private long hWhIDField; - - private string hWhNumberField; - - private string hWhNameField; - - private bool hSPFlagField; - - private long hSPIDField; - - private string hSPNumberField; - - private string hSPNameField; - - private long hSCWhIDField; - - private string hSCWhNumberField; - - private string hSCWhNameField; - - private bool hSCSPFlagField; - - private long hSCSPIDField; - - private string hSCSPNumberField; - - private string hSCSPNameField; - - private long hDeptIDField; - - private string hDeptNumberField; - - private string hDeptNameField; + private long hSCWHIDField; private long hSupIDField; - private string hSupNumberField; + private long hEmpIDField; - private string hSupNameField; + private long hManagerIDField; - private string hSourceBillNoField; + private long hWHIDField; - private string hSourceBillTypeField; + private long hSecManagerIDField; - private long hOWNERIDField; + private long hKeeperIDField; - private string hOWNERNAMEField; + private long hDeptIDField; - private string hCustomField; + private string hExplanationField; - private long hMulSourceFlagField; + private string hInnerBillNoField; - private string hStockStyleField; + private bool hRedBlueFlagField; - private long hStockInOrgIDField; + private string hRepairTypeField; - private string hStockInOrgNameField; - - private long hStockOutOrgIDField; - - private string hStockOutOrgNameField; - - private long hInterIDField; - - private string hBillNoField; + private long hCorrespondentTypeIDField; /// <remarks/> - public long HItemID { + public long HSCWHID { get { - return this.hItemIDField; + return this.hSCWHIDField; } set { - this.hItemIDField = value; - } - } - - /// <remarks/> - public string HBarType { - get { - return this.hBarTypeField; - } - set { - this.hBarTypeField = value; - } - } - - /// <remarks/> - public long HWhID { - get { - return this.hWhIDField; - } - set { - this.hWhIDField = value; - } - } - - /// <remarks/> - public string HWhNumber { - get { - return this.hWhNumberField; - } - set { - this.hWhNumberField = value; - } - } - - /// <remarks/> - public string HWhName { - get { - return this.hWhNameField; - } - set { - this.hWhNameField = value; - } - } - - /// <remarks/> - public bool HSPFlag { - get { - return this.hSPFlagField; - } - set { - this.hSPFlagField = value; - } - } - - /// <remarks/> - public long HSPID { - get { - return this.hSPIDField; - } - set { - this.hSPIDField = value; - } - } - - /// <remarks/> - public string HSPNumber { - get { - return this.hSPNumberField; - } - set { - this.hSPNumberField = value; - } - } - - /// <remarks/> - public string HSPName { - get { - return this.hSPNameField; - } - set { - this.hSPNameField = value; - } - } - - /// <remarks/> - public long HSCWhID { - get { - return this.hSCWhIDField; - } - set { - this.hSCWhIDField = value; - } - } - - /// <remarks/> - public string HSCWhNumber { - get { - return this.hSCWhNumberField; - } - set { - this.hSCWhNumberField = value; - } - } - - /// <remarks/> - public string HSCWhName { - get { - return this.hSCWhNameField; - } - set { - this.hSCWhNameField = value; - } - } - - /// <remarks/> - public bool HSCSPFlag { - get { - return this.hSCSPFlagField; - } - set { - this.hSCSPFlagField = value; - } - } - - /// <remarks/> - public long HSCSPID { - get { - return this.hSCSPIDField; - } - set { - this.hSCSPIDField = value; - } - } - - /// <remarks/> - public string HSCSPNumber { - get { - return this.hSCSPNumberField; - } - set { - this.hSCSPNumberField = value; - } - } - - /// <remarks/> - public string HSCSPName { - get { - return this.hSCSPNameField; - } - set { - this.hSCSPNameField = value; - } - } - - /// <remarks/> - public long HDeptID { - get { - return this.hDeptIDField; - } - set { - this.hDeptIDField = value; - } - } - - /// <remarks/> - public string HDeptNumber { - get { - return this.hDeptNumberField; - } - set { - this.hDeptNumberField = value; - } - } - - /// <remarks/> - public string HDeptName { - get { - return this.hDeptNameField; - } - set { - this.hDeptNameField = value; + this.hSCWHIDField = value; } } @@ -24625,132 +24540,260 @@ } /// <remarks/> - public string HSupNumber { + public long HEmpID { get { - return this.hSupNumberField; + return this.hEmpIDField; } set { - this.hSupNumberField = value; + this.hEmpIDField = value; } } /// <remarks/> - public string HSupName { + public long HManagerID { get { - return this.hSupNameField; + return this.hManagerIDField; } set { - this.hSupNameField = value; + this.hManagerIDField = value; } } /// <remarks/> - public string HSourceBillNo { + public long HWHID { get { - return this.hSourceBillNoField; + return this.hWHIDField; } set { - this.hSourceBillNoField = value; + this.hWHIDField = value; } } /// <remarks/> - public string HSourceBillType { + public long HSecManagerID { get { - return this.hSourceBillTypeField; + return this.hSecManagerIDField; } set { - this.hSourceBillTypeField = value; + this.hSecManagerIDField = value; } } /// <remarks/> - public long HOWNERID { + public long HKeeperID { get { - return this.hOWNERIDField; + return this.hKeeperIDField; } set { - this.hOWNERIDField = value; + this.hKeeperIDField = value; } } /// <remarks/> - public string HOWNERNAME { + public long HDeptID { get { - return this.hOWNERNAMEField; + return this.hDeptIDField; } set { - this.hOWNERNAMEField = value; + this.hDeptIDField = value; } } /// <remarks/> - public string HCustom { + public string HExplanation { get { - return this.hCustomField; + return this.hExplanationField; } set { - this.hCustomField = value; + this.hExplanationField = value; } } /// <remarks/> - public long HMulSourceFlag { + public string HInnerBillNo { get { - return this.hMulSourceFlagField; + return this.hInnerBillNoField; } set { - this.hMulSourceFlagField = value; + this.hInnerBillNoField = value; } } /// <remarks/> - public string HStockStyle { + public bool HRedBlueFlag { get { - return this.hStockStyleField; + return this.hRedBlueFlagField; } set { - this.hStockStyleField = value; + this.hRedBlueFlagField = value; } } /// <remarks/> - public long HStockInOrgID { + public string HRepairType { get { - return this.hStockInOrgIDField; + return this.hRepairTypeField; } set { - this.hStockInOrgIDField = value; + this.hRepairTypeField = value; } } /// <remarks/> - public string HStockInOrgName { + public long HCorrespondentTypeID { get { - return this.hStockInOrgNameField; + return this.hCorrespondentTypeIDField; } set { - this.hStockInOrgNameField = value; + this.hCorrespondentTypeIDField = value; + } + } + } + + /// <remarks/> + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_ProcExchReportMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_PackUnionBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_PackDoubleBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_PackSplitBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_MoveStockStepOutBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_MoveStockBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_QualityReportBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_ICMOReportBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_DoorOutCheckBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_EntrustInBackBillMain_CLD))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_EntrustReplenishOutBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_MateReplenishOutBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_MateOutBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_StdWorkQtyBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_MESBeginWorkBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_StationInBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_SellOutBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_MoveStockStepInBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_EntrustInBillMain_K3))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_EntrustInBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_ProductInBillMain_K3))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_AGVRequestBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_ProductInBillMain_CLD))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_POStockInBillMain_K3))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_POStockInBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_OtherOutBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_ICStockBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_EntrustOutBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsQC_NoPassProdCheckBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsCg_POInStockBillMain_K3))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsCg_POInStockBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_ProductInBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_MouldProdInBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_OtherInBillMain))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_MouldStockBillMain))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] + public partial class ClsXt_BaseBillMain { + + private long hYearField; + + private long hPeriodField; + + private string hBillTypeField; + + private string hBillSubTypeField; + + private long hInterIDField; + + private System.DateTime hDateField; + + private string hBillNoField; + + private int hBillStatusField; + + private long hCheckItemNowIDField; + + private long hCheckItemNextIDField; + + private long hCheckFlowIDField; + + private string hRemarkField; + + private string hEmpCodeField; + + private string hMakerField; + + private string hMakeDateField; + + private string hUpDaterField; + + private string hUpDateDateField; + + private string hCheckerField; + + private string hCheckDateField; + + private string hBackerField; + + private string hBackDateField; + + private string hBackRemarkField; + + private string hCloseManField; + + private string hCloseDateField; + + private bool hCloseTypeField; + + private string hDeleteManField; + + private string hDeleteDateField; + + private long hBillerIDField; + + private string hMainSourceBillNoField; + + private string hMainSourceBillTypeField; + + private long hMainSourceInterIDField; + + private long hMainSourceEntryIDField; + + /// <remarks/> + public long HYear { + get { + return this.hYearField; + } + set { + this.hYearField = value; } } /// <remarks/> - public long HStockOutOrgID { + public long HPeriod { get { - return this.hStockOutOrgIDField; + return this.hPeriodField; } set { - this.hStockOutOrgIDField = value; + this.hPeriodField = value; } } /// <remarks/> - public string HStockOutOrgName { + public string HBillType { get { - return this.hStockOutOrgNameField; + return this.hBillTypeField; } set { - this.hStockOutOrgNameField = value; + this.hBillTypeField = value; + } + } + + /// <remarks/> + public string HBillSubType { + get { + return this.hBillSubTypeField; + } + set { + this.hBillSubTypeField = value; } } @@ -24765,12 +24808,272 @@ } /// <remarks/> + public System.DateTime HDate { + get { + return this.hDateField; + } + set { + this.hDateField = value; + } + } + + /// <remarks/> public string HBillNo { get { return this.hBillNoField; } set { this.hBillNoField = value; + } + } + + /// <remarks/> + public int HBillStatus { + get { + return this.hBillStatusField; + } + set { + this.hBillStatusField = value; + } + } + + /// <remarks/> + public long HCheckItemNowID { + get { + return this.hCheckItemNowIDField; + } + set { + this.hCheckItemNowIDField = value; + } + } + + /// <remarks/> + public long HCheckItemNextID { + get { + return this.hCheckItemNextIDField; + } + set { + this.hCheckItemNextIDField = value; + } + } + + /// <remarks/> + public long HCheckFlowID { + get { + return this.hCheckFlowIDField; + } + set { + this.hCheckFlowIDField = value; + } + } + + /// <remarks/> + public string HRemark { + get { + return this.hRemarkField; + } + set { + this.hRemarkField = value; + } + } + + /// <remarks/> + public string HEmpCode { + get { + return this.hEmpCodeField; + } + set { + this.hEmpCodeField = value; + } + } + + /// <remarks/> + public string HMaker { + get { + return this.hMakerField; + } + set { + this.hMakerField = value; + } + } + + /// <remarks/> + public string HMakeDate { + get { + return this.hMakeDateField; + } + set { + this.hMakeDateField = value; + } + } + + /// <remarks/> + public string HUpDater { + get { + return this.hUpDaterField; + } + set { + this.hUpDaterField = value; + } + } + + /// <remarks/> + public string HUpDateDate { + get { + return this.hUpDateDateField; + } + set { + this.hUpDateDateField = value; + } + } + + /// <remarks/> + public string HChecker { + get { + return this.hCheckerField; + } + set { + this.hCheckerField = value; + } + } + + /// <remarks/> + public string HCheckDate { + get { + return this.hCheckDateField; + } + set { + this.hCheckDateField = value; + } + } + + /// <remarks/> + public string HBacker { + get { + return this.hBackerField; + } + set { + this.hBackerField = value; + } + } + + /// <remarks/> + public string HBackDate { + get { + return this.hBackDateField; + } + set { + this.hBackDateField = value; + } + } + + /// <remarks/> + public string HBackRemark { + get { + return this.hBackRemarkField; + } + set { + this.hBackRemarkField = value; + } + } + + /// <remarks/> + public string HCloseMan { + get { + return this.hCloseManField; + } + set { + this.hCloseManField = value; + } + } + + /// <remarks/> + public string HCloseDate { + get { + return this.hCloseDateField; + } + set { + this.hCloseDateField = value; + } + } + + /// <remarks/> + public bool HCloseType { + get { + return this.hCloseTypeField; + } + set { + this.hCloseTypeField = value; + } + } + + /// <remarks/> + public string HDeleteMan { + get { + return this.hDeleteManField; + } + set { + this.hDeleteManField = value; + } + } + + /// <remarks/> + public string HDeleteDate { + get { + return this.hDeleteDateField; + } + set { + this.hDeleteDateField = value; + } + } + + /// <remarks/> + public long HBillerID { + get { + return this.hBillerIDField; + } + set { + this.hBillerIDField = value; + } + } + + /// <remarks/> + public string HMainSourceBillNo { + get { + return this.hMainSourceBillNoField; + } + set { + this.hMainSourceBillNoField = value; + } + } + + /// <remarks/> + public string HMainSourceBillType { + get { + return this.hMainSourceBillTypeField; + } + set { + this.hMainSourceBillTypeField = value; + } + } + + /// <remarks/> + public long HMainSourceInterID { + get { + return this.hMainSourceInterIDField; + } + set { + this.hMainSourceInterIDField = value; + } + } + + /// <remarks/> + public long HMainSourceEntryID { + get { + return this.hMainSourceEntryIDField; + } + set { + this.hMainSourceEntryIDField = value; } } } @@ -35419,149 +35722,124 @@ } /// <remarks/> - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_ProcExchReportMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_PackUnionBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_PackDoubleBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_PackSplitBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_MoveStockStepOutBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_MoveStockBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_QualityReportBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_ICMOReportBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_DoorOutCheckBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_EntrustInBackBillMain_CLD))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_EntrustReplenishOutBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_MateReplenishOutBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_MateOutBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_StdWorkQtyBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_MESBeginWorkBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_StationInBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_SellOutBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_MoveStockStepInBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_EntrustInBillMain_K3))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_EntrustInBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_ProductInBillMain_K3))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_AGVRequestBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_ProductInBillMain_CLD))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_POStockInBillMain_K3))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_POStockInBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_OtherOutBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_ICStockBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_EntrustOutBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsQC_NoPassProdCheckBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsCg_POInStockBillMain_K3))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsCg_POInStockBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_ProductInBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_MouldProdInBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsKf_OtherInBillMain))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsSc_MouldStockBillMain))] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] - public partial class ClsXt_BaseBillMain { + public partial class ClsKF_PonderationBillMain_Temp { - private long hYearField; - - private long hPeriodField; - - private string hBillTypeField; - - private string hBillSubTypeField; + private long hItemIDField; private long hInterIDField; - private System.DateTime hDateField; - private string hBillNoField; - private int hBillStatusField; + private string hBillTypeField; - private long hCheckItemNowIDField; + private long hMaterIDField; - private long hCheckItemNextIDField; + private string hMaterNumberField; - private long hCheckFlowIDField; + private string hMaterNameField; - private string hRemarkField; + private string hMaterModelField; - private string hEmpCodeField; + private long hProcIDField; + + private string hProcNameField; + + private long hWhIDField; + + private string hWhNameField; + + private long hSCWHIDField; + + private string hSCWHNameField; + + private long hStockPlaceIDField; + + private string hStockPlaceNameField; + + private long hOutStockPlaceIDField; + + private string hOutStockPlaceNameField; + + private long hGroupIDField; + + private string hGroupNameField; + + private double hQtyMustField; + + private double hQtyField; + + private double hPieceQtyField; + + private string hBarCodeField; + + private string hAddrField; private string hMakerField; - private string hMakeDateField; + private System.DateTime hMakeDateField; - private string hUpDaterField; + private long hSourceInterIDField; - private string hUpDateDateField; + private long hSourceEntryIDField; - private string hCheckerField; + private string hSourceBillNoField; - private string hCheckDateField; + private string hSourceBillTypeField; - private string hBackerField; + private long hRelationInterIDField; - private string hBackDateField; + private long hRelationEntryIDField; - private string hBackRemarkField; + private string hRelationBillNoField; - private string hCloseManField; + private long hErpClsIDField; - private string hCloseDateField; + private bool hRedBlueFlagField; - private bool hCloseTypeField; + private string hBatchNoField; - private string hDeleteManField; + private long hInstructIDField; - private string hDeleteDateField; + private string hInstructNoField; - private long hBillerIDField; + private long hSeOrderBillIDField; - private string hMainSourceBillNoField; + private string hSeOrderBillNoField; - private string hMainSourceBillTypeField; + private string hNordanField; - private long hMainSourceInterIDField; + private long hAuxPropIDField; - private long hMainSourceEntryIDField; + private string hMTONoField; + + private long hSTOCKORGIDField; + + private long hOWNERIDField; + + private string hCusBarCodeField; + + private string hSubBillTypeField; + + private long hMulSourceBillField; + + private string hBeginDateField; + + private string hEndDateField; + + private long hUnitIDField; /// <remarks/> - public long HYear { + public long HItemID { get { - return this.hYearField; + return this.hItemIDField; } set { - this.hYearField = value; - } - } - - /// <remarks/> - public long HPeriod { - get { - return this.hPeriodField; - } - set { - this.hPeriodField = value; - } - } - - /// <remarks/> - public string HBillType { - get { - return this.hBillTypeField; - } - set { - this.hBillTypeField = value; - } - } - - /// <remarks/> - public string HBillSubType { - get { - return this.hBillSubTypeField; - } - set { - this.hBillSubTypeField = value; + this.hItemIDField = value; } } @@ -35576,16 +35854,6 @@ } /// <remarks/> - public System.DateTime HDate { - get { - return this.hDateField; - } - set { - this.hDateField = value; - } - } - - /// <remarks/> public string HBillNo { get { return this.hBillNoField; @@ -35596,62 +35864,222 @@ } /// <remarks/> - public int HBillStatus { + public string HBillType { get { - return this.hBillStatusField; + return this.hBillTypeField; } set { - this.hBillStatusField = value; + this.hBillTypeField = value; } } /// <remarks/> - public long HCheckItemNowID { + public long HMaterID { get { - return this.hCheckItemNowIDField; + return this.hMaterIDField; } set { - this.hCheckItemNowIDField = value; + this.hMaterIDField = value; } } /// <remarks/> - public long HCheckItemNextID { + public string HMaterNumber { get { - return this.hCheckItemNextIDField; + return this.hMaterNumberField; } set { - this.hCheckItemNextIDField = value; + this.hMaterNumberField = value; } } /// <remarks/> - public long HCheckFlowID { + public string HMaterName { get { - return this.hCheckFlowIDField; + return this.hMaterNameField; } set { - this.hCheckFlowIDField = value; + this.hMaterNameField = value; } } /// <remarks/> - public string HRemark { + public string HMaterModel { get { - return this.hRemarkField; + return this.hMaterModelField; } set { - this.hRemarkField = value; + this.hMaterModelField = value; } } /// <remarks/> - public string HEmpCode { + public long HProcID { get { - return this.hEmpCodeField; + return this.hProcIDField; } set { - this.hEmpCodeField = value; + this.hProcIDField = value; + } + } + + /// <remarks/> + public string HProcName { + get { + return this.hProcNameField; + } + set { + this.hProcNameField = value; + } + } + + /// <remarks/> + public long HWhID { + get { + return this.hWhIDField; + } + set { + this.hWhIDField = value; + } + } + + /// <remarks/> + public string HWhName { + get { + return this.hWhNameField; + } + set { + this.hWhNameField = value; + } + } + + /// <remarks/> + public long HSCWHID { + get { + return this.hSCWHIDField; + } + set { + this.hSCWHIDField = value; + } + } + + /// <remarks/> + public string HSCWHName { + get { + return this.hSCWHNameField; + } + set { + this.hSCWHNameField = value; + } + } + + /// <remarks/> + public long HStockPlaceID { + get { + return this.hStockPlaceIDField; + } + set { + this.hStockPlaceIDField = value; + } + } + + /// <remarks/> + public string HStockPlaceName { + get { + return this.hStockPlaceNameField; + } + set { + this.hStockPlaceNameField = value; + } + } + + /// <remarks/> + public long HOutStockPlaceID { + get { + return this.hOutStockPlaceIDField; + } + set { + this.hOutStockPlaceIDField = value; + } + } + + /// <remarks/> + public string HOutStockPlaceName { + get { + return this.hOutStockPlaceNameField; + } + set { + this.hOutStockPlaceNameField = value; + } + } + + /// <remarks/> + public long HGroupID { + get { + return this.hGroupIDField; + } + set { + this.hGroupIDField = value; + } + } + + /// <remarks/> + public string HGroupName { + get { + return this.hGroupNameField; + } + set { + this.hGroupNameField = value; + } + } + + /// <remarks/> + public double HQtyMust { + get { + return this.hQtyMustField; + } + set { + this.hQtyMustField = value; + } + } + + /// <remarks/> + public double HQty { + get { + return this.hQtyField; + } + set { + this.hQtyField = value; + } + } + + /// <remarks/> + public double HPieceQty { + get { + return this.hPieceQtyField; + } + set { + this.hPieceQtyField = value; + } + } + + /// <remarks/> + public string HBarCode { + get { + return this.hBarCodeField; + } + set { + this.hBarCodeField = value; + } + } + + /// <remarks/> + public string HAddr { + get { + return this.hAddrField; + } + set { + this.hAddrField = value; } } @@ -35666,7 +36094,7 @@ } /// <remarks/> - public string HMakeDate { + public System.DateTime HMakeDate { get { return this.hMakeDateField; } @@ -35676,172 +36104,6022 @@ } /// <remarks/> - public string HUpDater { + public long HSourceInterID { get { - return this.hUpDaterField; + return this.hSourceInterIDField; } set { - this.hUpDaterField = value; + this.hSourceInterIDField = value; } } /// <remarks/> - public string HUpDateDate { + public long HSourceEntryID { get { - return this.hUpDateDateField; + return this.hSourceEntryIDField; } set { - this.hUpDateDateField = value; + this.hSourceEntryIDField = value; } } /// <remarks/> - public string HChecker { + public string HSourceBillNo { get { - return this.hCheckerField; + return this.hSourceBillNoField; } set { - this.hCheckerField = value; + this.hSourceBillNoField = value; } } /// <remarks/> - public string HCheckDate { + public string HSourceBillType { get { - return this.hCheckDateField; + return this.hSourceBillTypeField; } set { - this.hCheckDateField = value; + this.hSourceBillTypeField = value; } } /// <remarks/> - public string HBacker { + public long HRelationInterID { get { - return this.hBackerField; + return this.hRelationInterIDField; } set { - this.hBackerField = value; + this.hRelationInterIDField = value; } } /// <remarks/> - public string HBackDate { + public long HRelationEntryID { get { - return this.hBackDateField; + return this.hRelationEntryIDField; } set { - this.hBackDateField = value; + this.hRelationEntryIDField = value; } } /// <remarks/> - public string HBackRemark { + public string HRelationBillNo { get { - return this.hBackRemarkField; + return this.hRelationBillNoField; } set { - this.hBackRemarkField = value; + this.hRelationBillNoField = value; } } /// <remarks/> - public string HCloseMan { + public long HErpClsID { get { - return this.hCloseManField; + return this.hErpClsIDField; } set { - this.hCloseManField = value; + this.hErpClsIDField = value; } } /// <remarks/> - public string HCloseDate { + public bool HRedBlueFlag { get { - return this.hCloseDateField; + return this.hRedBlueFlagField; } set { - this.hCloseDateField = value; + this.hRedBlueFlagField = value; } } /// <remarks/> - public bool HCloseType { + public string HBatchNo { get { - return this.hCloseTypeField; + return this.hBatchNoField; } set { - this.hCloseTypeField = value; + this.hBatchNoField = value; } } /// <remarks/> - public string HDeleteMan { + public long HInstructID { get { - return this.hDeleteManField; + return this.hInstructIDField; } set { - this.hDeleteManField = value; + this.hInstructIDField = value; } } /// <remarks/> - public string HDeleteDate { + public string HInstructNo { get { - return this.hDeleteDateField; + return this.hInstructNoField; } set { - this.hDeleteDateField = value; + this.hInstructNoField = value; } } /// <remarks/> - public long HBillerID { + public long HSeOrderBillID { get { - return this.hBillerIDField; + return this.hSeOrderBillIDField; } set { - this.hBillerIDField = value; + this.hSeOrderBillIDField = value; } } /// <remarks/> - public string HMainSourceBillNo { + public string HSeOrderBillNo { get { - return this.hMainSourceBillNoField; + return this.hSeOrderBillNoField; } set { - this.hMainSourceBillNoField = value; + this.hSeOrderBillNoField = value; } } /// <remarks/> - public string HMainSourceBillType { + public string HNordan { get { - return this.hMainSourceBillTypeField; + return this.hNordanField; } set { - this.hMainSourceBillTypeField = value; + this.hNordanField = value; } } /// <remarks/> - public long HMainSourceInterID { + public long HAuxPropID { get { - return this.hMainSourceInterIDField; + return this.hAuxPropIDField; } set { - this.hMainSourceInterIDField = value; + this.hAuxPropIDField = value; } } /// <remarks/> - public long HMainSourceEntryID { + public string HMTONo { get { - return this.hMainSourceEntryIDField; + return this.hMTONoField; } set { - this.hMainSourceEntryIDField = value; + this.hMTONoField = value; + } + } + + /// <remarks/> + public long HSTOCKORGID { + get { + return this.hSTOCKORGIDField; + } + set { + this.hSTOCKORGIDField = value; + } + } + + /// <remarks/> + public long HOWNERID { + get { + return this.hOWNERIDField; + } + set { + this.hOWNERIDField = value; + } + } + + /// <remarks/> + public string HCusBarCode { + get { + return this.hCusBarCodeField; + } + set { + this.hCusBarCodeField = value; + } + } + + /// <remarks/> + public string HSubBillType { + get { + return this.hSubBillTypeField; + } + set { + this.hSubBillTypeField = value; + } + } + + /// <remarks/> + public long HMulSourceBill { + get { + return this.hMulSourceBillField; + } + set { + this.hMulSourceBillField = value; + } + } + + /// <remarks/> + public string HBeginDate { + get { + return this.hBeginDateField; + } + set { + this.hBeginDateField = value; + } + } + + /// <remarks/> + public string HEndDate { + get { + return this.hEndDateField; + } + set { + this.hEndDateField = value; + } + } + + /// <remarks/> + public long HUnitID { + get { + return this.hUnitIDField; + } + set { + this.hUnitIDField = value; + } + } + } + + /// <remarks/> + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] + public partial class ClsKf_ICStockBill_Mould { + + private long hItemIDField; + + private string hBarTypeField; + + private long hWhIDField; + + private string hWhNumberField; + + private string hWhNameField; + + private bool hSPFlagField; + + private long hSPIDField; + + private string hSPNumberField; + + private string hSPNameField; + + private long hDeptIDField; + + private string hDeptNumberField; + + private string hDeptNameField; + + private long hSupIDField; + + private string hSupNumberField; + + private string hSupNameField; + + private string hSourceBillNoField; + + private string hSourceBillTypeField; + + private long hOWNERIDField; + + private string hOWNERNAMEField; + + private string hCustomField; + + private long hMulSourceFlagField; + + private string hStockStyleField; + + private long hStockInOrgIDField; + + private string hStockInOrgNameField; + + private long hStockOutOrgIDField; + + private string hStockOutOrgNameField; + + /// <remarks/> + public long HItemID { + get { + return this.hItemIDField; + } + set { + this.hItemIDField = value; + } + } + + /// <remarks/> + public string HBarType { + get { + return this.hBarTypeField; + } + set { + this.hBarTypeField = value; + } + } + + /// <remarks/> + public long HWhID { + get { + return this.hWhIDField; + } + set { + this.hWhIDField = value; + } + } + + /// <remarks/> + public string HWhNumber { + get { + return this.hWhNumberField; + } + set { + this.hWhNumberField = value; + } + } + + /// <remarks/> + public string HWhName { + get { + return this.hWhNameField; + } + set { + this.hWhNameField = value; + } + } + + /// <remarks/> + public bool HSPFlag { + get { + return this.hSPFlagField; + } + set { + this.hSPFlagField = value; + } + } + + /// <remarks/> + public long HSPID { + get { + return this.hSPIDField; + } + set { + this.hSPIDField = value; + } + } + + /// <remarks/> + public string HSPNumber { + get { + return this.hSPNumberField; + } + set { + this.hSPNumberField = value; + } + } + + /// <remarks/> + public string HSPName { + get { + return this.hSPNameField; + } + set { + this.hSPNameField = value; + } + } + + /// <remarks/> + public long HDeptID { + get { + return this.hDeptIDField; + } + set { + this.hDeptIDField = value; + } + } + + /// <remarks/> + public string HDeptNumber { + get { + return this.hDeptNumberField; + } + set { + this.hDeptNumberField = value; + } + } + + /// <remarks/> + public string HDeptName { + get { + return this.hDeptNameField; + } + set { + this.hDeptNameField = value; + } + } + + /// <remarks/> + public long HSupID { + get { + return this.hSupIDField; + } + set { + this.hSupIDField = value; + } + } + + /// <remarks/> + public string HSupNumber { + get { + return this.hSupNumberField; + } + set { + this.hSupNumberField = value; + } + } + + /// <remarks/> + public string HSupName { + get { + return this.hSupNameField; + } + set { + this.hSupNameField = value; + } + } + + /// <remarks/> + public string HSourceBillNo { + get { + return this.hSourceBillNoField; + } + set { + this.hSourceBillNoField = value; + } + } + + /// <remarks/> + public string HSourceBillType { + get { + return this.hSourceBillTypeField; + } + set { + this.hSourceBillTypeField = value; + } + } + + /// <remarks/> + public long HOWNERID { + get { + return this.hOWNERIDField; + } + set { + this.hOWNERIDField = value; + } + } + + /// <remarks/> + public string HOWNERNAME { + get { + return this.hOWNERNAMEField; + } + set { + this.hOWNERNAMEField = value; + } + } + + /// <remarks/> + public string HCustom { + get { + return this.hCustomField; + } + set { + this.hCustomField = value; + } + } + + /// <remarks/> + public long HMulSourceFlag { + get { + return this.hMulSourceFlagField; + } + set { + this.hMulSourceFlagField = value; + } + } + + /// <remarks/> + public string HStockStyle { + get { + return this.hStockStyleField; + } + set { + this.hStockStyleField = value; + } + } + + /// <remarks/> + public long HStockInOrgID { + get { + return this.hStockInOrgIDField; + } + set { + this.hStockInOrgIDField = value; + } + } + + /// <remarks/> + public string HStockInOrgName { + get { + return this.hStockInOrgNameField; + } + set { + this.hStockInOrgNameField = value; + } + } + + /// <remarks/> + public long HStockOutOrgID { + get { + return this.hStockOutOrgIDField; + } + set { + this.hStockOutOrgIDField = value; + } + } + + /// <remarks/> + public string HStockOutOrgName { + get { + return this.hStockOutOrgNameField; + } + set { + this.hStockOutOrgNameField = value; + } + } + } + + /// <remarks/> + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] + public partial class ClsXt_SystemParameterMain { + + private string sc_ICMOReportBill_AutoCheckField; + + private string sc_ICMOReportBill_ERPModeField; + + private string sc_ICMOReportBill_MustQtyCtlField; + + private string sc_ICMOReportBill_MulSourceBillField; + + private string sc_ICMOReportBill_BillTypeOneScanField; + + private string sc_ICMOReportBill_SourceBillCtlField; + + private string sc_ICMOReportBill_BatchNoCtlField; + + private string sc_ICMOReportBill_MultilineCtlField; + + private string sc_ICMOReportBill_MaterWHSPCtlField; + + private string sc_ICMOReportBill_SourceWHSPCtlField; + + private string sc_ICMOReportBill_UpdateSourceInterIDField; + + private string sc_ICMOReportBill_MESFlagField; + + private string sc_ICMOReportBill_FirstCheckOutField; + + private string sc_ICMOReportBill_DeleterAndMakerMustSameField; + + private string cg_POInStockBill_AutoCheckField; + + private string cg_POInStockBill_ERPModeField; + + private string cg_POInStockBill_BarCodeCtlField; + + private string kf_POStockInBill_AutoCheckField; + + private string kf_POStockInBill_ERPModeField; + + private string kf_POStockInBill_MustQtyCtlField; + + private string kf_POStockInBill_MulSourceBillField; + + private string kf_POStockInBill_BillTypeOneScanField; + + private string kf_POStockInBill_SourceBillCtlField; + + private string kf_POStockInBill_BatchNoCtlField; + + private string kf_POStockInBill_MultilineCtlField; + + private string kf_POStockInBill_MaterWHSPCtlField; + + private string kf_POStockInBill_SourceWHSPCtlField; + + private string kf_POStockInBill_AutoBarCodeField; + + private string kf_POStockInBill_DeleterAndMakerMustSameField; + + private string kf_ProductInBill_AutoCheckField; + + private string kf_ProductInBill_ERPModeField; + + private string kf_ProductInBill_MustQtyCtlField; + + private string kf_ProductInBill_MulSourceBillField; + + private string kf_ProductInBill_BillTypeOneScanField; + + private string kf_ProductInBill_SourceBillCtlField; + + private string kf_ProductInBill_BatchNoCtlField; + + private string kf_ProductInBill_MultilineCtlField; + + private string kf_ProductInBill_MaterWHSPCtlField; + + private string kf_ProductInBill_SourceWHSPCtlField; + + private string kf_ProductInBill_DisplayField; + + private string kf_ProductInBill_DeleterAndMakerMustSameField; + + private string kf_OtherInBill_AutoCheckField; + + private string kf_OtherInBill_ERPModeField; + + private string kf_OtherInBill_MustQtyCtlField; + + private string kf_OtherInBill_MulSourceBillField; + + private string kf_OtherInBill_BillTypeOneScanField; + + private string kf_OtherInBill_SourceBillCtlField; + + private string kf_OtherInBill_BatchNoCtlField; + + private string kf_OtherInBill_MultilineCtlField; + + private string kf_OtherInBill_MaterWHSPCtlField; + + private string kf_OtherInBill_SourceWHSPCtlField; + + private string kf_OtherInBill_DeleterAndMakerMustSameField; + + private string kf_OtherInBillCheck_MustQtyCtlField; + + private string kf_OtherInBillCheck_WHSPCtlField; + + private string kf_OtherInBillCheck_MultilineCtlField; + + private string kf_EntrustInBill_AutoCheckField; + + private string kf_EntrustInBill_ERPModeField; + + private string kf_EntrustInBill_MustQtyCtlField; + + private string kf_EntrustInBill_MulSourceBillField; + + private string kf_EntrustInBill_BillTypeOneScanField; + + private string kf_EntrustInBill_SourceBillCtlField; + + private string kf_EntrustInBill_BatchNoCtlField; + + private string kf_EntrustInBill_MultilineCtlField; + + private string kf_EntrustInBill_MaterWHSPCtlField; + + private string kf_EntrustInBill_SourceWHSPCtlField; + + private string kf_EntrustInBill_DeleterAndMakerMustSameField; + + private string kf_MateOutBill_AutoCheckField; + + private string kf_MateOutBill_ERPModeField; + + private string kf_MateOutBill_MustQtyCtlField; + + private string kf_MateOutBill_MulSourceBillField; + + private string kf_MateOutBill_BillTypeOneScanField; + + private string kf_MateOutBill_BatchNoCtlField; + + private string kf_MateOutBill_MultilineCtlField; + + private string kf_MateOutBill_MaterWHSPCtlField; + + private string kf_MateOutBill_SourceWHSPCtlField; + + private string kf_MateOutBill_FIFOListField; + + private string kf_MateOutBill_FIFOCtlField; + + private string kf_MateOutBill_SimpleModeField; + + private string kf_MateOutBill_AutoBarCodeField; + + private string kf_MateOutBill_DeleterAndMakerMustSameField; + + private string kf_MateOutBillCheck_MustQtyCtlField; + + private string kf_MateOutBillCheck_WHSPCtlField; + + private string kf_MateOutBillCheck_MultilineCtlField; + + private string kf_SellOutBill_AutoCheckField; + + private string kf_SellOutBill_ERPModeField; + + private string kf_SellOutBill_MustQtyCtlField; + + private string kf_SellOutBill_MulSourceBillField; + + private string kf_SellOutBill_BillTypeOneScanField; + + private string kf_SellOutBill_BatchNoCtlField; + + private string kf_SellOutBill_MultilineCtlField; + + private string kf_SellOutBill_MaterWHSPCtlField; + + private string kf_SellOutBill_SourceWHSPCtlField; + + private string kf_SellOutBill_FIFOListField; + + private string kf_SellOutBill_FIFOCtlField; + + private string kf_SellOutBill_AutoSavePOStockInBillField; + + private string kf_SellOutBill_NoRefreshField; + + private string kf_SellOutBill_DisplayField; + + private string kf_SellOutBill_DeleterAndMakerMustSameField; + + private string kf_SellOutBillCheck_MustQtyCtlField; + + private string kf_SellOutBillCheck_WHSPCtlField; + + private string kf_SellOutBillCheck_MultilineCtlField; + + private string kf_SellOutBillCheck_SourceBarCodeCtlField; + + private string kf_OtherOutBill_AutoCheckField; + + private string kf_OtherOutBill_ERPModeField; + + private string kf_OtherOutBill_MustQtyCtlField; + + private string kf_OtherOutBill_MulSourceBillField; + + private string kf_OtherOutBill_BillTypeOneScanField; + + private string kf_OtherOutBill_BatchNoCtlField; + + private string kf_OtherOutBill_MultilineCtlField; + + private string kf_OtherOutBill_MaterWHSPCtlField; + + private string kf_OtherOutBill_SourceWHSPCtlField; + + private string kf_OtherOutBill_FIFOListField; + + private string kf_OtherOutBill_FIFOCtlField; + + private string kf_OtherOutBill_DeleterAndMakerMustSameField; + + private string kf_OtherOutBillCheck_MustQtyCtlField; + + private string kf_OtherOutBillCheck_WHSPCtlField; + + private string kf_OtherOutBillCheck_MultilineCtlField; + + private string kf_EntrustOutBill_AutoCheckField; + + private string kf_EntrustOutBill_ERPModeField; + + private string kf_EntrustOutBill_MustQtyCtlField; + + private string kf_EntrustOutBill_MulSourceBillField; + + private string kf_EntrustOutBill_BillTypeOneScanField; + + private string kf_EntrustOutBill_BatchNoCtlField; + + private string kf_EntrustOutBill_MultilineCtlField; + + private string kf_EntrustOutBill_MaterWHSPCtlField; + + private string kf_EntrustOutBill_SourceWHSPCtlField; + + private string kf_EntrustOutBill_FIFOListField; + + private string kf_EntrustOutBill_FIFOCtlField; + + private string kf_EntrustOutBill_SimpleModeField; + + private string kf_EntrustOutBill_DeleterAndMakerMustSameField; + + private string kf_EntrustOutBillCheck_MustQtyCtlField; + + private string kf_EntrustOutBillCheck_WHSPCtlField; + + private string kf_EntrustOutBillCheck_MultilineCtlField; + + private string kf_MateReplenishOutBill_AutoCheckField; + + private string kf_MateReplenishOutBill_ERPModeField; + + private string kf_MateReplenishOutBill_MustQtyCtlField; + + private string kf_MateReplenishOutBill_MulSourceBillField; + + private string kf_MateReplenishOutBill_BillTypeOneScanField; + + private string kf_MateReplenishOutBill_BatchNoCtlField; + + private string kf_MateReplenishOutBill_MultilineCtlField; + + private string kf_MateReplenishOutBill_MaterWHSPCtlField; + + private string kf_MateReplenishOutBill_SourceWHSPCtlField; + + private string kf_MateReplenishOutBill_DeleterAndMakerMustSameField; + + private string kf_MateReplenishOutBillCheck_MustQtyCtlField; + + private string kf_MateReplenishOutBillCheck_WHSPCtlField; + + private string kf_MateReplenishOutBillCheck_MultilineCtlField; + + private string kf_EntrustReplenishOutBill_AutoCheckField; + + private string kf_EntrustReplenishOutBill_ERPModeField; + + private string kf_EntrustReplenishOutBill_MustQtyCtlField; + + private string kf_EntrustReplenishOutBill_MulSourceBillField; + + private string kf_EntrustReplenishOutBill_BillTypeOneScanField; + + private string kf_EntrustReplenishOutBill_BatchNoCtlField; + + private string kf_EntrustReplenishOutBill_MultilineCtlField; + + private string kf_EntrustReplenishOutBill_MaterWHSPCtlField; + + private string kf_EntrustReplenishOutBill_SourceWHSPCtlField; + + private string kf_EntrustReplenishOutBill_DeleterAndMakerMustSameField; + + private string kf_EntrustReplenishOutBillCheck_MustQtyCtlField; + + private string kf_EntrustReplenishOutBillCheck_WHSPCtlField; + + private string kf_EntrustReplenishOutBillCheck_MultilineCtlField; + + private string kf_MoveStockBill_AutoCheckField; + + private string kf_MoveStockBill_ERPModeField; + + private string kf_MoveStockBill_MustQtyCtlField; + + private string kf_MoveStockBill_MulSourceBillField; + + private string kf_MoveStockBill_BillTypeOneScanField; + + private string kf_MoveStockBill_BatchNoCtlField; + + private string kf_MoveStockBill_MultilineCtlField; + + private string kf_MoveStockBill_MaterWHSPCtlField; + + private string kf_MoveStockBill_SourceWHSPCtlField; + + private string kf_MoveStockBill_FIFOListField; + + private string kf_MoveStockBill_FIFOCtlField; + + private string kf_MoveStockBill_DisplayField; + + private string kf_MoveStockBill_DeleterAndMakerMustSameField; + + private string kf_MoveStockBillCheck_MustQtyCtlField; + + private string kf_MoveStockBillCheck_WHSPCtlField; + + private string kf_MoveStockBillCheck_MultilineCtlField; + + private string kf_MoveStockStepOutBill_AutoCheckField; + + private string kf_MoveStockStepOutBill_ERPModeField; + + private string kf_MoveStockStepOutBill_MustQtyCtlField; + + private string kf_MoveStockStepOutBill_MulSourceBillField; + + private string kf_MoveStockStepOutBill_BillTypeOneScanField; + + private string kf_MoveStockStepOutBill_BatchNoCtlField; + + private string kf_MoveStockStepOutBill_MultilineCtlField; + + private string kf_MoveStockStepOutBill_MaterWHSPCtlField; + + private string kf_MoveStockStepOutBill_SourceWHSPCtlField; + + private string kf_MoveStockStepOutBill_FIFOListField; + + private string kf_MoveStockStepOutBill_FIFOCtlField; + + private string kf_MoveStockStepOutBill_DeleterAndMakerMustSameField; + + private string kf_MoveStockStepInBill_AutoCheckField; + + private string kf_MoveStockStepInBill_ERPModeField; + + private string kf_MoveStockStepInBill_MustQtyCtlField; + + private string kf_MoveStockStepInBill_MulSourceBillField; + + private string kf_MoveStockStepInBill_BillTypeOneScanField; + + private string kf_MoveStockStepInBill_BatchNoCtlField; + + private string kf_MoveStockStepInBill_MultilineCtlField; + + private string kf_MoveStockStepInBill_MaterWHSPCtlField; + + private string kf_MoveStockStepInBill_SourceWHSPCtlField; + + private string kf_MoveStockStepInBill_FIFOListField; + + private string kf_MoveStockStepInBill_FIFOCtlField; + + private string kf_MoveStockStepInBill_SourceBarCodeCtlField; + + private string kf_MoveStockStepInBill_DeleterAndMakerMustSameField; + + private string kf_POStockInBackBill_AutoCheckField; + + private string kf_POStockInBackBill_ERPModeField; + + private string kf_POStockInBackBill_MustQtyCtlField; + + private string kf_POStockInBackBill_MulSourceBillField; + + private string kf_POStockInBackBill_BillTypeOneScanField; + + private string kf_POStockInBackBill_BatchNoCtlField; + + private string kf_POStockInBackBill_MultilineCtlField; + + private string kf_POStockInBackBill_MaterWHSPCtlField; + + private string kf_POStockInBackBill_SourceWHSPCtlField; + + private string kf_POStockInBackBill_DeleterAndMakerMustSameField; + + private string kf_ProductInBackBill_AutoCheckField; + + private string kf_ProductInBackBill_ERPModeField; + + private string kf_ProductInBackBill_MustQtyCtlField; + + private string kf_ProductInBackBill_MulSourceBillField; + + private string kf_ProductInBackBill_BillTypeOneScanField; + + private string kf_ProductInBackBill_BatchNoCtlField; + + private string kf_ProductInBackBill_MultilineCtlField; + + private string kf_ProductInBackBill_MaterWHSPCtlField; + + private string kf_ProductInBackBill_SourceWHSPCtlField; + + private string kf_ProductInBackBill_DeleterAndMakerMustSameField; + + private string kf_OtherInBackBill_AutoCheckField; + + private string kf_OtherInBackBill_ERPModeField; + + private string kf_OtherInBackBill_MustQtyCtlField; + + private string kf_OtherInBackBill_MulSourceBillField; + + private string kf_OtherInBackBill_BillTypeOneScanField; + + private string kf_OtherInBackBill_BatchNoCtlField; + + private string kf_OtherInBackBill_MultilineCtlField; + + private string kf_OtherInBackBill_MaterWHSPCtlField; + + private string kf_OtherInBackBill_SourceWHSPCtlField; + + private string kf_OtherInBackBill_DeleterAndMakerMustSameField; + + private string kf_EntrustInBackBill_AutoCheckField; + + private string kf_EntrustInBackBill_ERPModeField; + + private string kf_EntrustInBackBill_MustQtyCtlField; + + private string kf_EntrustInBackBill_MulSourceBillField; + + private string kf_EntrustInBackBill_BillTypeOneScanField; + + private string kf_EntrustInBackBill_BatchNoCtlField; + + private string kf_EntrustInBackBill_MultilineCtlField; + + private string kf_EntrustInBackBill_MaterWHSPCtlField; + + private string kf_EntrustInBackBill_SourceWHSPCtlField; + + private string kf_EntrustInBackBill_DeleterAndMakerMustSameField; + + private string kf_MateOutBackBill_AutoCheckField; + + private string kf_MateOutBackBill_ERPModeField; + + private string kf_MateOutBackBill_MustQtyCtlField; + + private string kf_MateOutBackBill_MulSourceBillField; + + private string kf_MateOutBackBill_BillTypeOneScanField; + + private string kf_MateOutBackBill_BatchNoCtlField; + + private string kf_MateOutBackBill_MultilineCtlField; + + private string kf_MateOutBackBill_MaterWHSPCtlField; + + private string kf_MateOutBackBill_SourceWHSPCtlField; + + private string kf_MateOutBackBill_SimpleModeField; + + private string kf_MateOutBackBill_DeleterAndMakerMustSameField; + + private string kf_SellOutBackBill_AutoCheckField; + + private string kf_SellOutBackBill_ERPModeField; + + private string kf_SellOutBackBill_MustQtyCtlField; + + private string kf_SellOutBackBill_MulSourceBillField; + + private string kf_SellOutBackBill_BillTypeOneScanField; + + private string kf_SellOutBackBill_BatchNoCtlField; + + private string kf_SellOutBackBill_MultilineCtlField; + + private string kf_SellOutBackBill_MaterWHSPCtlField; + + private string kf_SellOutBackBill_SourceWHSPCtlField; + + private string kf_SellOutBackBill_AutoSavePOStockInBackBillField; + + private string kf_SellOutBackBill_DeleterAndMakerMustSameField; + + private string kf_OtherOutBackBill_AutoCheckField; + + private string kf_OtherOutBackBill_ERPModeField; + + private string kf_OtherOutBackBill_MustQtyCtlField; + + private string kf_OtherOutBackBill_MulSourceBillField; + + private string kf_OtherOutBackBill_BillTypeOneScanField; + + private string kf_OtherOutBackBill_BatchNoCtlField; + + private string kf_OtherOutBackBill_MultilineCtlField; + + private string kf_OtherOutBackBill_MaterWHSPCtlField; + + private string kf_OtherOutBackBill_SourceWHSPCtlField; + + private string kf_OtherOutBackBill_DeleterAndMakerMustSameField; + + private string kf_EntrustOutBackBill_AutoCheckField; + + private string kf_EntrustOutBackBill_ERPModeField; + + private string kf_EntrustOutBackBill_MustQtyCtlField; + + private string kf_EntrustOutBackBill_MulSourceBillField; + + private string kf_EntrustOutBackBill_BillTypeOneScanField; + + private string kf_EntrustOutBackBill_BatchNoCtlField; + + private string kf_EntrustOutBackBill_MultilineCtlField; + + private string kf_EntrustOutBackBill_MaterWHSPCtlField; + + private string kf_EntrustOutBackBill_SourceWHSPCtlField; + + private string kf_EntrustOutBackBill_SimpleModeField; + + private string kf_EntrustOutBackBill_DeleterAndMakerMustSameField; + + private string sc_PackUnionBill_SourceBillTypeCtlField; + + private string sc_PackUnionBill_SourceBillNoCtlField; + + private string wMS_ERPStockCtlField; + + private string wMS_WMSStockCtlField; + + private string wMS_WMSStockCtl_ERPModeField; + + private string wMS_SaveUpdateStockField; + + private string wMS_MaterBarCodeDefQtyField; + + private string wMS_BatchBarCodeDefQtyField; + + private string wMS_SNBarCodeDefQtyField; + + private string wMS_CampanyNameField; + + private string wMS_OneKeyModeField; + + private string wMS_BarCodeMustSameSourceBillField; + + private string wMS_OneScanModeField; + + private string wMS_UserByOrgRelationField; + + private string wMS_MouldManagerCtlField; + + private string wMS_CloudModeField; + + private string wMS_BillDateModeField; + + private string barCode_SourceQtyCtlField; + + private long barCode_PrintQtyField; + + private string barCode_PrintQtyCtlField; + + private string barCode_UpdatePrintQtyCtlField; + + private string barCode_AutoProductInBillWMSField; + + private string barCode_AutoPOStockInBillWMSField; + + private string barCode_AutoMateOutBackBillWMSField; + + private string barCode_AutoSellOutBackBillWMSField; + + private string barCode_DeleterAndMakerMustSameField; + + private string sc_ICMOBill_AutoProcExchBillField; + + private string sc_ProcessExchangeBill_AutoBarCodeField; + + private string mES_StationInBill_FIFOCtlField; + + private string mES_StationInBill_FullMoveCtlField; + + private string mES_StationInBill_QtyCtlField; + + private string mES_StationInBill_OneCtlField; + + private string mES_StationInBill_FirstCheckOutField; + + private string mES_StationInBill_ProcessCheckCtlField; + + private string mES_StationInBill_DeleteCtlField; + + private string mES_StationInBill_LineBindCtlField; + + private string mES_StationInBill_AutoFindSNOField; + + private string mES_StationInBill_ShowUSERProcessField; + + private string mES_StationInBill_SaveAutoAddnewField; + + private string mES_StationInBill_DeleteRelationCtlField; + + private string mES_StationInBill_PreQtyCtlField; + + private string mES_StationOutBill_QtyCtlField; + + private string mES_StationOutBill_QtyPreQtyCtlField; + + private string mES_StationOutBill_QtyNextQtyCtlField; + + private string mES_StationOutBill_ProcessCheckOutField; + + private string mES_StationOutBill_FirstCheckOutField; + + private string mES_StationOutBill_DeleteCtlField; + + private string mES_StationOutBill_FstAutoICMOReportField; + + private string mES_StationOutBill_LastAutoICMOReportField; + + private string mES_StationOutBill_AutoStockInField; + + private string mES_StationOutBill_InStockTypeField; + + private string mES_StationOutBill_AutoFindSNOField; + + private string mES_StationOutBill_ShowUSERProcessField; + + private string mES_StationOutBill_SaveAutoAddnewField; + + private string mES_StationOutBill_DeleteRelationCtlField; + + private string mES_StationOutBill_NextQtyCtlField; + + private string qC_NoPassProdCheckBill_QtyCtlField; + + private string qC_NoPassProdCheckBill_BadReasonQtyCtrlField; + + private string qC_NoPassProdCheckBill_DeleteCtlField; + + private string mES_StationEntrustInBill_FIFOCtlField; + + private string mES_StationEntrustInBill_FullMoveCtlField; + + private string mES_StationEntrustInBill_QtyCtlField; + + private string mES_StationEntrustInBill_OneCtlField; + + private string mES_StationEntrustInBill_DeleteCtlField; + + private string mES_StationEntrustInBill_SaveAutoAddnewField; + + private string mES_StationEntrustOutBill_QtyCtlField; + + private string mES_StationEntrustOutBill_DeleteCtlField; + + private string mES_StationEntrustOutBill_SaveAutoAddnewField; + + private string sc_MESBeginWorkBill_AutoCheckField; + + private string sc_MESReturnWorkBill_AutoCheckField; + + private string sc_MESEndWorkBill_AutoCheckField; + + private string sc_MESStopWorkBill_AutoCheckField; + + private string sc_ICMOBillWorkQtyStatus_AutoCheckField; + + private string sc_ICMOBillQualityStatus_AutoCheckField; + + private string sc_MaterToSourceBill_AutoCheckField; + + private string sc_MaterToSourceBill_MouldLifeCtrlField; + + private string sc_MaterToSourceBill_MouldLifeCtrlTypeField; + + private string oA_ErrMsgBackBill_AutoCheckField; + + private string sc_MESProceReportWorkBill_AutoCheckField; + + private string qC_FirstPieceCheckBill_AutoCheckField; + + private string sc_MouldProdOutBill_AutoCheckField; + + private string sc_MouldProdOutBill_SaveAutoAddnewField; + + private string sc_MouldProdOutBill_MouldLifeCtrlField; + + private string sc_MouldProdOutBill_MouldLifeCtrlTypeField; + + private string gy_RoutingBill_SaveAutoLastProcField; + + /// <remarks/> + public string Sc_ICMOReportBill_AutoCheck { + get { + return this.sc_ICMOReportBill_AutoCheckField; + } + set { + this.sc_ICMOReportBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Sc_ICMOReportBill_ERPMode { + get { + return this.sc_ICMOReportBill_ERPModeField; + } + set { + this.sc_ICMOReportBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Sc_ICMOReportBill_MustQtyCtl { + get { + return this.sc_ICMOReportBill_MustQtyCtlField; + } + set { + this.sc_ICMOReportBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Sc_ICMOReportBill_MulSourceBill { + get { + return this.sc_ICMOReportBill_MulSourceBillField; + } + set { + this.sc_ICMOReportBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Sc_ICMOReportBill_BillTypeOneScan { + get { + return this.sc_ICMOReportBill_BillTypeOneScanField; + } + set { + this.sc_ICMOReportBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Sc_ICMOReportBill_SourceBillCtl { + get { + return this.sc_ICMOReportBill_SourceBillCtlField; + } + set { + this.sc_ICMOReportBill_SourceBillCtlField = value; + } + } + + /// <remarks/> + public string Sc_ICMOReportBill_BatchNoCtl { + get { + return this.sc_ICMOReportBill_BatchNoCtlField; + } + set { + this.sc_ICMOReportBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Sc_ICMOReportBill_MultilineCtl { + get { + return this.sc_ICMOReportBill_MultilineCtlField; + } + set { + this.sc_ICMOReportBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Sc_ICMOReportBill_MaterWHSPCtl { + get { + return this.sc_ICMOReportBill_MaterWHSPCtlField; + } + set { + this.sc_ICMOReportBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Sc_ICMOReportBill_SourceWHSPCtl { + get { + return this.sc_ICMOReportBill_SourceWHSPCtlField; + } + set { + this.sc_ICMOReportBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Sc_ICMOReportBill_UpdateSourceInterID { + get { + return this.sc_ICMOReportBill_UpdateSourceInterIDField; + } + set { + this.sc_ICMOReportBill_UpdateSourceInterIDField = value; + } + } + + /// <remarks/> + public string Sc_ICMOReportBill_MESFlag { + get { + return this.sc_ICMOReportBill_MESFlagField; + } + set { + this.sc_ICMOReportBill_MESFlagField = value; + } + } + + /// <remarks/> + public string Sc_ICMOReportBill_FirstCheckOut { + get { + return this.sc_ICMOReportBill_FirstCheckOutField; + } + set { + this.sc_ICMOReportBill_FirstCheckOutField = value; + } + } + + /// <remarks/> + public string Sc_ICMOReportBill_DeleterAndMakerMustSame { + get { + return this.sc_ICMOReportBill_DeleterAndMakerMustSameField; + } + set { + this.sc_ICMOReportBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Cg_POInStockBill_AutoCheck { + get { + return this.cg_POInStockBill_AutoCheckField; + } + set { + this.cg_POInStockBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Cg_POInStockBill_ERPMode { + get { + return this.cg_POInStockBill_ERPModeField; + } + set { + this.cg_POInStockBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Cg_POInStockBill_BarCodeCtl { + get { + return this.cg_POInStockBill_BarCodeCtlField; + } + set { + this.cg_POInStockBill_BarCodeCtlField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBill_AutoCheck { + get { + return this.kf_POStockInBill_AutoCheckField; + } + set { + this.kf_POStockInBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBill_ERPMode { + get { + return this.kf_POStockInBill_ERPModeField; + } + set { + this.kf_POStockInBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBill_MustQtyCtl { + get { + return this.kf_POStockInBill_MustQtyCtlField; + } + set { + this.kf_POStockInBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBill_MulSourceBill { + get { + return this.kf_POStockInBill_MulSourceBillField; + } + set { + this.kf_POStockInBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBill_BillTypeOneScan { + get { + return this.kf_POStockInBill_BillTypeOneScanField; + } + set { + this.kf_POStockInBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBill_SourceBillCtl { + get { + return this.kf_POStockInBill_SourceBillCtlField; + } + set { + this.kf_POStockInBill_SourceBillCtlField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBill_BatchNoCtl { + get { + return this.kf_POStockInBill_BatchNoCtlField; + } + set { + this.kf_POStockInBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBill_MultilineCtl { + get { + return this.kf_POStockInBill_MultilineCtlField; + } + set { + this.kf_POStockInBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBill_MaterWHSPCtl { + get { + return this.kf_POStockInBill_MaterWHSPCtlField; + } + set { + this.kf_POStockInBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBill_SourceWHSPCtl { + get { + return this.kf_POStockInBill_SourceWHSPCtlField; + } + set { + this.kf_POStockInBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBill_AutoBarCode { + get { + return this.kf_POStockInBill_AutoBarCodeField; + } + set { + this.kf_POStockInBill_AutoBarCodeField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBill_DeleterAndMakerMustSame { + get { + return this.kf_POStockInBill_DeleterAndMakerMustSameField; + } + set { + this.kf_POStockInBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBill_AutoCheck { + get { + return this.kf_ProductInBill_AutoCheckField; + } + set { + this.kf_ProductInBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBill_ERPMode { + get { + return this.kf_ProductInBill_ERPModeField; + } + set { + this.kf_ProductInBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBill_MustQtyCtl { + get { + return this.kf_ProductInBill_MustQtyCtlField; + } + set { + this.kf_ProductInBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBill_MulSourceBill { + get { + return this.kf_ProductInBill_MulSourceBillField; + } + set { + this.kf_ProductInBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBill_BillTypeOneScan { + get { + return this.kf_ProductInBill_BillTypeOneScanField; + } + set { + this.kf_ProductInBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBill_SourceBillCtl { + get { + return this.kf_ProductInBill_SourceBillCtlField; + } + set { + this.kf_ProductInBill_SourceBillCtlField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBill_BatchNoCtl { + get { + return this.kf_ProductInBill_BatchNoCtlField; + } + set { + this.kf_ProductInBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBill_MultilineCtl { + get { + return this.kf_ProductInBill_MultilineCtlField; + } + set { + this.kf_ProductInBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBill_MaterWHSPCtl { + get { + return this.kf_ProductInBill_MaterWHSPCtlField; + } + set { + this.kf_ProductInBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBill_SourceWHSPCtl { + get { + return this.kf_ProductInBill_SourceWHSPCtlField; + } + set { + this.kf_ProductInBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBill_Display { + get { + return this.kf_ProductInBill_DisplayField; + } + set { + this.kf_ProductInBill_DisplayField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBill_DeleterAndMakerMustSame { + get { + return this.kf_ProductInBill_DeleterAndMakerMustSameField; + } + set { + this.kf_ProductInBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBill_AutoCheck { + get { + return this.kf_OtherInBill_AutoCheckField; + } + set { + this.kf_OtherInBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBill_ERPMode { + get { + return this.kf_OtherInBill_ERPModeField; + } + set { + this.kf_OtherInBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBill_MustQtyCtl { + get { + return this.kf_OtherInBill_MustQtyCtlField; + } + set { + this.kf_OtherInBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBill_MulSourceBill { + get { + return this.kf_OtherInBill_MulSourceBillField; + } + set { + this.kf_OtherInBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBill_BillTypeOneScan { + get { + return this.kf_OtherInBill_BillTypeOneScanField; + } + set { + this.kf_OtherInBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBill_SourceBillCtl { + get { + return this.kf_OtherInBill_SourceBillCtlField; + } + set { + this.kf_OtherInBill_SourceBillCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBill_BatchNoCtl { + get { + return this.kf_OtherInBill_BatchNoCtlField; + } + set { + this.kf_OtherInBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBill_MultilineCtl { + get { + return this.kf_OtherInBill_MultilineCtlField; + } + set { + this.kf_OtherInBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBill_MaterWHSPCtl { + get { + return this.kf_OtherInBill_MaterWHSPCtlField; + } + set { + this.kf_OtherInBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBill_SourceWHSPCtl { + get { + return this.kf_OtherInBill_SourceWHSPCtlField; + } + set { + this.kf_OtherInBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBill_DeleterAndMakerMustSame { + get { + return this.kf_OtherInBill_DeleterAndMakerMustSameField; + } + set { + this.kf_OtherInBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBillCheck_MustQtyCtl { + get { + return this.kf_OtherInBillCheck_MustQtyCtlField; + } + set { + this.kf_OtherInBillCheck_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBillCheck_WHSPCtl { + get { + return this.kf_OtherInBillCheck_WHSPCtlField; + } + set { + this.kf_OtherInBillCheck_WHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBillCheck_MultilineCtl { + get { + return this.kf_OtherInBillCheck_MultilineCtlField; + } + set { + this.kf_OtherInBillCheck_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBill_AutoCheck { + get { + return this.kf_EntrustInBill_AutoCheckField; + } + set { + this.kf_EntrustInBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBill_ERPMode { + get { + return this.kf_EntrustInBill_ERPModeField; + } + set { + this.kf_EntrustInBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBill_MustQtyCtl { + get { + return this.kf_EntrustInBill_MustQtyCtlField; + } + set { + this.kf_EntrustInBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBill_MulSourceBill { + get { + return this.kf_EntrustInBill_MulSourceBillField; + } + set { + this.kf_EntrustInBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBill_BillTypeOneScan { + get { + return this.kf_EntrustInBill_BillTypeOneScanField; + } + set { + this.kf_EntrustInBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBill_SourceBillCtl { + get { + return this.kf_EntrustInBill_SourceBillCtlField; + } + set { + this.kf_EntrustInBill_SourceBillCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBill_BatchNoCtl { + get { + return this.kf_EntrustInBill_BatchNoCtlField; + } + set { + this.kf_EntrustInBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBill_MultilineCtl { + get { + return this.kf_EntrustInBill_MultilineCtlField; + } + set { + this.kf_EntrustInBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBill_MaterWHSPCtl { + get { + return this.kf_EntrustInBill_MaterWHSPCtlField; + } + set { + this.kf_EntrustInBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBill_SourceWHSPCtl { + get { + return this.kf_EntrustInBill_SourceWHSPCtlField; + } + set { + this.kf_EntrustInBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBill_DeleterAndMakerMustSame { + get { + return this.kf_EntrustInBill_DeleterAndMakerMustSameField; + } + set { + this.kf_EntrustInBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBill_AutoCheck { + get { + return this.kf_MateOutBill_AutoCheckField; + } + set { + this.kf_MateOutBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBill_ERPMode { + get { + return this.kf_MateOutBill_ERPModeField; + } + set { + this.kf_MateOutBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBill_MustQtyCtl { + get { + return this.kf_MateOutBill_MustQtyCtlField; + } + set { + this.kf_MateOutBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBill_MulSourceBill { + get { + return this.kf_MateOutBill_MulSourceBillField; + } + set { + this.kf_MateOutBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBill_BillTypeOneScan { + get { + return this.kf_MateOutBill_BillTypeOneScanField; + } + set { + this.kf_MateOutBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBill_BatchNoCtl { + get { + return this.kf_MateOutBill_BatchNoCtlField; + } + set { + this.kf_MateOutBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBill_MultilineCtl { + get { + return this.kf_MateOutBill_MultilineCtlField; + } + set { + this.kf_MateOutBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBill_MaterWHSPCtl { + get { + return this.kf_MateOutBill_MaterWHSPCtlField; + } + set { + this.kf_MateOutBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBill_SourceWHSPCtl { + get { + return this.kf_MateOutBill_SourceWHSPCtlField; + } + set { + this.kf_MateOutBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBill_FIFOList { + get { + return this.kf_MateOutBill_FIFOListField; + } + set { + this.kf_MateOutBill_FIFOListField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBill_FIFOCtl { + get { + return this.kf_MateOutBill_FIFOCtlField; + } + set { + this.kf_MateOutBill_FIFOCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBill_SimpleMode { + get { + return this.kf_MateOutBill_SimpleModeField; + } + set { + this.kf_MateOutBill_SimpleModeField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBill_AutoBarCode { + get { + return this.kf_MateOutBill_AutoBarCodeField; + } + set { + this.kf_MateOutBill_AutoBarCodeField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBill_DeleterAndMakerMustSame { + get { + return this.kf_MateOutBill_DeleterAndMakerMustSameField; + } + set { + this.kf_MateOutBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBillCheck_MustQtyCtl { + get { + return this.kf_MateOutBillCheck_MustQtyCtlField; + } + set { + this.kf_MateOutBillCheck_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBillCheck_WHSPCtl { + get { + return this.kf_MateOutBillCheck_WHSPCtlField; + } + set { + this.kf_MateOutBillCheck_WHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBillCheck_MultilineCtl { + get { + return this.kf_MateOutBillCheck_MultilineCtlField; + } + set { + this.kf_MateOutBillCheck_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_AutoCheck { + get { + return this.kf_SellOutBill_AutoCheckField; + } + set { + this.kf_SellOutBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_ERPMode { + get { + return this.kf_SellOutBill_ERPModeField; + } + set { + this.kf_SellOutBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_MustQtyCtl { + get { + return this.kf_SellOutBill_MustQtyCtlField; + } + set { + this.kf_SellOutBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_MulSourceBill { + get { + return this.kf_SellOutBill_MulSourceBillField; + } + set { + this.kf_SellOutBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_BillTypeOneScan { + get { + return this.kf_SellOutBill_BillTypeOneScanField; + } + set { + this.kf_SellOutBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_BatchNoCtl { + get { + return this.kf_SellOutBill_BatchNoCtlField; + } + set { + this.kf_SellOutBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_MultilineCtl { + get { + return this.kf_SellOutBill_MultilineCtlField; + } + set { + this.kf_SellOutBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_MaterWHSPCtl { + get { + return this.kf_SellOutBill_MaterWHSPCtlField; + } + set { + this.kf_SellOutBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_SourceWHSPCtl { + get { + return this.kf_SellOutBill_SourceWHSPCtlField; + } + set { + this.kf_SellOutBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_FIFOList { + get { + return this.kf_SellOutBill_FIFOListField; + } + set { + this.kf_SellOutBill_FIFOListField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_FIFOCtl { + get { + return this.kf_SellOutBill_FIFOCtlField; + } + set { + this.kf_SellOutBill_FIFOCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_AutoSavePOStockInBill { + get { + return this.kf_SellOutBill_AutoSavePOStockInBillField; + } + set { + this.kf_SellOutBill_AutoSavePOStockInBillField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_NoRefresh { + get { + return this.kf_SellOutBill_NoRefreshField; + } + set { + this.kf_SellOutBill_NoRefreshField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_Display { + get { + return this.kf_SellOutBill_DisplayField; + } + set { + this.kf_SellOutBill_DisplayField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBill_DeleterAndMakerMustSame { + get { + return this.kf_SellOutBill_DeleterAndMakerMustSameField; + } + set { + this.kf_SellOutBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBillCheck_MustQtyCtl { + get { + return this.kf_SellOutBillCheck_MustQtyCtlField; + } + set { + this.kf_SellOutBillCheck_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBillCheck_WHSPCtl { + get { + return this.kf_SellOutBillCheck_WHSPCtlField; + } + set { + this.kf_SellOutBillCheck_WHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBillCheck_MultilineCtl { + get { + return this.kf_SellOutBillCheck_MultilineCtlField; + } + set { + this.kf_SellOutBillCheck_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBillCheck_SourceBarCodeCtl { + get { + return this.kf_SellOutBillCheck_SourceBarCodeCtlField; + } + set { + this.kf_SellOutBillCheck_SourceBarCodeCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBill_AutoCheck { + get { + return this.kf_OtherOutBill_AutoCheckField; + } + set { + this.kf_OtherOutBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBill_ERPMode { + get { + return this.kf_OtherOutBill_ERPModeField; + } + set { + this.kf_OtherOutBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBill_MustQtyCtl { + get { + return this.kf_OtherOutBill_MustQtyCtlField; + } + set { + this.kf_OtherOutBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBill_MulSourceBill { + get { + return this.kf_OtherOutBill_MulSourceBillField; + } + set { + this.kf_OtherOutBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBill_BillTypeOneScan { + get { + return this.kf_OtherOutBill_BillTypeOneScanField; + } + set { + this.kf_OtherOutBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBill_BatchNoCtl { + get { + return this.kf_OtherOutBill_BatchNoCtlField; + } + set { + this.kf_OtherOutBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBill_MultilineCtl { + get { + return this.kf_OtherOutBill_MultilineCtlField; + } + set { + this.kf_OtherOutBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBill_MaterWHSPCtl { + get { + return this.kf_OtherOutBill_MaterWHSPCtlField; + } + set { + this.kf_OtherOutBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBill_SourceWHSPCtl { + get { + return this.kf_OtherOutBill_SourceWHSPCtlField; + } + set { + this.kf_OtherOutBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBill_FIFOList { + get { + return this.kf_OtherOutBill_FIFOListField; + } + set { + this.kf_OtherOutBill_FIFOListField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBill_FIFOCtl { + get { + return this.kf_OtherOutBill_FIFOCtlField; + } + set { + this.kf_OtherOutBill_FIFOCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBill_DeleterAndMakerMustSame { + get { + return this.kf_OtherOutBill_DeleterAndMakerMustSameField; + } + set { + this.kf_OtherOutBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBillCheck_MustQtyCtl { + get { + return this.kf_OtherOutBillCheck_MustQtyCtlField; + } + set { + this.kf_OtherOutBillCheck_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBillCheck_WHSPCtl { + get { + return this.kf_OtherOutBillCheck_WHSPCtlField; + } + set { + this.kf_OtherOutBillCheck_WHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBillCheck_MultilineCtl { + get { + return this.kf_OtherOutBillCheck_MultilineCtlField; + } + set { + this.kf_OtherOutBillCheck_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBill_AutoCheck { + get { + return this.kf_EntrustOutBill_AutoCheckField; + } + set { + this.kf_EntrustOutBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBill_ERPMode { + get { + return this.kf_EntrustOutBill_ERPModeField; + } + set { + this.kf_EntrustOutBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBill_MustQtyCtl { + get { + return this.kf_EntrustOutBill_MustQtyCtlField; + } + set { + this.kf_EntrustOutBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBill_MulSourceBill { + get { + return this.kf_EntrustOutBill_MulSourceBillField; + } + set { + this.kf_EntrustOutBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBill_BillTypeOneScan { + get { + return this.kf_EntrustOutBill_BillTypeOneScanField; + } + set { + this.kf_EntrustOutBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBill_BatchNoCtl { + get { + return this.kf_EntrustOutBill_BatchNoCtlField; + } + set { + this.kf_EntrustOutBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBill_MultilineCtl { + get { + return this.kf_EntrustOutBill_MultilineCtlField; + } + set { + this.kf_EntrustOutBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBill_MaterWHSPCtl { + get { + return this.kf_EntrustOutBill_MaterWHSPCtlField; + } + set { + this.kf_EntrustOutBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBill_SourceWHSPCtl { + get { + return this.kf_EntrustOutBill_SourceWHSPCtlField; + } + set { + this.kf_EntrustOutBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBill_FIFOList { + get { + return this.kf_EntrustOutBill_FIFOListField; + } + set { + this.kf_EntrustOutBill_FIFOListField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBill_FIFOCtl { + get { + return this.kf_EntrustOutBill_FIFOCtlField; + } + set { + this.kf_EntrustOutBill_FIFOCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBill_SimpleMode { + get { + return this.kf_EntrustOutBill_SimpleModeField; + } + set { + this.kf_EntrustOutBill_SimpleModeField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBill_DeleterAndMakerMustSame { + get { + return this.kf_EntrustOutBill_DeleterAndMakerMustSameField; + } + set { + this.kf_EntrustOutBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBillCheck_MustQtyCtl { + get { + return this.kf_EntrustOutBillCheck_MustQtyCtlField; + } + set { + this.kf_EntrustOutBillCheck_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBillCheck_WHSPCtl { + get { + return this.kf_EntrustOutBillCheck_WHSPCtlField; + } + set { + this.kf_EntrustOutBillCheck_WHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBillCheck_MultilineCtl { + get { + return this.kf_EntrustOutBillCheck_MultilineCtlField; + } + set { + this.kf_EntrustOutBillCheck_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateReplenishOutBill_AutoCheck { + get { + return this.kf_MateReplenishOutBill_AutoCheckField; + } + set { + this.kf_MateReplenishOutBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_MateReplenishOutBill_ERPMode { + get { + return this.kf_MateReplenishOutBill_ERPModeField; + } + set { + this.kf_MateReplenishOutBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_MateReplenishOutBill_MustQtyCtl { + get { + return this.kf_MateReplenishOutBill_MustQtyCtlField; + } + set { + this.kf_MateReplenishOutBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateReplenishOutBill_MulSourceBill { + get { + return this.kf_MateReplenishOutBill_MulSourceBillField; + } + set { + this.kf_MateReplenishOutBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_MateReplenishOutBill_BillTypeOneScan { + get { + return this.kf_MateReplenishOutBill_BillTypeOneScanField; + } + set { + this.kf_MateReplenishOutBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_MateReplenishOutBill_BatchNoCtl { + get { + return this.kf_MateReplenishOutBill_BatchNoCtlField; + } + set { + this.kf_MateReplenishOutBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateReplenishOutBill_MultilineCtl { + get { + return this.kf_MateReplenishOutBill_MultilineCtlField; + } + set { + this.kf_MateReplenishOutBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateReplenishOutBill_MaterWHSPCtl { + get { + return this.kf_MateReplenishOutBill_MaterWHSPCtlField; + } + set { + this.kf_MateReplenishOutBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateReplenishOutBill_SourceWHSPCtl { + get { + return this.kf_MateReplenishOutBill_SourceWHSPCtlField; + } + set { + this.kf_MateReplenishOutBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateReplenishOutBill_DeleterAndMakerMustSame { + get { + return this.kf_MateReplenishOutBill_DeleterAndMakerMustSameField; + } + set { + this.kf_MateReplenishOutBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_MateReplenishOutBillCheck_MustQtyCtl { + get { + return this.kf_MateReplenishOutBillCheck_MustQtyCtlField; + } + set { + this.kf_MateReplenishOutBillCheck_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateReplenishOutBillCheck_WHSPCtl { + get { + return this.kf_MateReplenishOutBillCheck_WHSPCtlField; + } + set { + this.kf_MateReplenishOutBillCheck_WHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateReplenishOutBillCheck_MultilineCtl { + get { + return this.kf_MateReplenishOutBillCheck_MultilineCtlField; + } + set { + this.kf_MateReplenishOutBillCheck_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustReplenishOutBill_AutoCheck { + get { + return this.kf_EntrustReplenishOutBill_AutoCheckField; + } + set { + this.kf_EntrustReplenishOutBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_EntrustReplenishOutBill_ERPMode { + get { + return this.kf_EntrustReplenishOutBill_ERPModeField; + } + set { + this.kf_EntrustReplenishOutBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_EntrustReplenishOutBill_MustQtyCtl { + get { + return this.kf_EntrustReplenishOutBill_MustQtyCtlField; + } + set { + this.kf_EntrustReplenishOutBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustReplenishOutBill_MulSourceBill { + get { + return this.kf_EntrustReplenishOutBill_MulSourceBillField; + } + set { + this.kf_EntrustReplenishOutBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_EntrustReplenishOutBill_BillTypeOneScan { + get { + return this.kf_EntrustReplenishOutBill_BillTypeOneScanField; + } + set { + this.kf_EntrustReplenishOutBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_EntrustReplenishOutBill_BatchNoCtl { + get { + return this.kf_EntrustReplenishOutBill_BatchNoCtlField; + } + set { + this.kf_EntrustReplenishOutBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustReplenishOutBill_MultilineCtl { + get { + return this.kf_EntrustReplenishOutBill_MultilineCtlField; + } + set { + this.kf_EntrustReplenishOutBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustReplenishOutBill_MaterWHSPCtl { + get { + return this.kf_EntrustReplenishOutBill_MaterWHSPCtlField; + } + set { + this.kf_EntrustReplenishOutBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustReplenishOutBill_SourceWHSPCtl { + get { + return this.kf_EntrustReplenishOutBill_SourceWHSPCtlField; + } + set { + this.kf_EntrustReplenishOutBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustReplenishOutBill_DeleterAndMakerMustSame { + get { + return this.kf_EntrustReplenishOutBill_DeleterAndMakerMustSameField; + } + set { + this.kf_EntrustReplenishOutBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_EntrustReplenishOutBillCheck_MustQtyCtl { + get { + return this.kf_EntrustReplenishOutBillCheck_MustQtyCtlField; + } + set { + this.kf_EntrustReplenishOutBillCheck_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustReplenishOutBillCheck_WHSPCtl { + get { + return this.kf_EntrustReplenishOutBillCheck_WHSPCtlField; + } + set { + this.kf_EntrustReplenishOutBillCheck_WHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustReplenishOutBillCheck_MultilineCtl { + get { + return this.kf_EntrustReplenishOutBillCheck_MultilineCtlField; + } + set { + this.kf_EntrustReplenishOutBillCheck_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBill_AutoCheck { + get { + return this.kf_MoveStockBill_AutoCheckField; + } + set { + this.kf_MoveStockBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBill_ERPMode { + get { + return this.kf_MoveStockBill_ERPModeField; + } + set { + this.kf_MoveStockBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBill_MustQtyCtl { + get { + return this.kf_MoveStockBill_MustQtyCtlField; + } + set { + this.kf_MoveStockBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBill_MulSourceBill { + get { + return this.kf_MoveStockBill_MulSourceBillField; + } + set { + this.kf_MoveStockBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBill_BillTypeOneScan { + get { + return this.kf_MoveStockBill_BillTypeOneScanField; + } + set { + this.kf_MoveStockBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBill_BatchNoCtl { + get { + return this.kf_MoveStockBill_BatchNoCtlField; + } + set { + this.kf_MoveStockBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBill_MultilineCtl { + get { + return this.kf_MoveStockBill_MultilineCtlField; + } + set { + this.kf_MoveStockBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBill_MaterWHSPCtl { + get { + return this.kf_MoveStockBill_MaterWHSPCtlField; + } + set { + this.kf_MoveStockBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBill_SourceWHSPCtl { + get { + return this.kf_MoveStockBill_SourceWHSPCtlField; + } + set { + this.kf_MoveStockBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBill_FIFOList { + get { + return this.kf_MoveStockBill_FIFOListField; + } + set { + this.kf_MoveStockBill_FIFOListField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBill_FIFOCtl { + get { + return this.kf_MoveStockBill_FIFOCtlField; + } + set { + this.kf_MoveStockBill_FIFOCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBill_Display { + get { + return this.kf_MoveStockBill_DisplayField; + } + set { + this.kf_MoveStockBill_DisplayField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBill_DeleterAndMakerMustSame { + get { + return this.kf_MoveStockBill_DeleterAndMakerMustSameField; + } + set { + this.kf_MoveStockBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBillCheck_MustQtyCtl { + get { + return this.kf_MoveStockBillCheck_MustQtyCtlField; + } + set { + this.kf_MoveStockBillCheck_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBillCheck_WHSPCtl { + get { + return this.kf_MoveStockBillCheck_WHSPCtlField; + } + set { + this.kf_MoveStockBillCheck_WHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockBillCheck_MultilineCtl { + get { + return this.kf_MoveStockBillCheck_MultilineCtlField; + } + set { + this.kf_MoveStockBillCheck_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepOutBill_AutoCheck { + get { + return this.kf_MoveStockStepOutBill_AutoCheckField; + } + set { + this.kf_MoveStockStepOutBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepOutBill_ERPMode { + get { + return this.kf_MoveStockStepOutBill_ERPModeField; + } + set { + this.kf_MoveStockStepOutBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepOutBill_MustQtyCtl { + get { + return this.kf_MoveStockStepOutBill_MustQtyCtlField; + } + set { + this.kf_MoveStockStepOutBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepOutBill_MulSourceBill { + get { + return this.kf_MoveStockStepOutBill_MulSourceBillField; + } + set { + this.kf_MoveStockStepOutBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepOutBill_BillTypeOneScan { + get { + return this.kf_MoveStockStepOutBill_BillTypeOneScanField; + } + set { + this.kf_MoveStockStepOutBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepOutBill_BatchNoCtl { + get { + return this.kf_MoveStockStepOutBill_BatchNoCtlField; + } + set { + this.kf_MoveStockStepOutBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepOutBill_MultilineCtl { + get { + return this.kf_MoveStockStepOutBill_MultilineCtlField; + } + set { + this.kf_MoveStockStepOutBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepOutBill_MaterWHSPCtl { + get { + return this.kf_MoveStockStepOutBill_MaterWHSPCtlField; + } + set { + this.kf_MoveStockStepOutBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepOutBill_SourceWHSPCtl { + get { + return this.kf_MoveStockStepOutBill_SourceWHSPCtlField; + } + set { + this.kf_MoveStockStepOutBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepOutBill_FIFOList { + get { + return this.kf_MoveStockStepOutBill_FIFOListField; + } + set { + this.kf_MoveStockStepOutBill_FIFOListField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepOutBill_FIFOCtl { + get { + return this.kf_MoveStockStepOutBill_FIFOCtlField; + } + set { + this.kf_MoveStockStepOutBill_FIFOCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepOutBill_DeleterAndMakerMustSame { + get { + return this.kf_MoveStockStepOutBill_DeleterAndMakerMustSameField; + } + set { + this.kf_MoveStockStepOutBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepInBill_AutoCheck { + get { + return this.kf_MoveStockStepInBill_AutoCheckField; + } + set { + this.kf_MoveStockStepInBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepInBill_ERPMode { + get { + return this.kf_MoveStockStepInBill_ERPModeField; + } + set { + this.kf_MoveStockStepInBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepInBill_MustQtyCtl { + get { + return this.kf_MoveStockStepInBill_MustQtyCtlField; + } + set { + this.kf_MoveStockStepInBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepInBill_MulSourceBill { + get { + return this.kf_MoveStockStepInBill_MulSourceBillField; + } + set { + this.kf_MoveStockStepInBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepInBill_BillTypeOneScan { + get { + return this.kf_MoveStockStepInBill_BillTypeOneScanField; + } + set { + this.kf_MoveStockStepInBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepInBill_BatchNoCtl { + get { + return this.kf_MoveStockStepInBill_BatchNoCtlField; + } + set { + this.kf_MoveStockStepInBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepInBill_MultilineCtl { + get { + return this.kf_MoveStockStepInBill_MultilineCtlField; + } + set { + this.kf_MoveStockStepInBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepInBill_MaterWHSPCtl { + get { + return this.kf_MoveStockStepInBill_MaterWHSPCtlField; + } + set { + this.kf_MoveStockStepInBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepInBill_SourceWHSPCtl { + get { + return this.kf_MoveStockStepInBill_SourceWHSPCtlField; + } + set { + this.kf_MoveStockStepInBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepInBill_FIFOList { + get { + return this.kf_MoveStockStepInBill_FIFOListField; + } + set { + this.kf_MoveStockStepInBill_FIFOListField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepInBill_FIFOCtl { + get { + return this.kf_MoveStockStepInBill_FIFOCtlField; + } + set { + this.kf_MoveStockStepInBill_FIFOCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepInBill_SourceBarCodeCtl { + get { + return this.kf_MoveStockStepInBill_SourceBarCodeCtlField; + } + set { + this.kf_MoveStockStepInBill_SourceBarCodeCtlField = value; + } + } + + /// <remarks/> + public string Kf_MoveStockStepInBill_DeleterAndMakerMustSame { + get { + return this.kf_MoveStockStepInBill_DeleterAndMakerMustSameField; + } + set { + this.kf_MoveStockStepInBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBackBill_AutoCheck { + get { + return this.kf_POStockInBackBill_AutoCheckField; + } + set { + this.kf_POStockInBackBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBackBill_ERPMode { + get { + return this.kf_POStockInBackBill_ERPModeField; + } + set { + this.kf_POStockInBackBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBackBill_MustQtyCtl { + get { + return this.kf_POStockInBackBill_MustQtyCtlField; + } + set { + this.kf_POStockInBackBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBackBill_MulSourceBill { + get { + return this.kf_POStockInBackBill_MulSourceBillField; + } + set { + this.kf_POStockInBackBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBackBill_BillTypeOneScan { + get { + return this.kf_POStockInBackBill_BillTypeOneScanField; + } + set { + this.kf_POStockInBackBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBackBill_BatchNoCtl { + get { + return this.kf_POStockInBackBill_BatchNoCtlField; + } + set { + this.kf_POStockInBackBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBackBill_MultilineCtl { + get { + return this.kf_POStockInBackBill_MultilineCtlField; + } + set { + this.kf_POStockInBackBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBackBill_MaterWHSPCtl { + get { + return this.kf_POStockInBackBill_MaterWHSPCtlField; + } + set { + this.kf_POStockInBackBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBackBill_SourceWHSPCtl { + get { + return this.kf_POStockInBackBill_SourceWHSPCtlField; + } + set { + this.kf_POStockInBackBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_POStockInBackBill_DeleterAndMakerMustSame { + get { + return this.kf_POStockInBackBill_DeleterAndMakerMustSameField; + } + set { + this.kf_POStockInBackBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBackBill_AutoCheck { + get { + return this.kf_ProductInBackBill_AutoCheckField; + } + set { + this.kf_ProductInBackBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBackBill_ERPMode { + get { + return this.kf_ProductInBackBill_ERPModeField; + } + set { + this.kf_ProductInBackBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBackBill_MustQtyCtl { + get { + return this.kf_ProductInBackBill_MustQtyCtlField; + } + set { + this.kf_ProductInBackBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBackBill_MulSourceBill { + get { + return this.kf_ProductInBackBill_MulSourceBillField; + } + set { + this.kf_ProductInBackBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBackBill_BillTypeOneScan { + get { + return this.kf_ProductInBackBill_BillTypeOneScanField; + } + set { + this.kf_ProductInBackBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBackBill_BatchNoCtl { + get { + return this.kf_ProductInBackBill_BatchNoCtlField; + } + set { + this.kf_ProductInBackBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBackBill_MultilineCtl { + get { + return this.kf_ProductInBackBill_MultilineCtlField; + } + set { + this.kf_ProductInBackBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBackBill_MaterWHSPCtl { + get { + return this.kf_ProductInBackBill_MaterWHSPCtlField; + } + set { + this.kf_ProductInBackBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBackBill_SourceWHSPCtl { + get { + return this.kf_ProductInBackBill_SourceWHSPCtlField; + } + set { + this.kf_ProductInBackBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_ProductInBackBill_DeleterAndMakerMustSame { + get { + return this.kf_ProductInBackBill_DeleterAndMakerMustSameField; + } + set { + this.kf_ProductInBackBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBackBill_AutoCheck { + get { + return this.kf_OtherInBackBill_AutoCheckField; + } + set { + this.kf_OtherInBackBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBackBill_ERPMode { + get { + return this.kf_OtherInBackBill_ERPModeField; + } + set { + this.kf_OtherInBackBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBackBill_MustQtyCtl { + get { + return this.kf_OtherInBackBill_MustQtyCtlField; + } + set { + this.kf_OtherInBackBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBackBill_MulSourceBill { + get { + return this.kf_OtherInBackBill_MulSourceBillField; + } + set { + this.kf_OtherInBackBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBackBill_BillTypeOneScan { + get { + return this.kf_OtherInBackBill_BillTypeOneScanField; + } + set { + this.kf_OtherInBackBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBackBill_BatchNoCtl { + get { + return this.kf_OtherInBackBill_BatchNoCtlField; + } + set { + this.kf_OtherInBackBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBackBill_MultilineCtl { + get { + return this.kf_OtherInBackBill_MultilineCtlField; + } + set { + this.kf_OtherInBackBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBackBill_MaterWHSPCtl { + get { + return this.kf_OtherInBackBill_MaterWHSPCtlField; + } + set { + this.kf_OtherInBackBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBackBill_SourceWHSPCtl { + get { + return this.kf_OtherInBackBill_SourceWHSPCtlField; + } + set { + this.kf_OtherInBackBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherInBackBill_DeleterAndMakerMustSame { + get { + return this.kf_OtherInBackBill_DeleterAndMakerMustSameField; + } + set { + this.kf_OtherInBackBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBackBill_AutoCheck { + get { + return this.kf_EntrustInBackBill_AutoCheckField; + } + set { + this.kf_EntrustInBackBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBackBill_ERPMode { + get { + return this.kf_EntrustInBackBill_ERPModeField; + } + set { + this.kf_EntrustInBackBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBackBill_MustQtyCtl { + get { + return this.kf_EntrustInBackBill_MustQtyCtlField; + } + set { + this.kf_EntrustInBackBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBackBill_MulSourceBill { + get { + return this.kf_EntrustInBackBill_MulSourceBillField; + } + set { + this.kf_EntrustInBackBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBackBill_BillTypeOneScan { + get { + return this.kf_EntrustInBackBill_BillTypeOneScanField; + } + set { + this.kf_EntrustInBackBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBackBill_BatchNoCtl { + get { + return this.kf_EntrustInBackBill_BatchNoCtlField; + } + set { + this.kf_EntrustInBackBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBackBill_MultilineCtl { + get { + return this.kf_EntrustInBackBill_MultilineCtlField; + } + set { + this.kf_EntrustInBackBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBackBill_MaterWHSPCtl { + get { + return this.kf_EntrustInBackBill_MaterWHSPCtlField; + } + set { + this.kf_EntrustInBackBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBackBill_SourceWHSPCtl { + get { + return this.kf_EntrustInBackBill_SourceWHSPCtlField; + } + set { + this.kf_EntrustInBackBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustInBackBill_DeleterAndMakerMustSame { + get { + return this.kf_EntrustInBackBill_DeleterAndMakerMustSameField; + } + set { + this.kf_EntrustInBackBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBackBill_AutoCheck { + get { + return this.kf_MateOutBackBill_AutoCheckField; + } + set { + this.kf_MateOutBackBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBackBill_ERPMode { + get { + return this.kf_MateOutBackBill_ERPModeField; + } + set { + this.kf_MateOutBackBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBackBill_MustQtyCtl { + get { + return this.kf_MateOutBackBill_MustQtyCtlField; + } + set { + this.kf_MateOutBackBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBackBill_MulSourceBill { + get { + return this.kf_MateOutBackBill_MulSourceBillField; + } + set { + this.kf_MateOutBackBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBackBill_BillTypeOneScan { + get { + return this.kf_MateOutBackBill_BillTypeOneScanField; + } + set { + this.kf_MateOutBackBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBackBill_BatchNoCtl { + get { + return this.kf_MateOutBackBill_BatchNoCtlField; + } + set { + this.kf_MateOutBackBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBackBill_MultilineCtl { + get { + return this.kf_MateOutBackBill_MultilineCtlField; + } + set { + this.kf_MateOutBackBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBackBill_MaterWHSPCtl { + get { + return this.kf_MateOutBackBill_MaterWHSPCtlField; + } + set { + this.kf_MateOutBackBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBackBill_SourceWHSPCtl { + get { + return this.kf_MateOutBackBill_SourceWHSPCtlField; + } + set { + this.kf_MateOutBackBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBackBill_SimpleMode { + get { + return this.kf_MateOutBackBill_SimpleModeField; + } + set { + this.kf_MateOutBackBill_SimpleModeField = value; + } + } + + /// <remarks/> + public string Kf_MateOutBackBill_DeleterAndMakerMustSame { + get { + return this.kf_MateOutBackBill_DeleterAndMakerMustSameField; + } + set { + this.kf_MateOutBackBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBackBill_AutoCheck { + get { + return this.kf_SellOutBackBill_AutoCheckField; + } + set { + this.kf_SellOutBackBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBackBill_ERPMode { + get { + return this.kf_SellOutBackBill_ERPModeField; + } + set { + this.kf_SellOutBackBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBackBill_MustQtyCtl { + get { + return this.kf_SellOutBackBill_MustQtyCtlField; + } + set { + this.kf_SellOutBackBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBackBill_MulSourceBill { + get { + return this.kf_SellOutBackBill_MulSourceBillField; + } + set { + this.kf_SellOutBackBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBackBill_BillTypeOneScan { + get { + return this.kf_SellOutBackBill_BillTypeOneScanField; + } + set { + this.kf_SellOutBackBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBackBill_BatchNoCtl { + get { + return this.kf_SellOutBackBill_BatchNoCtlField; + } + set { + this.kf_SellOutBackBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBackBill_MultilineCtl { + get { + return this.kf_SellOutBackBill_MultilineCtlField; + } + set { + this.kf_SellOutBackBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBackBill_MaterWHSPCtl { + get { + return this.kf_SellOutBackBill_MaterWHSPCtlField; + } + set { + this.kf_SellOutBackBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBackBill_SourceWHSPCtl { + get { + return this.kf_SellOutBackBill_SourceWHSPCtlField; + } + set { + this.kf_SellOutBackBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBackBill_AutoSavePOStockInBackBill { + get { + return this.kf_SellOutBackBill_AutoSavePOStockInBackBillField; + } + set { + this.kf_SellOutBackBill_AutoSavePOStockInBackBillField = value; + } + } + + /// <remarks/> + public string Kf_SellOutBackBill_DeleterAndMakerMustSame { + get { + return this.kf_SellOutBackBill_DeleterAndMakerMustSameField; + } + set { + this.kf_SellOutBackBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBackBill_AutoCheck { + get { + return this.kf_OtherOutBackBill_AutoCheckField; + } + set { + this.kf_OtherOutBackBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBackBill_ERPMode { + get { + return this.kf_OtherOutBackBill_ERPModeField; + } + set { + this.kf_OtherOutBackBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBackBill_MustQtyCtl { + get { + return this.kf_OtherOutBackBill_MustQtyCtlField; + } + set { + this.kf_OtherOutBackBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBackBill_MulSourceBill { + get { + return this.kf_OtherOutBackBill_MulSourceBillField; + } + set { + this.kf_OtherOutBackBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBackBill_BillTypeOneScan { + get { + return this.kf_OtherOutBackBill_BillTypeOneScanField; + } + set { + this.kf_OtherOutBackBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBackBill_BatchNoCtl { + get { + return this.kf_OtherOutBackBill_BatchNoCtlField; + } + set { + this.kf_OtherOutBackBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBackBill_MultilineCtl { + get { + return this.kf_OtherOutBackBill_MultilineCtlField; + } + set { + this.kf_OtherOutBackBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBackBill_MaterWHSPCtl { + get { + return this.kf_OtherOutBackBill_MaterWHSPCtlField; + } + set { + this.kf_OtherOutBackBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBackBill_SourceWHSPCtl { + get { + return this.kf_OtherOutBackBill_SourceWHSPCtlField; + } + set { + this.kf_OtherOutBackBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_OtherOutBackBill_DeleterAndMakerMustSame { + get { + return this.kf_OtherOutBackBill_DeleterAndMakerMustSameField; + } + set { + this.kf_OtherOutBackBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBackBill_AutoCheck { + get { + return this.kf_EntrustOutBackBill_AutoCheckField; + } + set { + this.kf_EntrustOutBackBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBackBill_ERPMode { + get { + return this.kf_EntrustOutBackBill_ERPModeField; + } + set { + this.kf_EntrustOutBackBill_ERPModeField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBackBill_MustQtyCtl { + get { + return this.kf_EntrustOutBackBill_MustQtyCtlField; + } + set { + this.kf_EntrustOutBackBill_MustQtyCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBackBill_MulSourceBill { + get { + return this.kf_EntrustOutBackBill_MulSourceBillField; + } + set { + this.kf_EntrustOutBackBill_MulSourceBillField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBackBill_BillTypeOneScan { + get { + return this.kf_EntrustOutBackBill_BillTypeOneScanField; + } + set { + this.kf_EntrustOutBackBill_BillTypeOneScanField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBackBill_BatchNoCtl { + get { + return this.kf_EntrustOutBackBill_BatchNoCtlField; + } + set { + this.kf_EntrustOutBackBill_BatchNoCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBackBill_MultilineCtl { + get { + return this.kf_EntrustOutBackBill_MultilineCtlField; + } + set { + this.kf_EntrustOutBackBill_MultilineCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBackBill_MaterWHSPCtl { + get { + return this.kf_EntrustOutBackBill_MaterWHSPCtlField; + } + set { + this.kf_EntrustOutBackBill_MaterWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBackBill_SourceWHSPCtl { + get { + return this.kf_EntrustOutBackBill_SourceWHSPCtlField; + } + set { + this.kf_EntrustOutBackBill_SourceWHSPCtlField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBackBill_SimpleMode { + get { + return this.kf_EntrustOutBackBill_SimpleModeField; + } + set { + this.kf_EntrustOutBackBill_SimpleModeField = value; + } + } + + /// <remarks/> + public string Kf_EntrustOutBackBill_DeleterAndMakerMustSame { + get { + return this.kf_EntrustOutBackBill_DeleterAndMakerMustSameField; + } + set { + this.kf_EntrustOutBackBill_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Sc_PackUnionBill_SourceBillTypeCtl { + get { + return this.sc_PackUnionBill_SourceBillTypeCtlField; + } + set { + this.sc_PackUnionBill_SourceBillTypeCtlField = value; + } + } + + /// <remarks/> + public string Sc_PackUnionBill_SourceBillNoCtl { + get { + return this.sc_PackUnionBill_SourceBillNoCtlField; + } + set { + this.sc_PackUnionBill_SourceBillNoCtlField = value; + } + } + + /// <remarks/> + public string WMS_ERPStockCtl { + get { + return this.wMS_ERPStockCtlField; + } + set { + this.wMS_ERPStockCtlField = value; + } + } + + /// <remarks/> + public string WMS_WMSStockCtl { + get { + return this.wMS_WMSStockCtlField; + } + set { + this.wMS_WMSStockCtlField = value; + } + } + + /// <remarks/> + public string WMS_WMSStockCtl_ERPMode { + get { + return this.wMS_WMSStockCtl_ERPModeField; + } + set { + this.wMS_WMSStockCtl_ERPModeField = value; + } + } + + /// <remarks/> + public string WMS_SaveUpdateStock { + get { + return this.wMS_SaveUpdateStockField; + } + set { + this.wMS_SaveUpdateStockField = value; + } + } + + /// <remarks/> + public string WMS_MaterBarCodeDefQty { + get { + return this.wMS_MaterBarCodeDefQtyField; + } + set { + this.wMS_MaterBarCodeDefQtyField = value; + } + } + + /// <remarks/> + public string WMS_BatchBarCodeDefQty { + get { + return this.wMS_BatchBarCodeDefQtyField; + } + set { + this.wMS_BatchBarCodeDefQtyField = value; + } + } + + /// <remarks/> + public string WMS_SNBarCodeDefQty { + get { + return this.wMS_SNBarCodeDefQtyField; + } + set { + this.wMS_SNBarCodeDefQtyField = value; + } + } + + /// <remarks/> + public string WMS_CampanyName { + get { + return this.wMS_CampanyNameField; + } + set { + this.wMS_CampanyNameField = value; + } + } + + /// <remarks/> + public string WMS_OneKeyMode { + get { + return this.wMS_OneKeyModeField; + } + set { + this.wMS_OneKeyModeField = value; + } + } + + /// <remarks/> + public string WMS_BarCodeMustSameSourceBill { + get { + return this.wMS_BarCodeMustSameSourceBillField; + } + set { + this.wMS_BarCodeMustSameSourceBillField = value; + } + } + + /// <remarks/> + public string WMS_OneScanMode { + get { + return this.wMS_OneScanModeField; + } + set { + this.wMS_OneScanModeField = value; + } + } + + /// <remarks/> + public string WMS_UserByOrgRelation { + get { + return this.wMS_UserByOrgRelationField; + } + set { + this.wMS_UserByOrgRelationField = value; + } + } + + /// <remarks/> + public string WMS_MouldManagerCtl { + get { + return this.wMS_MouldManagerCtlField; + } + set { + this.wMS_MouldManagerCtlField = value; + } + } + + /// <remarks/> + public string WMS_CloudMode { + get { + return this.wMS_CloudModeField; + } + set { + this.wMS_CloudModeField = value; + } + } + + /// <remarks/> + public string WMS_BillDateMode { + get { + return this.wMS_BillDateModeField; + } + set { + this.wMS_BillDateModeField = value; + } + } + + /// <remarks/> + public string BarCode_SourceQtyCtl { + get { + return this.barCode_SourceQtyCtlField; + } + set { + this.barCode_SourceQtyCtlField = value; + } + } + + /// <remarks/> + public long BarCode_PrintQty { + get { + return this.barCode_PrintQtyField; + } + set { + this.barCode_PrintQtyField = value; + } + } + + /// <remarks/> + public string BarCode_PrintQtyCtl { + get { + return this.barCode_PrintQtyCtlField; + } + set { + this.barCode_PrintQtyCtlField = value; + } + } + + /// <remarks/> + public string BarCode_UpdatePrintQtyCtl { + get { + return this.barCode_UpdatePrintQtyCtlField; + } + set { + this.barCode_UpdatePrintQtyCtlField = value; + } + } + + /// <remarks/> + public string BarCode_AutoProductInBillWMS { + get { + return this.barCode_AutoProductInBillWMSField; + } + set { + this.barCode_AutoProductInBillWMSField = value; + } + } + + /// <remarks/> + public string BarCode_AutoPOStockInBillWMS { + get { + return this.barCode_AutoPOStockInBillWMSField; + } + set { + this.barCode_AutoPOStockInBillWMSField = value; + } + } + + /// <remarks/> + public string BarCode_AutoMateOutBackBillWMS { + get { + return this.barCode_AutoMateOutBackBillWMSField; + } + set { + this.barCode_AutoMateOutBackBillWMSField = value; + } + } + + /// <remarks/> + public string BarCode_AutoSellOutBackBillWMS { + get { + return this.barCode_AutoSellOutBackBillWMSField; + } + set { + this.barCode_AutoSellOutBackBillWMSField = value; + } + } + + /// <remarks/> + public string BarCode_DeleterAndMakerMustSame { + get { + return this.barCode_DeleterAndMakerMustSameField; + } + set { + this.barCode_DeleterAndMakerMustSameField = value; + } + } + + /// <remarks/> + public string Sc_ICMOBill_AutoProcExchBill { + get { + return this.sc_ICMOBill_AutoProcExchBillField; + } + set { + this.sc_ICMOBill_AutoProcExchBillField = value; + } + } + + /// <remarks/> + public string Sc_ProcessExchangeBill_AutoBarCode { + get { + return this.sc_ProcessExchangeBill_AutoBarCodeField; + } + set { + this.sc_ProcessExchangeBill_AutoBarCodeField = value; + } + } + + /// <remarks/> + public string MES_StationInBill_FIFOCtl { + get { + return this.mES_StationInBill_FIFOCtlField; + } + set { + this.mES_StationInBill_FIFOCtlField = value; + } + } + + /// <remarks/> + public string MES_StationInBill_FullMoveCtl { + get { + return this.mES_StationInBill_FullMoveCtlField; + } + set { + this.mES_StationInBill_FullMoveCtlField = value; + } + } + + /// <remarks/> + public string MES_StationInBill_QtyCtl { + get { + return this.mES_StationInBill_QtyCtlField; + } + set { + this.mES_StationInBill_QtyCtlField = value; + } + } + + /// <remarks/> + public string MES_StationInBill_OneCtl { + get { + return this.mES_StationInBill_OneCtlField; + } + set { + this.mES_StationInBill_OneCtlField = value; + } + } + + /// <remarks/> + public string MES_StationInBill_FirstCheckOut { + get { + return this.mES_StationInBill_FirstCheckOutField; + } + set { + this.mES_StationInBill_FirstCheckOutField = value; + } + } + + /// <remarks/> + public string MES_StationInBill_ProcessCheckCtl { + get { + return this.mES_StationInBill_ProcessCheckCtlField; + } + set { + this.mES_StationInBill_ProcessCheckCtlField = value; + } + } + + /// <remarks/> + public string MES_StationInBill_DeleteCtl { + get { + return this.mES_StationInBill_DeleteCtlField; + } + set { + this.mES_StationInBill_DeleteCtlField = value; + } + } + + /// <remarks/> + public string MES_StationInBill_LineBindCtl { + get { + return this.mES_StationInBill_LineBindCtlField; + } + set { + this.mES_StationInBill_LineBindCtlField = value; + } + } + + /// <remarks/> + public string MES_StationInBill_AutoFindSNO { + get { + return this.mES_StationInBill_AutoFindSNOField; + } + set { + this.mES_StationInBill_AutoFindSNOField = value; + } + } + + /// <remarks/> + public string MES_StationInBill_ShowUSERProcess { + get { + return this.mES_StationInBill_ShowUSERProcessField; + } + set { + this.mES_StationInBill_ShowUSERProcessField = value; + } + } + + /// <remarks/> + public string MES_StationInBill_SaveAutoAddnew { + get { + return this.mES_StationInBill_SaveAutoAddnewField; + } + set { + this.mES_StationInBill_SaveAutoAddnewField = value; + } + } + + /// <remarks/> + public string MES_StationInBill_DeleteRelationCtl { + get { + return this.mES_StationInBill_DeleteRelationCtlField; + } + set { + this.mES_StationInBill_DeleteRelationCtlField = value; + } + } + + /// <remarks/> + public string MES_StationInBill_PreQtyCtl { + get { + return this.mES_StationInBill_PreQtyCtlField; + } + set { + this.mES_StationInBill_PreQtyCtlField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_QtyCtl { + get { + return this.mES_StationOutBill_QtyCtlField; + } + set { + this.mES_StationOutBill_QtyCtlField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_QtyPreQtyCtl { + get { + return this.mES_StationOutBill_QtyPreQtyCtlField; + } + set { + this.mES_StationOutBill_QtyPreQtyCtlField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_QtyNextQtyCtl { + get { + return this.mES_StationOutBill_QtyNextQtyCtlField; + } + set { + this.mES_StationOutBill_QtyNextQtyCtlField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_ProcessCheckOut { + get { + return this.mES_StationOutBill_ProcessCheckOutField; + } + set { + this.mES_StationOutBill_ProcessCheckOutField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_FirstCheckOut { + get { + return this.mES_StationOutBill_FirstCheckOutField; + } + set { + this.mES_StationOutBill_FirstCheckOutField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_DeleteCtl { + get { + return this.mES_StationOutBill_DeleteCtlField; + } + set { + this.mES_StationOutBill_DeleteCtlField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_FstAutoICMOReport { + get { + return this.mES_StationOutBill_FstAutoICMOReportField; + } + set { + this.mES_StationOutBill_FstAutoICMOReportField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_LastAutoICMOReport { + get { + return this.mES_StationOutBill_LastAutoICMOReportField; + } + set { + this.mES_StationOutBill_LastAutoICMOReportField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_AutoStockIn { + get { + return this.mES_StationOutBill_AutoStockInField; + } + set { + this.mES_StationOutBill_AutoStockInField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_InStockType { + get { + return this.mES_StationOutBill_InStockTypeField; + } + set { + this.mES_StationOutBill_InStockTypeField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_AutoFindSNO { + get { + return this.mES_StationOutBill_AutoFindSNOField; + } + set { + this.mES_StationOutBill_AutoFindSNOField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_ShowUSERProcess { + get { + return this.mES_StationOutBill_ShowUSERProcessField; + } + set { + this.mES_StationOutBill_ShowUSERProcessField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_SaveAutoAddnew { + get { + return this.mES_StationOutBill_SaveAutoAddnewField; + } + set { + this.mES_StationOutBill_SaveAutoAddnewField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_DeleteRelationCtl { + get { + return this.mES_StationOutBill_DeleteRelationCtlField; + } + set { + this.mES_StationOutBill_DeleteRelationCtlField = value; + } + } + + /// <remarks/> + public string MES_StationOutBill_NextQtyCtl { + get { + return this.mES_StationOutBill_NextQtyCtlField; + } + set { + this.mES_StationOutBill_NextQtyCtlField = value; + } + } + + /// <remarks/> + public string QC_NoPassProdCheckBill_QtyCtl { + get { + return this.qC_NoPassProdCheckBill_QtyCtlField; + } + set { + this.qC_NoPassProdCheckBill_QtyCtlField = value; + } + } + + /// <remarks/> + public string QC_NoPassProdCheckBill_BadReasonQtyCtrl { + get { + return this.qC_NoPassProdCheckBill_BadReasonQtyCtrlField; + } + set { + this.qC_NoPassProdCheckBill_BadReasonQtyCtrlField = value; + } + } + + /// <remarks/> + public string QC_NoPassProdCheckBill_DeleteCtl { + get { + return this.qC_NoPassProdCheckBill_DeleteCtlField; + } + set { + this.qC_NoPassProdCheckBill_DeleteCtlField = value; + } + } + + /// <remarks/> + public string MES_StationEntrustInBill_FIFOCtl { + get { + return this.mES_StationEntrustInBill_FIFOCtlField; + } + set { + this.mES_StationEntrustInBill_FIFOCtlField = value; + } + } + + /// <remarks/> + public string MES_StationEntrustInBill_FullMoveCtl { + get { + return this.mES_StationEntrustInBill_FullMoveCtlField; + } + set { + this.mES_StationEntrustInBill_FullMoveCtlField = value; + } + } + + /// <remarks/> + public string MES_StationEntrustInBill_QtyCtl { + get { + return this.mES_StationEntrustInBill_QtyCtlField; + } + set { + this.mES_StationEntrustInBill_QtyCtlField = value; + } + } + + /// <remarks/> + public string MES_StationEntrustInBill_OneCtl { + get { + return this.mES_StationEntrustInBill_OneCtlField; + } + set { + this.mES_StationEntrustInBill_OneCtlField = value; + } + } + + /// <remarks/> + public string MES_StationEntrustInBill_DeleteCtl { + get { + return this.mES_StationEntrustInBill_DeleteCtlField; + } + set { + this.mES_StationEntrustInBill_DeleteCtlField = value; + } + } + + /// <remarks/> + public string MES_StationEntrustInBill_SaveAutoAddnew { + get { + return this.mES_StationEntrustInBill_SaveAutoAddnewField; + } + set { + this.mES_StationEntrustInBill_SaveAutoAddnewField = value; + } + } + + /// <remarks/> + public string MES_StationEntrustOutBill_QtyCtl { + get { + return this.mES_StationEntrustOutBill_QtyCtlField; + } + set { + this.mES_StationEntrustOutBill_QtyCtlField = value; + } + } + + /// <remarks/> + public string MES_StationEntrustOutBill_DeleteCtl { + get { + return this.mES_StationEntrustOutBill_DeleteCtlField; + } + set { + this.mES_StationEntrustOutBill_DeleteCtlField = value; + } + } + + /// <remarks/> + public string MES_StationEntrustOutBill_SaveAutoAddnew { + get { + return this.mES_StationEntrustOutBill_SaveAutoAddnewField; + } + set { + this.mES_StationEntrustOutBill_SaveAutoAddnewField = value; + } + } + + /// <remarks/> + public string Sc_MESBeginWorkBill_AutoCheck { + get { + return this.sc_MESBeginWorkBill_AutoCheckField; + } + set { + this.sc_MESBeginWorkBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Sc_MESReturnWorkBill_AutoCheck { + get { + return this.sc_MESReturnWorkBill_AutoCheckField; + } + set { + this.sc_MESReturnWorkBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Sc_MESEndWorkBill_AutoCheck { + get { + return this.sc_MESEndWorkBill_AutoCheckField; + } + set { + this.sc_MESEndWorkBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Sc_MESStopWorkBill_AutoCheck { + get { + return this.sc_MESStopWorkBill_AutoCheckField; + } + set { + this.sc_MESStopWorkBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Sc_ICMOBillWorkQtyStatus_AutoCheck { + get { + return this.sc_ICMOBillWorkQtyStatus_AutoCheckField; + } + set { + this.sc_ICMOBillWorkQtyStatus_AutoCheckField = value; + } + } + + /// <remarks/> + public string Sc_ICMOBillQualityStatus_AutoCheck { + get { + return this.sc_ICMOBillQualityStatus_AutoCheckField; + } + set { + this.sc_ICMOBillQualityStatus_AutoCheckField = value; + } + } + + /// <remarks/> + public string Sc_MaterToSourceBill_AutoCheck { + get { + return this.sc_MaterToSourceBill_AutoCheckField; + } + set { + this.sc_MaterToSourceBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Sc_MaterToSourceBill_MouldLifeCtrl { + get { + return this.sc_MaterToSourceBill_MouldLifeCtrlField; + } + set { + this.sc_MaterToSourceBill_MouldLifeCtrlField = value; + } + } + + /// <remarks/> + public string Sc_MaterToSourceBill_MouldLifeCtrlType { + get { + return this.sc_MaterToSourceBill_MouldLifeCtrlTypeField; + } + set { + this.sc_MaterToSourceBill_MouldLifeCtrlTypeField = value; + } + } + + /// <remarks/> + public string OA_ErrMsgBackBill_AutoCheck { + get { + return this.oA_ErrMsgBackBill_AutoCheckField; + } + set { + this.oA_ErrMsgBackBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Sc_MESProceReportWorkBill_AutoCheck { + get { + return this.sc_MESProceReportWorkBill_AutoCheckField; + } + set { + this.sc_MESProceReportWorkBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string QC_FirstPieceCheckBill_AutoCheck { + get { + return this.qC_FirstPieceCheckBill_AutoCheckField; + } + set { + this.qC_FirstPieceCheckBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Sc_MouldProdOutBill_AutoCheck { + get { + return this.sc_MouldProdOutBill_AutoCheckField; + } + set { + this.sc_MouldProdOutBill_AutoCheckField = value; + } + } + + /// <remarks/> + public string Sc_MouldProdOutBill_SaveAutoAddnew { + get { + return this.sc_MouldProdOutBill_SaveAutoAddnewField; + } + set { + this.sc_MouldProdOutBill_SaveAutoAddnewField = value; + } + } + + /// <remarks/> + public string Sc_MouldProdOutBill_MouldLifeCtrl { + get { + return this.sc_MouldProdOutBill_MouldLifeCtrlField; + } + set { + this.sc_MouldProdOutBill_MouldLifeCtrlField = value; + } + } + + /// <remarks/> + public string Sc_MouldProdOutBill_MouldLifeCtrlType { + get { + return this.sc_MouldProdOutBill_MouldLifeCtrlTypeField; + } + set { + this.sc_MouldProdOutBill_MouldLifeCtrlTypeField = value; + } + } + + /// <remarks/> + public string Gy_RoutingBill_SaveAutoLastProc { + get { + return this.gy_RoutingBill_SaveAutoLastProcField; + } + set { + this.gy_RoutingBill_SaveAutoLastProcField = value; + } + } + } + + /// <remarks/> + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsGy_BarCodeBill_WMS_Model_View))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] + public partial class ClsGy_BarCodeBill_WMS_Model { + + private long hItemIDField; + + private string hBarCodeField; + + private string hBatchNoField; + + private long hMaterIDField; + + private long hUnitIDField; + + private string hBarCodeTypeField; + + private double hQtyField; + + private long hSupIDField; + + private long hGroupIDField; + + private string hMakerField; + + private System.DateTime hMakeDateField; + + private string hRemarkField; + + private long hSourceInterIDField; + + private long hSourceEntryIDField; + + private string hSourceBillNoField; + + private string hSourceBillTypeField; + + private long hPrintQtyField; + + private long hDeptIDField; + + private double hinitQtyField; + + private string hMTONoField; + + private bool hStopflagField; + + private System.DateTime hProduceDateField; + + private System.DateTime hExpiryDateField; + + /// <remarks/> + public long HItemID { + get { + return this.hItemIDField; + } + set { + this.hItemIDField = value; + } + } + + /// <remarks/> + public string HBarCode { + get { + return this.hBarCodeField; + } + set { + this.hBarCodeField = value; + } + } + + /// <remarks/> + public string HBatchNo { + get { + return this.hBatchNoField; + } + set { + this.hBatchNoField = value; + } + } + + /// <remarks/> + public long HMaterID { + get { + return this.hMaterIDField; + } + set { + this.hMaterIDField = value; + } + } + + /// <remarks/> + public long HUnitID { + get { + return this.hUnitIDField; + } + set { + this.hUnitIDField = value; + } + } + + /// <remarks/> + public string HBarCodeType { + get { + return this.hBarCodeTypeField; + } + set { + this.hBarCodeTypeField = value; + } + } + + /// <remarks/> + public double HQty { + get { + return this.hQtyField; + } + set { + this.hQtyField = value; + } + } + + /// <remarks/> + public long HSupID { + get { + return this.hSupIDField; + } + set { + this.hSupIDField = value; + } + } + + /// <remarks/> + public long HGroupID { + get { + return this.hGroupIDField; + } + set { + this.hGroupIDField = value; + } + } + + /// <remarks/> + public string HMaker { + get { + return this.hMakerField; + } + set { + this.hMakerField = value; + } + } + + /// <remarks/> + public System.DateTime HMakeDate { + get { + return this.hMakeDateField; + } + set { + this.hMakeDateField = value; + } + } + + /// <remarks/> + public string HRemark { + get { + return this.hRemarkField; + } + set { + this.hRemarkField = value; + } + } + + /// <remarks/> + public long HSourceInterID { + get { + return this.hSourceInterIDField; + } + set { + this.hSourceInterIDField = value; + } + } + + /// <remarks/> + public long HSourceEntryID { + get { + return this.hSourceEntryIDField; + } + set { + this.hSourceEntryIDField = value; + } + } + + /// <remarks/> + public string HSourceBillNo { + get { + return this.hSourceBillNoField; + } + set { + this.hSourceBillNoField = value; + } + } + + /// <remarks/> + public string HSourceBillType { + get { + return this.hSourceBillTypeField; + } + set { + this.hSourceBillTypeField = value; + } + } + + /// <remarks/> + public long HPrintQty { + get { + return this.hPrintQtyField; + } + set { + this.hPrintQtyField = value; + } + } + + /// <remarks/> + public long HDeptID { + get { + return this.hDeptIDField; + } + set { + this.hDeptIDField = value; + } + } + + /// <remarks/> + public double HinitQty { + get { + return this.hinitQtyField; + } + set { + this.hinitQtyField = value; + } + } + + /// <remarks/> + public string HMTONo { + get { + return this.hMTONoField; + } + set { + this.hMTONoField = value; + } + } + + /// <remarks/> + public bool HStopflag { + get { + return this.hStopflagField; + } + set { + this.hStopflagField = value; + } + } + + /// <remarks/> + public System.DateTime HProduceDate { + get { + return this.hProduceDateField; + } + set { + this.hProduceDateField = value; + } + } + + /// <remarks/> + public System.DateTime HExpiryDate { + get { + return this.hExpiryDateField; + } + set { + this.hExpiryDateField = value; + } + } + } + + /// <remarks/> + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] + public partial class ClsGy_BarCodeBill_WMS_Model_View : ClsGy_BarCodeBill_WMS_Model { + + private string hMaterNumberField; + + private string hMaterNameField; + + private string hMaterModelField; + + private string hUnitNameField; + + private string hSupNameField; + + private string hGroupNameField; + + private string hDeptNameField; + + private long hErpClsIDField; + + private long hWHIDField; + + private long hSPIDField; + + private string hCusRelationNumberField; + + private string hBarCodeStatusField; + + private string hWHNameField; + + private System.DateTime hDateField; + + private long hInstructIDField; + + private string hInstructNoField; + + private long hSeOrderBillIDField; + + private string hSeOrderBillNoField; + + private long hCheckerIDField; + + private long hAuxPropIDField; + + private string hAuxPropNameField; + + private long hSTOCKORGIDField; + + private long hOWNERIDField; + + private double hSourceQtyField; + + private string hBarCode_PackField; + + /// <remarks/> + public string HMaterNumber { + get { + return this.hMaterNumberField; + } + set { + this.hMaterNumberField = value; + } + } + + /// <remarks/> + public string HMaterName { + get { + return this.hMaterNameField; + } + set { + this.hMaterNameField = value; + } + } + + /// <remarks/> + public string HMaterModel { + get { + return this.hMaterModelField; + } + set { + this.hMaterModelField = value; + } + } + + /// <remarks/> + public string HUnitName { + get { + return this.hUnitNameField; + } + set { + this.hUnitNameField = value; + } + } + + /// <remarks/> + public string HSupName { + get { + return this.hSupNameField; + } + set { + this.hSupNameField = value; + } + } + + /// <remarks/> + public string HGroupName { + get { + return this.hGroupNameField; + } + set { + this.hGroupNameField = value; + } + } + + /// <remarks/> + public string HDeptName { + get { + return this.hDeptNameField; + } + set { + this.hDeptNameField = value; + } + } + + /// <remarks/> + public long HErpClsID { + get { + return this.hErpClsIDField; + } + set { + this.hErpClsIDField = value; + } + } + + /// <remarks/> + public long HWHID { + get { + return this.hWHIDField; + } + set { + this.hWHIDField = value; + } + } + + /// <remarks/> + public long HSPID { + get { + return this.hSPIDField; + } + set { + this.hSPIDField = value; + } + } + + /// <remarks/> + public string HCusRelationNumber { + get { + return this.hCusRelationNumberField; + } + set { + this.hCusRelationNumberField = value; + } + } + + /// <remarks/> + public string HBarCodeStatus { + get { + return this.hBarCodeStatusField; + } + set { + this.hBarCodeStatusField = value; + } + } + + /// <remarks/> + public string HWHName { + get { + return this.hWHNameField; + } + set { + this.hWHNameField = value; + } + } + + /// <remarks/> + public System.DateTime HDate { + get { + return this.hDateField; + } + set { + this.hDateField = value; + } + } + + /// <remarks/> + public long HInstructID { + get { + return this.hInstructIDField; + } + set { + this.hInstructIDField = value; + } + } + + /// <remarks/> + public string HInstructNo { + get { + return this.hInstructNoField; + } + set { + this.hInstructNoField = value; + } + } + + /// <remarks/> + public long HSeOrderBillID { + get { + return this.hSeOrderBillIDField; + } + set { + this.hSeOrderBillIDField = value; + } + } + + /// <remarks/> + public string HSeOrderBillNo { + get { + return this.hSeOrderBillNoField; + } + set { + this.hSeOrderBillNoField = value; + } + } + + /// <remarks/> + public long HCheckerID { + get { + return this.hCheckerIDField; + } + set { + this.hCheckerIDField = value; + } + } + + /// <remarks/> + public long HAuxPropID { + get { + return this.hAuxPropIDField; + } + set { + this.hAuxPropIDField = value; + } + } + + /// <remarks/> + public string HAuxPropName { + get { + return this.hAuxPropNameField; + } + set { + this.hAuxPropNameField = value; + } + } + + /// <remarks/> + public long HSTOCKORGID { + get { + return this.hSTOCKORGIDField; + } + set { + this.hSTOCKORGIDField = value; + } + } + + /// <remarks/> + public long HOWNERID { + get { + return this.hOWNERIDField; + } + set { + this.hOWNERIDField = value; + } + } + + /// <remarks/> + public double HSourceQty { + get { + return this.hSourceQtyField; + } + set { + this.hSourceQtyField = value; + } + } + + /// <remarks/> + public string HBarCode_Pack { + get { + return this.hBarCode_PackField; + } + set { + this.hBarCode_PackField = value; + } + } + } + + /// <remarks/> + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] + public partial class ClsKf_ICStockBill_WMS { + + private long hItemIDField; + + private string hBarTypeField; + + private long hWhIDField; + + private string hWhNumberField; + + private string hWhNameField; + + private bool hSPFlagField; + + private long hSPIDField; + + private string hSPNumberField; + + private string hSPNameField; + + private long hSCWhIDField; + + private string hSCWhNumberField; + + private string hSCWhNameField; + + private bool hSCSPFlagField; + + private long hSCSPIDField; + + private string hSCSPNumberField; + + private string hSCSPNameField; + + private long hDeptIDField; + + private string hDeptNumberField; + + private string hDeptNameField; + + private long hSupIDField; + + private string hSupNumberField; + + private string hSupNameField; + + private string hSourceBillNoField; + + private string hSourceBillTypeField; + + private long hOWNERIDField; + + private string hOWNERNAMEField; + + private string hCustomField; + + private long hMulSourceFlagField; + + private string hStockStyleField; + + private long hStockInOrgIDField; + + private string hStockInOrgNameField; + + private long hStockOutOrgIDField; + + private string hStockOutOrgNameField; + + private long hInterIDField; + + private string hBillNoField; + + /// <remarks/> + public long HItemID { + get { + return this.hItemIDField; + } + set { + this.hItemIDField = value; + } + } + + /// <remarks/> + public string HBarType { + get { + return this.hBarTypeField; + } + set { + this.hBarTypeField = value; + } + } + + /// <remarks/> + public long HWhID { + get { + return this.hWhIDField; + } + set { + this.hWhIDField = value; + } + } + + /// <remarks/> + public string HWhNumber { + get { + return this.hWhNumberField; + } + set { + this.hWhNumberField = value; + } + } + + /// <remarks/> + public string HWhName { + get { + return this.hWhNameField; + } + set { + this.hWhNameField = value; + } + } + + /// <remarks/> + public bool HSPFlag { + get { + return this.hSPFlagField; + } + set { + this.hSPFlagField = value; + } + } + + /// <remarks/> + public long HSPID { + get { + return this.hSPIDField; + } + set { + this.hSPIDField = value; + } + } + + /// <remarks/> + public string HSPNumber { + get { + return this.hSPNumberField; + } + set { + this.hSPNumberField = value; + } + } + + /// <remarks/> + public string HSPName { + get { + return this.hSPNameField; + } + set { + this.hSPNameField = value; + } + } + + /// <remarks/> + public long HSCWhID { + get { + return this.hSCWhIDField; + } + set { + this.hSCWhIDField = value; + } + } + + /// <remarks/> + public string HSCWhNumber { + get { + return this.hSCWhNumberField; + } + set { + this.hSCWhNumberField = value; + } + } + + /// <remarks/> + public string HSCWhName { + get { + return this.hSCWhNameField; + } + set { + this.hSCWhNameField = value; + } + } + + /// <remarks/> + public bool HSCSPFlag { + get { + return this.hSCSPFlagField; + } + set { + this.hSCSPFlagField = value; + } + } + + /// <remarks/> + public long HSCSPID { + get { + return this.hSCSPIDField; + } + set { + this.hSCSPIDField = value; + } + } + + /// <remarks/> + public string HSCSPNumber { + get { + return this.hSCSPNumberField; + } + set { + this.hSCSPNumberField = value; + } + } + + /// <remarks/> + public string HSCSPName { + get { + return this.hSCSPNameField; + } + set { + this.hSCSPNameField = value; + } + } + + /// <remarks/> + public long HDeptID { + get { + return this.hDeptIDField; + } + set { + this.hDeptIDField = value; + } + } + + /// <remarks/> + public string HDeptNumber { + get { + return this.hDeptNumberField; + } + set { + this.hDeptNumberField = value; + } + } + + /// <remarks/> + public string HDeptName { + get { + return this.hDeptNameField; + } + set { + this.hDeptNameField = value; + } + } + + /// <remarks/> + public long HSupID { + get { + return this.hSupIDField; + } + set { + this.hSupIDField = value; + } + } + + /// <remarks/> + public string HSupNumber { + get { + return this.hSupNumberField; + } + set { + this.hSupNumberField = value; + } + } + + /// <remarks/> + public string HSupName { + get { + return this.hSupNameField; + } + set { + this.hSupNameField = value; + } + } + + /// <remarks/> + public string HSourceBillNo { + get { + return this.hSourceBillNoField; + } + set { + this.hSourceBillNoField = value; + } + } + + /// <remarks/> + public string HSourceBillType { + get { + return this.hSourceBillTypeField; + } + set { + this.hSourceBillTypeField = value; + } + } + + /// <remarks/> + public long HOWNERID { + get { + return this.hOWNERIDField; + } + set { + this.hOWNERIDField = value; + } + } + + /// <remarks/> + public string HOWNERNAME { + get { + return this.hOWNERNAMEField; + } + set { + this.hOWNERNAMEField = value; + } + } + + /// <remarks/> + public string HCustom { + get { + return this.hCustomField; + } + set { + this.hCustomField = value; + } + } + + /// <remarks/> + public long HMulSourceFlag { + get { + return this.hMulSourceFlagField; + } + set { + this.hMulSourceFlagField = value; + } + } + + /// <remarks/> + public string HStockStyle { + get { + return this.hStockStyleField; + } + set { + this.hStockStyleField = value; + } + } + + /// <remarks/> + public long HStockInOrgID { + get { + return this.hStockInOrgIDField; + } + set { + this.hStockInOrgIDField = value; + } + } + + /// <remarks/> + public string HStockInOrgName { + get { + return this.hStockInOrgNameField; + } + set { + this.hStockInOrgNameField = value; + } + } + + /// <remarks/> + public long HStockOutOrgID { + get { + return this.hStockOutOrgIDField; + } + set { + this.hStockOutOrgIDField = value; + } + } + + /// <remarks/> + public string HStockOutOrgName { + get { + return this.hStockOutOrgNameField; + } + set { + this.hStockOutOrgNameField = value; + } + } + + /// <remarks/> + public long HInterID { + get { + return this.hInterIDField; + } + set { + this.hInterIDField = value; + } + } + + /// <remarks/> + public string HBillNo { + get { + return this.hBillNoField; + } + set { + this.hBillNoField = value; } } } @@ -42213,6140 +48491,103 @@ } /// <remarks/> - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] + public delegate void set_SaveMouldStockBill_NewCompletedEventHandler(object sender, set_SaveMouldStockBill_NewCompletedEventArgs e); + + /// <remarks/> + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] - public partial class ClsSc_MouldStockBillMain : ClsXt_BaseBillMain { + public partial class set_SaveMouldStockBill_NewCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { - private long hSCWHIDField; + private object[] results; - private long hSupIDField; - - private long hEmpIDField; - - private long hManagerIDField; - - private long hWHIDField; - - private long hSecManagerIDField; - - private long hKeeperIDField; - - private long hDeptIDField; - - private string hExplanationField; - - private string hInnerBillNoField; - - private bool hRedBlueFlagField; - - private string hRepairTypeField; - - private long hCorrespondentTypeIDField; + internal set_SaveMouldStockBill_NewCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } /// <remarks/> - public long HSCWHID { + public bool Result { get { - return this.hSCWHIDField; - } - set { - this.hSCWHIDField = value; + this.RaiseExceptionIfNecessary(); + return ((bool)(this.results[0])); } } /// <remarks/> - public long HSupID { + public string sErrMsg { get { - return this.hSupIDField; - } - set { - this.hSupIDField = value; - } - } - - /// <remarks/> - public long HEmpID { - get { - return this.hEmpIDField; - } - set { - this.hEmpIDField = value; - } - } - - /// <remarks/> - public long HManagerID { - get { - return this.hManagerIDField; - } - set { - this.hManagerIDField = value; - } - } - - /// <remarks/> - public long HWHID { - get { - return this.hWHIDField; - } - set { - this.hWHIDField = value; - } - } - - /// <remarks/> - public long HSecManagerID { - get { - return this.hSecManagerIDField; - } - set { - this.hSecManagerIDField = value; - } - } - - /// <remarks/> - public long HKeeperID { - get { - return this.hKeeperIDField; - } - set { - this.hKeeperIDField = value; - } - } - - /// <remarks/> - public long HDeptID { - get { - return this.hDeptIDField; - } - set { - this.hDeptIDField = value; - } - } - - /// <remarks/> - public string HExplanation { - get { - return this.hExplanationField; - } - set { - this.hExplanationField = value; - } - } - - /// <remarks/> - public string HInnerBillNo { - get { - return this.hInnerBillNoField; - } - set { - this.hInnerBillNoField = value; - } - } - - /// <remarks/> - public bool HRedBlueFlag { - get { - return this.hRedBlueFlagField; - } - set { - this.hRedBlueFlagField = value; - } - } - - /// <remarks/> - public string HRepairType { - get { - return this.hRepairTypeField; - } - set { - this.hRepairTypeField = value; - } - } - - /// <remarks/> - public long HCorrespondentTypeID { - get { - return this.hCorrespondentTypeIDField; - } - set { - this.hCorrespondentTypeIDField = value; + this.RaiseExceptionIfNecessary(); + return ((string)(this.results[1])); } } } /// <remarks/> - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] + public delegate void MouldTempList_ModifyCompletedEventHandler(object sender, MouldTempList_ModifyCompletedEventArgs e); + + /// <remarks/> + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] - public partial class ClsKF_PonderationBillMain_Temp { + public partial class MouldTempList_ModifyCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { - private long hItemIDField; + private object[] results; - private long hInterIDField; - - private string hBillNoField; - - private string hBillTypeField; - - private long hMaterIDField; - - private string hMaterNumberField; - - private string hMaterNameField; - - private string hMaterModelField; - - private long hProcIDField; - - private string hProcNameField; - - private long hWhIDField; - - private string hWhNameField; - - private long hSCWHIDField; - - private string hSCWHNameField; - - private long hStockPlaceIDField; - - private string hStockPlaceNameField; - - private long hOutStockPlaceIDField; - - private string hOutStockPlaceNameField; - - private long hGroupIDField; - - private string hGroupNameField; - - private double hQtyMustField; - - private double hQtyField; - - private double hPieceQtyField; - - private string hBarCodeField; - - private string hAddrField; - - private string hMakerField; - - private System.DateTime hMakeDateField; - - private long hSourceInterIDField; - - private long hSourceEntryIDField; - - private string hSourceBillNoField; - - private string hSourceBillTypeField; - - private long hRelationInterIDField; - - private long hRelationEntryIDField; - - private string hRelationBillNoField; - - private long hErpClsIDField; - - private bool hRedBlueFlagField; - - private string hBatchNoField; - - private long hInstructIDField; - - private string hInstructNoField; - - private long hSeOrderBillIDField; - - private string hSeOrderBillNoField; - - private string hNordanField; - - private long hAuxPropIDField; - - private string hMTONoField; - - private long hSTOCKORGIDField; - - private long hOWNERIDField; - - private string hCusBarCodeField; - - private string hSubBillTypeField; - - private long hMulSourceBillField; - - private string hBeginDateField; - - private string hEndDateField; - - private long hUnitIDField; + internal MouldTempList_ModifyCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } /// <remarks/> - public long HItemID { + public bool Result { get { - return this.hItemIDField; - } - set { - this.hItemIDField = value; + this.RaiseExceptionIfNecessary(); + return ((bool)(this.results[0])); } } /// <remarks/> - public long HInterID { + public string sErrMsg { get { - return this.hInterIDField; - } - set { - this.hInterIDField = value; - } - } - - /// <remarks/> - public string HBillNo { - get { - return this.hBillNoField; - } - set { - this.hBillNoField = value; - } - } - - /// <remarks/> - public string HBillType { - get { - return this.hBillTypeField; - } - set { - this.hBillTypeField = value; - } - } - - /// <remarks/> - public long HMaterID { - get { - return this.hMaterIDField; - } - set { - this.hMaterIDField = value; - } - } - - /// <remarks/> - public string HMaterNumber { - get { - return this.hMaterNumberField; - } - set { - this.hMaterNumberField = value; - } - } - - /// <remarks/> - public string HMaterName { - get { - return this.hMaterNameField; - } - set { - this.hMaterNameField = value; - } - } - - /// <remarks/> - public string HMaterModel { - get { - return this.hMaterModelField; - } - set { - this.hMaterModelField = value; - } - } - - /// <remarks/> - public long HProcID { - get { - return this.hProcIDField; - } - set { - this.hProcIDField = value; - } - } - - /// <remarks/> - public string HProcName { - get { - return this.hProcNameField; - } - set { - this.hProcNameField = value; - } - } - - /// <remarks/> - public long HWhID { - get { - return this.hWhIDField; - } - set { - this.hWhIDField = value; - } - } - - /// <remarks/> - public string HWhName { - get { - return this.hWhNameField; - } - set { - this.hWhNameField = value; - } - } - - /// <remarks/> - public long HSCWHID { - get { - return this.hSCWHIDField; - } - set { - this.hSCWHIDField = value; - } - } - - /// <remarks/> - public string HSCWHName { - get { - return this.hSCWHNameField; - } - set { - this.hSCWHNameField = value; - } - } - - /// <remarks/> - public long HStockPlaceID { - get { - return this.hStockPlaceIDField; - } - set { - this.hStockPlaceIDField = value; - } - } - - /// <remarks/> - public string HStockPlaceName { - get { - return this.hStockPlaceNameField; - } - set { - this.hStockPlaceNameField = value; - } - } - - /// <remarks/> - public long HOutStockPlaceID { - get { - return this.hOutStockPlaceIDField; - } - set { - this.hOutStockPlaceIDField = value; - } - } - - /// <remarks/> - public string HOutStockPlaceName { - get { - return this.hOutStockPlaceNameField; - } - set { - this.hOutStockPlaceNameField = value; - } - } - - /// <remarks/> - public long HGroupID { - get { - return this.hGroupIDField; - } - set { - this.hGroupIDField = value; - } - } - - /// <remarks/> - public string HGroupName { - get { - return this.hGroupNameField; - } - set { - this.hGroupNameField = value; - } - } - - /// <remarks/> - public double HQtyMust { - get { - return this.hQtyMustField; - } - set { - this.hQtyMustField = value; - } - } - - /// <remarks/> - public double HQty { - get { - return this.hQtyField; - } - set { - this.hQtyField = value; - } - } - - /// <remarks/> - public double HPieceQty { - get { - return this.hPieceQtyField; - } - set { - this.hPieceQtyField = value; - } - } - - /// <remarks/> - public string HBarCode { - get { - return this.hBarCodeField; - } - set { - this.hBarCodeField = value; - } - } - - /// <remarks/> - public string HAddr { - get { - return this.hAddrField; - } - set { - this.hAddrField = value; - } - } - - /// <remarks/> - public string HMaker { - get { - return this.hMakerField; - } - set { - this.hMakerField = value; - } - } - - /// <remarks/> - public System.DateTime HMakeDate { - get { - return this.hMakeDateField; - } - set { - this.hMakeDateField = value; - } - } - - /// <remarks/> - public long HSourceInterID { - get { - return this.hSourceInterIDField; - } - set { - this.hSourceInterIDField = value; - } - } - - /// <remarks/> - public long HSourceEntryID { - get { - return this.hSourceEntryIDField; - } - set { - this.hSourceEntryIDField = value; - } - } - - /// <remarks/> - public string HSourceBillNo { - get { - return this.hSourceBillNoField; - } - set { - this.hSourceBillNoField = value; - } - } - - /// <remarks/> - public string HSourceBillType { - get { - return this.hSourceBillTypeField; - } - set { - this.hSourceBillTypeField = value; - } - } - - /// <remarks/> - public long HRelationInterID { - get { - return this.hRelationInterIDField; - } - set { - this.hRelationInterIDField = value; - } - } - - /// <remarks/> - public long HRelationEntryID { - get { - return this.hRelationEntryIDField; - } - set { - this.hRelationEntryIDField = value; - } - } - - /// <remarks/> - public string HRelationBillNo { - get { - return this.hRelationBillNoField; - } - set { - this.hRelationBillNoField = value; - } - } - - /// <remarks/> - public long HErpClsID { - get { - return this.hErpClsIDField; - } - set { - this.hErpClsIDField = value; - } - } - - /// <remarks/> - public bool HRedBlueFlag { - get { - return this.hRedBlueFlagField; - } - set { - this.hRedBlueFlagField = value; - } - } - - /// <remarks/> - public string HBatchNo { - get { - return this.hBatchNoField; - } - set { - this.hBatchNoField = value; - } - } - - /// <remarks/> - public long HInstructID { - get { - return this.hInstructIDField; - } - set { - this.hInstructIDField = value; - } - } - - /// <remarks/> - public string HInstructNo { - get { - return this.hInstructNoField; - } - set { - this.hInstructNoField = value; - } - } - - /// <remarks/> - public long HSeOrderBillID { - get { - return this.hSeOrderBillIDField; - } - set { - this.hSeOrderBillIDField = value; - } - } - - /// <remarks/> - public string HSeOrderBillNo { - get { - return this.hSeOrderBillNoField; - } - set { - this.hSeOrderBillNoField = value; - } - } - - /// <remarks/> - public string HNordan { - get { - return this.hNordanField; - } - set { - this.hNordanField = value; - } - } - - /// <remarks/> - public long HAuxPropID { - get { - return this.hAuxPropIDField; - } - set { - this.hAuxPropIDField = value; - } - } - - /// <remarks/> - public string HMTONo { - get { - return this.hMTONoField; - } - set { - this.hMTONoField = value; - } - } - - /// <remarks/> - public long HSTOCKORGID { - get { - return this.hSTOCKORGIDField; - } - set { - this.hSTOCKORGIDField = value; - } - } - - /// <remarks/> - public long HOWNERID { - get { - return this.hOWNERIDField; - } - set { - this.hOWNERIDField = value; - } - } - - /// <remarks/> - public string HCusBarCode { - get { - return this.hCusBarCodeField; - } - set { - this.hCusBarCodeField = value; - } - } - - /// <remarks/> - public string HSubBillType { - get { - return this.hSubBillTypeField; - } - set { - this.hSubBillTypeField = value; - } - } - - /// <remarks/> - public long HMulSourceBill { - get { - return this.hMulSourceBillField; - } - set { - this.hMulSourceBillField = value; - } - } - - /// <remarks/> - public string HBeginDate { - get { - return this.hBeginDateField; - } - set { - this.hBeginDateField = value; - } - } - - /// <remarks/> - public string HEndDate { - get { - return this.hEndDateField; - } - set { - this.hEndDateField = value; - } - } - - /// <remarks/> - public long HUnitID { - get { - return this.hUnitIDField; - } - set { - this.hUnitIDField = value; + this.RaiseExceptionIfNecessary(); + return ((string)(this.results[1])); } } } /// <remarks/> - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] - public partial class ClsKf_ICStockBill_Mould { - - private long hItemIDField; - - private string hBarTypeField; - - private long hWhIDField; - - private string hWhNumberField; - - private string hWhNameField; - - private bool hSPFlagField; - - private long hSPIDField; - - private string hSPNumberField; - - private string hSPNameField; - - private long hDeptIDField; - - private string hDeptNumberField; - - private string hDeptNameField; - - private long hSupIDField; - - private string hSupNumberField; - - private string hSupNameField; - - private string hSourceBillNoField; - - private string hSourceBillTypeField; - - private long hOWNERIDField; - - private string hOWNERNAMEField; - - private string hCustomField; - - private long hMulSourceFlagField; - - private string hStockStyleField; - - private long hStockInOrgIDField; - - private string hStockInOrgNameField; - - private long hStockOutOrgIDField; - - private string hStockOutOrgNameField; - - /// <remarks/> - public long HItemID { - get { - return this.hItemIDField; - } - set { - this.hItemIDField = value; - } - } - - /// <remarks/> - public string HBarType { - get { - return this.hBarTypeField; - } - set { - this.hBarTypeField = value; - } - } - - /// <remarks/> - public long HWhID { - get { - return this.hWhIDField; - } - set { - this.hWhIDField = value; - } - } - - /// <remarks/> - public string HWhNumber { - get { - return this.hWhNumberField; - } - set { - this.hWhNumberField = value; - } - } - - /// <remarks/> - public string HWhName { - get { - return this.hWhNameField; - } - set { - this.hWhNameField = value; - } - } - - /// <remarks/> - public bool HSPFlag { - get { - return this.hSPFlagField; - } - set { - this.hSPFlagField = value; - } - } - - /// <remarks/> - public long HSPID { - get { - return this.hSPIDField; - } - set { - this.hSPIDField = value; - } - } - - /// <remarks/> - public string HSPNumber { - get { - return this.hSPNumberField; - } - set { - this.hSPNumberField = value; - } - } - - /// <remarks/> - public string HSPName { - get { - return this.hSPNameField; - } - set { - this.hSPNameField = value; - } - } - - /// <remarks/> - public long HDeptID { - get { - return this.hDeptIDField; - } - set { - this.hDeptIDField = value; - } - } - - /// <remarks/> - public string HDeptNumber { - get { - return this.hDeptNumberField; - } - set { - this.hDeptNumberField = value; - } - } - - /// <remarks/> - public string HDeptName { - get { - return this.hDeptNameField; - } - set { - this.hDeptNameField = value; - } - } - - /// <remarks/> - public long HSupID { - get { - return this.hSupIDField; - } - set { - this.hSupIDField = value; - } - } - - /// <remarks/> - public string HSupNumber { - get { - return this.hSupNumberField; - } - set { - this.hSupNumberField = value; - } - } - - /// <remarks/> - public string HSupName { - get { - return this.hSupNameField; - } - set { - this.hSupNameField = value; - } - } - - /// <remarks/> - public string HSourceBillNo { - get { - return this.hSourceBillNoField; - } - set { - this.hSourceBillNoField = value; - } - } - - /// <remarks/> - public string HSourceBillType { - get { - return this.hSourceBillTypeField; - } - set { - this.hSourceBillTypeField = value; - } - } - - /// <remarks/> - public long HOWNERID { - get { - return this.hOWNERIDField; - } - set { - this.hOWNERIDField = value; - } - } - - /// <remarks/> - public string HOWNERNAME { - get { - return this.hOWNERNAMEField; - } - set { - this.hOWNERNAMEField = value; - } - } - - /// <remarks/> - public string HCustom { - get { - return this.hCustomField; - } - set { - this.hCustomField = value; - } - } - - /// <remarks/> - public long HMulSourceFlag { - get { - return this.hMulSourceFlagField; - } - set { - this.hMulSourceFlagField = value; - } - } - - /// <remarks/> - public string HStockStyle { - get { - return this.hStockStyleField; - } - set { - this.hStockStyleField = value; - } - } - - /// <remarks/> - public long HStockInOrgID { - get { - return this.hStockInOrgIDField; - } - set { - this.hStockInOrgIDField = value; - } - } - - /// <remarks/> - public string HStockInOrgName { - get { - return this.hStockInOrgNameField; - } - set { - this.hStockInOrgNameField = value; - } - } - - /// <remarks/> - public long HStockOutOrgID { - get { - return this.hStockOutOrgIDField; - } - set { - this.hStockOutOrgIDField = value; - } - } - - /// <remarks/> - public string HStockOutOrgName { - get { - return this.hStockOutOrgNameField; - } - set { - this.hStockOutOrgNameField = value; - } - } - } + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] + public delegate void GetMouldSourceCompletedEventHandler(object sender, GetMouldSourceCompletedEventArgs e); /// <remarks/> - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] - public partial class ClsXt_SystemParameterMain { + public partial class GetMouldSourceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { - private string sc_ICMOReportBill_AutoCheckField; + private object[] results; - private string sc_ICMOReportBill_ERPModeField; - - private string sc_ICMOReportBill_MustQtyCtlField; - - private string sc_ICMOReportBill_MulSourceBillField; - - private string sc_ICMOReportBill_BillTypeOneScanField; - - private string sc_ICMOReportBill_SourceBillCtlField; - - private string sc_ICMOReportBill_BatchNoCtlField; - - private string sc_ICMOReportBill_MultilineCtlField; - - private string sc_ICMOReportBill_MaterWHSPCtlField; - - private string sc_ICMOReportBill_SourceWHSPCtlField; - - private string sc_ICMOReportBill_UpdateSourceInterIDField; - - private string sc_ICMOReportBill_MESFlagField; - - private string sc_ICMOReportBill_FirstCheckOutField; - - private string sc_ICMOReportBill_DeleterAndMakerMustSameField; - - private string cg_POInStockBill_AutoCheckField; - - private string cg_POInStockBill_ERPModeField; - - private string cg_POInStockBill_BarCodeCtlField; - - private string kf_POStockInBill_AutoCheckField; - - private string kf_POStockInBill_ERPModeField; - - private string kf_POStockInBill_MustQtyCtlField; - - private string kf_POStockInBill_MulSourceBillField; - - private string kf_POStockInBill_BillTypeOneScanField; - - private string kf_POStockInBill_SourceBillCtlField; - - private string kf_POStockInBill_BatchNoCtlField; - - private string kf_POStockInBill_MultilineCtlField; - - private string kf_POStockInBill_MaterWHSPCtlField; - - private string kf_POStockInBill_SourceWHSPCtlField; - - private string kf_POStockInBill_AutoBarCodeField; - - private string kf_POStockInBill_DeleterAndMakerMustSameField; - - private string kf_ProductInBill_AutoCheckField; - - private string kf_ProductInBill_ERPModeField; - - private string kf_ProductInBill_MustQtyCtlField; - - private string kf_ProductInBill_MulSourceBillField; - - private string kf_ProductInBill_BillTypeOneScanField; - - private string kf_ProductInBill_SourceBillCtlField; - - private string kf_ProductInBill_BatchNoCtlField; - - private string kf_ProductInBill_MultilineCtlField; - - private string kf_ProductInBill_MaterWHSPCtlField; - - private string kf_ProductInBill_SourceWHSPCtlField; - - private string kf_ProductInBill_DisplayField; - - private string kf_ProductInBill_DeleterAndMakerMustSameField; - - private string kf_OtherInBill_AutoCheckField; - - private string kf_OtherInBill_ERPModeField; - - private string kf_OtherInBill_MustQtyCtlField; - - private string kf_OtherInBill_MulSourceBillField; - - private string kf_OtherInBill_BillTypeOneScanField; - - private string kf_OtherInBill_SourceBillCtlField; - - private string kf_OtherInBill_BatchNoCtlField; - - private string kf_OtherInBill_MultilineCtlField; - - private string kf_OtherInBill_MaterWHSPCtlField; - - private string kf_OtherInBill_SourceWHSPCtlField; - - private string kf_OtherInBill_DeleterAndMakerMustSameField; - - private string kf_OtherInBillCheck_MustQtyCtlField; - - private string kf_OtherInBillCheck_WHSPCtlField; - - private string kf_OtherInBillCheck_MultilineCtlField; - - private string kf_EntrustInBill_AutoCheckField; - - private string kf_EntrustInBill_ERPModeField; - - private string kf_EntrustInBill_MustQtyCtlField; - - private string kf_EntrustInBill_MulSourceBillField; - - private string kf_EntrustInBill_BillTypeOneScanField; - - private string kf_EntrustInBill_SourceBillCtlField; - - private string kf_EntrustInBill_BatchNoCtlField; - - private string kf_EntrustInBill_MultilineCtlField; - - private string kf_EntrustInBill_MaterWHSPCtlField; - - private string kf_EntrustInBill_SourceWHSPCtlField; - - private string kf_EntrustInBill_DeleterAndMakerMustSameField; - - private string kf_MateOutBill_AutoCheckField; - - private string kf_MateOutBill_ERPModeField; - - private string kf_MateOutBill_MustQtyCtlField; - - private string kf_MateOutBill_MulSourceBillField; - - private string kf_MateOutBill_BillTypeOneScanField; - - private string kf_MateOutBill_BatchNoCtlField; - - private string kf_MateOutBill_MultilineCtlField; - - private string kf_MateOutBill_MaterWHSPCtlField; - - private string kf_MateOutBill_SourceWHSPCtlField; - - private string kf_MateOutBill_FIFOListField; - - private string kf_MateOutBill_FIFOCtlField; - - private string kf_MateOutBill_SimpleModeField; - - private string kf_MateOutBill_AutoBarCodeField; - - private string kf_MateOutBill_DeleterAndMakerMustSameField; - - private string kf_MateOutBillCheck_MustQtyCtlField; - - private string kf_MateOutBillCheck_WHSPCtlField; - - private string kf_MateOutBillCheck_MultilineCtlField; - - private string kf_SellOutBill_AutoCheckField; - - private string kf_SellOutBill_ERPModeField; - - private string kf_SellOutBill_MustQtyCtlField; - - private string kf_SellOutBill_MulSourceBillField; - - private string kf_SellOutBill_BillTypeOneScanField; - - private string kf_SellOutBill_BatchNoCtlField; - - private string kf_SellOutBill_MultilineCtlField; - - private string kf_SellOutBill_MaterWHSPCtlField; - - private string kf_SellOutBill_SourceWHSPCtlField; - - private string kf_SellOutBill_FIFOListField; - - private string kf_SellOutBill_FIFOCtlField; - - private string kf_SellOutBill_AutoSavePOStockInBillField; - - private string kf_SellOutBill_NoRefreshField; - - private string kf_SellOutBill_DisplayField; - - private string kf_SellOutBill_DeleterAndMakerMustSameField; - - private string kf_SellOutBillCheck_MustQtyCtlField; - - private string kf_SellOutBillCheck_WHSPCtlField; - - private string kf_SellOutBillCheck_MultilineCtlField; - - private string kf_SellOutBillCheck_SourceBarCodeCtlField; - - private string kf_OtherOutBill_AutoCheckField; - - private string kf_OtherOutBill_ERPModeField; - - private string kf_OtherOutBill_MustQtyCtlField; - - private string kf_OtherOutBill_MulSourceBillField; - - private string kf_OtherOutBill_BillTypeOneScanField; - - private string kf_OtherOutBill_BatchNoCtlField; - - private string kf_OtherOutBill_MultilineCtlField; - - private string kf_OtherOutBill_MaterWHSPCtlField; - - private string kf_OtherOutBill_SourceWHSPCtlField; - - private string kf_OtherOutBill_FIFOListField; - - private string kf_OtherOutBill_FIFOCtlField; - - private string kf_OtherOutBill_DeleterAndMakerMustSameField; - - private string kf_OtherOutBillCheck_MustQtyCtlField; - - private string kf_OtherOutBillCheck_WHSPCtlField; - - private string kf_OtherOutBillCheck_MultilineCtlField; - - private string kf_EntrustOutBill_AutoCheckField; - - private string kf_EntrustOutBill_ERPModeField; - - private string kf_EntrustOutBill_MustQtyCtlField; - - private string kf_EntrustOutBill_MulSourceBillField; - - private string kf_EntrustOutBill_BillTypeOneScanField; - - private string kf_EntrustOutBill_BatchNoCtlField; - - private string kf_EntrustOutBill_MultilineCtlField; - - private string kf_EntrustOutBill_MaterWHSPCtlField; - - private string kf_EntrustOutBill_SourceWHSPCtlField; - - private string kf_EntrustOutBill_FIFOListField; - - private string kf_EntrustOutBill_FIFOCtlField; - - private string kf_EntrustOutBill_SimpleModeField; - - private string kf_EntrustOutBill_DeleterAndMakerMustSameField; - - private string kf_EntrustOutBillCheck_MustQtyCtlField; - - private string kf_EntrustOutBillCheck_WHSPCtlField; - - private string kf_EntrustOutBillCheck_MultilineCtlField; - - private string kf_MateReplenishOutBill_AutoCheckField; - - private string kf_MateReplenishOutBill_ERPModeField; - - private string kf_MateReplenishOutBill_MustQtyCtlField; - - private string kf_MateReplenishOutBill_MulSourceBillField; - - private string kf_MateReplenishOutBill_BillTypeOneScanField; - - private string kf_MateReplenishOutBill_BatchNoCtlField; - - private string kf_MateReplenishOutBill_MultilineCtlField; - - private string kf_MateReplenishOutBill_MaterWHSPCtlField; - - private string kf_MateReplenishOutBill_SourceWHSPCtlField; - - private string kf_MateReplenishOutBill_DeleterAndMakerMustSameField; - - private string kf_MateReplenishOutBillCheck_MustQtyCtlField; - - private string kf_MateReplenishOutBillCheck_WHSPCtlField; - - private string kf_MateReplenishOutBillCheck_MultilineCtlField; - - private string kf_EntrustReplenishOutBill_AutoCheckField; - - private string kf_EntrustReplenishOutBill_ERPModeField; - - private string kf_EntrustReplenishOutBill_MustQtyCtlField; - - private string kf_EntrustReplenishOutBill_MulSourceBillField; - - private string kf_EntrustReplenishOutBill_BillTypeOneScanField; - - private string kf_EntrustReplenishOutBill_BatchNoCtlField; - - private string kf_EntrustReplenishOutBill_MultilineCtlField; - - private string kf_EntrustReplenishOutBill_MaterWHSPCtlField; - - private string kf_EntrustReplenishOutBill_SourceWHSPCtlField; - - private string kf_EntrustReplenishOutBill_DeleterAndMakerMustSameField; - - private string kf_EntrustReplenishOutBillCheck_MustQtyCtlField; - - private string kf_EntrustReplenishOutBillCheck_WHSPCtlField; - - private string kf_EntrustReplenishOutBillCheck_MultilineCtlField; - - private string kf_MoveStockBill_AutoCheckField; - - private string kf_MoveStockBill_ERPModeField; - - private string kf_MoveStockBill_MustQtyCtlField; - - private string kf_MoveStockBill_MulSourceBillField; - - private string kf_MoveStockBill_BillTypeOneScanField; - - private string kf_MoveStockBill_BatchNoCtlField; - - private string kf_MoveStockBill_MultilineCtlField; - - private string kf_MoveStockBill_MaterWHSPCtlField; - - private string kf_MoveStockBill_SourceWHSPCtlField; - - private string kf_MoveStockBill_FIFOListField; - - private string kf_MoveStockBill_FIFOCtlField; - - private string kf_MoveStockBill_DisplayField; - - private string kf_MoveStockBill_DeleterAndMakerMustSameField; - - private string kf_MoveStockBillCheck_MustQtyCtlField; - - private string kf_MoveStockBillCheck_WHSPCtlField; - - private string kf_MoveStockBillCheck_MultilineCtlField; - - private string kf_MoveStockStepOutBill_AutoCheckField; - - private string kf_MoveStockStepOutBill_ERPModeField; - - private string kf_MoveStockStepOutBill_MustQtyCtlField; - - private string kf_MoveStockStepOutBill_MulSourceBillField; - - private string kf_MoveStockStepOutBill_BillTypeOneScanField; - - private string kf_MoveStockStepOutBill_BatchNoCtlField; - - private string kf_MoveStockStepOutBill_MultilineCtlField; - - private string kf_MoveStockStepOutBill_MaterWHSPCtlField; - - private string kf_MoveStockStepOutBill_SourceWHSPCtlField; - - private string kf_MoveStockStepOutBill_FIFOListField; - - private string kf_MoveStockStepOutBill_FIFOCtlField; - - private string kf_MoveStockStepOutBill_DeleterAndMakerMustSameField; - - private string kf_MoveStockStepInBill_AutoCheckField; - - private string kf_MoveStockStepInBill_ERPModeField; - - private string kf_MoveStockStepInBill_MustQtyCtlField; - - private string kf_MoveStockStepInBill_MulSourceBillField; - - private string kf_MoveStockStepInBill_BillTypeOneScanField; - - private string kf_MoveStockStepInBill_BatchNoCtlField; - - private string kf_MoveStockStepInBill_MultilineCtlField; - - private string kf_MoveStockStepInBill_MaterWHSPCtlField; - - private string kf_MoveStockStepInBill_SourceWHSPCtlField; - - private string kf_MoveStockStepInBill_FIFOListField; - - private string kf_MoveStockStepInBill_FIFOCtlField; - - private string kf_MoveStockStepInBill_SourceBarCodeCtlField; - - private string kf_MoveStockStepInBill_DeleterAndMakerMustSameField; - - private string kf_POStockInBackBill_AutoCheckField; - - private string kf_POStockInBackBill_ERPModeField; - - private string kf_POStockInBackBill_MustQtyCtlField; - - private string kf_POStockInBackBill_MulSourceBillField; - - private string kf_POStockInBackBill_BillTypeOneScanField; - - private string kf_POStockInBackBill_BatchNoCtlField; - - private string kf_POStockInBackBill_MultilineCtlField; - - private string kf_POStockInBackBill_MaterWHSPCtlField; - - private string kf_POStockInBackBill_SourceWHSPCtlField; - - private string kf_POStockInBackBill_DeleterAndMakerMustSameField; - - private string kf_ProductInBackBill_AutoCheckField; - - private string kf_ProductInBackBill_ERPModeField; - - private string kf_ProductInBackBill_MustQtyCtlField; - - private string kf_ProductInBackBill_MulSourceBillField; - - private string kf_ProductInBackBill_BillTypeOneScanField; - - private string kf_ProductInBackBill_BatchNoCtlField; - - private string kf_ProductInBackBill_MultilineCtlField; - - private string kf_ProductInBackBill_MaterWHSPCtlField; - - private string kf_ProductInBackBill_SourceWHSPCtlField; - - private string kf_ProductInBackBill_DeleterAndMakerMustSameField; - - private string kf_OtherInBackBill_AutoCheckField; - - private string kf_OtherInBackBill_ERPModeField; - - private string kf_OtherInBackBill_MustQtyCtlField; - - private string kf_OtherInBackBill_MulSourceBillField; - - private string kf_OtherInBackBill_BillTypeOneScanField; - - private string kf_OtherInBackBill_BatchNoCtlField; - - private string kf_OtherInBackBill_MultilineCtlField; - - private string kf_OtherInBackBill_MaterWHSPCtlField; - - private string kf_OtherInBackBill_SourceWHSPCtlField; - - private string kf_OtherInBackBill_DeleterAndMakerMustSameField; - - private string kf_EntrustInBackBill_AutoCheckField; - - private string kf_EntrustInBackBill_ERPModeField; - - private string kf_EntrustInBackBill_MustQtyCtlField; - - private string kf_EntrustInBackBill_MulSourceBillField; - - private string kf_EntrustInBackBill_BillTypeOneScanField; - - private string kf_EntrustInBackBill_BatchNoCtlField; - - private string kf_EntrustInBackBill_MultilineCtlField; - - private string kf_EntrustInBackBill_MaterWHSPCtlField; - - private string kf_EntrustInBackBill_SourceWHSPCtlField; - - private string kf_EntrustInBackBill_DeleterAndMakerMustSameField; - - private string kf_MateOutBackBill_AutoCheckField; - - private string kf_MateOutBackBill_ERPModeField; - - private string kf_MateOutBackBill_MustQtyCtlField; - - private string kf_MateOutBackBill_MulSourceBillField; - - private string kf_MateOutBackBill_BillTypeOneScanField; - - private string kf_MateOutBackBill_BatchNoCtlField; - - private string kf_MateOutBackBill_MultilineCtlField; - - private string kf_MateOutBackBill_MaterWHSPCtlField; - - private string kf_MateOutBackBill_SourceWHSPCtlField; - - private string kf_MateOutBackBill_SimpleModeField; - - private string kf_MateOutBackBill_DeleterAndMakerMustSameField; - - private string kf_SellOutBackBill_AutoCheckField; - - private string kf_SellOutBackBill_ERPModeField; - - private string kf_SellOutBackBill_MustQtyCtlField; - - private string kf_SellOutBackBill_MulSourceBillField; - - private string kf_SellOutBackBill_BillTypeOneScanField; - - private string kf_SellOutBackBill_BatchNoCtlField; - - private string kf_SellOutBackBill_MultilineCtlField; - - private string kf_SellOutBackBill_MaterWHSPCtlField; - - private string kf_SellOutBackBill_SourceWHSPCtlField; - - private string kf_SellOutBackBill_AutoSavePOStockInBackBillField; - - private string kf_SellOutBackBill_DeleterAndMakerMustSameField; - - private string kf_OtherOutBackBill_AutoCheckField; - - private string kf_OtherOutBackBill_ERPModeField; - - private string kf_OtherOutBackBill_MustQtyCtlField; - - private string kf_OtherOutBackBill_MulSourceBillField; - - private string kf_OtherOutBackBill_BillTypeOneScanField; - - private string kf_OtherOutBackBill_BatchNoCtlField; - - private string kf_OtherOutBackBill_MultilineCtlField; - - private string kf_OtherOutBackBill_MaterWHSPCtlField; - - private string kf_OtherOutBackBill_SourceWHSPCtlField; - - private string kf_OtherOutBackBill_DeleterAndMakerMustSameField; - - private string kf_EntrustOutBackBill_AutoCheckField; - - private string kf_EntrustOutBackBill_ERPModeField; - - private string kf_EntrustOutBackBill_MustQtyCtlField; - - private string kf_EntrustOutBackBill_MulSourceBillField; - - private string kf_EntrustOutBackBill_BillTypeOneScanField; - - private string kf_EntrustOutBackBill_BatchNoCtlField; - - private string kf_EntrustOutBackBill_MultilineCtlField; - - private string kf_EntrustOutBackBill_MaterWHSPCtlField; - - private string kf_EntrustOutBackBill_SourceWHSPCtlField; - - private string kf_EntrustOutBackBill_SimpleModeField; - - private string kf_EntrustOutBackBill_DeleterAndMakerMustSameField; - - private string sc_PackUnionBill_SourceBillTypeCtlField; - - private string sc_PackUnionBill_SourceBillNoCtlField; - - private string wMS_ERPStockCtlField; - - private string wMS_WMSStockCtlField; - - private string wMS_WMSStockCtl_ERPModeField; - - private string wMS_SaveUpdateStockField; - - private string wMS_MaterBarCodeDefQtyField; - - private string wMS_BatchBarCodeDefQtyField; - - private string wMS_SNBarCodeDefQtyField; - - private string wMS_CampanyNameField; - - private string wMS_OneKeyModeField; - - private string wMS_BarCodeMustSameSourceBillField; - - private string wMS_OneScanModeField; - - private string wMS_UserByOrgRelationField; - - private string wMS_MouldManagerCtlField; - - private string wMS_CloudModeField; - - private string wMS_BillDateModeField; - - private string barCode_SourceQtyCtlField; - - private long barCode_PrintQtyField; - - private string barCode_PrintQtyCtlField; - - private string barCode_UpdatePrintQtyCtlField; - - private string barCode_AutoProductInBillWMSField; - - private string barCode_AutoPOStockInBillWMSField; - - private string barCode_AutoMateOutBackBillWMSField; - - private string barCode_AutoSellOutBackBillWMSField; - - private string barCode_DeleterAndMakerMustSameField; - - private string sc_ICMOBill_AutoProcExchBillField; - - private string sc_ProcessExchangeBill_AutoBarCodeField; - - private string mES_StationInBill_FIFOCtlField; - - private string mES_StationInBill_FullMoveCtlField; - - private string mES_StationInBill_QtyCtlField; - - private string mES_StationInBill_OneCtlField; - - private string mES_StationInBill_FirstCheckOutField; - - private string mES_StationInBill_ProcessCheckCtlField; - - private string mES_StationInBill_DeleteCtlField; - - private string mES_StationInBill_LineBindCtlField; - - private string mES_StationInBill_AutoFindSNOField; - - private string mES_StationInBill_ShowUSERProcessField; - - private string mES_StationInBill_SaveAutoAddnewField; - - private string mES_StationInBill_DeleteRelationCtlField; - - private string mES_StationInBill_PreQtyCtlField; - - private string mES_StationOutBill_QtyCtlField; - - private string mES_StationOutBill_QtyPreQtyCtlField; - - private string mES_StationOutBill_QtyNextQtyCtlField; - - private string mES_StationOutBill_ProcessCheckOutField; - - private string mES_StationOutBill_FirstCheckOutField; - - private string mES_StationOutBill_DeleteCtlField; - - private string mES_StationOutBill_FstAutoICMOReportField; - - private string mES_StationOutBill_LastAutoICMOReportField; - - private string mES_StationOutBill_AutoStockInField; - - private string mES_StationOutBill_InStockTypeField; - - private string mES_StationOutBill_AutoFindSNOField; - - private string mES_StationOutBill_ShowUSERProcessField; - - private string mES_StationOutBill_SaveAutoAddnewField; - - private string mES_StationOutBill_DeleteRelationCtlField; - - private string mES_StationOutBill_NextQtyCtlField; - - private string qC_NoPassProdCheckBill_QtyCtlField; - - private string qC_NoPassProdCheckBill_BadReasonQtyCtrlField; - - private string qC_NoPassProdCheckBill_DeleteCtlField; - - private string mES_StationEntrustInBill_FIFOCtlField; - - private string mES_StationEntrustInBill_FullMoveCtlField; - - private string mES_StationEntrustInBill_QtyCtlField; - - private string mES_StationEntrustInBill_OneCtlField; - - private string mES_StationEntrustInBill_DeleteCtlField; - - private string mES_StationEntrustInBill_SaveAutoAddnewField; - - private string mES_StationEntrustOutBill_QtyCtlField; - - private string mES_StationEntrustOutBill_DeleteCtlField; - - private string mES_StationEntrustOutBill_SaveAutoAddnewField; - - private string sc_MESBeginWorkBill_AutoCheckField; - - private string sc_MESReturnWorkBill_AutoCheckField; - - private string sc_MESEndWorkBill_AutoCheckField; - - private string sc_MESStopWorkBill_AutoCheckField; - - private string sc_ICMOBillWorkQtyStatus_AutoCheckField; - - private string sc_ICMOBillQualityStatus_AutoCheckField; - - private string sc_MaterToSourceBill_AutoCheckField; - - private string sc_MaterToSourceBill_MouldLifeCtrlField; - - private string sc_MaterToSourceBill_MouldLifeCtrlTypeField; - - private string oA_ErrMsgBackBill_AutoCheckField; - - private string sc_MESProceReportWorkBill_AutoCheckField; - - private string qC_FirstPieceCheckBill_AutoCheckField; - - private string sc_MouldProdOutBill_AutoCheckField; - - private string sc_MouldProdOutBill_SaveAutoAddnewField; - - private string sc_MouldProdOutBill_MouldLifeCtrlField; - - private string sc_MouldProdOutBill_MouldLifeCtrlTypeField; - - private string gy_RoutingBill_SaveAutoLastProcField; - - /// <remarks/> - public string Sc_ICMOReportBill_AutoCheck { - get { - return this.sc_ICMOReportBill_AutoCheckField; - } - set { - this.sc_ICMOReportBill_AutoCheckField = value; - } + internal GetMouldSourceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; } /// <remarks/> - public string Sc_ICMOReportBill_ERPMode { + public System.Data.DataSet Result { get { - return this.sc_ICMOReportBill_ERPModeField; - } - set { - this.sc_ICMOReportBill_ERPModeField = value; + this.RaiseExceptionIfNecessary(); + return ((System.Data.DataSet)(this.results[0])); } } /// <remarks/> - public string Sc_ICMOReportBill_MustQtyCtl { + public string sErrMsg { get { - return this.sc_ICMOReportBill_MustQtyCtlField; - } - set { - this.sc_ICMOReportBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Sc_ICMOReportBill_MulSourceBill { - get { - return this.sc_ICMOReportBill_MulSourceBillField; - } - set { - this.sc_ICMOReportBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Sc_ICMOReportBill_BillTypeOneScan { - get { - return this.sc_ICMOReportBill_BillTypeOneScanField; - } - set { - this.sc_ICMOReportBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Sc_ICMOReportBill_SourceBillCtl { - get { - return this.sc_ICMOReportBill_SourceBillCtlField; - } - set { - this.sc_ICMOReportBill_SourceBillCtlField = value; - } - } - - /// <remarks/> - public string Sc_ICMOReportBill_BatchNoCtl { - get { - return this.sc_ICMOReportBill_BatchNoCtlField; - } - set { - this.sc_ICMOReportBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Sc_ICMOReportBill_MultilineCtl { - get { - return this.sc_ICMOReportBill_MultilineCtlField; - } - set { - this.sc_ICMOReportBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Sc_ICMOReportBill_MaterWHSPCtl { - get { - return this.sc_ICMOReportBill_MaterWHSPCtlField; - } - set { - this.sc_ICMOReportBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Sc_ICMOReportBill_SourceWHSPCtl { - get { - return this.sc_ICMOReportBill_SourceWHSPCtlField; - } - set { - this.sc_ICMOReportBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Sc_ICMOReportBill_UpdateSourceInterID { - get { - return this.sc_ICMOReportBill_UpdateSourceInterIDField; - } - set { - this.sc_ICMOReportBill_UpdateSourceInterIDField = value; - } - } - - /// <remarks/> - public string Sc_ICMOReportBill_MESFlag { - get { - return this.sc_ICMOReportBill_MESFlagField; - } - set { - this.sc_ICMOReportBill_MESFlagField = value; - } - } - - /// <remarks/> - public string Sc_ICMOReportBill_FirstCheckOut { - get { - return this.sc_ICMOReportBill_FirstCheckOutField; - } - set { - this.sc_ICMOReportBill_FirstCheckOutField = value; - } - } - - /// <remarks/> - public string Sc_ICMOReportBill_DeleterAndMakerMustSame { - get { - return this.sc_ICMOReportBill_DeleterAndMakerMustSameField; - } - set { - this.sc_ICMOReportBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Cg_POInStockBill_AutoCheck { - get { - return this.cg_POInStockBill_AutoCheckField; - } - set { - this.cg_POInStockBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Cg_POInStockBill_ERPMode { - get { - return this.cg_POInStockBill_ERPModeField; - } - set { - this.cg_POInStockBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Cg_POInStockBill_BarCodeCtl { - get { - return this.cg_POInStockBill_BarCodeCtlField; - } - set { - this.cg_POInStockBill_BarCodeCtlField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBill_AutoCheck { - get { - return this.kf_POStockInBill_AutoCheckField; - } - set { - this.kf_POStockInBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBill_ERPMode { - get { - return this.kf_POStockInBill_ERPModeField; - } - set { - this.kf_POStockInBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBill_MustQtyCtl { - get { - return this.kf_POStockInBill_MustQtyCtlField; - } - set { - this.kf_POStockInBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBill_MulSourceBill { - get { - return this.kf_POStockInBill_MulSourceBillField; - } - set { - this.kf_POStockInBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBill_BillTypeOneScan { - get { - return this.kf_POStockInBill_BillTypeOneScanField; - } - set { - this.kf_POStockInBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBill_SourceBillCtl { - get { - return this.kf_POStockInBill_SourceBillCtlField; - } - set { - this.kf_POStockInBill_SourceBillCtlField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBill_BatchNoCtl { - get { - return this.kf_POStockInBill_BatchNoCtlField; - } - set { - this.kf_POStockInBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBill_MultilineCtl { - get { - return this.kf_POStockInBill_MultilineCtlField; - } - set { - this.kf_POStockInBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBill_MaterWHSPCtl { - get { - return this.kf_POStockInBill_MaterWHSPCtlField; - } - set { - this.kf_POStockInBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBill_SourceWHSPCtl { - get { - return this.kf_POStockInBill_SourceWHSPCtlField; - } - set { - this.kf_POStockInBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBill_AutoBarCode { - get { - return this.kf_POStockInBill_AutoBarCodeField; - } - set { - this.kf_POStockInBill_AutoBarCodeField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBill_DeleterAndMakerMustSame { - get { - return this.kf_POStockInBill_DeleterAndMakerMustSameField; - } - set { - this.kf_POStockInBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBill_AutoCheck { - get { - return this.kf_ProductInBill_AutoCheckField; - } - set { - this.kf_ProductInBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBill_ERPMode { - get { - return this.kf_ProductInBill_ERPModeField; - } - set { - this.kf_ProductInBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBill_MustQtyCtl { - get { - return this.kf_ProductInBill_MustQtyCtlField; - } - set { - this.kf_ProductInBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBill_MulSourceBill { - get { - return this.kf_ProductInBill_MulSourceBillField; - } - set { - this.kf_ProductInBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBill_BillTypeOneScan { - get { - return this.kf_ProductInBill_BillTypeOneScanField; - } - set { - this.kf_ProductInBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBill_SourceBillCtl { - get { - return this.kf_ProductInBill_SourceBillCtlField; - } - set { - this.kf_ProductInBill_SourceBillCtlField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBill_BatchNoCtl { - get { - return this.kf_ProductInBill_BatchNoCtlField; - } - set { - this.kf_ProductInBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBill_MultilineCtl { - get { - return this.kf_ProductInBill_MultilineCtlField; - } - set { - this.kf_ProductInBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBill_MaterWHSPCtl { - get { - return this.kf_ProductInBill_MaterWHSPCtlField; - } - set { - this.kf_ProductInBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBill_SourceWHSPCtl { - get { - return this.kf_ProductInBill_SourceWHSPCtlField; - } - set { - this.kf_ProductInBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBill_Display { - get { - return this.kf_ProductInBill_DisplayField; - } - set { - this.kf_ProductInBill_DisplayField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBill_DeleterAndMakerMustSame { - get { - return this.kf_ProductInBill_DeleterAndMakerMustSameField; - } - set { - this.kf_ProductInBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBill_AutoCheck { - get { - return this.kf_OtherInBill_AutoCheckField; - } - set { - this.kf_OtherInBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBill_ERPMode { - get { - return this.kf_OtherInBill_ERPModeField; - } - set { - this.kf_OtherInBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBill_MustQtyCtl { - get { - return this.kf_OtherInBill_MustQtyCtlField; - } - set { - this.kf_OtherInBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBill_MulSourceBill { - get { - return this.kf_OtherInBill_MulSourceBillField; - } - set { - this.kf_OtherInBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBill_BillTypeOneScan { - get { - return this.kf_OtherInBill_BillTypeOneScanField; - } - set { - this.kf_OtherInBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBill_SourceBillCtl { - get { - return this.kf_OtherInBill_SourceBillCtlField; - } - set { - this.kf_OtherInBill_SourceBillCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBill_BatchNoCtl { - get { - return this.kf_OtherInBill_BatchNoCtlField; - } - set { - this.kf_OtherInBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBill_MultilineCtl { - get { - return this.kf_OtherInBill_MultilineCtlField; - } - set { - this.kf_OtherInBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBill_MaterWHSPCtl { - get { - return this.kf_OtherInBill_MaterWHSPCtlField; - } - set { - this.kf_OtherInBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBill_SourceWHSPCtl { - get { - return this.kf_OtherInBill_SourceWHSPCtlField; - } - set { - this.kf_OtherInBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBill_DeleterAndMakerMustSame { - get { - return this.kf_OtherInBill_DeleterAndMakerMustSameField; - } - set { - this.kf_OtherInBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBillCheck_MustQtyCtl { - get { - return this.kf_OtherInBillCheck_MustQtyCtlField; - } - set { - this.kf_OtherInBillCheck_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBillCheck_WHSPCtl { - get { - return this.kf_OtherInBillCheck_WHSPCtlField; - } - set { - this.kf_OtherInBillCheck_WHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBillCheck_MultilineCtl { - get { - return this.kf_OtherInBillCheck_MultilineCtlField; - } - set { - this.kf_OtherInBillCheck_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBill_AutoCheck { - get { - return this.kf_EntrustInBill_AutoCheckField; - } - set { - this.kf_EntrustInBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBill_ERPMode { - get { - return this.kf_EntrustInBill_ERPModeField; - } - set { - this.kf_EntrustInBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBill_MustQtyCtl { - get { - return this.kf_EntrustInBill_MustQtyCtlField; - } - set { - this.kf_EntrustInBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBill_MulSourceBill { - get { - return this.kf_EntrustInBill_MulSourceBillField; - } - set { - this.kf_EntrustInBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBill_BillTypeOneScan { - get { - return this.kf_EntrustInBill_BillTypeOneScanField; - } - set { - this.kf_EntrustInBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBill_SourceBillCtl { - get { - return this.kf_EntrustInBill_SourceBillCtlField; - } - set { - this.kf_EntrustInBill_SourceBillCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBill_BatchNoCtl { - get { - return this.kf_EntrustInBill_BatchNoCtlField; - } - set { - this.kf_EntrustInBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBill_MultilineCtl { - get { - return this.kf_EntrustInBill_MultilineCtlField; - } - set { - this.kf_EntrustInBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBill_MaterWHSPCtl { - get { - return this.kf_EntrustInBill_MaterWHSPCtlField; - } - set { - this.kf_EntrustInBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBill_SourceWHSPCtl { - get { - return this.kf_EntrustInBill_SourceWHSPCtlField; - } - set { - this.kf_EntrustInBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBill_DeleterAndMakerMustSame { - get { - return this.kf_EntrustInBill_DeleterAndMakerMustSameField; - } - set { - this.kf_EntrustInBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBill_AutoCheck { - get { - return this.kf_MateOutBill_AutoCheckField; - } - set { - this.kf_MateOutBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBill_ERPMode { - get { - return this.kf_MateOutBill_ERPModeField; - } - set { - this.kf_MateOutBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBill_MustQtyCtl { - get { - return this.kf_MateOutBill_MustQtyCtlField; - } - set { - this.kf_MateOutBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBill_MulSourceBill { - get { - return this.kf_MateOutBill_MulSourceBillField; - } - set { - this.kf_MateOutBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBill_BillTypeOneScan { - get { - return this.kf_MateOutBill_BillTypeOneScanField; - } - set { - this.kf_MateOutBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBill_BatchNoCtl { - get { - return this.kf_MateOutBill_BatchNoCtlField; - } - set { - this.kf_MateOutBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBill_MultilineCtl { - get { - return this.kf_MateOutBill_MultilineCtlField; - } - set { - this.kf_MateOutBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBill_MaterWHSPCtl { - get { - return this.kf_MateOutBill_MaterWHSPCtlField; - } - set { - this.kf_MateOutBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBill_SourceWHSPCtl { - get { - return this.kf_MateOutBill_SourceWHSPCtlField; - } - set { - this.kf_MateOutBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBill_FIFOList { - get { - return this.kf_MateOutBill_FIFOListField; - } - set { - this.kf_MateOutBill_FIFOListField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBill_FIFOCtl { - get { - return this.kf_MateOutBill_FIFOCtlField; - } - set { - this.kf_MateOutBill_FIFOCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBill_SimpleMode { - get { - return this.kf_MateOutBill_SimpleModeField; - } - set { - this.kf_MateOutBill_SimpleModeField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBill_AutoBarCode { - get { - return this.kf_MateOutBill_AutoBarCodeField; - } - set { - this.kf_MateOutBill_AutoBarCodeField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBill_DeleterAndMakerMustSame { - get { - return this.kf_MateOutBill_DeleterAndMakerMustSameField; - } - set { - this.kf_MateOutBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBillCheck_MustQtyCtl { - get { - return this.kf_MateOutBillCheck_MustQtyCtlField; - } - set { - this.kf_MateOutBillCheck_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBillCheck_WHSPCtl { - get { - return this.kf_MateOutBillCheck_WHSPCtlField; - } - set { - this.kf_MateOutBillCheck_WHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBillCheck_MultilineCtl { - get { - return this.kf_MateOutBillCheck_MultilineCtlField; - } - set { - this.kf_MateOutBillCheck_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_AutoCheck { - get { - return this.kf_SellOutBill_AutoCheckField; - } - set { - this.kf_SellOutBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_ERPMode { - get { - return this.kf_SellOutBill_ERPModeField; - } - set { - this.kf_SellOutBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_MustQtyCtl { - get { - return this.kf_SellOutBill_MustQtyCtlField; - } - set { - this.kf_SellOutBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_MulSourceBill { - get { - return this.kf_SellOutBill_MulSourceBillField; - } - set { - this.kf_SellOutBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_BillTypeOneScan { - get { - return this.kf_SellOutBill_BillTypeOneScanField; - } - set { - this.kf_SellOutBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_BatchNoCtl { - get { - return this.kf_SellOutBill_BatchNoCtlField; - } - set { - this.kf_SellOutBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_MultilineCtl { - get { - return this.kf_SellOutBill_MultilineCtlField; - } - set { - this.kf_SellOutBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_MaterWHSPCtl { - get { - return this.kf_SellOutBill_MaterWHSPCtlField; - } - set { - this.kf_SellOutBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_SourceWHSPCtl { - get { - return this.kf_SellOutBill_SourceWHSPCtlField; - } - set { - this.kf_SellOutBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_FIFOList { - get { - return this.kf_SellOutBill_FIFOListField; - } - set { - this.kf_SellOutBill_FIFOListField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_FIFOCtl { - get { - return this.kf_SellOutBill_FIFOCtlField; - } - set { - this.kf_SellOutBill_FIFOCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_AutoSavePOStockInBill { - get { - return this.kf_SellOutBill_AutoSavePOStockInBillField; - } - set { - this.kf_SellOutBill_AutoSavePOStockInBillField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_NoRefresh { - get { - return this.kf_SellOutBill_NoRefreshField; - } - set { - this.kf_SellOutBill_NoRefreshField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_Display { - get { - return this.kf_SellOutBill_DisplayField; - } - set { - this.kf_SellOutBill_DisplayField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBill_DeleterAndMakerMustSame { - get { - return this.kf_SellOutBill_DeleterAndMakerMustSameField; - } - set { - this.kf_SellOutBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBillCheck_MustQtyCtl { - get { - return this.kf_SellOutBillCheck_MustQtyCtlField; - } - set { - this.kf_SellOutBillCheck_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBillCheck_WHSPCtl { - get { - return this.kf_SellOutBillCheck_WHSPCtlField; - } - set { - this.kf_SellOutBillCheck_WHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBillCheck_MultilineCtl { - get { - return this.kf_SellOutBillCheck_MultilineCtlField; - } - set { - this.kf_SellOutBillCheck_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBillCheck_SourceBarCodeCtl { - get { - return this.kf_SellOutBillCheck_SourceBarCodeCtlField; - } - set { - this.kf_SellOutBillCheck_SourceBarCodeCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBill_AutoCheck { - get { - return this.kf_OtherOutBill_AutoCheckField; - } - set { - this.kf_OtherOutBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBill_ERPMode { - get { - return this.kf_OtherOutBill_ERPModeField; - } - set { - this.kf_OtherOutBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBill_MustQtyCtl { - get { - return this.kf_OtherOutBill_MustQtyCtlField; - } - set { - this.kf_OtherOutBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBill_MulSourceBill { - get { - return this.kf_OtherOutBill_MulSourceBillField; - } - set { - this.kf_OtherOutBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBill_BillTypeOneScan { - get { - return this.kf_OtherOutBill_BillTypeOneScanField; - } - set { - this.kf_OtherOutBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBill_BatchNoCtl { - get { - return this.kf_OtherOutBill_BatchNoCtlField; - } - set { - this.kf_OtherOutBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBill_MultilineCtl { - get { - return this.kf_OtherOutBill_MultilineCtlField; - } - set { - this.kf_OtherOutBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBill_MaterWHSPCtl { - get { - return this.kf_OtherOutBill_MaterWHSPCtlField; - } - set { - this.kf_OtherOutBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBill_SourceWHSPCtl { - get { - return this.kf_OtherOutBill_SourceWHSPCtlField; - } - set { - this.kf_OtherOutBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBill_FIFOList { - get { - return this.kf_OtherOutBill_FIFOListField; - } - set { - this.kf_OtherOutBill_FIFOListField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBill_FIFOCtl { - get { - return this.kf_OtherOutBill_FIFOCtlField; - } - set { - this.kf_OtherOutBill_FIFOCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBill_DeleterAndMakerMustSame { - get { - return this.kf_OtherOutBill_DeleterAndMakerMustSameField; - } - set { - this.kf_OtherOutBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBillCheck_MustQtyCtl { - get { - return this.kf_OtherOutBillCheck_MustQtyCtlField; - } - set { - this.kf_OtherOutBillCheck_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBillCheck_WHSPCtl { - get { - return this.kf_OtherOutBillCheck_WHSPCtlField; - } - set { - this.kf_OtherOutBillCheck_WHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBillCheck_MultilineCtl { - get { - return this.kf_OtherOutBillCheck_MultilineCtlField; - } - set { - this.kf_OtherOutBillCheck_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBill_AutoCheck { - get { - return this.kf_EntrustOutBill_AutoCheckField; - } - set { - this.kf_EntrustOutBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBill_ERPMode { - get { - return this.kf_EntrustOutBill_ERPModeField; - } - set { - this.kf_EntrustOutBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBill_MustQtyCtl { - get { - return this.kf_EntrustOutBill_MustQtyCtlField; - } - set { - this.kf_EntrustOutBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBill_MulSourceBill { - get { - return this.kf_EntrustOutBill_MulSourceBillField; - } - set { - this.kf_EntrustOutBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBill_BillTypeOneScan { - get { - return this.kf_EntrustOutBill_BillTypeOneScanField; - } - set { - this.kf_EntrustOutBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBill_BatchNoCtl { - get { - return this.kf_EntrustOutBill_BatchNoCtlField; - } - set { - this.kf_EntrustOutBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBill_MultilineCtl { - get { - return this.kf_EntrustOutBill_MultilineCtlField; - } - set { - this.kf_EntrustOutBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBill_MaterWHSPCtl { - get { - return this.kf_EntrustOutBill_MaterWHSPCtlField; - } - set { - this.kf_EntrustOutBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBill_SourceWHSPCtl { - get { - return this.kf_EntrustOutBill_SourceWHSPCtlField; - } - set { - this.kf_EntrustOutBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBill_FIFOList { - get { - return this.kf_EntrustOutBill_FIFOListField; - } - set { - this.kf_EntrustOutBill_FIFOListField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBill_FIFOCtl { - get { - return this.kf_EntrustOutBill_FIFOCtlField; - } - set { - this.kf_EntrustOutBill_FIFOCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBill_SimpleMode { - get { - return this.kf_EntrustOutBill_SimpleModeField; - } - set { - this.kf_EntrustOutBill_SimpleModeField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBill_DeleterAndMakerMustSame { - get { - return this.kf_EntrustOutBill_DeleterAndMakerMustSameField; - } - set { - this.kf_EntrustOutBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBillCheck_MustQtyCtl { - get { - return this.kf_EntrustOutBillCheck_MustQtyCtlField; - } - set { - this.kf_EntrustOutBillCheck_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBillCheck_WHSPCtl { - get { - return this.kf_EntrustOutBillCheck_WHSPCtlField; - } - set { - this.kf_EntrustOutBillCheck_WHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBillCheck_MultilineCtl { - get { - return this.kf_EntrustOutBillCheck_MultilineCtlField; - } - set { - this.kf_EntrustOutBillCheck_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateReplenishOutBill_AutoCheck { - get { - return this.kf_MateReplenishOutBill_AutoCheckField; - } - set { - this.kf_MateReplenishOutBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_MateReplenishOutBill_ERPMode { - get { - return this.kf_MateReplenishOutBill_ERPModeField; - } - set { - this.kf_MateReplenishOutBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_MateReplenishOutBill_MustQtyCtl { - get { - return this.kf_MateReplenishOutBill_MustQtyCtlField; - } - set { - this.kf_MateReplenishOutBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateReplenishOutBill_MulSourceBill { - get { - return this.kf_MateReplenishOutBill_MulSourceBillField; - } - set { - this.kf_MateReplenishOutBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_MateReplenishOutBill_BillTypeOneScan { - get { - return this.kf_MateReplenishOutBill_BillTypeOneScanField; - } - set { - this.kf_MateReplenishOutBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_MateReplenishOutBill_BatchNoCtl { - get { - return this.kf_MateReplenishOutBill_BatchNoCtlField; - } - set { - this.kf_MateReplenishOutBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateReplenishOutBill_MultilineCtl { - get { - return this.kf_MateReplenishOutBill_MultilineCtlField; - } - set { - this.kf_MateReplenishOutBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateReplenishOutBill_MaterWHSPCtl { - get { - return this.kf_MateReplenishOutBill_MaterWHSPCtlField; - } - set { - this.kf_MateReplenishOutBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateReplenishOutBill_SourceWHSPCtl { - get { - return this.kf_MateReplenishOutBill_SourceWHSPCtlField; - } - set { - this.kf_MateReplenishOutBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateReplenishOutBill_DeleterAndMakerMustSame { - get { - return this.kf_MateReplenishOutBill_DeleterAndMakerMustSameField; - } - set { - this.kf_MateReplenishOutBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_MateReplenishOutBillCheck_MustQtyCtl { - get { - return this.kf_MateReplenishOutBillCheck_MustQtyCtlField; - } - set { - this.kf_MateReplenishOutBillCheck_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateReplenishOutBillCheck_WHSPCtl { - get { - return this.kf_MateReplenishOutBillCheck_WHSPCtlField; - } - set { - this.kf_MateReplenishOutBillCheck_WHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateReplenishOutBillCheck_MultilineCtl { - get { - return this.kf_MateReplenishOutBillCheck_MultilineCtlField; - } - set { - this.kf_MateReplenishOutBillCheck_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustReplenishOutBill_AutoCheck { - get { - return this.kf_EntrustReplenishOutBill_AutoCheckField; - } - set { - this.kf_EntrustReplenishOutBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_EntrustReplenishOutBill_ERPMode { - get { - return this.kf_EntrustReplenishOutBill_ERPModeField; - } - set { - this.kf_EntrustReplenishOutBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_EntrustReplenishOutBill_MustQtyCtl { - get { - return this.kf_EntrustReplenishOutBill_MustQtyCtlField; - } - set { - this.kf_EntrustReplenishOutBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustReplenishOutBill_MulSourceBill { - get { - return this.kf_EntrustReplenishOutBill_MulSourceBillField; - } - set { - this.kf_EntrustReplenishOutBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_EntrustReplenishOutBill_BillTypeOneScan { - get { - return this.kf_EntrustReplenishOutBill_BillTypeOneScanField; - } - set { - this.kf_EntrustReplenishOutBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_EntrustReplenishOutBill_BatchNoCtl { - get { - return this.kf_EntrustReplenishOutBill_BatchNoCtlField; - } - set { - this.kf_EntrustReplenishOutBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustReplenishOutBill_MultilineCtl { - get { - return this.kf_EntrustReplenishOutBill_MultilineCtlField; - } - set { - this.kf_EntrustReplenishOutBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustReplenishOutBill_MaterWHSPCtl { - get { - return this.kf_EntrustReplenishOutBill_MaterWHSPCtlField; - } - set { - this.kf_EntrustReplenishOutBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustReplenishOutBill_SourceWHSPCtl { - get { - return this.kf_EntrustReplenishOutBill_SourceWHSPCtlField; - } - set { - this.kf_EntrustReplenishOutBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustReplenishOutBill_DeleterAndMakerMustSame { - get { - return this.kf_EntrustReplenishOutBill_DeleterAndMakerMustSameField; - } - set { - this.kf_EntrustReplenishOutBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_EntrustReplenishOutBillCheck_MustQtyCtl { - get { - return this.kf_EntrustReplenishOutBillCheck_MustQtyCtlField; - } - set { - this.kf_EntrustReplenishOutBillCheck_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustReplenishOutBillCheck_WHSPCtl { - get { - return this.kf_EntrustReplenishOutBillCheck_WHSPCtlField; - } - set { - this.kf_EntrustReplenishOutBillCheck_WHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustReplenishOutBillCheck_MultilineCtl { - get { - return this.kf_EntrustReplenishOutBillCheck_MultilineCtlField; - } - set { - this.kf_EntrustReplenishOutBillCheck_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBill_AutoCheck { - get { - return this.kf_MoveStockBill_AutoCheckField; - } - set { - this.kf_MoveStockBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBill_ERPMode { - get { - return this.kf_MoveStockBill_ERPModeField; - } - set { - this.kf_MoveStockBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBill_MustQtyCtl { - get { - return this.kf_MoveStockBill_MustQtyCtlField; - } - set { - this.kf_MoveStockBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBill_MulSourceBill { - get { - return this.kf_MoveStockBill_MulSourceBillField; - } - set { - this.kf_MoveStockBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBill_BillTypeOneScan { - get { - return this.kf_MoveStockBill_BillTypeOneScanField; - } - set { - this.kf_MoveStockBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBill_BatchNoCtl { - get { - return this.kf_MoveStockBill_BatchNoCtlField; - } - set { - this.kf_MoveStockBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBill_MultilineCtl { - get { - return this.kf_MoveStockBill_MultilineCtlField; - } - set { - this.kf_MoveStockBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBill_MaterWHSPCtl { - get { - return this.kf_MoveStockBill_MaterWHSPCtlField; - } - set { - this.kf_MoveStockBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBill_SourceWHSPCtl { - get { - return this.kf_MoveStockBill_SourceWHSPCtlField; - } - set { - this.kf_MoveStockBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBill_FIFOList { - get { - return this.kf_MoveStockBill_FIFOListField; - } - set { - this.kf_MoveStockBill_FIFOListField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBill_FIFOCtl { - get { - return this.kf_MoveStockBill_FIFOCtlField; - } - set { - this.kf_MoveStockBill_FIFOCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBill_Display { - get { - return this.kf_MoveStockBill_DisplayField; - } - set { - this.kf_MoveStockBill_DisplayField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBill_DeleterAndMakerMustSame { - get { - return this.kf_MoveStockBill_DeleterAndMakerMustSameField; - } - set { - this.kf_MoveStockBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBillCheck_MustQtyCtl { - get { - return this.kf_MoveStockBillCheck_MustQtyCtlField; - } - set { - this.kf_MoveStockBillCheck_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBillCheck_WHSPCtl { - get { - return this.kf_MoveStockBillCheck_WHSPCtlField; - } - set { - this.kf_MoveStockBillCheck_WHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockBillCheck_MultilineCtl { - get { - return this.kf_MoveStockBillCheck_MultilineCtlField; - } - set { - this.kf_MoveStockBillCheck_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepOutBill_AutoCheck { - get { - return this.kf_MoveStockStepOutBill_AutoCheckField; - } - set { - this.kf_MoveStockStepOutBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepOutBill_ERPMode { - get { - return this.kf_MoveStockStepOutBill_ERPModeField; - } - set { - this.kf_MoveStockStepOutBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepOutBill_MustQtyCtl { - get { - return this.kf_MoveStockStepOutBill_MustQtyCtlField; - } - set { - this.kf_MoveStockStepOutBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepOutBill_MulSourceBill { - get { - return this.kf_MoveStockStepOutBill_MulSourceBillField; - } - set { - this.kf_MoveStockStepOutBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepOutBill_BillTypeOneScan { - get { - return this.kf_MoveStockStepOutBill_BillTypeOneScanField; - } - set { - this.kf_MoveStockStepOutBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepOutBill_BatchNoCtl { - get { - return this.kf_MoveStockStepOutBill_BatchNoCtlField; - } - set { - this.kf_MoveStockStepOutBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepOutBill_MultilineCtl { - get { - return this.kf_MoveStockStepOutBill_MultilineCtlField; - } - set { - this.kf_MoveStockStepOutBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepOutBill_MaterWHSPCtl { - get { - return this.kf_MoveStockStepOutBill_MaterWHSPCtlField; - } - set { - this.kf_MoveStockStepOutBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepOutBill_SourceWHSPCtl { - get { - return this.kf_MoveStockStepOutBill_SourceWHSPCtlField; - } - set { - this.kf_MoveStockStepOutBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepOutBill_FIFOList { - get { - return this.kf_MoveStockStepOutBill_FIFOListField; - } - set { - this.kf_MoveStockStepOutBill_FIFOListField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepOutBill_FIFOCtl { - get { - return this.kf_MoveStockStepOutBill_FIFOCtlField; - } - set { - this.kf_MoveStockStepOutBill_FIFOCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepOutBill_DeleterAndMakerMustSame { - get { - return this.kf_MoveStockStepOutBill_DeleterAndMakerMustSameField; - } - set { - this.kf_MoveStockStepOutBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepInBill_AutoCheck { - get { - return this.kf_MoveStockStepInBill_AutoCheckField; - } - set { - this.kf_MoveStockStepInBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepInBill_ERPMode { - get { - return this.kf_MoveStockStepInBill_ERPModeField; - } - set { - this.kf_MoveStockStepInBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepInBill_MustQtyCtl { - get { - return this.kf_MoveStockStepInBill_MustQtyCtlField; - } - set { - this.kf_MoveStockStepInBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepInBill_MulSourceBill { - get { - return this.kf_MoveStockStepInBill_MulSourceBillField; - } - set { - this.kf_MoveStockStepInBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepInBill_BillTypeOneScan { - get { - return this.kf_MoveStockStepInBill_BillTypeOneScanField; - } - set { - this.kf_MoveStockStepInBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepInBill_BatchNoCtl { - get { - return this.kf_MoveStockStepInBill_BatchNoCtlField; - } - set { - this.kf_MoveStockStepInBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepInBill_MultilineCtl { - get { - return this.kf_MoveStockStepInBill_MultilineCtlField; - } - set { - this.kf_MoveStockStepInBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepInBill_MaterWHSPCtl { - get { - return this.kf_MoveStockStepInBill_MaterWHSPCtlField; - } - set { - this.kf_MoveStockStepInBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepInBill_SourceWHSPCtl { - get { - return this.kf_MoveStockStepInBill_SourceWHSPCtlField; - } - set { - this.kf_MoveStockStepInBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepInBill_FIFOList { - get { - return this.kf_MoveStockStepInBill_FIFOListField; - } - set { - this.kf_MoveStockStepInBill_FIFOListField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepInBill_FIFOCtl { - get { - return this.kf_MoveStockStepInBill_FIFOCtlField; - } - set { - this.kf_MoveStockStepInBill_FIFOCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepInBill_SourceBarCodeCtl { - get { - return this.kf_MoveStockStepInBill_SourceBarCodeCtlField; - } - set { - this.kf_MoveStockStepInBill_SourceBarCodeCtlField = value; - } - } - - /// <remarks/> - public string Kf_MoveStockStepInBill_DeleterAndMakerMustSame { - get { - return this.kf_MoveStockStepInBill_DeleterAndMakerMustSameField; - } - set { - this.kf_MoveStockStepInBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBackBill_AutoCheck { - get { - return this.kf_POStockInBackBill_AutoCheckField; - } - set { - this.kf_POStockInBackBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBackBill_ERPMode { - get { - return this.kf_POStockInBackBill_ERPModeField; - } - set { - this.kf_POStockInBackBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBackBill_MustQtyCtl { - get { - return this.kf_POStockInBackBill_MustQtyCtlField; - } - set { - this.kf_POStockInBackBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBackBill_MulSourceBill { - get { - return this.kf_POStockInBackBill_MulSourceBillField; - } - set { - this.kf_POStockInBackBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBackBill_BillTypeOneScan { - get { - return this.kf_POStockInBackBill_BillTypeOneScanField; - } - set { - this.kf_POStockInBackBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBackBill_BatchNoCtl { - get { - return this.kf_POStockInBackBill_BatchNoCtlField; - } - set { - this.kf_POStockInBackBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBackBill_MultilineCtl { - get { - return this.kf_POStockInBackBill_MultilineCtlField; - } - set { - this.kf_POStockInBackBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBackBill_MaterWHSPCtl { - get { - return this.kf_POStockInBackBill_MaterWHSPCtlField; - } - set { - this.kf_POStockInBackBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBackBill_SourceWHSPCtl { - get { - return this.kf_POStockInBackBill_SourceWHSPCtlField; - } - set { - this.kf_POStockInBackBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_POStockInBackBill_DeleterAndMakerMustSame { - get { - return this.kf_POStockInBackBill_DeleterAndMakerMustSameField; - } - set { - this.kf_POStockInBackBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBackBill_AutoCheck { - get { - return this.kf_ProductInBackBill_AutoCheckField; - } - set { - this.kf_ProductInBackBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBackBill_ERPMode { - get { - return this.kf_ProductInBackBill_ERPModeField; - } - set { - this.kf_ProductInBackBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBackBill_MustQtyCtl { - get { - return this.kf_ProductInBackBill_MustQtyCtlField; - } - set { - this.kf_ProductInBackBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBackBill_MulSourceBill { - get { - return this.kf_ProductInBackBill_MulSourceBillField; - } - set { - this.kf_ProductInBackBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBackBill_BillTypeOneScan { - get { - return this.kf_ProductInBackBill_BillTypeOneScanField; - } - set { - this.kf_ProductInBackBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBackBill_BatchNoCtl { - get { - return this.kf_ProductInBackBill_BatchNoCtlField; - } - set { - this.kf_ProductInBackBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBackBill_MultilineCtl { - get { - return this.kf_ProductInBackBill_MultilineCtlField; - } - set { - this.kf_ProductInBackBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBackBill_MaterWHSPCtl { - get { - return this.kf_ProductInBackBill_MaterWHSPCtlField; - } - set { - this.kf_ProductInBackBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBackBill_SourceWHSPCtl { - get { - return this.kf_ProductInBackBill_SourceWHSPCtlField; - } - set { - this.kf_ProductInBackBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_ProductInBackBill_DeleterAndMakerMustSame { - get { - return this.kf_ProductInBackBill_DeleterAndMakerMustSameField; - } - set { - this.kf_ProductInBackBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBackBill_AutoCheck { - get { - return this.kf_OtherInBackBill_AutoCheckField; - } - set { - this.kf_OtherInBackBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBackBill_ERPMode { - get { - return this.kf_OtherInBackBill_ERPModeField; - } - set { - this.kf_OtherInBackBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBackBill_MustQtyCtl { - get { - return this.kf_OtherInBackBill_MustQtyCtlField; - } - set { - this.kf_OtherInBackBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBackBill_MulSourceBill { - get { - return this.kf_OtherInBackBill_MulSourceBillField; - } - set { - this.kf_OtherInBackBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBackBill_BillTypeOneScan { - get { - return this.kf_OtherInBackBill_BillTypeOneScanField; - } - set { - this.kf_OtherInBackBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBackBill_BatchNoCtl { - get { - return this.kf_OtherInBackBill_BatchNoCtlField; - } - set { - this.kf_OtherInBackBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBackBill_MultilineCtl { - get { - return this.kf_OtherInBackBill_MultilineCtlField; - } - set { - this.kf_OtherInBackBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBackBill_MaterWHSPCtl { - get { - return this.kf_OtherInBackBill_MaterWHSPCtlField; - } - set { - this.kf_OtherInBackBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBackBill_SourceWHSPCtl { - get { - return this.kf_OtherInBackBill_SourceWHSPCtlField; - } - set { - this.kf_OtherInBackBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherInBackBill_DeleterAndMakerMustSame { - get { - return this.kf_OtherInBackBill_DeleterAndMakerMustSameField; - } - set { - this.kf_OtherInBackBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBackBill_AutoCheck { - get { - return this.kf_EntrustInBackBill_AutoCheckField; - } - set { - this.kf_EntrustInBackBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBackBill_ERPMode { - get { - return this.kf_EntrustInBackBill_ERPModeField; - } - set { - this.kf_EntrustInBackBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBackBill_MustQtyCtl { - get { - return this.kf_EntrustInBackBill_MustQtyCtlField; - } - set { - this.kf_EntrustInBackBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBackBill_MulSourceBill { - get { - return this.kf_EntrustInBackBill_MulSourceBillField; - } - set { - this.kf_EntrustInBackBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBackBill_BillTypeOneScan { - get { - return this.kf_EntrustInBackBill_BillTypeOneScanField; - } - set { - this.kf_EntrustInBackBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBackBill_BatchNoCtl { - get { - return this.kf_EntrustInBackBill_BatchNoCtlField; - } - set { - this.kf_EntrustInBackBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBackBill_MultilineCtl { - get { - return this.kf_EntrustInBackBill_MultilineCtlField; - } - set { - this.kf_EntrustInBackBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBackBill_MaterWHSPCtl { - get { - return this.kf_EntrustInBackBill_MaterWHSPCtlField; - } - set { - this.kf_EntrustInBackBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBackBill_SourceWHSPCtl { - get { - return this.kf_EntrustInBackBill_SourceWHSPCtlField; - } - set { - this.kf_EntrustInBackBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustInBackBill_DeleterAndMakerMustSame { - get { - return this.kf_EntrustInBackBill_DeleterAndMakerMustSameField; - } - set { - this.kf_EntrustInBackBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBackBill_AutoCheck { - get { - return this.kf_MateOutBackBill_AutoCheckField; - } - set { - this.kf_MateOutBackBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBackBill_ERPMode { - get { - return this.kf_MateOutBackBill_ERPModeField; - } - set { - this.kf_MateOutBackBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBackBill_MustQtyCtl { - get { - return this.kf_MateOutBackBill_MustQtyCtlField; - } - set { - this.kf_MateOutBackBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBackBill_MulSourceBill { - get { - return this.kf_MateOutBackBill_MulSourceBillField; - } - set { - this.kf_MateOutBackBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBackBill_BillTypeOneScan { - get { - return this.kf_MateOutBackBill_BillTypeOneScanField; - } - set { - this.kf_MateOutBackBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBackBill_BatchNoCtl { - get { - return this.kf_MateOutBackBill_BatchNoCtlField; - } - set { - this.kf_MateOutBackBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBackBill_MultilineCtl { - get { - return this.kf_MateOutBackBill_MultilineCtlField; - } - set { - this.kf_MateOutBackBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBackBill_MaterWHSPCtl { - get { - return this.kf_MateOutBackBill_MaterWHSPCtlField; - } - set { - this.kf_MateOutBackBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBackBill_SourceWHSPCtl { - get { - return this.kf_MateOutBackBill_SourceWHSPCtlField; - } - set { - this.kf_MateOutBackBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBackBill_SimpleMode { - get { - return this.kf_MateOutBackBill_SimpleModeField; - } - set { - this.kf_MateOutBackBill_SimpleModeField = value; - } - } - - /// <remarks/> - public string Kf_MateOutBackBill_DeleterAndMakerMustSame { - get { - return this.kf_MateOutBackBill_DeleterAndMakerMustSameField; - } - set { - this.kf_MateOutBackBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBackBill_AutoCheck { - get { - return this.kf_SellOutBackBill_AutoCheckField; - } - set { - this.kf_SellOutBackBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBackBill_ERPMode { - get { - return this.kf_SellOutBackBill_ERPModeField; - } - set { - this.kf_SellOutBackBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBackBill_MustQtyCtl { - get { - return this.kf_SellOutBackBill_MustQtyCtlField; - } - set { - this.kf_SellOutBackBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBackBill_MulSourceBill { - get { - return this.kf_SellOutBackBill_MulSourceBillField; - } - set { - this.kf_SellOutBackBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBackBill_BillTypeOneScan { - get { - return this.kf_SellOutBackBill_BillTypeOneScanField; - } - set { - this.kf_SellOutBackBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBackBill_BatchNoCtl { - get { - return this.kf_SellOutBackBill_BatchNoCtlField; - } - set { - this.kf_SellOutBackBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBackBill_MultilineCtl { - get { - return this.kf_SellOutBackBill_MultilineCtlField; - } - set { - this.kf_SellOutBackBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBackBill_MaterWHSPCtl { - get { - return this.kf_SellOutBackBill_MaterWHSPCtlField; - } - set { - this.kf_SellOutBackBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBackBill_SourceWHSPCtl { - get { - return this.kf_SellOutBackBill_SourceWHSPCtlField; - } - set { - this.kf_SellOutBackBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBackBill_AutoSavePOStockInBackBill { - get { - return this.kf_SellOutBackBill_AutoSavePOStockInBackBillField; - } - set { - this.kf_SellOutBackBill_AutoSavePOStockInBackBillField = value; - } - } - - /// <remarks/> - public string Kf_SellOutBackBill_DeleterAndMakerMustSame { - get { - return this.kf_SellOutBackBill_DeleterAndMakerMustSameField; - } - set { - this.kf_SellOutBackBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBackBill_AutoCheck { - get { - return this.kf_OtherOutBackBill_AutoCheckField; - } - set { - this.kf_OtherOutBackBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBackBill_ERPMode { - get { - return this.kf_OtherOutBackBill_ERPModeField; - } - set { - this.kf_OtherOutBackBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBackBill_MustQtyCtl { - get { - return this.kf_OtherOutBackBill_MustQtyCtlField; - } - set { - this.kf_OtherOutBackBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBackBill_MulSourceBill { - get { - return this.kf_OtherOutBackBill_MulSourceBillField; - } - set { - this.kf_OtherOutBackBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBackBill_BillTypeOneScan { - get { - return this.kf_OtherOutBackBill_BillTypeOneScanField; - } - set { - this.kf_OtherOutBackBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBackBill_BatchNoCtl { - get { - return this.kf_OtherOutBackBill_BatchNoCtlField; - } - set { - this.kf_OtherOutBackBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBackBill_MultilineCtl { - get { - return this.kf_OtherOutBackBill_MultilineCtlField; - } - set { - this.kf_OtherOutBackBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBackBill_MaterWHSPCtl { - get { - return this.kf_OtherOutBackBill_MaterWHSPCtlField; - } - set { - this.kf_OtherOutBackBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBackBill_SourceWHSPCtl { - get { - return this.kf_OtherOutBackBill_SourceWHSPCtlField; - } - set { - this.kf_OtherOutBackBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_OtherOutBackBill_DeleterAndMakerMustSame { - get { - return this.kf_OtherOutBackBill_DeleterAndMakerMustSameField; - } - set { - this.kf_OtherOutBackBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBackBill_AutoCheck { - get { - return this.kf_EntrustOutBackBill_AutoCheckField; - } - set { - this.kf_EntrustOutBackBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBackBill_ERPMode { - get { - return this.kf_EntrustOutBackBill_ERPModeField; - } - set { - this.kf_EntrustOutBackBill_ERPModeField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBackBill_MustQtyCtl { - get { - return this.kf_EntrustOutBackBill_MustQtyCtlField; - } - set { - this.kf_EntrustOutBackBill_MustQtyCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBackBill_MulSourceBill { - get { - return this.kf_EntrustOutBackBill_MulSourceBillField; - } - set { - this.kf_EntrustOutBackBill_MulSourceBillField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBackBill_BillTypeOneScan { - get { - return this.kf_EntrustOutBackBill_BillTypeOneScanField; - } - set { - this.kf_EntrustOutBackBill_BillTypeOneScanField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBackBill_BatchNoCtl { - get { - return this.kf_EntrustOutBackBill_BatchNoCtlField; - } - set { - this.kf_EntrustOutBackBill_BatchNoCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBackBill_MultilineCtl { - get { - return this.kf_EntrustOutBackBill_MultilineCtlField; - } - set { - this.kf_EntrustOutBackBill_MultilineCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBackBill_MaterWHSPCtl { - get { - return this.kf_EntrustOutBackBill_MaterWHSPCtlField; - } - set { - this.kf_EntrustOutBackBill_MaterWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBackBill_SourceWHSPCtl { - get { - return this.kf_EntrustOutBackBill_SourceWHSPCtlField; - } - set { - this.kf_EntrustOutBackBill_SourceWHSPCtlField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBackBill_SimpleMode { - get { - return this.kf_EntrustOutBackBill_SimpleModeField; - } - set { - this.kf_EntrustOutBackBill_SimpleModeField = value; - } - } - - /// <remarks/> - public string Kf_EntrustOutBackBill_DeleterAndMakerMustSame { - get { - return this.kf_EntrustOutBackBill_DeleterAndMakerMustSameField; - } - set { - this.kf_EntrustOutBackBill_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Sc_PackUnionBill_SourceBillTypeCtl { - get { - return this.sc_PackUnionBill_SourceBillTypeCtlField; - } - set { - this.sc_PackUnionBill_SourceBillTypeCtlField = value; - } - } - - /// <remarks/> - public string Sc_PackUnionBill_SourceBillNoCtl { - get { - return this.sc_PackUnionBill_SourceBillNoCtlField; - } - set { - this.sc_PackUnionBill_SourceBillNoCtlField = value; - } - } - - /// <remarks/> - public string WMS_ERPStockCtl { - get { - return this.wMS_ERPStockCtlField; - } - set { - this.wMS_ERPStockCtlField = value; - } - } - - /// <remarks/> - public string WMS_WMSStockCtl { - get { - return this.wMS_WMSStockCtlField; - } - set { - this.wMS_WMSStockCtlField = value; - } - } - - /// <remarks/> - public string WMS_WMSStockCtl_ERPMode { - get { - return this.wMS_WMSStockCtl_ERPModeField; - } - set { - this.wMS_WMSStockCtl_ERPModeField = value; - } - } - - /// <remarks/> - public string WMS_SaveUpdateStock { - get { - return this.wMS_SaveUpdateStockField; - } - set { - this.wMS_SaveUpdateStockField = value; - } - } - - /// <remarks/> - public string WMS_MaterBarCodeDefQty { - get { - return this.wMS_MaterBarCodeDefQtyField; - } - set { - this.wMS_MaterBarCodeDefQtyField = value; - } - } - - /// <remarks/> - public string WMS_BatchBarCodeDefQty { - get { - return this.wMS_BatchBarCodeDefQtyField; - } - set { - this.wMS_BatchBarCodeDefQtyField = value; - } - } - - /// <remarks/> - public string WMS_SNBarCodeDefQty { - get { - return this.wMS_SNBarCodeDefQtyField; - } - set { - this.wMS_SNBarCodeDefQtyField = value; - } - } - - /// <remarks/> - public string WMS_CampanyName { - get { - return this.wMS_CampanyNameField; - } - set { - this.wMS_CampanyNameField = value; - } - } - - /// <remarks/> - public string WMS_OneKeyMode { - get { - return this.wMS_OneKeyModeField; - } - set { - this.wMS_OneKeyModeField = value; - } - } - - /// <remarks/> - public string WMS_BarCodeMustSameSourceBill { - get { - return this.wMS_BarCodeMustSameSourceBillField; - } - set { - this.wMS_BarCodeMustSameSourceBillField = value; - } - } - - /// <remarks/> - public string WMS_OneScanMode { - get { - return this.wMS_OneScanModeField; - } - set { - this.wMS_OneScanModeField = value; - } - } - - /// <remarks/> - public string WMS_UserByOrgRelation { - get { - return this.wMS_UserByOrgRelationField; - } - set { - this.wMS_UserByOrgRelationField = value; - } - } - - /// <remarks/> - public string WMS_MouldManagerCtl { - get { - return this.wMS_MouldManagerCtlField; - } - set { - this.wMS_MouldManagerCtlField = value; - } - } - - /// <remarks/> - public string WMS_CloudMode { - get { - return this.wMS_CloudModeField; - } - set { - this.wMS_CloudModeField = value; - } - } - - /// <remarks/> - public string WMS_BillDateMode { - get { - return this.wMS_BillDateModeField; - } - set { - this.wMS_BillDateModeField = value; - } - } - - /// <remarks/> - public string BarCode_SourceQtyCtl { - get { - return this.barCode_SourceQtyCtlField; - } - set { - this.barCode_SourceQtyCtlField = value; - } - } - - /// <remarks/> - public long BarCode_PrintQty { - get { - return this.barCode_PrintQtyField; - } - set { - this.barCode_PrintQtyField = value; - } - } - - /// <remarks/> - public string BarCode_PrintQtyCtl { - get { - return this.barCode_PrintQtyCtlField; - } - set { - this.barCode_PrintQtyCtlField = value; - } - } - - /// <remarks/> - public string BarCode_UpdatePrintQtyCtl { - get { - return this.barCode_UpdatePrintQtyCtlField; - } - set { - this.barCode_UpdatePrintQtyCtlField = value; - } - } - - /// <remarks/> - public string BarCode_AutoProductInBillWMS { - get { - return this.barCode_AutoProductInBillWMSField; - } - set { - this.barCode_AutoProductInBillWMSField = value; - } - } - - /// <remarks/> - public string BarCode_AutoPOStockInBillWMS { - get { - return this.barCode_AutoPOStockInBillWMSField; - } - set { - this.barCode_AutoPOStockInBillWMSField = value; - } - } - - /// <remarks/> - public string BarCode_AutoMateOutBackBillWMS { - get { - return this.barCode_AutoMateOutBackBillWMSField; - } - set { - this.barCode_AutoMateOutBackBillWMSField = value; - } - } - - /// <remarks/> - public string BarCode_AutoSellOutBackBillWMS { - get { - return this.barCode_AutoSellOutBackBillWMSField; - } - set { - this.barCode_AutoSellOutBackBillWMSField = value; - } - } - - /// <remarks/> - public string BarCode_DeleterAndMakerMustSame { - get { - return this.barCode_DeleterAndMakerMustSameField; - } - set { - this.barCode_DeleterAndMakerMustSameField = value; - } - } - - /// <remarks/> - public string Sc_ICMOBill_AutoProcExchBill { - get { - return this.sc_ICMOBill_AutoProcExchBillField; - } - set { - this.sc_ICMOBill_AutoProcExchBillField = value; - } - } - - /// <remarks/> - public string Sc_ProcessExchangeBill_AutoBarCode { - get { - return this.sc_ProcessExchangeBill_AutoBarCodeField; - } - set { - this.sc_ProcessExchangeBill_AutoBarCodeField = value; - } - } - - /// <remarks/> - public string MES_StationInBill_FIFOCtl { - get { - return this.mES_StationInBill_FIFOCtlField; - } - set { - this.mES_StationInBill_FIFOCtlField = value; - } - } - - /// <remarks/> - public string MES_StationInBill_FullMoveCtl { - get { - return this.mES_StationInBill_FullMoveCtlField; - } - set { - this.mES_StationInBill_FullMoveCtlField = value; - } - } - - /// <remarks/> - public string MES_StationInBill_QtyCtl { - get { - return this.mES_StationInBill_QtyCtlField; - } - set { - this.mES_StationInBill_QtyCtlField = value; - } - } - - /// <remarks/> - public string MES_StationInBill_OneCtl { - get { - return this.mES_StationInBill_OneCtlField; - } - set { - this.mES_StationInBill_OneCtlField = value; - } - } - - /// <remarks/> - public string MES_StationInBill_FirstCheckOut { - get { - return this.mES_StationInBill_FirstCheckOutField; - } - set { - this.mES_StationInBill_FirstCheckOutField = value; - } - } - - /// <remarks/> - public string MES_StationInBill_ProcessCheckCtl { - get { - return this.mES_StationInBill_ProcessCheckCtlField; - } - set { - this.mES_StationInBill_ProcessCheckCtlField = value; - } - } - - /// <remarks/> - public string MES_StationInBill_DeleteCtl { - get { - return this.mES_StationInBill_DeleteCtlField; - } - set { - this.mES_StationInBill_DeleteCtlField = value; - } - } - - /// <remarks/> - public string MES_StationInBill_LineBindCtl { - get { - return this.mES_StationInBill_LineBindCtlField; - } - set { - this.mES_StationInBill_LineBindCtlField = value; - } - } - - /// <remarks/> - public string MES_StationInBill_AutoFindSNO { - get { - return this.mES_StationInBill_AutoFindSNOField; - } - set { - this.mES_StationInBill_AutoFindSNOField = value; - } - } - - /// <remarks/> - public string MES_StationInBill_ShowUSERProcess { - get { - return this.mES_StationInBill_ShowUSERProcessField; - } - set { - this.mES_StationInBill_ShowUSERProcessField = value; - } - } - - /// <remarks/> - public string MES_StationInBill_SaveAutoAddnew { - get { - return this.mES_StationInBill_SaveAutoAddnewField; - } - set { - this.mES_StationInBill_SaveAutoAddnewField = value; - } - } - - /// <remarks/> - public string MES_StationInBill_DeleteRelationCtl { - get { - return this.mES_StationInBill_DeleteRelationCtlField; - } - set { - this.mES_StationInBill_DeleteRelationCtlField = value; - } - } - - /// <remarks/> - public string MES_StationInBill_PreQtyCtl { - get { - return this.mES_StationInBill_PreQtyCtlField; - } - set { - this.mES_StationInBill_PreQtyCtlField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_QtyCtl { - get { - return this.mES_StationOutBill_QtyCtlField; - } - set { - this.mES_StationOutBill_QtyCtlField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_QtyPreQtyCtl { - get { - return this.mES_StationOutBill_QtyPreQtyCtlField; - } - set { - this.mES_StationOutBill_QtyPreQtyCtlField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_QtyNextQtyCtl { - get { - return this.mES_StationOutBill_QtyNextQtyCtlField; - } - set { - this.mES_StationOutBill_QtyNextQtyCtlField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_ProcessCheckOut { - get { - return this.mES_StationOutBill_ProcessCheckOutField; - } - set { - this.mES_StationOutBill_ProcessCheckOutField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_FirstCheckOut { - get { - return this.mES_StationOutBill_FirstCheckOutField; - } - set { - this.mES_StationOutBill_FirstCheckOutField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_DeleteCtl { - get { - return this.mES_StationOutBill_DeleteCtlField; - } - set { - this.mES_StationOutBill_DeleteCtlField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_FstAutoICMOReport { - get { - return this.mES_StationOutBill_FstAutoICMOReportField; - } - set { - this.mES_StationOutBill_FstAutoICMOReportField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_LastAutoICMOReport { - get { - return this.mES_StationOutBill_LastAutoICMOReportField; - } - set { - this.mES_StationOutBill_LastAutoICMOReportField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_AutoStockIn { - get { - return this.mES_StationOutBill_AutoStockInField; - } - set { - this.mES_StationOutBill_AutoStockInField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_InStockType { - get { - return this.mES_StationOutBill_InStockTypeField; - } - set { - this.mES_StationOutBill_InStockTypeField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_AutoFindSNO { - get { - return this.mES_StationOutBill_AutoFindSNOField; - } - set { - this.mES_StationOutBill_AutoFindSNOField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_ShowUSERProcess { - get { - return this.mES_StationOutBill_ShowUSERProcessField; - } - set { - this.mES_StationOutBill_ShowUSERProcessField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_SaveAutoAddnew { - get { - return this.mES_StationOutBill_SaveAutoAddnewField; - } - set { - this.mES_StationOutBill_SaveAutoAddnewField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_DeleteRelationCtl { - get { - return this.mES_StationOutBill_DeleteRelationCtlField; - } - set { - this.mES_StationOutBill_DeleteRelationCtlField = value; - } - } - - /// <remarks/> - public string MES_StationOutBill_NextQtyCtl { - get { - return this.mES_StationOutBill_NextQtyCtlField; - } - set { - this.mES_StationOutBill_NextQtyCtlField = value; - } - } - - /// <remarks/> - public string QC_NoPassProdCheckBill_QtyCtl { - get { - return this.qC_NoPassProdCheckBill_QtyCtlField; - } - set { - this.qC_NoPassProdCheckBill_QtyCtlField = value; - } - } - - /// <remarks/> - public string QC_NoPassProdCheckBill_BadReasonQtyCtrl { - get { - return this.qC_NoPassProdCheckBill_BadReasonQtyCtrlField; - } - set { - this.qC_NoPassProdCheckBill_BadReasonQtyCtrlField = value; - } - } - - /// <remarks/> - public string QC_NoPassProdCheckBill_DeleteCtl { - get { - return this.qC_NoPassProdCheckBill_DeleteCtlField; - } - set { - this.qC_NoPassProdCheckBill_DeleteCtlField = value; - } - } - - /// <remarks/> - public string MES_StationEntrustInBill_FIFOCtl { - get { - return this.mES_StationEntrustInBill_FIFOCtlField; - } - set { - this.mES_StationEntrustInBill_FIFOCtlField = value; - } - } - - /// <remarks/> - public string MES_StationEntrustInBill_FullMoveCtl { - get { - return this.mES_StationEntrustInBill_FullMoveCtlField; - } - set { - this.mES_StationEntrustInBill_FullMoveCtlField = value; - } - } - - /// <remarks/> - public string MES_StationEntrustInBill_QtyCtl { - get { - return this.mES_StationEntrustInBill_QtyCtlField; - } - set { - this.mES_StationEntrustInBill_QtyCtlField = value; - } - } - - /// <remarks/> - public string MES_StationEntrustInBill_OneCtl { - get { - return this.mES_StationEntrustInBill_OneCtlField; - } - set { - this.mES_StationEntrustInBill_OneCtlField = value; - } - } - - /// <remarks/> - public string MES_StationEntrustInBill_DeleteCtl { - get { - return this.mES_StationEntrustInBill_DeleteCtlField; - } - set { - this.mES_StationEntrustInBill_DeleteCtlField = value; - } - } - - /// <remarks/> - public string MES_StationEntrustInBill_SaveAutoAddnew { - get { - return this.mES_StationEntrustInBill_SaveAutoAddnewField; - } - set { - this.mES_StationEntrustInBill_SaveAutoAddnewField = value; - } - } - - /// <remarks/> - public string MES_StationEntrustOutBill_QtyCtl { - get { - return this.mES_StationEntrustOutBill_QtyCtlField; - } - set { - this.mES_StationEntrustOutBill_QtyCtlField = value; - } - } - - /// <remarks/> - public string MES_StationEntrustOutBill_DeleteCtl { - get { - return this.mES_StationEntrustOutBill_DeleteCtlField; - } - set { - this.mES_StationEntrustOutBill_DeleteCtlField = value; - } - } - - /// <remarks/> - public string MES_StationEntrustOutBill_SaveAutoAddnew { - get { - return this.mES_StationEntrustOutBill_SaveAutoAddnewField; - } - set { - this.mES_StationEntrustOutBill_SaveAutoAddnewField = value; - } - } - - /// <remarks/> - public string Sc_MESBeginWorkBill_AutoCheck { - get { - return this.sc_MESBeginWorkBill_AutoCheckField; - } - set { - this.sc_MESBeginWorkBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Sc_MESReturnWorkBill_AutoCheck { - get { - return this.sc_MESReturnWorkBill_AutoCheckField; - } - set { - this.sc_MESReturnWorkBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Sc_MESEndWorkBill_AutoCheck { - get { - return this.sc_MESEndWorkBill_AutoCheckField; - } - set { - this.sc_MESEndWorkBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Sc_MESStopWorkBill_AutoCheck { - get { - return this.sc_MESStopWorkBill_AutoCheckField; - } - set { - this.sc_MESStopWorkBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Sc_ICMOBillWorkQtyStatus_AutoCheck { - get { - return this.sc_ICMOBillWorkQtyStatus_AutoCheckField; - } - set { - this.sc_ICMOBillWorkQtyStatus_AutoCheckField = value; - } - } - - /// <remarks/> - public string Sc_ICMOBillQualityStatus_AutoCheck { - get { - return this.sc_ICMOBillQualityStatus_AutoCheckField; - } - set { - this.sc_ICMOBillQualityStatus_AutoCheckField = value; - } - } - - /// <remarks/> - public string Sc_MaterToSourceBill_AutoCheck { - get { - return this.sc_MaterToSourceBill_AutoCheckField; - } - set { - this.sc_MaterToSourceBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Sc_MaterToSourceBill_MouldLifeCtrl { - get { - return this.sc_MaterToSourceBill_MouldLifeCtrlField; - } - set { - this.sc_MaterToSourceBill_MouldLifeCtrlField = value; - } - } - - /// <remarks/> - public string Sc_MaterToSourceBill_MouldLifeCtrlType { - get { - return this.sc_MaterToSourceBill_MouldLifeCtrlTypeField; - } - set { - this.sc_MaterToSourceBill_MouldLifeCtrlTypeField = value; - } - } - - /// <remarks/> - public string OA_ErrMsgBackBill_AutoCheck { - get { - return this.oA_ErrMsgBackBill_AutoCheckField; - } - set { - this.oA_ErrMsgBackBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Sc_MESProceReportWorkBill_AutoCheck { - get { - return this.sc_MESProceReportWorkBill_AutoCheckField; - } - set { - this.sc_MESProceReportWorkBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string QC_FirstPieceCheckBill_AutoCheck { - get { - return this.qC_FirstPieceCheckBill_AutoCheckField; - } - set { - this.qC_FirstPieceCheckBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Sc_MouldProdOutBill_AutoCheck { - get { - return this.sc_MouldProdOutBill_AutoCheckField; - } - set { - this.sc_MouldProdOutBill_AutoCheckField = value; - } - } - - /// <remarks/> - public string Sc_MouldProdOutBill_SaveAutoAddnew { - get { - return this.sc_MouldProdOutBill_SaveAutoAddnewField; - } - set { - this.sc_MouldProdOutBill_SaveAutoAddnewField = value; - } - } - - /// <remarks/> - public string Sc_MouldProdOutBill_MouldLifeCtrl { - get { - return this.sc_MouldProdOutBill_MouldLifeCtrlField; - } - set { - this.sc_MouldProdOutBill_MouldLifeCtrlField = value; - } - } - - /// <remarks/> - public string Sc_MouldProdOutBill_MouldLifeCtrlType { - get { - return this.sc_MouldProdOutBill_MouldLifeCtrlTypeField; - } - set { - this.sc_MouldProdOutBill_MouldLifeCtrlTypeField = value; - } - } - - /// <remarks/> - public string Gy_RoutingBill_SaveAutoLastProc { - get { - return this.gy_RoutingBill_SaveAutoLastProcField; - } - set { - this.gy_RoutingBill_SaveAutoLastProcField = value; - } - } - } - - /// <remarks/> - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ClsGy_BarCodeBill_WMS_Model_View))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] - public partial class ClsGy_BarCodeBill_WMS_Model { - - private long hItemIDField; - - private string hBarCodeField; - - private string hBatchNoField; - - private long hMaterIDField; - - private long hUnitIDField; - - private string hBarCodeTypeField; - - private double hQtyField; - - private long hSupIDField; - - private long hGroupIDField; - - private string hMakerField; - - private System.DateTime hMakeDateField; - - private string hRemarkField; - - private long hSourceInterIDField; - - private long hSourceEntryIDField; - - private string hSourceBillNoField; - - private string hSourceBillTypeField; - - private long hPrintQtyField; - - private long hDeptIDField; - - private double hinitQtyField; - - private string hMTONoField; - - private bool hStopflagField; - - private System.DateTime hProduceDateField; - - private System.DateTime hExpiryDateField; - - /// <remarks/> - public long HItemID { - get { - return this.hItemIDField; - } - set { - this.hItemIDField = value; - } - } - - /// <remarks/> - public string HBarCode { - get { - return this.hBarCodeField; - } - set { - this.hBarCodeField = value; - } - } - - /// <remarks/> - public string HBatchNo { - get { - return this.hBatchNoField; - } - set { - this.hBatchNoField = value; - } - } - - /// <remarks/> - public long HMaterID { - get { - return this.hMaterIDField; - } - set { - this.hMaterIDField = value; - } - } - - /// <remarks/> - public long HUnitID { - get { - return this.hUnitIDField; - } - set { - this.hUnitIDField = value; - } - } - - /// <remarks/> - public string HBarCodeType { - get { - return this.hBarCodeTypeField; - } - set { - this.hBarCodeTypeField = value; - } - } - - /// <remarks/> - public double HQty { - get { - return this.hQtyField; - } - set { - this.hQtyField = value; - } - } - - /// <remarks/> - public long HSupID { - get { - return this.hSupIDField; - } - set { - this.hSupIDField = value; - } - } - - /// <remarks/> - public long HGroupID { - get { - return this.hGroupIDField; - } - set { - this.hGroupIDField = value; - } - } - - /// <remarks/> - public string HMaker { - get { - return this.hMakerField; - } - set { - this.hMakerField = value; - } - } - - /// <remarks/> - public System.DateTime HMakeDate { - get { - return this.hMakeDateField; - } - set { - this.hMakeDateField = value; - } - } - - /// <remarks/> - public string HRemark { - get { - return this.hRemarkField; - } - set { - this.hRemarkField = value; - } - } - - /// <remarks/> - public long HSourceInterID { - get { - return this.hSourceInterIDField; - } - set { - this.hSourceInterIDField = value; - } - } - - /// <remarks/> - public long HSourceEntryID { - get { - return this.hSourceEntryIDField; - } - set { - this.hSourceEntryIDField = value; - } - } - - /// <remarks/> - public string HSourceBillNo { - get { - return this.hSourceBillNoField; - } - set { - this.hSourceBillNoField = value; - } - } - - /// <remarks/> - public string HSourceBillType { - get { - return this.hSourceBillTypeField; - } - set { - this.hSourceBillTypeField = value; - } - } - - /// <remarks/> - public long HPrintQty { - get { - return this.hPrintQtyField; - } - set { - this.hPrintQtyField = value; - } - } - - /// <remarks/> - public long HDeptID { - get { - return this.hDeptIDField; - } - set { - this.hDeptIDField = value; - } - } - - /// <remarks/> - public double HinitQty { - get { - return this.hinitQtyField; - } - set { - this.hinitQtyField = value; - } - } - - /// <remarks/> - public string HMTONo { - get { - return this.hMTONoField; - } - set { - this.hMTONoField = value; - } - } - - /// <remarks/> - public bool HStopflag { - get { - return this.hStopflagField; - } - set { - this.hStopflagField = value; - } - } - - /// <remarks/> - public System.DateTime HProduceDate { - get { - return this.hProduceDateField; - } - set { - this.hProduceDateField = value; - } - } - - /// <remarks/> - public System.DateTime HExpiryDate { - get { - return this.hExpiryDateField; - } - set { - this.hExpiryDateField = value; - } - } - } - - /// <remarks/> - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] - public partial class ClsGy_BarCodeBill_WMS_Model_View : ClsGy_BarCodeBill_WMS_Model { - - private string hMaterNumberField; - - private string hMaterNameField; - - private string hMaterModelField; - - private string hUnitNameField; - - private string hSupNameField; - - private string hGroupNameField; - - private string hDeptNameField; - - private long hErpClsIDField; - - private long hWHIDField; - - private long hSPIDField; - - private string hCusRelationNumberField; - - private string hBarCodeStatusField; - - private string hWHNameField; - - private System.DateTime hDateField; - - private long hInstructIDField; - - private string hInstructNoField; - - private long hSeOrderBillIDField; - - private string hSeOrderBillNoField; - - private long hCheckerIDField; - - private long hAuxPropIDField; - - private string hAuxPropNameField; - - private long hSTOCKORGIDField; - - private long hOWNERIDField; - - private double hSourceQtyField; - - private string hBarCode_PackField; - - /// <remarks/> - public string HMaterNumber { - get { - return this.hMaterNumberField; - } - set { - this.hMaterNumberField = value; - } - } - - /// <remarks/> - public string HMaterName { - get { - return this.hMaterNameField; - } - set { - this.hMaterNameField = value; - } - } - - /// <remarks/> - public string HMaterModel { - get { - return this.hMaterModelField; - } - set { - this.hMaterModelField = value; - } - } - - /// <remarks/> - public string HUnitName { - get { - return this.hUnitNameField; - } - set { - this.hUnitNameField = value; - } - } - - /// <remarks/> - public string HSupName { - get { - return this.hSupNameField; - } - set { - this.hSupNameField = value; - } - } - - /// <remarks/> - public string HGroupName { - get { - return this.hGroupNameField; - } - set { - this.hGroupNameField = value; - } - } - - /// <remarks/> - public string HDeptName { - get { - return this.hDeptNameField; - } - set { - this.hDeptNameField = value; - } - } - - /// <remarks/> - public long HErpClsID { - get { - return this.hErpClsIDField; - } - set { - this.hErpClsIDField = value; - } - } - - /// <remarks/> - public long HWHID { - get { - return this.hWHIDField; - } - set { - this.hWHIDField = value; - } - } - - /// <remarks/> - public long HSPID { - get { - return this.hSPIDField; - } - set { - this.hSPIDField = value; - } - } - - /// <remarks/> - public string HCusRelationNumber { - get { - return this.hCusRelationNumberField; - } - set { - this.hCusRelationNumberField = value; - } - } - - /// <remarks/> - public string HBarCodeStatus { - get { - return this.hBarCodeStatusField; - } - set { - this.hBarCodeStatusField = value; - } - } - - /// <remarks/> - public string HWHName { - get { - return this.hWHNameField; - } - set { - this.hWHNameField = value; - } - } - - /// <remarks/> - public System.DateTime HDate { - get { - return this.hDateField; - } - set { - this.hDateField = value; - } - } - - /// <remarks/> - public long HInstructID { - get { - return this.hInstructIDField; - } - set { - this.hInstructIDField = value; - } - } - - /// <remarks/> - public string HInstructNo { - get { - return this.hInstructNoField; - } - set { - this.hInstructNoField = value; - } - } - - /// <remarks/> - public long HSeOrderBillID { - get { - return this.hSeOrderBillIDField; - } - set { - this.hSeOrderBillIDField = value; - } - } - - /// <remarks/> - public string HSeOrderBillNo { - get { - return this.hSeOrderBillNoField; - } - set { - this.hSeOrderBillNoField = value; - } - } - - /// <remarks/> - public long HCheckerID { - get { - return this.hCheckerIDField; - } - set { - this.hCheckerIDField = value; - } - } - - /// <remarks/> - public long HAuxPropID { - get { - return this.hAuxPropIDField; - } - set { - this.hAuxPropIDField = value; - } - } - - /// <remarks/> - public string HAuxPropName { - get { - return this.hAuxPropNameField; - } - set { - this.hAuxPropNameField = value; - } - } - - /// <remarks/> - public long HSTOCKORGID { - get { - return this.hSTOCKORGIDField; - } - set { - this.hSTOCKORGIDField = value; - } - } - - /// <remarks/> - public long HOWNERID { - get { - return this.hOWNERIDField; - } - set { - this.hOWNERIDField = value; - } - } - - /// <remarks/> - public double HSourceQty { - get { - return this.hSourceQtyField; - } - set { - this.hSourceQtyField = value; - } - } - - /// <remarks/> - public string HBarCode_Pack { - get { - return this.hBarCode_PackField; - } - set { - this.hBarCode_PackField = value; + this.RaiseExceptionIfNecessary(); + return ((string)(this.results[1])); } } } @@ -50395,6 +50636,40 @@ get { this.RaiseExceptionIfNecessary(); return ((string)(this.results[7])); + } + } + } + + /// <remarks/> + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] + public delegate void get_InfoByBarCodeForReportCompletedEventHandler(object sender, get_InfoByBarCodeForReportCompletedEventArgs e); + + /// <remarks/> + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class get_InfoByBarCodeForReportCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal get_InfoByBarCodeForReportCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// <remarks/> + public ClsGy_BarCodeBill_WMS_Model_View Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ClsGy_BarCodeBill_WMS_Model_View)(this.results[0])); + } + } + + /// <remarks/> + public string sErrMsg { + get { + this.RaiseExceptionIfNecessary(); + return ((string)(this.results[1])); } } } @@ -52615,6 +52890,40 @@ /// <remarks/> [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] + public delegate void get_SourceBarCode_ICMOReportCompletedEventHandler(object sender, get_SourceBarCode_ICMOReportCompletedEventArgs e); + + /// <remarks/> + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class get_SourceBarCode_ICMOReportCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal get_SourceBarCode_ICMOReportCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// <remarks/> + public ClsKf_ICStockBill_WMS Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ClsKf_ICStockBill_WMS)(this.results[0])); + } + } + + /// <remarks/> + public string sErrMsg { + get { + this.RaiseExceptionIfNecessary(); + return ((string)(this.results[1])); + } + } + } + + /// <remarks/> + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] public delegate void get_SourceBarCode_ProductInCompletedEventHandler(object sender, get_SourceBarCode_ProductInCompletedEventArgs e); /// <remarks/> @@ -52660,6 +52969,40 @@ private object[] results; internal get_SourceBarCode_POStockInCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// <remarks/> + public ClsKf_ICStockBill_WMS Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ClsKf_ICStockBill_WMS)(this.results[0])); + } + } + + /// <remarks/> + public string sErrMsg { + get { + this.RaiseExceptionIfNecessary(); + return ((string)(this.results[1])); + } + } + } + + /// <remarks/> + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] + public delegate void get_SourceBarCode_EntrustInCompletedEventHandler(object sender, get_SourceBarCode_EntrustInCompletedEventArgs e); + + /// <remarks/> + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class get_SourceBarCode_EntrustInCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal get_SourceBarCode_EntrustInCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : base(exception, cancelled, userState) { this.results = results; } @@ -53571,17 +53914,17 @@ /// <remarks/> [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] - public delegate void set_SaveMouldStockBill_NewCompletedEventHandler(object sender, set_SaveMouldStockBill_NewCompletedEventArgs e); + public delegate void set_CheckOtherInBillCompletedEventHandler(object sender, set_CheckOtherInBillCompletedEventArgs e); /// <remarks/> [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class set_SaveMouldStockBill_NewCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + public partial class set_CheckOtherInBillCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { private object[] results; - internal set_SaveMouldStockBill_NewCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + internal set_CheckOtherInBillCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : base(exception, cancelled, userState) { this.results = results; } @@ -53591,74 +53934,6 @@ get { this.RaiseExceptionIfNecessary(); return ((bool)(this.results[0])); - } - } - - /// <remarks/> - public string sErrMsg { - get { - this.RaiseExceptionIfNecessary(); - return ((string)(this.results[1])); - } - } - } - - /// <remarks/> - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] - public delegate void MouldTempList_ModifyCompletedEventHandler(object sender, MouldTempList_ModifyCompletedEventArgs e); - - /// <remarks/> - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class MouldTempList_ModifyCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { - - private object[] results; - - internal MouldTempList_ModifyCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) { - this.results = results; - } - - /// <remarks/> - public bool Result { - get { - this.RaiseExceptionIfNecessary(); - return ((bool)(this.results[0])); - } - } - - /// <remarks/> - public string sErrMsg { - get { - this.RaiseExceptionIfNecessary(); - return ((string)(this.results[1])); - } - } - } - - /// <remarks/> - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] - public delegate void GetMouldSourceCompletedEventHandler(object sender, GetMouldSourceCompletedEventArgs e); - - /// <remarks/> - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetMouldSourceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { - - private object[] results; - - internal GetMouldSourceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) { - this.results = results; - } - - /// <remarks/> - public System.Data.DataSet Result { - get { - this.RaiseExceptionIfNecessary(); - return ((System.Data.DataSet)(this.results[0])); } } @@ -55983,40 +56258,6 @@ /// <remarks/> [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] - public delegate void get_InfoByBarCodeForReportCompletedEventHandler(object sender, get_InfoByBarCodeForReportCompletedEventArgs e); - - /// <remarks/> - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class get_InfoByBarCodeForReportCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { - - private object[] results; - - internal get_InfoByBarCodeForReportCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) { - this.results = results; - } - - /// <remarks/> - public ClsGy_BarCodeBill_WMS_Model_View Result { - get { - this.RaiseExceptionIfNecessary(); - return ((ClsGy_BarCodeBill_WMS_Model_View)(this.results[0])); - } - } - - /// <remarks/> - public string sErrMsg { - get { - this.RaiseExceptionIfNecessary(); - return ((string)(this.results[1])); - } - } - } - - /// <remarks/> - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] public delegate void set_SaveEntrustOutBill_BillCheckCompletedEventHandler(object sender, set_SaveEntrustOutBill_BillCheckCompletedEventArgs e); /// <remarks/> @@ -57825,40 +58066,6 @@ /// <remarks/> [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] - public delegate void set_CheckOtherInBillCompletedEventHandler(object sender, set_CheckOtherInBillCompletedEventArgs e); - - /// <remarks/> - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class set_CheckOtherInBillCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { - - private object[] results; - - internal set_CheckOtherInBillCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) { - this.results = results; - } - - /// <remarks/> - public bool Result { - get { - this.RaiseExceptionIfNecessary(); - return ((bool)(this.results[0])); - } - } - - /// <remarks/> - public string sErrMsg { - get { - this.RaiseExceptionIfNecessary(); - return ((string)(this.results[1])); - } - } - } - - /// <remarks/> - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] public delegate void set_SaveMoveStockStepInBill_NewCompletedEventHandler(object sender, set_SaveMoveStockStepInBill_NewCompletedEventArgs e); /// <remarks/> @@ -58293,6 +58500,40 @@ /// <remarks/> [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] + public delegate void set_SaveSellOutBill_MESCompletedEventHandler(object sender, set_SaveSellOutBill_MESCompletedEventArgs e); + + /// <remarks/> + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class set_SaveSellOutBill_MESCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal set_SaveSellOutBill_MESCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// <remarks/> + public bool Result { + get { + this.RaiseExceptionIfNecessary(); + return ((bool)(this.results[0])); + } + } + + /// <remarks/> + public string sErrMsg { + get { + this.RaiseExceptionIfNecessary(); + return ((string)(this.results[1])); + } + } + } + + /// <remarks/> + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")] public delegate void set_SaveSellOutBill_CLDCompletedEventHandler(object sender, set_SaveSellOutBill_CLDCompletedEventArgs e); /// <remarks/> diff --git a/WebAPI/Web References/WebS/Reference.map b/WebAPI/Web References/WebS/Reference.map index fb5a6dd..be337e7 100644 --- a/WebAPI/Web References/WebS/Reference.map +++ b/WebAPI/Web References/WebS/Reference.map @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <DiscoveryClientResultsFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Results> - <DiscoveryClientResult referenceType="System.Web.Services.Discovery.DiscoveryDocumentReference" url="http://192.168.63.20/WEBS-WMS/WebService1.asmx?disco" filename="WebService1.disco" /> - <DiscoveryClientResult referenceType="System.Web.Services.Discovery.ContractReference" url="http://192.168.63.20/WEBS-WMS/WebService1.asmx?wsdl" filename="WebService1.wsdl" /> + <DiscoveryClientResult referenceType="System.Web.Services.Discovery.DiscoveryDocumentReference" url="http://192.168.63.53/WEBS-WMS/WebService1.asmx?disco" filename="WebService1.disco" /> + <DiscoveryClientResult referenceType="System.Web.Services.Discovery.ContractReference" url="http://192.168.63.53/WEBS-WMS/WebService1.asmx?wsdl" filename="WebService1.wsdl" /> </Results> </DiscoveryClientResultsFile> \ No newline at end of file diff --git a/WebAPI/Web References/WebS/WebService1.disco b/WebAPI/Web References/WebS/WebService1.disco index 7836b30..955c57d 100644 --- a/WebAPI/Web References/WebS/WebService1.disco +++ b/WebAPI/Web References/WebS/WebService1.disco @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <discovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/disco/"> - <contractRef ref="http://192.168.63.20/WEBS-WMS/WebService1.asmx?wsdl" docRef="http://192.168.63.20/WEBS-WMS/WebService1.asmx" xmlns="http://schemas.xmlsoap.org/disco/scl/" /> - <soap address="http://192.168.63.20/WEBS-WMS/WebService1.asmx" xmlns:q1="http://tempuri.org/" binding="q1:WebService1Soap" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> - <soap address="http://192.168.63.20/WEBS-WMS/WebService1.asmx" xmlns:q2="http://tempuri.org/" binding="q2:WebService1Soap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> + <contractRef ref="http://192.168.63.53/WEBS-WMS/WebService1.asmx?wsdl" docRef="http://192.168.63.53/WEBS-WMS/WebService1.asmx" xmlns="http://schemas.xmlsoap.org/disco/scl/" /> + <soap address="http://192.168.63.53/WEBS-WMS/WebService1.asmx" xmlns:q1="http://tempuri.org/" binding="q1:WebService1Soap" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> + <soap address="http://192.168.63.53/WEBS-WMS/WebService1.asmx" xmlns:q2="http://tempuri.org/" binding="q2:WebService1Soap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> </discovery> \ No newline at end of file diff --git a/WebAPI/Web References/WebS/WebService1.wsdl b/WebAPI/Web References/WebS/WebService1.wsdl index 42e2c63..aae9795 100644 --- a/WebAPI/Web References/WebS/WebService1.wsdl +++ b/WebAPI/Web References/WebS/WebService1.wsdl @@ -2,6 +2,123 @@ <wsdl:definitions xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> <wsdl:types> <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/"> + <s:element name="set_SaveMouldStockBill_New"> + <s:complexType> + <s:sequence> + <s:element minOccurs="0" maxOccurs="1" name="oMain" type="tns:ClsSc_MouldStockBillMain" /> + <s:element minOccurs="0" maxOccurs="1" name="sHSourceType" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> + <s:complexType name="ClsSc_MouldStockBillMain"> + <s:complexContent mixed="false"> + <s:extension base="tns:ClsXt_BaseBillMain"> + <s:sequence> + <s:element minOccurs="1" maxOccurs="1" name="HSCWHID" type="s:long" /> + <s:element minOccurs="1" maxOccurs="1" name="HSupID" type="s:long" /> + <s:element minOccurs="1" maxOccurs="1" name="HEmpID" type="s:long" /> + <s:element minOccurs="1" maxOccurs="1" name="HManagerID" type="s:long" /> + <s:element minOccurs="1" maxOccurs="1" name="HWHID" type="s:long" /> + <s:element minOccurs="1" maxOccurs="1" name="HSecManagerID" type="s:long" /> + <s:element minOccurs="1" maxOccurs="1" name="HKeeperID" type="s:long" /> + <s:element minOccurs="1" maxOccurs="1" name="HDeptID" type="s:long" /> + <s:element minOccurs="0" maxOccurs="1" name="HExplanation" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HInnerBillNo" type="s:string" /> + <s:element minOccurs="1" maxOccurs="1" name="HRedBlueFlag" type="s:boolean" /> + <s:element minOccurs="0" maxOccurs="1" name="HRepairType" type="s:string" /> + <s:element minOccurs="1" maxOccurs="1" name="HCorrespondentTypeID" type="s:long" /> + </s:sequence> + </s:extension> + </s:complexContent> + </s:complexType> + <s:complexType name="ClsXt_BaseBillMain"> + <s:sequence> + <s:element minOccurs="1" maxOccurs="1" name="HYear" type="s:long" /> + <s:element minOccurs="1" maxOccurs="1" name="HPeriod" type="s:long" /> + <s:element minOccurs="0" maxOccurs="1" name="HBillType" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HBillSubType" type="s:string" /> + <s:element minOccurs="1" maxOccurs="1" name="HInterID" type="s:long" /> + <s:element minOccurs="1" maxOccurs="1" name="HDate" type="s:dateTime" /> + <s:element minOccurs="0" maxOccurs="1" name="HBillNo" type="s:string" /> + <s:element minOccurs="1" maxOccurs="1" name="HBillStatus" type="s:int" /> + <s:element minOccurs="1" maxOccurs="1" name="HCheckItemNowID" type="s:long" /> + <s:element minOccurs="1" maxOccurs="1" name="HCheckItemNextID" type="s:long" /> + <s:element minOccurs="1" maxOccurs="1" name="HCheckFlowID" type="s:long" /> + <s:element minOccurs="0" maxOccurs="1" name="HRemark" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HEmpCode" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HMaker" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HMakeDate" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HUpDater" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HUpDateDate" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HChecker" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HCheckDate" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HBacker" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HBackDate" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HBackRemark" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HCloseMan" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HCloseDate" type="s:string" /> + <s:element minOccurs="1" maxOccurs="1" name="HCloseType" type="s:boolean" /> + <s:element minOccurs="0" maxOccurs="1" name="HDeleteMan" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HDeleteDate" type="s:string" /> + <s:element minOccurs="1" maxOccurs="1" name="HBillerID" type="s:long" /> + <s:element minOccurs="0" maxOccurs="1" name="HMainSourceBillNo" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HMainSourceBillType" type="s:string" /> + <s:element minOccurs="1" maxOccurs="1" name="HMainSourceInterID" type="s:long" /> + <s:element minOccurs="1" maxOccurs="1" name="HMainSourceEntryID" type="s:long" /> + </s:sequence> + </s:complexType> + <s:element name="set_SaveMouldStockBill_NewResponse"> + <s:complexType> + <s:sequence> + <s:element minOccurs="1" maxOccurs="1" name="set_SaveMouldStockBill_NewResult" type="s:boolean" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> + <s:element name="MouldTempList_Modify"> + <s:complexType> + <s:sequence> + <s:element minOccurs="1" maxOccurs="1" name="sHInterID" type="s:long" /> + <s:element minOccurs="0" maxOccurs="1" name="sHBillNo" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="sHBillType" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> + <s:element name="MouldTempList_ModifyResponse"> + <s:complexType> + <s:sequence> + <s:element minOccurs="1" maxOccurs="1" name="MouldTempList_ModifyResult" type="s:boolean" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> + <s:element name="GetMouldSource"> + <s:complexType> + <s:sequence> + <s:element minOccurs="0" maxOccurs="1" name="HBillType" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HSourceBillNo" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HSourceType" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> + <s:element name="GetMouldSourceResponse"> + <s:complexType> + <s:sequence> + <s:element minOccurs="0" maxOccurs="1" name="GetMouldSourceResult"> + <s:complexType> + <s:sequence> + <s:element ref="s:schema" /> + <s:any /> + </s:sequence> + </s:complexType> + </s:element> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> <s:element name="GetSc_MouldStockBillMain_TempList"> <s:complexType> <s:sequence> @@ -1782,6 +1899,22 @@ </s:sequence> </s:complexType> </s:element> + <s:element name="get_InfoByBarCodeForReport"> + <s:complexType> + <s:sequence> + <s:element minOccurs="0" maxOccurs="1" name="sBarCode" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> + <s:element name="get_InfoByBarCodeForReportResponse"> + <s:complexType> + <s:sequence> + <s:element minOccurs="0" maxOccurs="1" name="get_InfoByBarCodeForReportResult" type="tns:ClsGy_BarCodeBill_WMS_Model_View" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> <s:element name="get_InfoByStationInBill"> <s:complexType> <s:sequence> @@ -3200,6 +3333,28 @@ </s:sequence> </s:complexType> </s:element> + <s:element name="get_SourceBarCode_ICMOReport"> + <s:complexType> + <s:sequence> + <s:element minOccurs="1" maxOccurs="1" name="HInterID" type="s:long" /> + <s:element minOccurs="0" maxOccurs="1" name="HBillNo" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HBillType" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HSourceBillNo" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HSourceBillType" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HMaker" type="s:string" /> + <s:element minOccurs="1" maxOccurs="1" name="HStockOrgID" type="s:long" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> + <s:element name="get_SourceBarCode_ICMOReportResponse"> + <s:complexType> + <s:sequence> + <s:element minOccurs="0" maxOccurs="1" name="get_SourceBarCode_ICMOReportResult" type="tns:ClsKf_ICStockBill_WMS" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> <s:element name="get_SourceBarCode_ProductIn"> <s:complexType> <s:sequence> @@ -3240,6 +3395,28 @@ <s:complexType> <s:sequence> <s:element minOccurs="0" maxOccurs="1" name="get_SourceBarCode_POStockInResult" type="tns:ClsKf_ICStockBill_WMS" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> + <s:element name="get_SourceBarCode_EntrustIn"> + <s:complexType> + <s:sequence> + <s:element minOccurs="1" maxOccurs="1" name="HInterID" type="s:long" /> + <s:element minOccurs="0" maxOccurs="1" name="HBillNo" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HBillType" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HSourceBillNo" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HSourceBillType" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="HMaker" type="s:string" /> + <s:element minOccurs="1" maxOccurs="1" name="HStockOrgID" type="s:long" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> + <s:element name="get_SourceBarCode_EntrustInResponse"> + <s:complexType> + <s:sequence> + <s:element minOccurs="0" maxOccurs="1" name="get_SourceBarCode_EntrustInResult" type="tns:ClsKf_ICStockBill_WMS" /> <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> </s:sequence> </s:complexType> @@ -3870,124 +4047,7 @@ </s:sequence> </s:complexType> </s:element> - <s:element name="set_SaveMouldStockBill_New"> - <s:complexType> - <s:sequence> - <s:element minOccurs="0" maxOccurs="1" name="oMain" type="tns:ClsSc_MouldStockBillMain" /> - <s:element minOccurs="0" maxOccurs="1" name="sHSourceType" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> - </s:sequence> - </s:complexType> - </s:element> - <s:complexType name="ClsSc_MouldStockBillMain"> - <s:complexContent mixed="false"> - <s:extension base="tns:ClsXt_BaseBillMain"> - <s:sequence> - <s:element minOccurs="1" maxOccurs="1" name="HSCWHID" type="s:long" /> - <s:element minOccurs="1" maxOccurs="1" name="HSupID" type="s:long" /> - <s:element minOccurs="1" maxOccurs="1" name="HEmpID" type="s:long" /> - <s:element minOccurs="1" maxOccurs="1" name="HManagerID" type="s:long" /> - <s:element minOccurs="1" maxOccurs="1" name="HWHID" type="s:long" /> - <s:element minOccurs="1" maxOccurs="1" name="HSecManagerID" type="s:long" /> - <s:element minOccurs="1" maxOccurs="1" name="HKeeperID" type="s:long" /> - <s:element minOccurs="1" maxOccurs="1" name="HDeptID" type="s:long" /> - <s:element minOccurs="0" maxOccurs="1" name="HExplanation" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HInnerBillNo" type="s:string" /> - <s:element minOccurs="1" maxOccurs="1" name="HRedBlueFlag" type="s:boolean" /> - <s:element minOccurs="0" maxOccurs="1" name="HRepairType" type="s:string" /> - <s:element minOccurs="1" maxOccurs="1" name="HCorrespondentTypeID" type="s:long" /> - </s:sequence> - </s:extension> - </s:complexContent> - </s:complexType> - <s:complexType name="ClsXt_BaseBillMain"> - <s:sequence> - <s:element minOccurs="1" maxOccurs="1" name="HYear" type="s:long" /> - <s:element minOccurs="1" maxOccurs="1" name="HPeriod" type="s:long" /> - <s:element minOccurs="0" maxOccurs="1" name="HBillType" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HBillSubType" type="s:string" /> - <s:element minOccurs="1" maxOccurs="1" name="HInterID" type="s:long" /> - <s:element minOccurs="1" maxOccurs="1" name="HDate" type="s:dateTime" /> - <s:element minOccurs="0" maxOccurs="1" name="HBillNo" type="s:string" /> - <s:element minOccurs="1" maxOccurs="1" name="HBillStatus" type="s:int" /> - <s:element minOccurs="1" maxOccurs="1" name="HCheckItemNowID" type="s:long" /> - <s:element minOccurs="1" maxOccurs="1" name="HCheckItemNextID" type="s:long" /> - <s:element minOccurs="1" maxOccurs="1" name="HCheckFlowID" type="s:long" /> - <s:element minOccurs="0" maxOccurs="1" name="HRemark" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HEmpCode" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HMaker" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HMakeDate" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HUpDater" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HUpDateDate" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HChecker" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HCheckDate" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HBacker" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HBackDate" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HBackRemark" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HCloseMan" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HCloseDate" type="s:string" /> - <s:element minOccurs="1" maxOccurs="1" name="HCloseType" type="s:boolean" /> - <s:element minOccurs="0" maxOccurs="1" name="HDeleteMan" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HDeleteDate" type="s:string" /> - <s:element minOccurs="1" maxOccurs="1" name="HBillerID" type="s:long" /> - <s:element minOccurs="0" maxOccurs="1" name="HMainSourceBillNo" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HMainSourceBillType" type="s:string" /> - <s:element minOccurs="1" maxOccurs="1" name="HMainSourceInterID" type="s:long" /> - <s:element minOccurs="1" maxOccurs="1" name="HMainSourceEntryID" type="s:long" /> - </s:sequence> - </s:complexType> - <s:element name="set_SaveMouldStockBill_NewResponse"> - <s:complexType> - <s:sequence> - <s:element minOccurs="1" maxOccurs="1" name="set_SaveMouldStockBill_NewResult" type="s:boolean" /> - <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> - </s:sequence> - </s:complexType> - </s:element> - <s:element name="MouldTempList_Modify"> - <s:complexType> - <s:sequence> - <s:element minOccurs="1" maxOccurs="1" name="sHInterID" type="s:long" /> - <s:element minOccurs="0" maxOccurs="1" name="sHBillNo" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="sHBillType" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> - </s:sequence> - </s:complexType> - </s:element> - <s:element name="MouldTempList_ModifyResponse"> - <s:complexType> - <s:sequence> - <s:element minOccurs="1" maxOccurs="1" name="MouldTempList_ModifyResult" type="s:boolean" /> - <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> - </s:sequence> - </s:complexType> - </s:element> - <s:element name="GetMouldSource"> - <s:complexType> - <s:sequence> - <s:element minOccurs="0" maxOccurs="1" name="HBillType" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HSourceBillNo" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="HSourceType" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> - </s:sequence> - </s:complexType> - </s:element> - <s:element name="GetMouldSourceResponse"> - <s:complexType> - <s:sequence> - <s:element minOccurs="0" maxOccurs="1" name="GetMouldSourceResult"> - <s:complexType> - <s:sequence> - <s:element ref="s:schema" /> - <s:any /> - </s:sequence> - </s:complexType> - </s:element> - <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> - </s:sequence> - </s:complexType> - </s:element> - <s:element name="set_AuditOtherInBill"> + <s:element name="set_CheckOtherInBill"> <s:complexType> <s:sequence> <s:element minOccurs="0" maxOccurs="1" name="oMain" type="tns:ClsKf_OtherInBillMain_K3" /> @@ -4026,6 +4086,22 @@ <s:element minOccurs="0" maxOccurs="1" name="HDeleteDate" type="s:string" /> </s:sequence> </s:complexType> + <s:element name="set_CheckOtherInBillResponse"> + <s:complexType> + <s:sequence> + <s:element minOccurs="1" maxOccurs="1" name="set_CheckOtherInBillResult" type="s:boolean" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> + <s:element name="set_AuditOtherInBill"> + <s:complexType> + <s:sequence> + <s:element minOccurs="0" maxOccurs="1" name="oMain" type="tns:ClsKf_OtherInBillMain_K3" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> <s:element name="set_AuditOtherInBillResponse"> <s:complexType> <s:sequence> @@ -5549,22 +5625,6 @@ </s:sequence> </s:complexType> </s:element> - <s:element name="get_InfoByBarCodeForReport"> - <s:complexType> - <s:sequence> - <s:element minOccurs="0" maxOccurs="1" name="sBarCode" type="s:string" /> - <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> - </s:sequence> - </s:complexType> - </s:element> - <s:element name="get_InfoByBarCodeForReportResponse"> - <s:complexType> - <s:sequence> - <s:element minOccurs="0" maxOccurs="1" name="get_InfoByBarCodeForReportResult" type="tns:ClsGy_BarCodeBill_WMS_Model_View" /> - <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> - </s:sequence> - </s:complexType> - </s:element> <s:element name="set_SaveEntrustOutBill_BillCheck"> <s:complexType> <s:sequence> @@ -6732,22 +6792,6 @@ </s:sequence> </s:complexType> </s:element> - <s:element name="set_CheckOtherInBill"> - <s:complexType> - <s:sequence> - <s:element minOccurs="0" maxOccurs="1" name="oMain" type="tns:ClsKf_OtherInBillMain_K3" /> - <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> - </s:sequence> - </s:complexType> - </s:element> - <s:element name="set_CheckOtherInBillResponse"> - <s:complexType> - <s:sequence> - <s:element minOccurs="1" maxOccurs="1" name="set_CheckOtherInBillResult" type="s:boolean" /> - <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> - </s:sequence> - </s:complexType> - </s:element> <s:element name="set_SaveMoveStockStepInBill_New"> <s:complexType> <s:sequence> @@ -7099,6 +7143,24 @@ <s:complexType> <s:sequence> <s:element minOccurs="1" maxOccurs="1" name="set_SaveSellOutBill_CLD_NewResult" type="s:boolean" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> + <s:element name="set_SaveSellOutBill_MES"> + <s:complexType> + <s:sequence> + <s:element minOccurs="0" maxOccurs="1" name="oMain" type="tns:ClsKf_SellOutBillMain" /> + <s:element minOccurs="0" maxOccurs="1" name="sHSourceType" type="s:string" /> + <s:element minOccurs="0" maxOccurs="1" name="oSystemParameterMain" type="tns:ClsXt_SystemParameterMain" /> + <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> + </s:sequence> + </s:complexType> + </s:element> + <s:element name="set_SaveSellOutBill_MESResponse"> + <s:complexType> + <s:sequence> + <s:element minOccurs="1" maxOccurs="1" name="set_SaveSellOutBill_MESResult" type="s:boolean" /> <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" /> </s:sequence> </s:complexType> @@ -13764,6 +13826,24 @@ </s:element> </s:schema> </wsdl:types> + <wsdl:message name="set_SaveMouldStockBill_NewSoapIn"> + <wsdl:part name="parameters" element="tns:set_SaveMouldStockBill_New" /> + </wsdl:message> + <wsdl:message name="set_SaveMouldStockBill_NewSoapOut"> + <wsdl:part name="parameters" element="tns:set_SaveMouldStockBill_NewResponse" /> + </wsdl:message> + <wsdl:message name="MouldTempList_ModifySoapIn"> + <wsdl:part name="parameters" element="tns:MouldTempList_Modify" /> + </wsdl:message> + <wsdl:message name="MouldTempList_ModifySoapOut"> + <wsdl:part name="parameters" element="tns:MouldTempList_ModifyResponse" /> + </wsdl:message> + <wsdl:message name="GetMouldSourceSoapIn"> + <wsdl:part name="parameters" element="tns:GetMouldSource" /> + </wsdl:message> + <wsdl:message name="GetMouldSourceSoapOut"> + <wsdl:part name="parameters" element="tns:GetMouldSourceResponse" /> + </wsdl:message> <wsdl:message name="GetSc_MouldStockBillMain_TempListSoapIn"> <wsdl:part name="parameters" element="tns:GetSc_MouldStockBillMain_TempList" /> </wsdl:message> @@ -14124,6 +14204,12 @@ <wsdl:message name="set_SavePonderationBillMain_Temp_BarCode_MouldSoapOut"> <wsdl:part name="parameters" element="tns:set_SavePonderationBillMain_Temp_BarCode_MouldResponse" /> </wsdl:message> + <wsdl:message name="get_InfoByBarCodeForReportSoapIn"> + <wsdl:part name="parameters" element="tns:get_InfoByBarCodeForReport" /> + </wsdl:message> + <wsdl:message name="get_InfoByBarCodeForReportSoapOut"> + <wsdl:part name="parameters" element="tns:get_InfoByBarCodeForReportResponse" /> + </wsdl:message> <wsdl:message name="get_InfoByStationInBillSoapIn"> <wsdl:part name="parameters" element="tns:get_InfoByStationInBill" /> </wsdl:message> @@ -14454,6 +14540,12 @@ <wsdl:message name="GetSourceBillListSoapOut"> <wsdl:part name="parameters" element="tns:GetSourceBillListResponse" /> </wsdl:message> + <wsdl:message name="get_SourceBarCode_ICMOReportSoapIn"> + <wsdl:part name="parameters" element="tns:get_SourceBarCode_ICMOReport" /> + </wsdl:message> + <wsdl:message name="get_SourceBarCode_ICMOReportSoapOut"> + <wsdl:part name="parameters" element="tns:get_SourceBarCode_ICMOReportResponse" /> + </wsdl:message> <wsdl:message name="get_SourceBarCode_ProductInSoapIn"> <wsdl:part name="parameters" element="tns:get_SourceBarCode_ProductIn" /> </wsdl:message> @@ -14465,6 +14557,12 @@ </wsdl:message> <wsdl:message name="get_SourceBarCode_POStockInSoapOut"> <wsdl:part name="parameters" element="tns:get_SourceBarCode_POStockInResponse" /> + </wsdl:message> + <wsdl:message name="get_SourceBarCode_EntrustInSoapIn"> + <wsdl:part name="parameters" element="tns:get_SourceBarCode_EntrustIn" /> + </wsdl:message> + <wsdl:message name="get_SourceBarCode_EntrustInSoapOut"> + <wsdl:part name="parameters" element="tns:get_SourceBarCode_EntrustInResponse" /> </wsdl:message> <wsdl:message name="get_SourceBarCode_OtherInSoapIn"> <wsdl:part name="parameters" element="tns:get_SourceBarCode_OtherIn" /> @@ -14610,23 +14708,11 @@ <wsdl:message name="set_DelSc_MouldStockBillMain_TempSoapOut"> <wsdl:part name="parameters" element="tns:set_DelSc_MouldStockBillMain_TempResponse" /> </wsdl:message> - <wsdl:message name="set_SaveMouldStockBill_NewSoapIn"> - <wsdl:part name="parameters" element="tns:set_SaveMouldStockBill_New" /> + <wsdl:message name="set_CheckOtherInBillSoapIn"> + <wsdl:part name="parameters" element="tns:set_CheckOtherInBill" /> </wsdl:message> - <wsdl:message name="set_SaveMouldStockBill_NewSoapOut"> - <wsdl:part name="parameters" element="tns:set_SaveMouldStockBill_NewResponse" /> - </wsdl:message> - <wsdl:message name="MouldTempList_ModifySoapIn"> - <wsdl:part name="parameters" element="tns:MouldTempList_Modify" /> - </wsdl:message> - <wsdl:message name="MouldTempList_ModifySoapOut"> - <wsdl:part name="parameters" element="tns:MouldTempList_ModifyResponse" /> - </wsdl:message> - <wsdl:message name="GetMouldSourceSoapIn"> - <wsdl:part name="parameters" element="tns:GetMouldSource" /> - </wsdl:message> - <wsdl:message name="GetMouldSourceSoapOut"> - <wsdl:part name="parameters" element="tns:GetMouldSourceResponse" /> + <wsdl:message name="set_CheckOtherInBillSoapOut"> + <wsdl:part name="parameters" element="tns:set_CheckOtherInBillResponse" /> </wsdl:message> <wsdl:message name="set_AuditOtherInBillSoapIn"> <wsdl:part name="parameters" element="tns:set_AuditOtherInBill" /> @@ -15054,12 +15140,6 @@ <wsdl:message name="get_InfoByBarCode_SourceSoapOut"> <wsdl:part name="parameters" element="tns:get_InfoByBarCode_SourceResponse" /> </wsdl:message> - <wsdl:message name="get_InfoByBarCodeForReportSoapIn"> - <wsdl:part name="parameters" element="tns:get_InfoByBarCodeForReport" /> - </wsdl:message> - <wsdl:message name="get_InfoByBarCodeForReportSoapOut"> - <wsdl:part name="parameters" element="tns:get_InfoByBarCodeForReportResponse" /> - </wsdl:message> <wsdl:message name="set_SaveEntrustOutBill_BillCheckSoapIn"> <wsdl:part name="parameters" element="tns:set_SaveEntrustOutBill_BillCheck" /> </wsdl:message> @@ -15372,12 +15452,6 @@ <wsdl:message name="set_CheckAddOtherInBillSoapOut"> <wsdl:part name="parameters" element="tns:set_CheckAddOtherInBillResponse" /> </wsdl:message> - <wsdl:message name="set_CheckOtherInBillSoapIn"> - <wsdl:part name="parameters" element="tns:set_CheckOtherInBill" /> - </wsdl:message> - <wsdl:message name="set_CheckOtherInBillSoapOut"> - <wsdl:part name="parameters" element="tns:set_CheckOtherInBillResponse" /> - </wsdl:message> <wsdl:message name="set_SaveMoveStockStepInBill_NewSoapIn"> <wsdl:part name="parameters" element="tns:set_SaveMoveStockStepInBill_New" /> </wsdl:message> @@ -15455,6 +15529,12 @@ </wsdl:message> <wsdl:message name="set_SaveSellOutBill_CLD_NewSoapOut"> <wsdl:part name="parameters" element="tns:set_SaveSellOutBill_CLD_NewResponse" /> + </wsdl:message> + <wsdl:message name="set_SaveSellOutBill_MESSoapIn"> + <wsdl:part name="parameters" element="tns:set_SaveSellOutBill_MES" /> + </wsdl:message> + <wsdl:message name="set_SaveSellOutBill_MESSoapOut"> + <wsdl:part name="parameters" element="tns:set_SaveSellOutBill_MESResponse" /> </wsdl:message> <wsdl:message name="set_SaveSellOutBill_CLDSoapIn"> <wsdl:part name="parameters" element="tns:set_SaveSellOutBill_CLD" /> @@ -17113,6 +17193,18 @@ <wsdl:part name="parameters" element="tns:GetSc_ICMOBackBillListResponse" /> </wsdl:message> <wsdl:portType name="WebService1Soap"> + <wsdl:operation name="set_SaveMouldStockBill_New"> + <wsdl:input message="tns:set_SaveMouldStockBill_NewSoapIn" /> + <wsdl:output message="tns:set_SaveMouldStockBill_NewSoapOut" /> + </wsdl:operation> + <wsdl:operation name="MouldTempList_Modify"> + <wsdl:input message="tns:MouldTempList_ModifySoapIn" /> + <wsdl:output message="tns:MouldTempList_ModifySoapOut" /> + </wsdl:operation> + <wsdl:operation name="GetMouldSource"> + <wsdl:input message="tns:GetMouldSourceSoapIn" /> + <wsdl:output message="tns:GetMouldSourceSoapOut" /> + </wsdl:operation> <wsdl:operation name="GetSc_MouldStockBillMain_TempList"> <wsdl:input message="tns:GetSc_MouldStockBillMain_TempListSoapIn" /> <wsdl:output message="tns:GetSc_MouldStockBillMain_TempListSoapOut" /> @@ -17353,6 +17445,10 @@ <wsdl:input message="tns:set_SavePonderationBillMain_Temp_BarCode_MouldSoapIn" /> <wsdl:output message="tns:set_SavePonderationBillMain_Temp_BarCode_MouldSoapOut" /> </wsdl:operation> + <wsdl:operation name="get_InfoByBarCodeForReport"> + <wsdl:input message="tns:get_InfoByBarCodeForReportSoapIn" /> + <wsdl:output message="tns:get_InfoByBarCodeForReportSoapOut" /> + </wsdl:operation> <wsdl:operation name="get_InfoByStationInBill"> <wsdl:input message="tns:get_InfoByStationInBillSoapIn" /> <wsdl:output message="tns:get_InfoByStationInBillSoapOut" /> @@ -17573,6 +17669,10 @@ <wsdl:input message="tns:GetSourceBillListSoapIn" /> <wsdl:output message="tns:GetSourceBillListSoapOut" /> </wsdl:operation> + <wsdl:operation name="get_SourceBarCode_ICMOReport"> + <wsdl:input message="tns:get_SourceBarCode_ICMOReportSoapIn" /> + <wsdl:output message="tns:get_SourceBarCode_ICMOReportSoapOut" /> + </wsdl:operation> <wsdl:operation name="get_SourceBarCode_ProductIn"> <wsdl:input message="tns:get_SourceBarCode_ProductInSoapIn" /> <wsdl:output message="tns:get_SourceBarCode_ProductInSoapOut" /> @@ -17580,6 +17680,10 @@ <wsdl:operation name="get_SourceBarCode_POStockIn"> <wsdl:input message="tns:get_SourceBarCode_POStockInSoapIn" /> <wsdl:output message="tns:get_SourceBarCode_POStockInSoapOut" /> + </wsdl:operation> + <wsdl:operation name="get_SourceBarCode_EntrustIn"> + <wsdl:input message="tns:get_SourceBarCode_EntrustInSoapIn" /> + <wsdl:output message="tns:get_SourceBarCode_EntrustInSoapOut" /> </wsdl:operation> <wsdl:operation name="get_SourceBarCode_OtherIn"> <wsdl:input message="tns:get_SourceBarCode_OtherInSoapIn" /> @@ -17677,17 +17781,9 @@ <wsdl:input message="tns:set_DelSc_MouldStockBillMain_TempSoapIn" /> <wsdl:output message="tns:set_DelSc_MouldStockBillMain_TempSoapOut" /> </wsdl:operation> - <wsdl:operation name="set_SaveMouldStockBill_New"> - <wsdl:input message="tns:set_SaveMouldStockBill_NewSoapIn" /> - <wsdl:output message="tns:set_SaveMouldStockBill_NewSoapOut" /> - </wsdl:operation> - <wsdl:operation name="MouldTempList_Modify"> - <wsdl:input message="tns:MouldTempList_ModifySoapIn" /> - <wsdl:output message="tns:MouldTempList_ModifySoapOut" /> - </wsdl:operation> - <wsdl:operation name="GetMouldSource"> - <wsdl:input message="tns:GetMouldSourceSoapIn" /> - <wsdl:output message="tns:GetMouldSourceSoapOut" /> + <wsdl:operation name="set_CheckOtherInBill"> + <wsdl:input message="tns:set_CheckOtherInBillSoapIn" /> + <wsdl:output message="tns:set_CheckOtherInBillSoapOut" /> </wsdl:operation> <wsdl:operation name="set_AuditOtherInBill"> <wsdl:input message="tns:set_AuditOtherInBillSoapIn" /> @@ -17973,10 +18069,6 @@ <wsdl:input message="tns:get_InfoByBarCode_SourceSoapIn" /> <wsdl:output message="tns:get_InfoByBarCode_SourceSoapOut" /> </wsdl:operation> - <wsdl:operation name="get_InfoByBarCodeForReport"> - <wsdl:input message="tns:get_InfoByBarCodeForReportSoapIn" /> - <wsdl:output message="tns:get_InfoByBarCodeForReportSoapOut" /> - </wsdl:operation> <wsdl:operation name="set_SaveEntrustOutBill_BillCheck"> <wsdl:input message="tns:set_SaveEntrustOutBill_BillCheckSoapIn" /> <wsdl:output message="tns:set_SaveEntrustOutBill_BillCheckSoapOut" /> @@ -18185,10 +18277,6 @@ <wsdl:input message="tns:set_CheckAddOtherInBillSoapIn" /> <wsdl:output message="tns:set_CheckAddOtherInBillSoapOut" /> </wsdl:operation> - <wsdl:operation name="set_CheckOtherInBill"> - <wsdl:input message="tns:set_CheckOtherInBillSoapIn" /> - <wsdl:output message="tns:set_CheckOtherInBillSoapOut" /> - </wsdl:operation> <wsdl:operation name="set_SaveMoveStockStepInBill_New"> <wsdl:input message="tns:set_SaveMoveStockStepInBill_NewSoapIn" /> <wsdl:output message="tns:set_SaveMoveStockStepInBill_NewSoapOut" /> @@ -18240,6 +18328,10 @@ <wsdl:operation name="set_SaveSellOutBill_CLD_New"> <wsdl:input message="tns:set_SaveSellOutBill_CLD_NewSoapIn" /> <wsdl:output message="tns:set_SaveSellOutBill_CLD_NewSoapOut" /> + </wsdl:operation> + <wsdl:operation name="set_SaveSellOutBill_MES"> + <wsdl:input message="tns:set_SaveSellOutBill_MESSoapIn" /> + <wsdl:output message="tns:set_SaveSellOutBill_MESSoapOut" /> </wsdl:operation> <wsdl:operation name="set_SaveSellOutBill_CLD"> <wsdl:input message="tns:set_SaveSellOutBill_CLDSoapIn" /> @@ -19348,6 +19440,33 @@ </wsdl:portType> <wsdl:binding name="WebService1Soap" type="tns:WebService1Soap"> <soap:binding transport="http://schemas.xmlsoap.org/soap/http" /> + <wsdl:operation name="set_SaveMouldStockBill_New"> + <soap:operation soapAction="http://tempuri.org/set_SaveMouldStockBill_New" style="document" /> + <wsdl:input> + <soap:body use="literal" /> + </wsdl:input> + <wsdl:output> + <soap:body use="literal" /> + </wsdl:output> + </wsdl:operation> + <wsdl:operation name="MouldTempList_Modify"> + <soap:operation soapAction="http://tempuri.org/MouldTempList_Modify" style="document" /> + <wsdl:input> + <soap:body use="literal" /> + </wsdl:input> + <wsdl:output> + <soap:body use="literal" /> + </wsdl:output> + </wsdl:operation> + <wsdl:operation name="GetMouldSource"> + <soap:operation soapAction="http://tempuri.org/GetMouldSource" style="document" /> + <wsdl:input> + <soap:body use="literal" /> + </wsdl:input> + <wsdl:output> + <soap:body use="literal" /> + </wsdl:output> + </wsdl:operation> <wsdl:operation name="GetSc_MouldStockBillMain_TempList"> <soap:operation soapAction="http://tempuri.org/GetSc_MouldStockBillMain_TempList" style="document" /> <wsdl:input> @@ -19888,6 +20007,15 @@ <soap:body use="literal" /> </wsdl:output> </wsdl:operation> + <wsdl:operation name="get_InfoByBarCodeForReport"> + <soap:operation soapAction="http://tempuri.org/get_InfoByBarCodeForReport" style="document" /> + <wsdl:input> + <soap:body use="literal" /> + </wsdl:input> + <wsdl:output> + <soap:body use="literal" /> + </wsdl:output> + </wsdl:operation> <wsdl:operation name="get_InfoByStationInBill"> <soap:operation soapAction="http://tempuri.org/get_InfoByStationInBill" style="document" /> <wsdl:input> @@ -20383,6 +20511,15 @@ <soap:body use="literal" /> </wsdl:output> </wsdl:operation> + <wsdl:operation name="get_SourceBarCode_ICMOReport"> + <soap:operation soapAction="http://tempuri.org/get_SourceBarCode_ICMOReport" style="document" /> + <wsdl:input> + <soap:body use="literal" /> + </wsdl:input> + <wsdl:output> + <soap:body use="literal" /> + </wsdl:output> + </wsdl:operation> <wsdl:operation name="get_SourceBarCode_ProductIn"> <soap:operation soapAction="http://tempuri.org/get_SourceBarCode_ProductIn" style="document" /> <wsdl:input> @@ -20394,6 +20531,15 @@ </wsdl:operation> <wsdl:operation name="get_SourceBarCode_POStockIn"> <soap:operation soapAction="http://tempuri.org/get_SourceBarCode_POStockIn" style="document" /> + <wsdl:input> + <soap:body use="literal" /> + </wsdl:input> + <wsdl:output> + <soap:body use="literal" /> + </wsdl:output> + </wsdl:operation> + <wsdl:operation name="get_SourceBarCode_EntrustIn"> + <soap:operation soapAction="http://tempuri.org/get_SourceBarCode_EntrustIn" style="document" /> <wsdl:input> <soap:body use="literal" /> </wsdl:input> @@ -20617,26 +20763,8 @@ <soap:body use="literal" /> </wsdl:output> </wsdl:operation> - <wsdl:operation name="set_SaveMouldStockBill_New"> - <soap:operation soapAction="http://tempuri.org/set_SaveMouldStockBill_New" style="document" /> - <wsdl:input> - <soap:body use="literal" /> - </wsdl:input> - <wsdl:output> - <soap:body use="literal" /> - </wsdl:output> - </wsdl:operation> - <wsdl:operation name="MouldTempList_Modify"> - <soap:operation soapAction="http://tempuri.org/MouldTempList_Modify" style="document" /> - <wsdl:input> - <soap:body use="literal" /> - </wsdl:input> - <wsdl:output> - <soap:body use="literal" /> - </wsdl:output> - </wsdl:operation> - <wsdl:operation name="GetMouldSource"> - <soap:operation soapAction="http://tempuri.org/GetMouldSource" style="document" /> + <wsdl:operation name="set_CheckOtherInBill"> + <soap:operation soapAction="http://tempuri.org/set_CheckOtherInBill" style="document" /> <wsdl:input> <soap:body use="literal" /> </wsdl:input> @@ -21283,15 +21411,6 @@ <soap:body use="literal" /> </wsdl:output> </wsdl:operation> - <wsdl:operation name="get_InfoByBarCodeForReport"> - <soap:operation soapAction="http://tempuri.org/get_InfoByBarCodeForReport" style="document" /> - <wsdl:input> - <soap:body use="literal" /> - </wsdl:input> - <wsdl:output> - <soap:body use="literal" /> - </wsdl:output> - </wsdl:operation> <wsdl:operation name="set_SaveEntrustOutBill_BillCheck"> <soap:operation soapAction="http://tempuri.org/set_SaveEntrustOutBill_BillCheck" style="document" /> <wsdl:input> @@ -21760,15 +21879,6 @@ <soap:body use="literal" /> </wsdl:output> </wsdl:operation> - <wsdl:operation name="set_CheckOtherInBill"> - <soap:operation soapAction="http://tempuri.org/set_CheckOtherInBill" style="document" /> - <wsdl:input> - <soap:body use="literal" /> - </wsdl:input> - <wsdl:output> - <soap:body use="literal" /> - </wsdl:output> - </wsdl:operation> <wsdl:operation name="set_SaveMoveStockStepInBill_New"> <soap:operation soapAction="http://tempuri.org/set_SaveMoveStockStepInBill_New" style="document" /> <wsdl:input> @@ -21879,6 +21989,15 @@ </wsdl:operation> <wsdl:operation name="set_SaveSellOutBill_CLD_New"> <soap:operation soapAction="http://tempuri.org/set_SaveSellOutBill_CLD_New" style="document" /> + <wsdl:input> + <soap:body use="literal" /> + </wsdl:input> + <wsdl:output> + <soap:body use="literal" /> + </wsdl:output> + </wsdl:operation> + <wsdl:operation name="set_SaveSellOutBill_MES"> + <soap:operation soapAction="http://tempuri.org/set_SaveSellOutBill_MES" style="document" /> <wsdl:input> <soap:body use="literal" /> </wsdl:input> @@ -24373,6 +24492,33 @@ </wsdl:binding> <wsdl:binding name="WebService1Soap12" type="tns:WebService1Soap"> <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" /> + <wsdl:operation name="set_SaveMouldStockBill_New"> + <soap12:operation soapAction="http://tempuri.org/set_SaveMouldStockBill_New" style="document" /> + <wsdl:input> + <soap12:body use="literal" /> + </wsdl:input> + <wsdl:output> + <soap12:body use="literal" /> + </wsdl:output> + </wsdl:operation> + <wsdl:operation name="MouldTempList_Modify"> + <soap12:operation soapAction="http://tempuri.org/MouldTempList_Modify" style="document" /> + <wsdl:input> + <soap12:body use="literal" /> + </wsdl:input> + <wsdl:output> + <soap12:body use="literal" /> + </wsdl:output> + </wsdl:operation> + <wsdl:operation name="GetMouldSource"> + <soap12:operation soapAction="http://tempuri.org/GetMouldSource" style="document" /> + <wsdl:input> + <soap12:body use="literal" /> + </wsdl:input> + <wsdl:output> + <soap12:body use="literal" /> + </wsdl:output> + </wsdl:operation> <wsdl:operation name="GetSc_MouldStockBillMain_TempList"> <soap12:operation soapAction="http://tempuri.org/GetSc_MouldStockBillMain_TempList" style="document" /> <wsdl:input> @@ -24913,6 +25059,15 @@ <soap12:body use="literal" /> </wsdl:output> </wsdl:operation> + <wsdl:operation name="get_InfoByBarCodeForReport"> + <soap12:operation soapAction="http://tempuri.org/get_InfoByBarCodeForReport" style="document" /> + <wsdl:input> + <soap12:body use="literal" /> + </wsdl:input> + <wsdl:output> + <soap12:body use="literal" /> + </wsdl:output> + </wsdl:operation> <wsdl:operation name="get_InfoByStationInBill"> <soap12:operation soapAction="http://tempuri.org/get_InfoByStationInBill" style="document" /> <wsdl:input> @@ -25408,6 +25563,15 @@ <soap12:body use="literal" /> </wsdl:output> </wsdl:operation> + <wsdl:operation name="get_SourceBarCode_ICMOReport"> + <soap12:operation soapAction="http://tempuri.org/get_SourceBarCode_ICMOReport" style="document" /> + <wsdl:input> + <soap12:body use="literal" /> + </wsdl:input> + <wsdl:output> + <soap12:body use="literal" /> + </wsdl:output> + </wsdl:operation> <wsdl:operation name="get_SourceBarCode_ProductIn"> <soap12:operation soapAction="http://tempuri.org/get_SourceBarCode_ProductIn" style="document" /> <wsdl:input> @@ -25419,6 +25583,15 @@ </wsdl:operation> <wsdl:operation name="get_SourceBarCode_POStockIn"> <soap12:operation soapAction="http://tempuri.org/get_SourceBarCode_POStockIn" style="document" /> + <wsdl:input> + <soap12:body use="literal" /> + </wsdl:input> + <wsdl:output> + <soap12:body use="literal" /> + </wsdl:output> + </wsdl:operation> + <wsdl:operation name="get_SourceBarCode_EntrustIn"> + <soap12:operation soapAction="http://tempuri.org/get_SourceBarCode_EntrustIn" style="document" /> <wsdl:input> <soap12:body use="literal" /> </wsdl:input> @@ -25642,26 +25815,8 @@ <soap12:body use="literal" /> </wsdl:output> </wsdl:operation> - <wsdl:operation name="set_SaveMouldStockBill_New"> - <soap12:operation soapAction="http://tempuri.org/set_SaveMouldStockBill_New" style="document" /> - <wsdl:input> - <soap12:body use="literal" /> - </wsdl:input> - <wsdl:output> - <soap12:body use="literal" /> - </wsdl:output> - </wsdl:operation> - <wsdl:operation name="MouldTempList_Modify"> - <soap12:operation soapAction="http://tempuri.org/MouldTempList_Modify" style="document" /> - <wsdl:input> - <soap12:body use="literal" /> - </wsdl:input> - <wsdl:output> - <soap12:body use="literal" /> - </wsdl:output> - </wsdl:operation> - <wsdl:operation name="GetMouldSource"> - <soap12:operation soapAction="http://tempuri.org/GetMouldSource" style="document" /> + <wsdl:operation name="set_CheckOtherInBill"> + <soap12:operation soapAction="http://tempuri.org/set_CheckOtherInBill" style="document" /> <wsdl:input> <soap12:body use="literal" /> </wsdl:input> @@ -26308,15 +26463,6 @@ <soap12:body use="literal" /> </wsdl:output> </wsdl:operation> - <wsdl:operation name="get_InfoByBarCodeForReport"> - <soap12:operation soapAction="http://tempuri.org/get_InfoByBarCodeForReport" style="document" /> - <wsdl:input> - <soap12:body use="literal" /> - </wsdl:input> - <wsdl:output> - <soap12:body use="literal" /> - </wsdl:output> - </wsdl:operation> <wsdl:operation name="set_SaveEntrustOutBill_BillCheck"> <soap12:operation soapAction="http://tempuri.org/set_SaveEntrustOutBill_BillCheck" style="document" /> <wsdl:input> @@ -26785,15 +26931,6 @@ <soap12:body use="literal" /> </wsdl:output> </wsdl:operation> - <wsdl:operation name="set_CheckOtherInBill"> - <soap12:operation soapAction="http://tempuri.org/set_CheckOtherInBill" style="document" /> - <wsdl:input> - <soap12:body use="literal" /> - </wsdl:input> - <wsdl:output> - <soap12:body use="literal" /> - </wsdl:output> - </wsdl:operation> <wsdl:operation name="set_SaveMoveStockStepInBill_New"> <soap12:operation soapAction="http://tempuri.org/set_SaveMoveStockStepInBill_New" style="document" /> <wsdl:input> @@ -26904,6 +27041,15 @@ </wsdl:operation> <wsdl:operation name="set_SaveSellOutBill_CLD_New"> <soap12:operation soapAction="http://tempuri.org/set_SaveSellOutBill_CLD_New" style="document" /> + <wsdl:input> + <soap12:body use="literal" /> + </wsdl:input> + <wsdl:output> + <soap12:body use="literal" /> + </wsdl:output> + </wsdl:operation> + <wsdl:operation name="set_SaveSellOutBill_MES"> + <soap12:operation soapAction="http://tempuri.org/set_SaveSellOutBill_MES" style="document" /> <wsdl:input> <soap12:body use="literal" /> </wsdl:input> @@ -29398,10 +29544,10 @@ </wsdl:binding> <wsdl:service name="WebService1"> <wsdl:port name="WebService1Soap" binding="tns:WebService1Soap"> - <soap:address location="http://192.168.63.20/WEBS-WMS/WebService1.asmx" /> + <soap:address location="http://192.168.63.53/WEBS-WMS/WebService1.asmx" /> </wsdl:port> <wsdl:port name="WebService1Soap12" binding="tns:WebService1Soap12"> - <soap12:address location="http://192.168.63.20/WEBS-WMS/WebService1.asmx" /> + <soap12:address location="http://192.168.63.53/WEBS-WMS/WebService1.asmx" /> </wsdl:port> </wsdl:service> </wsdl:definitions> \ No newline at end of file diff --git a/WebAPI/WebAPI.csproj b/WebAPI/WebAPI.csproj index 07216c7..2915276 100644 --- a/WebAPI/WebAPI.csproj +++ b/WebAPI/WebAPI.csproj @@ -1126,10 +1126,10 @@ </ProjectReference> </ItemGroup> <ItemGroup> - <WebReferenceUrl Include="http://192.168.63.20/WEBS-WMS/WebService1.asmx"> + <WebReferenceUrl Include="http://192.168.63.53/WEBS-WMS/WebService1.asmx"> <UrlBehavior>Dynamic</UrlBehavior> <RelPath>Web References\WebS\</RelPath> - <UpdateFromURL>http://192.168.63.20/WEBS-WMS/WebService1.asmx</UpdateFromURL> + <UpdateFromURL>http://192.168.63.53/WEBS-WMS/WebService1.asmx</UpdateFromURL> <ServiceLocationURL> </ServiceLocationURL> <CachedDynamicPropName> -- Gitblit v1.9.1