ch
2022-04-14 b3e25b40e4cbab411ad5a5e587974695b8aba362
新增其他出库检验单  其他出库校验单缓存类表弟
6个文件已修改
1个文件已添加
6464 ■■■■■ 已修改文件
DAL/基础资料/公用基础资料/ClsGy_Source_View.cs 94 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
LMES/bin/x86/Debug.zip 补丁 | 查看 | 原始文档 | blame | 历史
WarM/条码打印/Sc_ICMOToBarCode.cs 142 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WarM/条码打印/Sc_ICMOToBarCode.designer.cs 39 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebAPI/Controllers/ProductInController.cs 260 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebAPI/Web References/WebS/Reference.cs 4343 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebAPI/Web References/WebS/WebService1.wsdl 1586 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
DAL/»ù´¡×ÊÁÏ/¹«Óûù´¡×ÊÁÏ/ClsGy_Source_View.cs
@@ -33,17 +33,73 @@
        //
         
        //返回项目信息
        //public override bool GetInfoByID(Int64 sItemID)
        //{
        //    DataSet DS ;
        //    try
        //    {
        //        DS = oCn.RunProcReturn("Select * from " + MvarItemKey + " Where HItemID='" + sItemID + "'", MvarItemKey, ref DBUtility.ClsPub.sExeReturnInfo);
        //        if (DS.Tables[0].Rows.Count  == 0)
        //            return false;
        //        else
        //        {
        //            return GetInfo(DS);
        //        }
        //    }
        //    catch (Exception e)
        //    {
        //        throw (e);
        //    }
        //}
        //返回项目信息
        public override bool GetInfoByID(Int64 sItemID)
        {
            DataSet DS ;
            DataSet DS;
            try
            {
                DS = oCn.RunProcReturn("Select * from " + MvarItemKey + " Where HItemID='" + sItemID + "'", MvarItemKey, ref DBUtility.ClsPub.sExeReturnInfo);
                if (DS.Tables[0].Rows.Count  == 0)
                Pub_Control.frmHlpInfo_View ofrm = new Pub_Control.frmHlpInfo_View();
                ofrm.sTitle = MvarReportTitle;
                ofrm.sBill = MvarItemKey;
                ofrm.txtFindInfo.Text = WherePart;
                DS = oCn.RunProcReturn("select  distinct HItemID,b.HNumber ,b.HName from Sc_ICMOBillStatus_Tmp a inner join  Gy_Source b on a.HSourceID = b.HItemID Where a.HEMPID =" + sItemID + " or a.HEMPID2 = " + sItemID + " or HEMPID3 =  " + sItemID + "", MvarItemKey, ref DBUtility.ClsPub.sExeReturnInfo);
                if (DS.Tables[0].Rows.Count == 0)
                    return false;
                else
                {
                    return GetInfo(DS);
                    //绑定
                    ofrm.grdShow.DataSource = DS.Tables[0].DefaultView;
                    DS.Dispose();
                    DS = null;
                    ofrm.grdShow.SuspendLayout();
                    ofrm.grdShow.Columns[0].Visible = false;
                    ofrm.ShowDialog();
                    //得到对应列
                    int HItemIDCol = 0;
                    int HNumberCol = 1;
                    int HNameCol = 2;
                    //
                    if (ofrm.OKTag == Pub_Class.ClsPub.Enum_OKTag.OKTag_OK)
                    {
                        if (ofrm.grdShow.CurrentRow == null)
                        {
                            return false;
                        }
                        oModel = new DBUtility.ClsGy_Base_Model();
                        oModel.HItemID = Pub_Class.ClsPub.isLong(ofrm.grdShow.Rows[ofrm.grdShow.CurrentRow.Index].Cells[0].Value);
                        oModel.HNumber = Pub_Class.ClsPub.isStrNull(ofrm.grdShow.Rows[ofrm.grdShow.CurrentRow.Index].Cells[1].Value);
                        oModel.HName = Pub_Class.ClsPub.isStrNull(ofrm.grdShow.Rows[ofrm.grdShow.CurrentRow.Index].Cells[2].Value);
                    }
                    else
                    {
                        return false;
                    }
                    //
                    ofrm.Dispose();
                    ofrm = null;
                    //
                    return true;
                }
            }
            catch (Exception e)
@@ -104,19 +160,23 @@
                omodel.HItemID = Convert.ToInt64(DS.Tables[0].Rows[0]["HItemID"]);
                omodel.HNumber = DS.Tables[0].Rows[0]["HNumber"].ToString().Trim();
                omodel.HName = DS.Tables[0].Rows[0]["HName"].ToString().Trim();
                omodel.HHelpCode = DS.Tables[0].Rows[0]["HHelpCode"].ToString().Trim();
                omodel.HShortNumber = DS.Tables[0].Rows[0]["HShortNumber"].ToString().Trim();
                omodel.HParentID = Convert.ToInt64(DS.Tables[0].Rows[0]["HParentID"]);
                omodel.HLevel = Convert.ToInt64(DS.Tables[0].Rows[0]["HLevel"]);
                omodel.HEndFlag = (bool)DS.Tables[0].Rows[0]["HEndFlag"];
                omodel.HStopflag = (bool)DS.Tables[0].Rows[0]["HStopflag"];
                omodel.HRemark = DS.Tables[0].Rows[0]["HRemark"].ToString().Trim();
                omodel.HProcID = Convert.ToInt64(DS.Tables[0].Rows[0]["HProcID"]);
                omodel.HRelationID = Convert.ToInt64(DS.Tables[0].Rows[0]["HRelationID"]);
                omodel.HCenterID = Convert.ToInt64(DS.Tables[0].Rows[0]["HCenterID"]);
                omodel.HBarCode = DS.Tables[0].Rows[0]["HBarCodeForBase"].ToString().Trim();
                omodel.HType = DS.Tables[0].Rows[0]["HType"].ToString().Trim();
                omodel.HEquipFileID_K3 = Convert.ToInt64(DS.Tables[0].Rows[0]["HEquipFileID_K3"]);
                //20220331修改
                //omodel.HHelpCode = DS.Tables[0].Rows[0]["HHelpCode"].ToString().Trim();
                //omodel.HShortNumber = DS.Tables[0].Rows[0]["HShortNumber"].ToString().Trim();
                //omodel.HParentID = Convert.ToInt64(DS.Tables[0].Rows[0]["HParentID"]);
                //omodel.HLevel = Convert.ToInt64(DS.Tables[0].Rows[0]["HLevel"]);
                //omodel.HEndFlag = (bool)DS.Tables[0].Rows[0]["HEndFlag"];
                //omodel.HStopflag = (bool)DS.Tables[0].Rows[0]["HStopflag"];
                //omodel.HRemark = DS.Tables[0].Rows[0]["HRemark"].ToString().Trim();
                //omodel.HProcID = Convert.ToInt64(DS.Tables[0].Rows[0]["HProcID"]);
                //omodel.HRelationID = Convert.ToInt64(DS.Tables[0].Rows[0]["HRelationID"]);
                //omodel.HCenterID = Convert.ToInt64(DS.Tables[0].Rows[0]["HCenterID"]);
                //omodel.HBarCode = DS.Tables[0].Rows[0]["HBarCodeForBase"].ToString().Trim();
                //omodel.HType = DS.Tables[0].Rows[0]["HType"].ToString().Trim();
                //omodel.HEquipFileID_K3 = Convert.ToInt64(DS.Tables[0].Rows[0]["HEquipFileID_K3"]);
                //修改的地方到这里
                //omodel.HGroupK3ID = Convert.ToInt64(DS.Tables[0].Rows[0]["HGroupK3ID"]);
                //omodel.HGroupID = Convert.ToInt64(DS.Tables[0].Rows[0]["HGroupID"]);
                //omodel.HDeptID = Convert.ToInt64(DS.Tables[0].Rows[0]["HDeptID"]);
LMES/bin/x86/Debug.zip
Binary files differ
WarM/ÌõÂë´òÓ¡/Sc_ICMOToBarCode.cs
@@ -107,6 +107,7 @@
            DSet = SubCn.RunProcReturn("exec h_p_KSTMSC '" + HSeOrderBillNo + "' ,'" + HICMOBillNo + "' , '" + HMaterName + "' , '" + HSourceName + "' ,'" + HEmpName + "' ,'" + HBeginDate + "'", "h_p_KSTMSC", ref DBUtility.ClsPub.sExeReturnInfo);
            //生成首行标题
            if (DSet == null)
                //if (DSet == null|| DSet.Tables[0].Rows.Count == 0)
            {
                MessageBox.Show("没有返回任何结果,请在过滤框中点击【恢复】按钮,尝试再次查询!" + DBUtility.ClsPub.sExeReturnInfo);
                return;
@@ -118,6 +119,7 @@
                if (DSet.Tables[0].Rows.Count > 0)
                {
                    txtHMaterID.Tag = DBUtility.ClsPub.isInt(grdMain.Rows[0].Cells["HInterID"].Value);
                    txtHMiniQty.Text = DBUtility.ClsPub.isStrNull(grdMain.Rows[0].Cells["标准装箱"].Value);
                }
                else
                {
@@ -219,6 +221,12 @@
            initGrid();
            cmbHBarCodeType.SelectedIndex = 0;
            dtpHBeginDate.Value = DateTime.Today;
            string HUserName = "";
            HUserName = ClsPub.isStrNull(DBUtility.ClsPub.CurUserName);
            Int64 HUserID = 0;
            HUserID = ClsPub.isInt(DBUtility.ClsPub.CurUserID);
            txtHEmpID.Text = HUserName;
            txtHEmpID.Tag = HUserID;
        }
        private void grdMain_DblClick(object sender, EventArgs e)
@@ -495,14 +503,14 @@
        private void Sub_SetReport(string sOpenTmp)
        {
            //判断行数
            for (int i = 0; i < grdList.Rows.Count; i++)
            {
                grdList.Rows[i].Cells[0].Value = "";
            }
            for (int i = 0; i < grdList.SelectedRows.Count; i++)
            {
                grdList.Rows[grdMain.SelectedRows[i].Index].Cells[0].Value = "*";
            }
            //for (int i = 0; i < grdList.Rows.Count; i++)
            //{
            //    grdList.Rows[i].Cells[0].Value = "";
            //}
            //for (int i = 0; i < grdList.SelectedRows.Count; i++)
            //{
            //    grdList.Rows[grdMain.SelectedRows[i].Index].Cells[0].Value = "*";
            //}
            //
            Report = new GridppReport();
            Report.LoadFromFile(DBUtility.ClsPub.AppPath + @"\" + sOpenTmp + ".grf");  //here .
@@ -910,6 +918,11 @@
                        string HWorkLineName = "";
                        string HSeOrderBillNo = "";
                        string HInnerBillNo = "";
                        Int64 HSourceID = 0;
                        //毛重
                        Double HMZQty = 0;
                        HMZQty = HZXQty * ClsPub.isDoule(grdMain.Rows[j].Cells[Fun_GetCol("克重")].Value)/1000;
                        HWei = WeiShu;
                        HBarCode = TM;
                        HBarCodeType = ClsPub.isStrNull(cmbHBarCodeType.Text);
@@ -939,20 +952,21 @@
                        HWorkLineName = "";
                        HSeOrderBillNo = "";
                        HInnerBillNo = sPackBarCode;
                        oCn.RunProc("insert into Gy_BarCodeBill (HBarCode,HBarCodeType,HMaterID,HUnitID,HQty" +
                        HSourceID = ClsPub.isInt(txtHSourceID.Tag);
                        oCn.RunProc("insert into Gy_BarCodeBill (HBarCode,HBarCodeType,HMaterID,HUnitID,HQty,HMaterialMQty" +
                                            ",HBatchNo,HSupID,HGroupID,HMaker,HMakeDate,HPrintQty,HinitQty" +
                                            ",HSourceInterID,HSourceEntryID,HSourceBillNo,HSourceBillType,HEndQty " +
                                            ",HBarcodeQtys,HBarcodeNo,HDeptID,HWhID,HSPID,HRemark " +
                                            ",HCusID,HCusType,HEndDate,HWorkLineName,HBarCodeDate " +
                                            ",HSTOCKORGID,HOWNERID,HSeOrderBillNo,HInterID " +
                                            ",HSTOCKORGID,HOWNERID,HSeOrderBillNo,HSourceID,HInterID " +
                                            ",HMaterName,HMaterModel,HPinfan,HAuxPropID,HMTONo,HInnerBillNo " +
                                            ") values ("
                                            + "'" + HBarCode + "','" + HBarCodeType + "'," + HMaterID1.ToString() + "," + HUnitID.ToString() + "," + HQty2.ToString()
                                            + "'" + HBarCode + "','" + HBarCodeType + "'," + HMaterID1.ToString() + "," + HUnitID.ToString() + "," + HQty2.ToString() + ", " + HMZQty.ToString()
                                            + ",'" + HBatchNo2 + "'," + HSupID.ToString() + "," + HGroupID.ToString() + ",'" + ClsPub.CurUserName + "',getdate()," + HPrintQty.ToString() + "," + HQty2.ToString()
                                            + ", " + HSourceInterID.ToString() + "," + HSourceEntryID.ToString() + ",'" + HSourceBillNo + "','" + HSourceBillType + "','" + HWei + "'"
                                            + ", " + HBarcodeQtys.ToString() + "," + HBarcodeNo.ToString() + "," + HDeptID.ToString() + "," + HWhID.ToString() + "," + HSPID.ToString() + ",'" + HRemark + "'"
                                            + ", " + HCusID.ToString() + ",'" + HCusType + "','" + HEndDate.ToShortDateString() + "','" + HWorkLineName + "','" + HDate + "'"
                                            + ", " + ClsPub.HOrgID.ToString() + "," + ClsPub.HOrgID.ToString() + ",'" + HSeOrderBillNo + "'," + HInterID.ToString()
                                            + ", " + ClsPub.HOrgID.ToString() + "," + ClsPub.HOrgID.ToString() + ",'" + HSeOrderBillNo + "'," + HSourceID.ToString() + "," + HInterID.ToString()
                                            + ",'" + HMaterName + "','" + HMaterModel + "','" + HPinfan + "'," + HAuxPropID.ToString() + ",'" + HMTONo + "','" + HInnerBillNo + "')");
                        oCn.RunProc("exec h_p_WMS_SetMaxNo '" + HTMNumber + "'");
@@ -968,7 +982,7 @@
                sPackBarCode = "";
                DataSet DSet = oCn.RunProcReturn("select * from h_v_IF_BarCodeBillList Where HinterID=" + HInterID.ToString() + " and æ¡ç ç±»åž‹ = '托盘条码' order by HItemID", "h_v_IF_BarCodeBillList", ref DBUtility.ClsPub.sExeReturnInfo);
                DataSet DSet = oCn.RunProcReturn("select * from h_v_IF_BarCodeBillList_CS Where HInterID=" + HInterID.ToString() + " and æ¡ç ç±»åž‹ = '托盘条码'", "h_v_IF_BarCodeBillList_CS", ref DBUtility.ClsPub.sExeReturnInfo);
                //生成首行标题
                if (DSet == null)
                {
@@ -977,6 +991,7 @@
                }
                //
                grdList.DataSource = DSet.Tables[0].DefaultView;
                txtHZXQty.Text = "";
                //冻结
                int FrCol = 0;
                string s = "是";
@@ -995,7 +1010,7 @@
                //0结束事务
                //
                Display();
                //Display();
               
            }
@@ -1012,22 +1027,30 @@
        {
            
            //根据本箱数量 æ¥ åˆ†é…åˆ° æ¯ä¸ªç”Ÿäº§è®¢å•上(分配时 è¦è€ƒè™‘ è®¢å•剩余数量已经是 è´Ÿæ•°çš„æƒ…况)
            //1.判断本箱数量 å¿…须大于0
            //如果有标准装箱数量 å…ˆé»˜è®¤å–标准装箱数量  æ²¡æœ‰å†å–手输的本箱数量
            //1.判断本箱数量 å¿…须大于0
            double HZXQty = 0;//整箱数量
            HZXQty = ClsPub.isDoule(txtHZXQty.Text);
            if (txtHZXQty.Text.Trim() != "")
            {
                HZXQty = ClsPub.isDoule(txtHZXQty.Text);
            }
            else
            {
                HZXQty = ClsPub.isDoule(txtHMiniQty.Text);
            }
            if (HZXQty <= 0)
            {
                MessageBox.Show("请输入整箱数量!");
                return;
            }
            //2.刷新网格
            Display();
            //Display();
            //3.把整箱数量 åˆ†é…åˆ° ç½‘格下面的每一个 ç”Ÿäº§è®¢å•上去。  å¾ªçŽ¯ç½‘æ ¼
            for(int i =0;i<grdMain.Rows.Count;i++)
            {
                if(HZXQty>0)
                if (HZXQty > 0)
                {
                    if(HZXQty>DBUtility.ClsPub.isDoule(grdMain.Rows[i].Cells["生产订单数量"].Value))
                    if (HZXQty > DBUtility.ClsPub.isDoule(grdMain.Rows[i].Cells["生产订单数量"].Value))
                    {
                        HZXQty = HZXQty - DBUtility.ClsPub.isDoule(grdMain.Rows[i].Cells["生产订单数量"].Value);
                        grdMain.Rows[i].Cells["本次数量"].Value = DBUtility.ClsPub.isDoule(grdMain.Rows[i].Cells["生产订单数量"].Value);
@@ -1701,18 +1724,48 @@
        private void cmdHSourceID_Click(object sender, EventArgs e)
        {
            Int64 HEmpID = 0;
            HEmpID = ClsPub.isLong(txtHEmpID.Tag);
            string HEmpName = "";
            HEmpName = ClsPub.isStrNull(txtHEmpID.Text);
            DAL.ClsGy_Source_View oSource = new DAL.ClsGy_Source_View();
            if (oSource.RefreshView())
            if (HEmpName != "")
            {
                this.txtHSourceID.Text = oSource.oModel.HName;
                this.txtHSourceID.Tag = oSource.oModel.HItemID.ToString();
                //
                Display();
                if (oSource.GetInfoByID(HEmpID))
                {
                    this.txtHSourceID.Text = oSource.oModel.HName;
                    this.txtHSourceID.Tag = oSource.oModel.HItemID.ToString();
                    //
                    Display();
                }
                else
                {
                    this.txtHSourceID.Text = "";
                }
            }
            else
            {
                this.txtHSourceID.Text = "";
                if (oSource.RefreshView())
                {
                    this.txtHSourceID.Text = oSource.oModel.HName;
                    this.txtHSourceID.Tag = oSource.oModel.HItemID.ToString();
                    //
                    Display();
                }
                else
                {
                    this.txtHSourceID.Text = "";
                }
            }
            //if (oSource.RefreshView())
            //{
            //    this.txtHSourceID.Text = oSource.oModel.HName;
            //    this.txtHSourceID.Tag = oSource.oModel.HItemID.ToString();
            //    //
            //    Display();
            //}
            //DAL.ClsGy_WorkCenter_View oWork = new DAL.ClsGy_WorkCenter_View();
            //if (oWork.RefreshView())
@@ -1907,14 +1960,29 @@
            DataSet DSBefore;
            DSBefore =  SubCn.RunProcReturn("exec h_p_PreviousMater "+ HInterID, "h_p_PreviousMater", ref DBUtility.ClsPub.sExeReturnInfo);
            grdMain.DataSource = DSBefore.Tables[0].DefaultView;
            if (DSBefore.Tables[0].Rows.Count > 0)
            //if (DSBefore.Tables[0].Rows.Count > 0)
            //{
            //    txtHMaterID.Tag = DBUtility.ClsPub.isInt(grdMain.Rows[0].Cells["HInterID"].Value);
            //}
            //else
            //{
            //}
            if (DSBefore == null || DSBefore.Tables[0].Rows.Count == 0)
            //if (DSet == null|| DSet.Tables[0].Rows.Count == 0)
            {
                txtHMaterID.Tag = DBUtility.ClsPub.isInt(grdMain.Rows[0].Cells["HInterID"].Value);
                MessageBox.Show("没有上一个物料,如果需要请找机修!" + DBUtility.ClsPub.sExeReturnInfo);
                return;
            }
            else
            {
                grdMain.DataSource = DSBefore.Tables[0].DefaultView;
                txtHMaterID.Tag = DBUtility.ClsPub.isInt(grdMain.Rows[0].Cells["HInterID"].Value);
                txtHMiniQty.Text = DBUtility.ClsPub.isStrNull(grdMain.Rows[0].Cells["标准装箱"].Value);
            }
        }
        private void button3_Click(object sender, EventArgs e)
@@ -1925,9 +1993,19 @@
            HInterID = DBUtility.ClsPub.isInt(txtHMaterID.Tag);
            DataSet DSBefore;
            DSBefore = SubCn.RunProcReturn("exec h_p_NextMater " + HInterID, "h_p_NextMater", ref DBUtility.ClsPub.sExeReturnInfo);
            grdMain.DataSource = DSBefore.Tables[0].DefaultView;
            txtHMaterID.Tag = DBUtility.ClsPub.isInt(grdMain.Rows[0].Cells["HInterID"].Value);
            txtHMaterID.Text = DBUtility.ClsPub.isStrNull(grdMain.Rows[0].Cells["HInterID"].Value);
            if (DSBefore == null || DSBefore.Tables[0].Rows.Count == 0)
            //if (DSet == null|| DSet.Tables[0].Rows.Count == 0)
            {
                MessageBox.Show("没有下一个物料,如果需要请找机修!" + DBUtility.ClsPub.sExeReturnInfo);
                return;
            }
            else
            {
                grdMain.DataSource = DSBefore.Tables[0].DefaultView;
                txtHMaterID.Tag = DBUtility.ClsPub.isInt(grdMain.Rows[0].Cells["HInterID"].Value);
                txtHMiniQty.Text = DBUtility.ClsPub.isStrNull(grdMain.Rows[0].Cells["标准装箱"].Value);
            }
            //txtHMaterID.Text = DBUtility.ClsPub.isStrNull(grdMain.Rows[0].Cells["HInterID"].Value);
        }
        //超额打印
@@ -1943,7 +2021,7 @@
                return;
            }
            //2.刷新网格
            Display();
            //Display();
            //3.循环网格,累计全部剩余数量,判断是否 å‰©ä½™æ•°é‡ å°äºŽ æœ¬ç®±æ•°é‡ï¼›å¦‚æžœ å¤§äºŽåˆ™æŠ¥é”™ é€€å‡ºã€‚
            double sumLeftQty = 0;
            for (int i = 0; i < grdMain.Rows.Count; i++)
WarM/ÌõÂë´òÓ¡/Sc_ICMOToBarCode.designer.cs
@@ -119,7 +119,7 @@
            this.Tool.Location = new System.Drawing.Point(0, 0);
            this.Tool.Name = "Tool";
            this.Tool.Padding = new System.Windows.Forms.Padding(0);
            this.Tool.Size = new System.Drawing.Size(1172, 50);
            this.Tool.Size = new System.Drawing.Size(1069, 50);
            this.Tool.Stretch = true;
            this.Tool.TabIndex = 16;
            this.Tool.Text = "toolStrip1";
@@ -224,7 +224,7 @@
            this.grdMain.ReadOnly = true;
            this.grdMain.RowHeadersWidth = 51;
            this.grdMain.RowTemplate.Height = 23;
            this.grdMain.Size = new System.Drawing.Size(866, 263);
            this.grdMain.Size = new System.Drawing.Size(867, 263);
            this.grdMain.TabIndex = 19;
            this.grdMain.Paint += new System.Windows.Forms.PaintEventHandler(this.grdMain_Paint);
            this.grdMain.DoubleClick += new System.EventHandler(this.grdMain_DblClick);
@@ -420,7 +420,7 @@
            // 
            this.cmdHSaveBill.BackColor = System.Drawing.Color.White;
            this.cmdHSaveBill.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.cmdHSaveBill.Location = new System.Drawing.Point(862, 68);
            this.cmdHSaveBill.Location = new System.Drawing.Point(821, 68);
            this.cmdHSaveBill.Margin = new System.Windows.Forms.Padding(2);
            this.cmdHSaveBill.Name = "cmdHSaveBill";
            this.cmdHSaveBill.Size = new System.Drawing.Size(112, 50);
@@ -454,7 +454,7 @@
            // 
            this.button4.BackColor = System.Drawing.Color.White;
            this.button4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.button4.Location = new System.Drawing.Point(1036, 189);
            this.button4.Location = new System.Drawing.Point(932, 189);
            this.button4.Margin = new System.Windows.Forms.Padding(2);
            this.button4.Name = "button4";
            this.button4.Size = new System.Drawing.Size(112, 50);
@@ -467,7 +467,7 @@
            // 
            this.button5.BackColor = System.Drawing.Color.White;
            this.button5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.button5.Location = new System.Drawing.Point(1036, 247);
            this.button5.Location = new System.Drawing.Point(932, 247);
            this.button5.Margin = new System.Windows.Forms.Padding(2);
            this.button5.Name = "button5";
            this.button5.Size = new System.Drawing.Size(112, 42);
@@ -480,7 +480,7 @@
            // 
            this.button6.BackColor = System.Drawing.Color.White;
            this.button6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.button6.Location = new System.Drawing.Point(1036, 296);
            this.button6.Location = new System.Drawing.Point(932, 296);
            this.button6.Margin = new System.Windows.Forms.Padding(2);
            this.button6.Name = "button6";
            this.button6.Size = new System.Drawing.Size(112, 44);
@@ -491,7 +491,7 @@
            // 
            // txtHMiniQty
            // 
            this.txtHMiniQty.Location = new System.Drawing.Point(898, 296);
            this.txtHMiniQty.Location = new System.Drawing.Point(794, 296);
            this.txtHMiniQty.Multiline = true;
            this.txtHMiniQty.Name = "txtHMiniQty";
            this.txtHMiniQty.ReadOnly = true;
@@ -503,7 +503,7 @@
            // 
            this.标准装箱.AutoSize = true;
            this.标准装箱.Font = new System.Drawing.Font("宋体", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.标准装箱.Location = new System.Drawing.Point(894, 265);
            this.标准装箱.Location = new System.Drawing.Point(790, 265);
            this.标准装箱.Name = "标准装箱";
            this.标准装箱.Size = new System.Drawing.Size(120, 27);
            this.标准装箱.TabIndex = 142;
@@ -513,7 +513,7 @@
            // 
            this.label7.AutoSize = true;
            this.label7.Font = new System.Drawing.Font("宋体", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label7.Location = new System.Drawing.Point(883, 349);
            this.label7.Location = new System.Drawing.Point(779, 349);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(174, 27);
            this.label7.TabIndex = 144;
@@ -522,7 +522,7 @@
            // 
            // txtHBQty
            // 
            this.txtHBQty.Location = new System.Drawing.Point(901, 380);
            this.txtHBQty.Location = new System.Drawing.Point(797, 380);
            this.txtHBQty.Multiline = true;
            this.txtHBQty.Name = "txtHBQty";
            this.txtHBQty.Size = new System.Drawing.Size(112, 42);
@@ -545,7 +545,7 @@
            this.groupBox1.Controls.Add(this.cmdHMaterID1);
            this.groupBox1.Location = new System.Drawing.Point(10, 485);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(1148, 126);
            this.groupBox1.Size = new System.Drawing.Size(1034, 126);
            this.groupBox1.TabIndex = 140;
            this.groupBox1.TabStop = false;
            // 
@@ -687,7 +687,7 @@
            // 
            this.整箱数量.AutoSize = true;
            this.整箱数量.Font = new System.Drawing.Font("宋体", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.整箱数量.Location = new System.Drawing.Point(900, 190);
            this.整箱数量.Location = new System.Drawing.Point(796, 190);
            this.整箱数量.Name = "整箱数量";
            this.整箱数量.Size = new System.Drawing.Size(120, 27);
            this.整箱数量.TabIndex = 148;
@@ -695,7 +695,7 @@
            // 
            // txtHZXQty
            // 
            this.txtHZXQty.Location = new System.Drawing.Point(900, 221);
            this.txtHZXQty.Location = new System.Drawing.Point(796, 221);
            this.txtHZXQty.Multiline = true;
            this.txtHZXQty.Name = "txtHZXQty";
            this.txtHZXQty.Size = new System.Drawing.Size(112, 42);
@@ -708,7 +708,7 @@
            this.tabControl1.Location = new System.Drawing.Point(9, 181);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(879, 298);
            this.tabControl1.Size = new System.Drawing.Size(759, 298);
            this.tabControl1.TabIndex = 149;
            // 
            // tabPage1
@@ -717,7 +717,7 @@
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(871, 272);
            this.tabPage1.Size = new System.Drawing.Size(751, 272);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "物料信息";
            this.tabPage1.UseVisualStyleBackColor = true;
@@ -752,7 +752,7 @@
            // 
            this.button2.BackColor = System.Drawing.Color.White;
            this.button2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.button2.Location = new System.Drawing.Point(900, 436);
            this.button2.Location = new System.Drawing.Point(796, 436);
            this.button2.Margin = new System.Windows.Forms.Padding(2);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(112, 44);
@@ -765,7 +765,7 @@
            // 
            this.button3.BackColor = System.Drawing.Color.White;
            this.button3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.button3.Location = new System.Drawing.Point(1036, 378);
            this.button3.Location = new System.Drawing.Point(932, 378);
            this.button3.Margin = new System.Windows.Forms.Padding(2);
            this.button3.Name = "button3";
            this.button3.Size = new System.Drawing.Size(112, 44);
@@ -778,7 +778,7 @@
            // 
            this.button7.BackColor = System.Drawing.Color.White;
            this.button7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.button7.Location = new System.Drawing.Point(1036, 436);
            this.button7.Location = new System.Drawing.Point(932, 436);
            this.button7.Margin = new System.Windows.Forms.Padding(2);
            this.button7.Name = "button7";
            this.button7.Size = new System.Drawing.Size(112, 44);
@@ -791,8 +791,9 @@
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSize = true;
            this.BackColor = System.Drawing.SystemColors.ActiveCaption;
            this.ClientSize = new System.Drawing.Size(1172, 844);
            this.ClientSize = new System.Drawing.Size(1069, 844);
            this.Controls.Add(this.button7);
            this.Controls.Add(this.button3);
            this.Controls.Add(this.button2);
WebAPI/Controllers/ProductInController.cs
@@ -125,6 +125,75 @@
                return objJsonResult;
            }
        }
        /// <summary>
        /// å…¶ä»–出库校验扫描单据号/直接调用webservice
        /// </summary>
        /// <returns></returns>
        //[Route("OtherOutBill_Check_New/BillNo")]
        [Route("ProductIn/BillNo")]
        [HttpGet]
        public Object BillNo(string HBillNo, string HBillType, string HMaker, Int64 HOwnerID)
        {
            //if (sRedBlue == true)
            //{
            //    HBillType = "1245";
            //}
            //oBar = webserver.get_CheckTypeByBarCode(sCode, sInterID, sBillType, sBillNo, sMaker, WhID, SPID, sQty, sRedBlue, SourceFlag, sSourceBillNo, sSourceType, HOWNERID, ref DBUtility.ClsPub.sErrInfo);
            WebS.WebService1 oWebs = new WebS.WebService1();
            WebS.ClsKf_ICStockBill_WMS WebSoBar = new WebS.ClsKf_ICStockBill_WMS();
            string sExpressNumber = "";
            //WebSoBar = oWebs.get_CheckTypeByBarCode_All(sCode, sInterID, HBillType, sBillNo, sMaker, WhID, SPID, sQty, sRedBlue, SourceFlag, sSourceBillNo, sSourceType, HOWNERID, sExpressNumber, ref DBUtility.ClsPub.sErrInfo);
            WebSoBar = oWebs.get_BillBarCode_OtherOutCheck(HBillNo, HBillType, HMaker, HOwnerID, 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 = DBUtility.ClsPub.sErrInfo;
                objJsonResult.data = WebSoBar;
                return objJsonResult;
            }
        }
        /// <summary>
        /// å…¶ä»–出库校验扫描条码/直接调用webservice
        /// </summary>
        /// <returns></returns>
        [Route("OtherOutBill_Check_New/get_InfoByBarCode_Source_Json")]
        [HttpGet]
        public Object get_InfoByBarCode_Source_Json(string sCode, Int64 sInterID, string HBillType,string sBillNo, string sMaker, Int64 WhID, Int64 SPID, Int64 sQty, Int64 HOWNERID)
        {
            WebS.WebService1 oWebs = new WebS.WebService1();
            WebS.ClsKf_ICStockBill_WMS WebSoBar = new WebS.ClsKf_ICStockBill_WMS();
            string sExpressNumber = "";
            //WebSoBar = oWebs.get_CheckTypeByBarCode_All(sCode, sInterID, HBillType, sBillNo, sMaker, WhID, SPID, sQty, sRedBlue, SourceFlag, sSourceBillNo, sSourceType, HOWNERID, sExpressNumber, ref DBUtility.ClsPub.sErrInfo);
            WebSoBar = oWebs.get_CheckTypeByBarCode_BillCheck(sCode, sInterID, HBillType, sBillNo, sMaker,  WhID,  SPID,  sQty,  HOWNERID, 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 = DBUtility.ClsPub.sErrInfo;
                objJsonResult.data = WebSoBar;
                return objJsonResult;
            }
        }
        /// <summary>
        /// ä¸€é”®æ‰«ç (红字)
        /// </summary>
@@ -182,6 +251,135 @@
                    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("OtherOutBill_Check_New/DisBillEntryList_Webs_Json1")]
        [HttpGet]
        public object DisBillEntryList_Webs_Json1(long HBillID, string HBillType, string sWhere)
        {
            try
            {
                WebS.WebService1 oWebs = new WebS.WebService1();
                ds = oWebs.GetKf_PonderationBillMain_Temp_BillCheck(HBillID, HBillType, sWhere);
                if (ds == null || ds.Tables[0].Rows.Count <= 0)
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "没有返回任何记录!";
                    objJsonResult.data = null;
                    return objJsonResult;
                    //DBUtility.ClsPub.MessageBeep((int)DBUtility.ClsPub.BeepType.Warning);
                }
                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("OtherOutBill_Check_New/DisPonderationBillMain_TempList_BillCheck")]
        [HttpGet]
        public object DisPonderationBillMain_TempList_BillCheck(string HBillType, string sHMaker, Int64 HOrgID)
        {
            try
            {
                WebS.WebService1 oWebs = new WebS.WebService1();
                ds = oWebs.GetKf_PonderationBillMain_TempList_BillCheck(HBillType, sHMaker, HOrgID);
                if (ds == null || ds.Tables[0].Rows.Count <= 0)
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "没有返回任何记录!";
                    objJsonResult.data = null;
                    return objJsonResult;
                    //DBUtility.ClsPub.MessageBeep((int)DBUtility.ClsPub.BeepType.Warning);
                }
                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("OtherOutBill_Check_New/bj")]
        [HttpGet]
        public object bj(string HBillNo, string HBillType)
        {
            try
            {
                WebS.ClsKf_ICStockBill_WMS WebSoBar = new WebS.ClsKf_ICStockBill_WMS();
                WebS.WebService1 oWebs = new WebS.WebService1();
                WebSoBar = oWebs.GetSourceBillList_BillCheck(HBillNo, HBillType, ref DBUtility.ClsPub.sErrInfo);
                if (WebSoBar == null)
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "没有返回任何记录!";
                    objJsonResult.data = null;
                    return objJsonResult;
                    //DBUtility.ClsPub.MessageBeep((int)DBUtility.ClsPub.BeepType.Warning);
                }
                else
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 1;
                    objJsonResult.Message = "获取信息成功!";
                    objJsonResult.data = WebSoBar;
                    return objJsonResult;
                }
            }
@@ -760,6 +958,68 @@
            }
        }
        /// <summary>
        /// å…¶ä»–出库校验
        /// </summary>
        /// <returns></returns>
        [Route("OtherOutBill_Check_New/set_SaveOtherOutBill_Check_New_Json")]
        [HttpPost]
        public object set_SaveOtherOutBill_Check_New_Json([FromBody] JObject oMain)
        {
            var _value = oMain["oMain"].ToString();
            string msg1 = _value.ToString();
            //List<Model.ClsKf_ProductInBillMain> lsmain = new List<Model.ClsKf_ProductInBillMain>();
            //ListModels oListModels = new ListModels();
            //lsmain = oListModels.getProductInBillMainByJson(msg1);
            //lsmain[0].HYear = DBUtility.ClsPub.isLong(DateTime.Now.Year);
            //lsmain[0].HDate = DBUtility.ClsPub.isDate(DateTime.Now.ToString("yyyy-MM-dd"));
            //string sSourceBillType = lsmain[0].HBillType;
            //BLL.ClsKf_ProductInBill bll = new BLL.ClsKf_ProductInBill();
            //return bll.set_SaveProductInBill_New(lsmain[0], sSourceBillType, ref DBUtility.ClsPub.sErrInfo);
            try
            {
                List<Model.ClsKf_OtherOutBillMain> lsmain = new List<Model.ClsKf_OtherOutBillMain>();
                ListModels oListModels = new ListModels();
                lsmain = oListModels.getOtherOutBillMainByJson(msg1);
                //lsmain[0].HYear = DBUtility.ClsPub.isLong(DateTime.Now.Year);
                //lsmain[0].HDate = DBUtility.ClsPub.isDate(DateTime.Now.ToString("yyyy-MM-dd"));
                //string sSourceBillType = lsmain[0].HBillType;
                WebAPI.WebS.ClsKf_OtherOutBillMain websLsmain = new WebS.ClsKf_OtherOutBillMain();
                websLsmain.HInterID = lsmain[0].HInterID;
                websLsmain.HBillNo = lsmain[0].HBillNo;
                websLsmain.HBillType = "1206";
                WebS.WebService1 oWebs = new WebS.WebService1();
                if (oWebs.set_SaveOtherOutBill_BillCheck(websLsmain, ref DBUtility.ClsPub.sErrInfo))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 1;
                    objJsonResult.Message = "其他出库单校验成功!单据号为:";
                    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;
            }
        }
        [Route("ProductIn/Delete_Json_AN")]
        [HttpGet]
        public object Delete_Json_AN(long HInterID, long HMaterID, long HAuxPropID, string HMTONo, long HSourceInterID, long HSourceEntryID, string sHBillType)
WebAPI/Web References/WebS/Reference.cs
Diff too large
WebAPI/Web References/WebS/WebService1.wsdl
@@ -2,6 +2,142 @@
<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="get_SourceBarCode_EntrustOut">
        <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="HFIFOWhID" type="s:long" />
            <s:element minOccurs="1" maxOccurs="1" name="HOWNERID" 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_EntrustOutResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="get_SourceBarCode_EntrustOutResult" type="tns:ClsKf_ICStockBill_WMS" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:complexType name="ClsKf_ICStockBill_WMS">
        <s:sequence>
          <s:element minOccurs="1" maxOccurs="1" name="HItemID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HBarType" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HWhID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HWhNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HWhName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HSPFlag" type="s:boolean" />
          <s:element minOccurs="1" maxOccurs="1" name="HSPID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HSPNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HSPName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HSCWhID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HSCWhNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HSCWhName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HSCSPFlag" type="s:boolean" />
          <s:element minOccurs="1" maxOccurs="1" name="HSCSPID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HSCSPNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HSCSPName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HDeptID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HDeptNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HDeptName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HSupID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HSupNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HSupName" 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="1" maxOccurs="1" name="HOWNERID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HOWNERNAME" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HCustom" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HMulSourceFlag" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HStockStyle" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HStockInOrgID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HStockInOrgName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HStockOutOrgID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HStockOutOrgName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HInterID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HBillNo" type="s:string" />
        </s:sequence>
      </s:complexType>
      <s:element name="get_CheckTypeByMouldSource">
        <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="HHMaker" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="HOWNERID" type="s:long" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="get_CheckTypeByMouldSourceResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="get_CheckTypeByMouldSourceResult" type="tns:ClsKf_ICStockBill_Mould" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:complexType name="ClsKf_ICStockBill_Mould">
        <s:sequence>
          <s:element minOccurs="1" maxOccurs="1" name="HItemID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HBarType" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HWhID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HWhNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HWhName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HSPFlag" type="s:boolean" />
          <s:element minOccurs="1" maxOccurs="1" name="HSPID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HSPNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HSPName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HDeptID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HDeptNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HDeptName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HSupID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HSupNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HSupName" 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="1" maxOccurs="1" name="HOWNERID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HOWNERNAME" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HCustom" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HMulSourceFlag" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HStockStyle" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HStockInOrgID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HStockInOrgName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HStockOutOrgID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HStockOutOrgName" type="s:string" />
        </s:sequence>
      </s:complexType>
      <s:element name="getMouldSourceBillList">
        <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="HHMaker" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="HOWNERID" type="s:long" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="getMouldSourceBillListResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="getMouldSourceBillListResult" type="tns:ClsKf_ICStockBill_Mould" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="Get_CheckTypeByMouldBarCode_ProdCheckStock">
        <s:complexType>
          <s:sequence>
@@ -278,43 +414,6 @@
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:complexType name="ClsKf_ICStockBill_WMS">
        <s:sequence>
          <s:element minOccurs="1" maxOccurs="1" name="HItemID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HBarType" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HWhID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HWhNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HWhName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HSPFlag" type="s:boolean" />
          <s:element minOccurs="1" maxOccurs="1" name="HSPID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HSPNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HSPName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HSCWhID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HSCWhNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HSCWhName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HSCSPFlag" type="s:boolean" />
          <s:element minOccurs="1" maxOccurs="1" name="HSCSPID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HSCSPNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HSCSPName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HDeptID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HDeptNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HDeptName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HSupID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HSupNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HSupName" 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="1" maxOccurs="1" name="HOWNERID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HOWNERNAME" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HCustom" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HMulSourceFlag" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HStockStyle" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HStockInOrgID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HStockInOrgName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HStockOutOrgID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HStockOutOrgName" type="s:string" />
        </s:sequence>
      </s:complexType>
      <s:element name="get_CheckTypeByBarCode_PackUnion">
        <s:complexType>
          <s:sequence>
@@ -441,6 +540,357 @@
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="set_DelPonderationBillMain_Temp_PackResult" type="s:boolean" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetSourceBillList_BillCheck">
        <s:complexType>
          <s:sequence>
            <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="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetSourceBillList_BillCheckResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="GetSourceBillList_BillCheckResult" 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_BillBarCode_OtherOutCheck">
        <s:complexType>
          <s:sequence>
            <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="HMaker" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="HOWNERID" type="s:long" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="get_BillBarCode_OtherOutCheckResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="get_BillBarCode_OtherOutCheckResult" 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="set_SavePonderationBillMain_Temp_BarCode_BillCheck">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="omodel_View" type="tns:ClsGy_BarCodeBill_WMS_Model_View" />
            <s:element minOccurs="0" maxOccurs="1" name="sBarCode" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="HBillID" type="s:long" />
            <s:element minOccurs="0" maxOccurs="1" name="HBillType" type="s:string" />
            <s:element minOccurs="0" maxOccurs="1" name="HBillNo" type="s:string" />
            <s:element minOccurs="0" maxOccurs="1" name="HMaker" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="HWhID" type="s:long" />
            <s:element minOccurs="1" maxOccurs="1" name="HSPID" type="s:long" />
            <s:element minOccurs="1" maxOccurs="1" name="HQty" type="s:double" />
            <s:element minOccurs="1" maxOccurs="1" name="HOWNERID" type="s:long" />
            <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:complexType name="ClsGy_BarCodeBill_WMS_Model_View">
        <s:complexContent mixed="false">
          <s:extension base="tns:ClsGy_BarCodeBill_WMS_Model">
            <s:sequence>
              <s:element minOccurs="0" maxOccurs="1" name="HMaterNumber" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HMaterName" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HMaterModel" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HUnitName" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HSupName" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HGroupName" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HDeptName" type="s:string" />
              <s:element minOccurs="1" maxOccurs="1" name="HErpClsID" type="s:long" />
              <s:element minOccurs="1" maxOccurs="1" name="HWHID" type="s:long" />
              <s:element minOccurs="1" maxOccurs="1" name="HSPID" type="s:long" />
              <s:element minOccurs="0" maxOccurs="1" name="HCusRelationNumber" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HBarCodeStatus" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HWHName" type="s:string" />
              <s:element minOccurs="1" maxOccurs="1" name="HDate" type="s:dateTime" />
              <s:element minOccurs="1" maxOccurs="1" name="HInstructID" type="s:long" />
              <s:element minOccurs="0" maxOccurs="1" name="HInstructNo" type="s:string" />
              <s:element minOccurs="1" maxOccurs="1" name="HSeOrderBillID" type="s:long" />
              <s:element minOccurs="0" maxOccurs="1" name="HSeOrderBillNo" type="s:string" />
              <s:element minOccurs="1" maxOccurs="1" name="HCheckerID" type="s:long" />
              <s:element minOccurs="1" maxOccurs="1" name="HAuxPropID" type="s:long" />
              <s:element minOccurs="0" maxOccurs="1" name="HAuxPropName" type="s:string" />
              <s:element minOccurs="1" maxOccurs="1" name="HSTOCKORGID" type="s:long" />
              <s:element minOccurs="1" maxOccurs="1" name="HOWNERID" type="s:long" />
              <s:element minOccurs="1" maxOccurs="1" name="HSourceQty" type="s:double" />
            </s:sequence>
          </s:extension>
        </s:complexContent>
      </s:complexType>
      <s:complexType name="ClsGy_BarCodeBill_WMS_Model">
        <s:sequence>
          <s:element minOccurs="1" maxOccurs="1" name="HItemID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HBarCode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HBatchNo" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HMaterID" type="s:long" />
          <s:element minOccurs="1" maxOccurs="1" name="HUnitID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HBarCodeType" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HQty" type="s:double" />
          <s:element minOccurs="1" maxOccurs="1" name="HSupID" type="s:long" />
          <s:element minOccurs="1" maxOccurs="1" name="HGroupID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HMaker" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HMakeDate" type="s:dateTime" />
          <s:element minOccurs="0" maxOccurs="1" name="HRemark" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HSourceInterID" type="s:long" />
          <s:element minOccurs="1" maxOccurs="1" name="HSourceEntryID" type="s:long" />
          <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="1" maxOccurs="1" name="HPrintQty" type="s:long" />
          <s:element minOccurs="1" maxOccurs="1" name="HDeptID" type="s:long" />
          <s:element minOccurs="1" maxOccurs="1" name="HinitQty" type="s:double" />
          <s:element minOccurs="0" maxOccurs="1" name="HMTONo" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HStopflag" type="s:boolean" />
        </s:sequence>
      </s:complexType>
      <s:complexType name="ClsXt_SystemParameterMain">
        <s:sequence>
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBackBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_FIFOCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_AutoBarCode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_SimpleMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBackBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBackBill_SimpleMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBackBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBackBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBill_FIFOCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBill_SimpleMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBackBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBackBill_SimpleMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_FIFOCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_AutoSavePOStockInBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_NoRefresh" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBackBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBackBill_AutoSavePOStockInBackBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateReplenishOutBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateReplenishOutBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateReplenishOutBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateReplenishOutBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateReplenishOutBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateReplenishOutBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBackBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBackBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepOutBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepOutBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepOutBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepOutBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepOutBill_FIFOCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepOutBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepInBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepInBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepInBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepInBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepInBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepInBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_ERPStockCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_WMSStockCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_WMSStockCtl_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_SaveUpdateStock" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_MaterBarCodeDefQty" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_BatchBarCodeDefQty" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_SNBarCodeDefQty" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_CampanyName" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_OneKeyMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_OneScanMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_MouldManagerCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="BarCode_SourceQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationInBill_FIFOCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationInBill_FullMoveCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationInBill_QtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationInBill_OneCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationInBill_FirstCheckOut" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationInBill_ProcessCheckCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationOutBill_QtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationOutBill_ProcessCheckOut" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationOutBill_FirstCheckOut" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="QC_NoPassProdCheckBill_QtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationEntrustInBill_FIFOCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationEntrustInBill_FullMoveCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationEntrustInBill_QtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationEntrustInBill_OneCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationEntrustOutBill_QtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOReportBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOReportBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOReportBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOReportBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOReportBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOReportBill_UpdateSourceInterID" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOReportBill_FirstCheckOut" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_MESBeginWorkBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_MESEndWorkBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_MESStopWorkBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOBillWorkQtyStatus_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOBillQualityStatus_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_MaterToSourceBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="QC_FirstPieceCheckBill_AutoCheck" type="s:string" />
        </s:sequence>
      </s:complexType>
      <s:element name="set_SavePonderationBillMain_Temp_BarCode_BillCheckResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="set_SavePonderationBillMain_Temp_BarCode_BillCheckResult" type="s:boolean" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="get_CheckTypeByBarCode_BillCheck">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="sBarCode" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="HBillID" type="s:long" />
            <s:element minOccurs="0" maxOccurs="1" name="HBillType" type="s:string" />
            <s:element minOccurs="0" maxOccurs="1" name="HBillNo" type="s:string" />
            <s:element minOccurs="0" maxOccurs="1" name="HMaker" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="HWhID" type="s:long" />
            <s:element minOccurs="1" maxOccurs="1" name="HSPID" type="s:long" />
            <s:element minOccurs="1" maxOccurs="1" name="HQty" type="s:double" />
            <s:element minOccurs="1" maxOccurs="1" name="HOWNERID" type="s:long" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="get_CheckTypeByBarCode_BillCheckResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="get_CheckTypeByBarCode_BillCheckResult" 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="GetKf_PonderationBillMain_Temp_BillCheck">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="HInterID" type="s:long" />
            <s:element minOccurs="0" maxOccurs="1" name="sBillType" type="s:string" />
            <s:element minOccurs="0" maxOccurs="1" name="sWhere" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetKf_PonderationBillMain_Temp_BillCheckResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="GetKf_PonderationBillMain_Temp_BillCheckResult">
              <s:complexType>
                <s:sequence>
                  <s:element ref="s:schema" />
                  <s:any />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetKf_PonderationBillMain_TempList_BillCheck">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="sHBillType" type="s:string" />
            <s:element minOccurs="0" maxOccurs="1" name="sHMaker" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="sHOWNERID" type="s:long" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetKf_PonderationBillMain_TempList_BillCheckResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="GetKf_PonderationBillMain_TempList_BillCheckResult">
              <s:complexType>
                <s:sequence>
                  <s:element ref="s:schema" />
                  <s:any />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
@@ -685,36 +1135,6 @@
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:complexType name="ClsKf_ICStockBill_Mould">
        <s:sequence>
          <s:element minOccurs="1" maxOccurs="1" name="HItemID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HBarType" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HWhID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HWhNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HWhName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HSPFlag" type="s:boolean" />
          <s:element minOccurs="1" maxOccurs="1" name="HSPID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HSPNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HSPName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HDeptID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HDeptNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HDeptName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HSupID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HSupNumber" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HSupName" 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="1" maxOccurs="1" name="HOWNERID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HOWNERNAME" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HCustom" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HMulSourceFlag" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HStockStyle" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HStockInOrgID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HStockInOrgName" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HStockOutOrgID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HStockOutOrgName" type="s:string" />
        </s:sequence>
      </s:complexType>
      <s:element name="DeleteMould">
        <s:complexType>
          <s:sequence>
@@ -774,6 +1194,76 @@
            <s:element minOccurs="1" maxOccurs="1" name="sHDeptID" type="s:long" />
            <s:element minOccurs="0" maxOccurs="1" name="sHDeptName" type="s:string" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetKf_ICStockBillQueryList">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="sHBillType" type="s:string" />
            <s:element minOccurs="0" maxOccurs="1" name="sBillNo" type="s:string" />
            <s:element minOccurs="0" maxOccurs="1" name="sSourceBillNo" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetKf_ICStockBillQueryListResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="GetKf_ICStockBillQueryListResult">
              <s:complexType>
                <s:sequence>
                  <s:element ref="s:schema" />
                  <s:any />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="Get_ICInventoryByMaterIDList">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="sBarCode" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="HWHID" type="s:long" />
            <s:element minOccurs="1" maxOccurs="1" name="HSPID" type="s:long" />
            <s:element minOccurs="1" maxOccurs="1" name="HOWNERID" type="s:long" />
            <s:element minOccurs="0" maxOccurs="1" name="sWhere" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="Get_ICInventoryByMaterIDListResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="Get_ICInventoryByMaterIDListResult">
              <s:complexType>
                <s:sequence>
                  <s:element ref="s:schema" />
                  <s:any />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="Get_CheckQtyByBarCode">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="sBarcode" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="HWHID" type="s:long" />
            <s:element minOccurs="1" maxOccurs="1" name="HSPID" type="s:long" />
            <s:element minOccurs="1" maxOccurs="1" name="HAuxPropID" type="s:long" />
            <s:element minOccurs="0" maxOccurs="1" name="sBatchNo" type="s:string" />
            <s:element minOccurs="0" maxOccurs="1" name="HMTONo" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="sQty" type="s:double" />
            <s:element minOccurs="1" maxOccurs="1" name="sRelQty" type="s:double" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="Get_CheckQtyByBarCodeResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="Get_CheckQtyByBarCodeResult" type="s:boolean" />
            <s:element minOccurs="1" maxOccurs="1" name="sRelQty" type="s:double" />
          </s:sequence>
        </s:complexType>
      </s:element>
@@ -1302,168 +1792,6 @@
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:complexType name="ClsXt_SystemParameterMain">
        <s:sequence>
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBackBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_POStockInBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_FIFOCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_AutoBarCode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_SimpleMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBackBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBackBill_SimpleMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateOutBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBackBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_ProductInBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBackBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustInBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBill_FIFOCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBill_SimpleMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBackBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBackBill_SimpleMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_EntrustOutBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_FIFOCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_AutoSavePOStockInBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_NoRefresh" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBackBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBackBill_AutoSavePOStockInBackBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_SellOutBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateReplenishOutBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateReplenishOutBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateReplenishOutBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateReplenishOutBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateReplenishOutBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MateReplenishOutBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBackBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherInBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBackBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBackBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBackBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBackBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_OtherOutBackBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepOutBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepOutBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepOutBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepOutBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepOutBill_FIFOCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepOutBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepInBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepInBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepInBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepInBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepInBill_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Kf_MoveStockStepInBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_ERPStockCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_WMSStockCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_WMSStockCtl_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_SaveUpdateStock" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_MaterBarCodeDefQty" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_BatchBarCodeDefQty" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_SNBarCodeDefQty" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_CampanyName" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_OneKeyMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_BarCodeMustSameSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_OneScanMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="WMS_MouldManagerCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="BarCode_SourceQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationInBill_FIFOCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationInBill_FullMoveCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationInBill_QtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationInBill_OneCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationInBill_FirstCheckOut" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationInBill_ProcessCheckCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationOutBill_QtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationOutBill_ProcessCheckOut" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationOutBill_FirstCheckOut" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="QC_NoPassProdCheckBill_QtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationEntrustInBill_FIFOCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationEntrustInBill_FullMoveCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationEntrustInBill_QtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationEntrustInBill_OneCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="MES_StationEntrustOutBill_QtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOReportBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOReportBill_ERPMode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOReportBill_MustQtyCtl" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOReportBill_MulSourceBill" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOReportBill_BillTypeOneScan" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOReportBill_UpdateSourceInterID" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOReportBill_FirstCheckOut" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_MESBeginWorkBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_MESEndWorkBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_MESStopWorkBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOBillWorkQtyStatus_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_ICMOBillQualityStatus_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Sc_MaterToSourceBill_AutoCheck" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="QC_FirstPieceCheckBill_AutoCheck" type="s:string" />
        </s:sequence>
      </s:complexType>
      <s:element name="get_SystemParameterResponse">
        <s:complexType>
          <s:sequence>
@@ -1487,62 +1815,6 @@
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:complexType name="ClsGy_BarCodeBill_WMS_Model_View">
        <s:complexContent mixed="false">
          <s:extension base="tns:ClsGy_BarCodeBill_WMS_Model">
            <s:sequence>
              <s:element minOccurs="0" maxOccurs="1" name="HMaterNumber" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HMaterName" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HMaterModel" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HUnitName" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HSupName" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HGroupName" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HDeptName" type="s:string" />
              <s:element minOccurs="1" maxOccurs="1" name="HErpClsID" type="s:long" />
              <s:element minOccurs="1" maxOccurs="1" name="HWHID" type="s:long" />
              <s:element minOccurs="1" maxOccurs="1" name="HSPID" type="s:long" />
              <s:element minOccurs="0" maxOccurs="1" name="HCusRelationNumber" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HBarCodeStatus" type="s:string" />
              <s:element minOccurs="0" maxOccurs="1" name="HWHName" type="s:string" />
              <s:element minOccurs="1" maxOccurs="1" name="HDate" type="s:dateTime" />
              <s:element minOccurs="1" maxOccurs="1" name="HInstructID" type="s:long" />
              <s:element minOccurs="0" maxOccurs="1" name="HInstructNo" type="s:string" />
              <s:element minOccurs="1" maxOccurs="1" name="HSeOrderBillID" type="s:long" />
              <s:element minOccurs="0" maxOccurs="1" name="HSeOrderBillNo" type="s:string" />
              <s:element minOccurs="1" maxOccurs="1" name="HCheckerID" type="s:long" />
              <s:element minOccurs="1" maxOccurs="1" name="HAuxPropID" type="s:long" />
              <s:element minOccurs="0" maxOccurs="1" name="HAuxPropName" type="s:string" />
              <s:element minOccurs="1" maxOccurs="1" name="HSTOCKORGID" type="s:long" />
              <s:element minOccurs="1" maxOccurs="1" name="HOWNERID" type="s:long" />
            </s:sequence>
          </s:extension>
        </s:complexContent>
      </s:complexType>
      <s:complexType name="ClsGy_BarCodeBill_WMS_Model">
        <s:sequence>
          <s:element minOccurs="1" maxOccurs="1" name="HItemID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HBarCode" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="HBatchNo" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HMaterID" type="s:long" />
          <s:element minOccurs="1" maxOccurs="1" name="HUnitID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HBarCodeType" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HQty" type="s:double" />
          <s:element minOccurs="1" maxOccurs="1" name="HSupID" type="s:long" />
          <s:element minOccurs="1" maxOccurs="1" name="HGroupID" type="s:long" />
          <s:element minOccurs="0" maxOccurs="1" name="HMaker" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HMakeDate" type="s:dateTime" />
          <s:element minOccurs="0" maxOccurs="1" name="HRemark" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HSourceInterID" type="s:long" />
          <s:element minOccurs="1" maxOccurs="1" name="HSourceEntryID" type="s:long" />
          <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="1" maxOccurs="1" name="HPrintQty" type="s:long" />
          <s:element minOccurs="1" maxOccurs="1" name="HDeptID" type="s:long" />
          <s:element minOccurs="1" maxOccurs="1" name="HinitQty" type="s:double" />
          <s:element minOccurs="0" maxOccurs="1" name="HMTONo" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="HStopflag" type="s:boolean" />
        </s:sequence>
      </s:complexType>
      <s:element name="Get_CheckWhAndSP">
        <s:complexType>
          <s:sequence>
@@ -2787,74 +3059,7 @@
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="get_SourceBarCode_EntrustOut">
        <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="HFIFOWhID" type="s:long" />
            <s:element minOccurs="1" maxOccurs="1" name="HOWNERID" 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_EntrustOutResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="get_SourceBarCode_EntrustOutResult" 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_CheckTypeByMouldSource">
        <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="HHMaker" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="HOWNERID" type="s:long" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="get_CheckTypeByMouldSourceResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="get_CheckTypeByMouldSourceResult" type="tns:ClsKf_ICStockBill_Mould" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="getMouldSourceBillList">
        <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="HHMaker" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="HOWNERID" type="s:long" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="getMouldSourceBillListResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="getMouldSourceBillListResult" type="tns:ClsKf_ICStockBill_Mould" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="set_AuditPOStockInBill">
      <s:element name="set_CheckAddPOStockInBill">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="oMain" type="tns:ClsKf_POStockInBillMain_K3" />
@@ -2888,6 +3093,38 @@
          </s:extension>
        </s:complexContent>
      </s:complexType>
      <s:element name="set_CheckAddPOStockInBillResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="set_CheckAddPOStockInBillResult" type="s:boolean" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="set_CheckPOStockInBill">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="oMain" type="tns:ClsKf_POStockInBillMain_K3" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="set_CheckPOStockInBillResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="set_CheckPOStockInBillResult" type="s:boolean" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="set_AuditPOStockInBill">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="oMain" type="tns:ClsKf_POStockInBillMain_K3" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="set_AuditPOStockInBillResponse">
        <s:complexType>
          <s:sequence>
@@ -4313,53 +4550,6 @@
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="Get_ICInventoryByMaterIDList">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="sBarCode" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="HWHID" type="s:long" />
            <s:element minOccurs="1" maxOccurs="1" name="HSPID" type="s:long" />
            <s:element minOccurs="1" maxOccurs="1" name="HOWNERID" type="s:long" />
            <s:element minOccurs="0" maxOccurs="1" name="sWhere" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="Get_ICInventoryByMaterIDListResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="Get_ICInventoryByMaterIDListResult">
              <s:complexType>
                <s:sequence>
                  <s:element ref="s:schema" />
                  <s:any />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="Get_CheckQtyByBarCode">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="sBarcode" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="HWHID" type="s:long" />
            <s:element minOccurs="1" maxOccurs="1" name="HSPID" type="s:long" />
            <s:element minOccurs="1" maxOccurs="1" name="HAuxPropID" type="s:long" />
            <s:element minOccurs="0" maxOccurs="1" name="sBatchNo" type="s:string" />
            <s:element minOccurs="0" maxOccurs="1" name="HMTONo" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="sQty" type="s:double" />
            <s:element minOccurs="1" maxOccurs="1" name="sRelQty" type="s:double" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="Get_CheckQtyByBarCodeResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="Get_CheckQtyByBarCodeResult" type="s:boolean" />
            <s:element minOccurs="1" maxOccurs="1" name="sRelQty" type="s:double" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="set_SaveSellOutBill">
        <s:complexType>
          <s:sequence>
@@ -5623,6 +5813,22 @@
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="set_SaveOtherOutBill_BillCheck">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="oMain" type="tns:ClsKf_OtherOutBillMain" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="set_SaveOtherOutBill_BillCheckResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="set_SaveOtherOutBill_BillCheckResult" type="s:boolean" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="set_SavePOStockInBackBill">
        <s:complexType>
          <s:sequence>
@@ -5706,38 +5912,6 @@
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="set_SavePOStockInBillResult" type="s:boolean" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="set_CheckAddPOStockInBill">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="oMain" type="tns:ClsKf_POStockInBillMain_K3" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="set_CheckAddPOStockInBillResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="set_CheckAddPOStockInBillResult" type="s:boolean" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="set_CheckPOStockInBill">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="oMain" type="tns:ClsKf_POStockInBillMain_K3" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="set_CheckPOStockInBillResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="set_CheckPOStockInBillResult" type="s:boolean" />
            <s:element minOccurs="0" maxOccurs="1" name="sErrMsg" type="s:string" />
          </s:sequence>
        </s:complexType>
@@ -11431,6 +11605,24 @@
      </s:element>
    </s:schema>
  </wsdl:types>
  <wsdl:message name="get_SourceBarCode_EntrustOutSoapIn">
    <wsdl:part name="parameters" element="tns:get_SourceBarCode_EntrustOut" />
  </wsdl:message>
  <wsdl:message name="get_SourceBarCode_EntrustOutSoapOut">
    <wsdl:part name="parameters" element="tns:get_SourceBarCode_EntrustOutResponse" />
  </wsdl:message>
  <wsdl:message name="get_CheckTypeByMouldSourceSoapIn">
    <wsdl:part name="parameters" element="tns:get_CheckTypeByMouldSource" />
  </wsdl:message>
  <wsdl:message name="get_CheckTypeByMouldSourceSoapOut">
    <wsdl:part name="parameters" element="tns:get_CheckTypeByMouldSourceResponse" />
  </wsdl:message>
  <wsdl:message name="getMouldSourceBillListSoapIn">
    <wsdl:part name="parameters" element="tns:getMouldSourceBillList" />
  </wsdl:message>
  <wsdl:message name="getMouldSourceBillListSoapOut">
    <wsdl:part name="parameters" element="tns:getMouldSourceBillListResponse" />
  </wsdl:message>
  <wsdl:message name="Get_CheckTypeByMouldBarCode_ProdCheckStockSoapIn">
    <wsdl:part name="parameters" element="tns:Get_CheckTypeByMouldBarCode_ProdCheckStock" />
  </wsdl:message>
@@ -11527,6 +11719,42 @@
  <wsdl:message name="set_DelPonderationBillMain_Temp_PackSoapOut">
    <wsdl:part name="parameters" element="tns:set_DelPonderationBillMain_Temp_PackResponse" />
  </wsdl:message>
  <wsdl:message name="GetSourceBillList_BillCheckSoapIn">
    <wsdl:part name="parameters" element="tns:GetSourceBillList_BillCheck" />
  </wsdl:message>
  <wsdl:message name="GetSourceBillList_BillCheckSoapOut">
    <wsdl:part name="parameters" element="tns:GetSourceBillList_BillCheckResponse" />
  </wsdl:message>
  <wsdl:message name="get_BillBarCode_OtherOutCheckSoapIn">
    <wsdl:part name="parameters" element="tns:get_BillBarCode_OtherOutCheck" />
  </wsdl:message>
  <wsdl:message name="get_BillBarCode_OtherOutCheckSoapOut">
    <wsdl:part name="parameters" element="tns:get_BillBarCode_OtherOutCheckResponse" />
  </wsdl:message>
  <wsdl:message name="set_SavePonderationBillMain_Temp_BarCode_BillCheckSoapIn">
    <wsdl:part name="parameters" element="tns:set_SavePonderationBillMain_Temp_BarCode_BillCheck" />
  </wsdl:message>
  <wsdl:message name="set_SavePonderationBillMain_Temp_BarCode_BillCheckSoapOut">
    <wsdl:part name="parameters" element="tns:set_SavePonderationBillMain_Temp_BarCode_BillCheckResponse" />
  </wsdl:message>
  <wsdl:message name="get_CheckTypeByBarCode_BillCheckSoapIn">
    <wsdl:part name="parameters" element="tns:get_CheckTypeByBarCode_BillCheck" />
  </wsdl:message>
  <wsdl:message name="get_CheckTypeByBarCode_BillCheckSoapOut">
    <wsdl:part name="parameters" element="tns:get_CheckTypeByBarCode_BillCheckResponse" />
  </wsdl:message>
  <wsdl:message name="GetKf_PonderationBillMain_Temp_BillCheckSoapIn">
    <wsdl:part name="parameters" element="tns:GetKf_PonderationBillMain_Temp_BillCheck" />
  </wsdl:message>
  <wsdl:message name="GetKf_PonderationBillMain_Temp_BillCheckSoapOut">
    <wsdl:part name="parameters" element="tns:GetKf_PonderationBillMain_Temp_BillCheckResponse" />
  </wsdl:message>
  <wsdl:message name="GetKf_PonderationBillMain_TempList_BillCheckSoapIn">
    <wsdl:part name="parameters" element="tns:GetKf_PonderationBillMain_TempList_BillCheck" />
  </wsdl:message>
  <wsdl:message name="GetKf_PonderationBillMain_TempList_BillCheckSoapOut">
    <wsdl:part name="parameters" element="tns:GetKf_PonderationBillMain_TempList_BillCheckResponse" />
  </wsdl:message>
  <wsdl:message name="getDataSetByMasterSQLSoapIn">
    <wsdl:part name="parameters" element="tns:getDataSetByMasterSQL" />
  </wsdl:message>
@@ -11616,6 +11844,24 @@
  </wsdl:message>
  <wsdl:message name="set_SavePonderationBillMain_Temp_BarCode_MouldSoapOut">
    <wsdl:part name="parameters" element="tns:set_SavePonderationBillMain_Temp_BarCode_MouldResponse" />
  </wsdl:message>
  <wsdl:message name="GetKf_ICStockBillQueryListSoapIn">
    <wsdl:part name="parameters" element="tns:GetKf_ICStockBillQueryList" />
  </wsdl:message>
  <wsdl:message name="GetKf_ICStockBillQueryListSoapOut">
    <wsdl:part name="parameters" element="tns:GetKf_ICStockBillQueryListResponse" />
  </wsdl:message>
  <wsdl:message name="Get_ICInventoryByMaterIDListSoapIn">
    <wsdl:part name="parameters" element="tns:Get_ICInventoryByMaterIDList" />
  </wsdl:message>
  <wsdl:message name="Get_ICInventoryByMaterIDListSoapOut">
    <wsdl:part name="parameters" element="tns:Get_ICInventoryByMaterIDListResponse" />
  </wsdl:message>
  <wsdl:message name="Get_CheckQtyByBarCodeSoapIn">
    <wsdl:part name="parameters" element="tns:Get_CheckQtyByBarCode" />
  </wsdl:message>
  <wsdl:message name="Get_CheckQtyByBarCodeSoapOut">
    <wsdl:part name="parameters" element="tns:Get_CheckQtyByBarCodeResponse" />
  </wsdl:message>
  <wsdl:message name="Get_CheckQtyByBarCode_GetWhAndSPSoapIn">
    <wsdl:part name="parameters" element="tns:Get_CheckQtyByBarCode_GetWhAndSP" />
@@ -12103,23 +12349,17 @@
  <wsdl:message name="get_SourceBarCode_MateOutSoapOut">
    <wsdl:part name="parameters" element="tns:get_SourceBarCode_MateOutResponse" />
  </wsdl:message>
  <wsdl:message name="get_SourceBarCode_EntrustOutSoapIn">
    <wsdl:part name="parameters" element="tns:get_SourceBarCode_EntrustOut" />
  <wsdl:message name="set_CheckAddPOStockInBillSoapIn">
    <wsdl:part name="parameters" element="tns:set_CheckAddPOStockInBill" />
  </wsdl:message>
  <wsdl:message name="get_SourceBarCode_EntrustOutSoapOut">
    <wsdl:part name="parameters" element="tns:get_SourceBarCode_EntrustOutResponse" />
  <wsdl:message name="set_CheckAddPOStockInBillSoapOut">
    <wsdl:part name="parameters" element="tns:set_CheckAddPOStockInBillResponse" />
  </wsdl:message>
  <wsdl:message name="get_CheckTypeByMouldSourceSoapIn">
    <wsdl:part name="parameters" element="tns:get_CheckTypeByMouldSource" />
  <wsdl:message name="set_CheckPOStockInBillSoapIn">
    <wsdl:part name="parameters" element="tns:set_CheckPOStockInBill" />
  </wsdl:message>
  <wsdl:message name="get_CheckTypeByMouldSourceSoapOut">
    <wsdl:part name="parameters" element="tns:get_CheckTypeByMouldSourceResponse" />
  </wsdl:message>
  <wsdl:message name="getMouldSourceBillListSoapIn">
    <wsdl:part name="parameters" element="tns:getMouldSourceBillList" />
  </wsdl:message>
  <wsdl:message name="getMouldSourceBillListSoapOut">
    <wsdl:part name="parameters" element="tns:getMouldSourceBillListResponse" />
  <wsdl:message name="set_CheckPOStockInBillSoapOut">
    <wsdl:part name="parameters" element="tns:set_CheckPOStockInBillResponse" />
  </wsdl:message>
  <wsdl:message name="set_AuditPOStockInBillSoapIn">
    <wsdl:part name="parameters" element="tns:set_AuditPOStockInBill" />
@@ -12469,18 +12709,6 @@
  <wsdl:message name="GetKf_ICStockBillListSoapOut">
    <wsdl:part name="parameters" element="tns:GetKf_ICStockBillListResponse" />
  </wsdl:message>
  <wsdl:message name="Get_ICInventoryByMaterIDListSoapIn">
    <wsdl:part name="parameters" element="tns:Get_ICInventoryByMaterIDList" />
  </wsdl:message>
  <wsdl:message name="Get_ICInventoryByMaterIDListSoapOut">
    <wsdl:part name="parameters" element="tns:Get_ICInventoryByMaterIDListResponse" />
  </wsdl:message>
  <wsdl:message name="Get_CheckQtyByBarCodeSoapIn">
    <wsdl:part name="parameters" element="tns:Get_CheckQtyByBarCode" />
  </wsdl:message>
  <wsdl:message name="Get_CheckQtyByBarCodeSoapOut">
    <wsdl:part name="parameters" element="tns:Get_CheckQtyByBarCodeResponse" />
  </wsdl:message>
  <wsdl:message name="set_SaveSellOutBillSoapIn">
    <wsdl:part name="parameters" element="tns:set_SaveSellOutBill" />
  </wsdl:message>
@@ -12775,6 +13003,12 @@
  <wsdl:message name="set_SaveOtherOutBill_CLDSoapOut">
    <wsdl:part name="parameters" element="tns:set_SaveOtherOutBill_CLDResponse" />
  </wsdl:message>
  <wsdl:message name="set_SaveOtherOutBill_BillCheckSoapIn">
    <wsdl:part name="parameters" element="tns:set_SaveOtherOutBill_BillCheck" />
  </wsdl:message>
  <wsdl:message name="set_SaveOtherOutBill_BillCheckSoapOut">
    <wsdl:part name="parameters" element="tns:set_SaveOtherOutBill_BillCheckResponse" />
  </wsdl:message>
  <wsdl:message name="set_SavePOStockInBackBillSoapIn">
    <wsdl:part name="parameters" element="tns:set_SavePOStockInBackBill" />
  </wsdl:message>
@@ -12804,18 +13038,6 @@
  </wsdl:message>
  <wsdl:message name="set_SavePOStockInBillSoapOut">
    <wsdl:part name="parameters" element="tns:set_SavePOStockInBillResponse" />
  </wsdl:message>
  <wsdl:message name="set_CheckAddPOStockInBillSoapIn">
    <wsdl:part name="parameters" element="tns:set_CheckAddPOStockInBill" />
  </wsdl:message>
  <wsdl:message name="set_CheckAddPOStockInBillSoapOut">
    <wsdl:part name="parameters" element="tns:set_CheckAddPOStockInBillResponse" />
  </wsdl:message>
  <wsdl:message name="set_CheckPOStockInBillSoapIn">
    <wsdl:part name="parameters" element="tns:set_CheckPOStockInBill" />
  </wsdl:message>
  <wsdl:message name="set_CheckPOStockInBillSoapOut">
    <wsdl:part name="parameters" element="tns:set_CheckPOStockInBillResponse" />
  </wsdl:message>
  <wsdl:message name="set_DelPonderationBillMain_TempSoapIn">
    <wsdl:part name="parameters" element="tns:set_DelPonderationBillMain_Temp" />
@@ -14234,6 +14456,18 @@
    <wsdl:part name="parameters" element="tns:GetSc_ICMOBillListResponse" />
  </wsdl:message>
  <wsdl:portType name="WebService1Soap">
    <wsdl:operation name="get_SourceBarCode_EntrustOut">
      <wsdl:input message="tns:get_SourceBarCode_EntrustOutSoapIn" />
      <wsdl:output message="tns:get_SourceBarCode_EntrustOutSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="get_CheckTypeByMouldSource">
      <wsdl:input message="tns:get_CheckTypeByMouldSourceSoapIn" />
      <wsdl:output message="tns:get_CheckTypeByMouldSourceSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="getMouldSourceBillList">
      <wsdl:input message="tns:getMouldSourceBillListSoapIn" />
      <wsdl:output message="tns:getMouldSourceBillListSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="Get_CheckTypeByMouldBarCode_ProdCheckStock">
      <wsdl:input message="tns:Get_CheckTypeByMouldBarCode_ProdCheckStockSoapIn" />
      <wsdl:output message="tns:Get_CheckTypeByMouldBarCode_ProdCheckStockSoapOut" />
@@ -14298,6 +14532,30 @@
      <wsdl:input message="tns:set_DelPonderationBillMain_Temp_PackSoapIn" />
      <wsdl:output message="tns:set_DelPonderationBillMain_Temp_PackSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetSourceBillList_BillCheck">
      <wsdl:input message="tns:GetSourceBillList_BillCheckSoapIn" />
      <wsdl:output message="tns:GetSourceBillList_BillCheckSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="get_BillBarCode_OtherOutCheck">
      <wsdl:input message="tns:get_BillBarCode_OtherOutCheckSoapIn" />
      <wsdl:output message="tns:get_BillBarCode_OtherOutCheckSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="set_SavePonderationBillMain_Temp_BarCode_BillCheck">
      <wsdl:input message="tns:set_SavePonderationBillMain_Temp_BarCode_BillCheckSoapIn" />
      <wsdl:output message="tns:set_SavePonderationBillMain_Temp_BarCode_BillCheckSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="get_CheckTypeByBarCode_BillCheck">
      <wsdl:input message="tns:get_CheckTypeByBarCode_BillCheckSoapIn" />
      <wsdl:output message="tns:get_CheckTypeByBarCode_BillCheckSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetKf_PonderationBillMain_Temp_BillCheck">
      <wsdl:input message="tns:GetKf_PonderationBillMain_Temp_BillCheckSoapIn" />
      <wsdl:output message="tns:GetKf_PonderationBillMain_Temp_BillCheckSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetKf_PonderationBillMain_TempList_BillCheck">
      <wsdl:input message="tns:GetKf_PonderationBillMain_TempList_BillCheckSoapIn" />
      <wsdl:output message="tns:GetKf_PonderationBillMain_TempList_BillCheckSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="getDataSetByMasterSQL">
      <wsdl:input message="tns:getDataSetByMasterSQLSoapIn" />
      <wsdl:output message="tns:getDataSetByMasterSQLSoapOut" />
@@ -14357,6 +14615,18 @@
    <wsdl:operation name="set_SavePonderationBillMain_Temp_BarCode_Mould">
      <wsdl:input message="tns:set_SavePonderationBillMain_Temp_BarCode_MouldSoapIn" />
      <wsdl:output message="tns:set_SavePonderationBillMain_Temp_BarCode_MouldSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetKf_ICStockBillQueryList">
      <wsdl:input message="tns:GetKf_ICStockBillQueryListSoapIn" />
      <wsdl:output message="tns:GetKf_ICStockBillQueryListSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="Get_ICInventoryByMaterIDList">
      <wsdl:input message="tns:Get_ICInventoryByMaterIDListSoapIn" />
      <wsdl:output message="tns:Get_ICInventoryByMaterIDListSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="Get_CheckQtyByBarCode">
      <wsdl:input message="tns:Get_CheckQtyByBarCodeSoapIn" />
      <wsdl:output message="tns:Get_CheckQtyByBarCodeSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="Get_CheckQtyByBarCode_GetWhAndSP">
      <wsdl:input message="tns:Get_CheckQtyByBarCode_GetWhAndSPSoapIn" />
@@ -14682,17 +14952,13 @@
      <wsdl:input message="tns:get_SourceBarCode_MateOutSoapIn" />
      <wsdl:output message="tns:get_SourceBarCode_MateOutSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="get_SourceBarCode_EntrustOut">
      <wsdl:input message="tns:get_SourceBarCode_EntrustOutSoapIn" />
      <wsdl:output message="tns:get_SourceBarCode_EntrustOutSoapOut" />
    <wsdl:operation name="set_CheckAddPOStockInBill">
      <wsdl:input message="tns:set_CheckAddPOStockInBillSoapIn" />
      <wsdl:output message="tns:set_CheckAddPOStockInBillSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="get_CheckTypeByMouldSource">
      <wsdl:input message="tns:get_CheckTypeByMouldSourceSoapIn" />
      <wsdl:output message="tns:get_CheckTypeByMouldSourceSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="getMouldSourceBillList">
      <wsdl:input message="tns:getMouldSourceBillListSoapIn" />
      <wsdl:output message="tns:getMouldSourceBillListSoapOut" />
    <wsdl:operation name="set_CheckPOStockInBill">
      <wsdl:input message="tns:set_CheckPOStockInBillSoapIn" />
      <wsdl:output message="tns:set_CheckPOStockInBillSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="set_AuditPOStockInBill">
      <wsdl:input message="tns:set_AuditPOStockInBillSoapIn" />
@@ -14926,14 +15192,6 @@
      <wsdl:input message="tns:GetKf_ICStockBillListSoapIn" />
      <wsdl:output message="tns:GetKf_ICStockBillListSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="Get_ICInventoryByMaterIDList">
      <wsdl:input message="tns:Get_ICInventoryByMaterIDListSoapIn" />
      <wsdl:output message="tns:Get_ICInventoryByMaterIDListSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="Get_CheckQtyByBarCode">
      <wsdl:input message="tns:Get_CheckQtyByBarCodeSoapIn" />
      <wsdl:output message="tns:Get_CheckQtyByBarCodeSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="set_SaveSellOutBill">
      <wsdl:input message="tns:set_SaveSellOutBillSoapIn" />
      <wsdl:output message="tns:set_SaveSellOutBillSoapOut" />
@@ -15130,6 +15388,10 @@
      <wsdl:input message="tns:set_SaveOtherOutBill_CLDSoapIn" />
      <wsdl:output message="tns:set_SaveOtherOutBill_CLDSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="set_SaveOtherOutBill_BillCheck">
      <wsdl:input message="tns:set_SaveOtherOutBill_BillCheckSoapIn" />
      <wsdl:output message="tns:set_SaveOtherOutBill_BillCheckSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="set_SavePOStockInBackBill">
      <wsdl:input message="tns:set_SavePOStockInBackBillSoapIn" />
      <wsdl:output message="tns:set_SavePOStockInBackBillSoapOut" />
@@ -15149,14 +15411,6 @@
    <wsdl:operation name="set_SavePOStockInBill">
      <wsdl:input message="tns:set_SavePOStockInBillSoapIn" />
      <wsdl:output message="tns:set_SavePOStockInBillSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="set_CheckAddPOStockInBill">
      <wsdl:input message="tns:set_CheckAddPOStockInBillSoapIn" />
      <wsdl:output message="tns:set_CheckAddPOStockInBillSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="set_CheckPOStockInBill">
      <wsdl:input message="tns:set_CheckPOStockInBillSoapIn" />
      <wsdl:output message="tns:set_CheckPOStockInBillSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="set_DelPonderationBillMain_Temp">
      <wsdl:input message="tns:set_DelPonderationBillMain_TempSoapIn" />
@@ -16105,6 +16359,33 @@
  </wsdl:portType>
  <wsdl:binding name="WebService1Soap" type="tns:WebService1Soap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="get_SourceBarCode_EntrustOut">
      <soap:operation soapAction="http://tempuri.org/get_SourceBarCode_EntrustOut" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="get_CheckTypeByMouldSource">
      <soap:operation soapAction="http://tempuri.org/get_CheckTypeByMouldSource" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="getMouldSourceBillList">
      <soap:operation soapAction="http://tempuri.org/getMouldSourceBillList" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="Get_CheckTypeByMouldBarCode_ProdCheckStock">
      <soap:operation soapAction="http://tempuri.org/Get_CheckTypeByMouldBarCode_ProdCheckStock" style="document" />
      <wsdl:input>
@@ -16249,6 +16530,60 @@
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetSourceBillList_BillCheck">
      <soap:operation soapAction="http://tempuri.org/GetSourceBillList_BillCheck" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="get_BillBarCode_OtherOutCheck">
      <soap:operation soapAction="http://tempuri.org/get_BillBarCode_OtherOutCheck" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="set_SavePonderationBillMain_Temp_BarCode_BillCheck">
      <soap:operation soapAction="http://tempuri.org/set_SavePonderationBillMain_Temp_BarCode_BillCheck" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="get_CheckTypeByBarCode_BillCheck">
      <soap:operation soapAction="http://tempuri.org/get_CheckTypeByBarCode_BillCheck" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetKf_PonderationBillMain_Temp_BillCheck">
      <soap:operation soapAction="http://tempuri.org/GetKf_PonderationBillMain_Temp_BillCheck" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetKf_PonderationBillMain_TempList_BillCheck">
      <soap:operation soapAction="http://tempuri.org/GetKf_PonderationBillMain_TempList_BillCheck" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="getDataSetByMasterSQL">
      <soap:operation soapAction="http://tempuri.org/getDataSetByMasterSQL" style="document" />
      <wsdl:input>
@@ -16377,6 +16712,33 @@
    </wsdl:operation>
    <wsdl:operation name="set_SavePonderationBillMain_Temp_BarCode_Mould">
      <soap:operation soapAction="http://tempuri.org/set_SavePonderationBillMain_Temp_BarCode_Mould" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetKf_ICStockBillQueryList">
      <soap:operation soapAction="http://tempuri.org/GetKf_ICStockBillQueryList" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="Get_ICInventoryByMaterIDList">
      <soap:operation soapAction="http://tempuri.org/Get_ICInventoryByMaterIDList" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="Get_CheckQtyByBarCode">
      <soap:operation soapAction="http://tempuri.org/Get_CheckQtyByBarCode" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
@@ -17113,8 +17475,8 @@
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="get_SourceBarCode_EntrustOut">
      <soap:operation soapAction="http://tempuri.org/get_SourceBarCode_EntrustOut" style="document" />
    <wsdl:operation name="set_CheckAddPOStockInBill">
      <soap:operation soapAction="http://tempuri.org/set_CheckAddPOStockInBill" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
@@ -17122,17 +17484,8 @@
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="get_CheckTypeByMouldSource">
      <soap:operation soapAction="http://tempuri.org/get_CheckTypeByMouldSource" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="getMouldSourceBillList">
      <soap:operation soapAction="http://tempuri.org/getMouldSourceBillList" style="document" />
    <wsdl:operation name="set_CheckPOStockInBill">
      <soap:operation soapAction="http://tempuri.org/set_CheckPOStockInBill" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
@@ -17662,24 +18015,6 @@
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="Get_ICInventoryByMaterIDList">
      <soap:operation soapAction="http://tempuri.org/Get_ICInventoryByMaterIDList" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="Get_CheckQtyByBarCode">
      <soap:operation soapAction="http://tempuri.org/Get_CheckQtyByBarCode" 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">
      <soap:operation soapAction="http://tempuri.org/set_SaveSellOutBill" style="document" />
      <wsdl:input>
@@ -18121,6 +18456,15 @@
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="set_SaveOtherOutBill_BillCheck">
      <soap:operation soapAction="http://tempuri.org/set_SaveOtherOutBill_BillCheck" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="set_SavePOStockInBackBill">
      <soap:operation soapAction="http://tempuri.org/set_SavePOStockInBackBill" style="document" />
      <wsdl:input>
@@ -18159,24 +18503,6 @@
    </wsdl:operation>
    <wsdl:operation name="set_SavePOStockInBill">
      <soap:operation soapAction="http://tempuri.org/set_SavePOStockInBill" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="set_CheckAddPOStockInBill">
      <soap:operation soapAction="http://tempuri.org/set_CheckAddPOStockInBill" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="set_CheckPOStockInBill">
      <soap:operation soapAction="http://tempuri.org/set_CheckPOStockInBill" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
@@ -20311,6 +20637,33 @@
  </wsdl:binding>
  <wsdl:binding name="WebService1Soap12" type="tns:WebService1Soap">
    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="get_SourceBarCode_EntrustOut">
      <soap12:operation soapAction="http://tempuri.org/get_SourceBarCode_EntrustOut" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="get_CheckTypeByMouldSource">
      <soap12:operation soapAction="http://tempuri.org/get_CheckTypeByMouldSource" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="getMouldSourceBillList">
      <soap12:operation soapAction="http://tempuri.org/getMouldSourceBillList" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="Get_CheckTypeByMouldBarCode_ProdCheckStock">
      <soap12:operation soapAction="http://tempuri.org/Get_CheckTypeByMouldBarCode_ProdCheckStock" style="document" />
      <wsdl:input>
@@ -20455,6 +20808,60 @@
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetSourceBillList_BillCheck">
      <soap12:operation soapAction="http://tempuri.org/GetSourceBillList_BillCheck" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="get_BillBarCode_OtherOutCheck">
      <soap12:operation soapAction="http://tempuri.org/get_BillBarCode_OtherOutCheck" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="set_SavePonderationBillMain_Temp_BarCode_BillCheck">
      <soap12:operation soapAction="http://tempuri.org/set_SavePonderationBillMain_Temp_BarCode_BillCheck" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="get_CheckTypeByBarCode_BillCheck">
      <soap12:operation soapAction="http://tempuri.org/get_CheckTypeByBarCode_BillCheck" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetKf_PonderationBillMain_Temp_BillCheck">
      <soap12:operation soapAction="http://tempuri.org/GetKf_PonderationBillMain_Temp_BillCheck" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetKf_PonderationBillMain_TempList_BillCheck">
      <soap12:operation soapAction="http://tempuri.org/GetKf_PonderationBillMain_TempList_BillCheck" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="getDataSetByMasterSQL">
      <soap12:operation soapAction="http://tempuri.org/getDataSetByMasterSQL" style="document" />
      <wsdl:input>
@@ -20583,6 +20990,33 @@
    </wsdl:operation>
    <wsdl:operation name="set_SavePonderationBillMain_Temp_BarCode_Mould">
      <soap12:operation soapAction="http://tempuri.org/set_SavePonderationBillMain_Temp_BarCode_Mould" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetKf_ICStockBillQueryList">
      <soap12:operation soapAction="http://tempuri.org/GetKf_ICStockBillQueryList" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="Get_ICInventoryByMaterIDList">
      <soap12:operation soapAction="http://tempuri.org/Get_ICInventoryByMaterIDList" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="Get_CheckQtyByBarCode">
      <soap12:operation soapAction="http://tempuri.org/Get_CheckQtyByBarCode" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
@@ -21319,8 +21753,8 @@
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="get_SourceBarCode_EntrustOut">
      <soap12:operation soapAction="http://tempuri.org/get_SourceBarCode_EntrustOut" style="document" />
    <wsdl:operation name="set_CheckAddPOStockInBill">
      <soap12:operation soapAction="http://tempuri.org/set_CheckAddPOStockInBill" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
@@ -21328,17 +21762,8 @@
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="get_CheckTypeByMouldSource">
      <soap12:operation soapAction="http://tempuri.org/get_CheckTypeByMouldSource" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="getMouldSourceBillList">
      <soap12:operation soapAction="http://tempuri.org/getMouldSourceBillList" style="document" />
    <wsdl:operation name="set_CheckPOStockInBill">
      <soap12:operation soapAction="http://tempuri.org/set_CheckPOStockInBill" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
@@ -21868,24 +22293,6 @@
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="Get_ICInventoryByMaterIDList">
      <soap12:operation soapAction="http://tempuri.org/Get_ICInventoryByMaterIDList" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="Get_CheckQtyByBarCode">
      <soap12:operation soapAction="http://tempuri.org/Get_CheckQtyByBarCode" 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">
      <soap12:operation soapAction="http://tempuri.org/set_SaveSellOutBill" style="document" />
      <wsdl:input>
@@ -22327,6 +22734,15 @@
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="set_SaveOtherOutBill_BillCheck">
      <soap12:operation soapAction="http://tempuri.org/set_SaveOtherOutBill_BillCheck" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="set_SavePOStockInBackBill">
      <soap12:operation soapAction="http://tempuri.org/set_SavePOStockInBackBill" style="document" />
      <wsdl:input>
@@ -22365,24 +22781,6 @@
    </wsdl:operation>
    <wsdl:operation name="set_SavePOStockInBill">
      <soap12:operation soapAction="http://tempuri.org/set_SavePOStockInBill" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="set_CheckAddPOStockInBill">
      <soap12:operation soapAction="http://tempuri.org/set_CheckAddPOStockInBill" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="set_CheckPOStockInBill">
      <soap12:operation soapAction="http://tempuri.org/set_CheckPOStockInBill" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>