using System; 
 | 
using System.Collections.Generic; 
 | 
using System.Linq; 
 | 
using System.Web; 
 | 
using System.Data; 
 | 
  
 | 
namespace WebAPI.DLL 
 | 
{ 
 | 
    public class ClsSc_MouldProdInBill : DBUtility.ClsXt_BaseBill 
 | 
    { 
 | 
        public Models.ClsSc_MouldProdBillMain omodel = new Models.ClsSc_MouldProdBillMain(); 
 | 
        public List<Models.ClsSc_MouldProdBillSub> DetailColl = new List<Models.ClsSc_MouldProdBillSub>(); 
 | 
  
 | 
        public ClsSc_MouldProdInBill() 
 | 
        { 
 | 
            base.MvarItemKeySub = "Sc_MouldStockBillSub"; 
 | 
            base.MvarItemKeySub2 = ""; 
 | 
            base.MvarItemKeySub3 = ""; 
 | 
            base.MvarItemKeySub4 = ""; 
 | 
            base.MvarItemKey = "Sc_MouldStockBillMain"; 
 | 
            base.MvarReportTitle = "模具采购入库单"; 
 | 
            base.BillType = "3801"; 
 | 
            base.HBillSubType = "3801"; 
 | 
        } 
 | 
  
 | 
        #region 固定代码 
 | 
  
 | 
        ~ClsSc_MouldProdInBill() 
 | 
        { 
 | 
            DetailColl = null; 
 | 
        } 
 | 
  
 | 
        #endregion   自定义方法 
 | 
  
 | 
        //新增单据 
 | 
        public override bool AddBill(ref string sReturn) 
 | 
        { 
 | 
            try 
 | 
            { 
 | 
                //得到mainid 
 | 
                omodel.HInterID = DBUtility.ClsPub.CreateBillID(BillType, ref DBUtility.ClsPub.sExeReturnInfo); 
 | 
                //若MAINDI重复则重新获取 
 | 
                oCn.BeginTran(); 
 | 
                string sql = "Insert Into Sc_MouldStockBillMain   " + 
 | 
                "(HBillType,HBillSubType,HInterID,HBillNo,HDate" + 
 | 
                ",HRemark,HMaker,HMakeDate" + /*"HYear, HPeriod,"*/ 
 | 
                ",HSupID,HSupTypeID,HWHID,HSCWHID,HEmpID,HManagerID,HSecManagerID" + 
 | 
                ",HKeeperID,HDeptID,HExplanation,HInnerBillNo,HRedBlueFlag" + 
 | 
                ") " + 
 | 
                " values('" + this.BillType + "','" + this.HBillSubType + "'," + omodel.HInterID.ToString() + ",'" + omodel.HBillNo + "','" + omodel.HDate + "'" + 
 | 
                ", '" + omodel.HRemark.ToString() + "','" + omodel.HMaker + "',getdate()" + /*omodel.HYear.ToString() + "," + omodel.HPeriod.ToString() + ",'" +*/ 
 | 
                ", " + omodel.HSupID.ToString() + ", " + omodel.HSupTypeID.ToString() + "," + omodel.HWHID.ToString() + "," + omodel.HSCWHID.ToString() + "," + omodel.HEmpID.ToString() + "," + omodel.HManagerID.ToString() + "," + omodel.HSecManagerID.ToString() + 
 | 
                ", " + omodel.HKeeperID.ToString() + "," + omodel.HDeptID.ToString() + ",'" + omodel.HExplanation + "','" + omodel.HInnerBillNo + "'," + DBUtility.ClsPub.BoolToString(omodel.HRedBlueFlag) + 
 | 
  
 | 
                ") "; 
 | 
                //主表 
 | 
                oCn.RunProc(sql); 
 | 
                //插入子表 
 | 
                foreach (Models.ClsSc_MouldProdBillSub oSub in DetailColl) 
 | 
                { 
 | 
  
 | 
                    oCn.RunProc("Insert into Sc_MouldStockBillSub " + 
 | 
                          " (HInterID,HEntryID,HCloseMan,HEntryCloseDate,HCloseType,HRemark" + 
 | 
                          ",HSourceInterID,HSourceEntryID,HSourceBillNo,HSourceBillType,HRelationQty,HRelationMoney" + 
 | 
                          ",HMaterID,HPropertyID,HSecUnitID,HSecUnitRate,HUnitID,HQtyMust" + 
 | 
                          ",HQty,HPrice,HMoney,HWHID,HSCWHID,HSPID" + 
 | 
                          ",HDesignLife,HLeaveLife,HUseLife" + 
 | 
                          ",HSCSPID,HSPGroupID,HBatchNo,HStockOrgID" + 
 | 
                          ") values(" 
 | 
                          + omodel.HInterID.ToString() + "," + oSub.HEntryID.ToString() + ",'" + oSub.HCloseMan + "','" + oSub.HEntryCloseDate.ToShortDateString() + "'," + Convert.ToString(oSub.HCloseType ? 1 : 0) + ",'" + oSub.HRemark + "'" + 
 | 
                          "," + oSub.HSourceInterID.ToString() + "," + oSub.HSourceEntryID.ToString() + ",'" + oSub.HSourceBillNo + "','" + oSub.HSourceBillType + "'," + oSub.HRelationQty.ToString() + "," + oSub.HRelationMoney.ToString() + 
 | 
                          "," + oSub.HMaterID.ToString() + "," + oSub.HPropertyID.ToString() + "," + oSub.HSecUnitID.ToString() + "," + oSub.HSecUnitRate.ToString() + "," + oSub.HUnitID.ToString() + "," + oSub.HQtyMust.ToString() + 
 | 
                          "," + oSub.HQty.ToString() + "," + oSub.HPrice.ToString() + "," + oSub.HMoney.ToString() + "," + oSub.HWHID.ToString() + "," + oSub.HSCWHID.ToString() + "," + oSub.HSPID.ToString() + 
 | 
                          "," + oSub.HDesignLife.ToString() + "," + oSub.HLeaveLife.ToString() + "," + oSub.HUseLife.ToString() + 
 | 
                          "," + oSub.HSCSPID.ToString() + "," + oSub.HSPGroupID.ToString() + ",'" + oSub.HBatchNo + "'," + oSub.HStockOrgID.ToString() + 
 | 
                          ") "); 
 | 
                } 
 | 
                DataSet Ds; 
 | 
                foreach (Models.ClsSc_MouldProdBillSub oSub in DetailColl) 
 | 
                { 
 | 
                    Ds = oCn.RunProcReturn("exec h_p_Kf_ICStockBill_CheckKF " + omodel.HInterID + "," + oSub.HMaterID + "," + oSub.HWHID + "," + oSub.HSPID + ", 1", "gy_czygl"); 
 | 
                    if (Ds.Tables[0].Rows.Count == 0) 
 | 
                    { 
 | 
                        oCn.RollBack(); 
 | 
                        return false; 
 | 
                    } 
 | 
                    if (DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0][0]) == "N") 
 | 
                    { 
 | 
                        sReturn = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0][1]) + ", 不允许保存!"; 
 | 
                        oCn.RollBack(); 
 | 
                        return false; 
 | 
                    } 
 | 
                } 
 | 
                sReturn = "新增单据成功!"; 
 | 
                oCn.Commit(); 
 | 
                return true; 
 | 
            } 
 | 
            catch (Exception e) 
 | 
            { 
 | 
                sReturn = e.Message; 
 | 
                oCn.RollBack(); 
 | 
                throw (e); 
 | 
            } 
 | 
        } 
 | 
  
 | 
        //修改单据 
 | 
        public override bool ModifyBill(Int64 lngBillKey, ref string sReturn) 
 | 
        { 
 | 
            try 
 | 
            { 
 | 
                // 
 | 
                oCn.BeginTran(); 
 | 
                //更新主表 
 | 
                oCn.RunProc("UpDate Sc_MouldStockBillMain set  " + 
 | 
                " HBillNo='" + omodel.HBillNo + "'" +  //固定赋值=============== 
 | 
                ",HDate='" + omodel.HDate + "'" + 
 | 
                ",HYear='" + omodel.HYear.ToString() + "'" + 
 | 
                ",HPeriod='" + omodel.HPeriod.ToString() + "'" + 
 | 
                ",HRemark='" + omodel.HRemark + "'" + 
 | 
                ",HUpDater='" + omodel.HMaker + "'" + 
 | 
                ",HUpDateDate=getdate()" + 
 | 
                //======================================== 
 | 
                ",HSupID=" + omodel.HSupID.ToString() + 
 | 
                ",HSupTypeID=" + omodel.HSupTypeID.ToString() + 
 | 
                ",HWHID=" + omodel.HWHID.ToString() + 
 | 
                ",HSCWHID=" + omodel.HSCWHID.ToString() + 
 | 
                ",HEmpID=" + omodel.HEmpID.ToString() + 
 | 
                ",HManagerID=" + omodel.HManagerID.ToString() + 
 | 
                ",HSecManagerID=" + omodel.HSecManagerID.ToString() + 
 | 
                ",HKeeperID=" + omodel.HKeeperID.ToString() + 
 | 
                ",HDeptID=" + omodel.HDeptID.ToString() + 
 | 
                ",HExplanation='" + omodel.HExplanation + "'" + 
 | 
                ",HInnerBillNo='" + omodel.HInnerBillNo + "'" + 
 | 
                ",HRedBlueFlag=" + DBUtility.ClsPub.BoolToString(omodel.HRedBlueFlag) + 
 | 
  
 | 
                " where HInterID=" + lngBillKey.ToString()); 
 | 
                //删除关联 
 | 
                DeleteRelation(ref sReturn, lngBillKey); 
 | 
                //删除子表 
 | 
                DeleteBillSub(lngBillKey); 
 | 
                //插入子表 
 | 
                omodel.HInterID = lngBillKey; 
 | 
                foreach (Models.ClsSc_MouldProdBillSub oSub in DetailColl) 
 | 
                { 
 | 
                    oCn.RunProc("Insert into Sc_MouldStockBillSub " + 
 | 
                        " (HInterID,HEntryID,HCloseMan,HEntryCloseDate,HCloseType,HRemark" + 
 | 
                        ",HSourceInterID,HSourceEntryID,HSourceBillNo,HSourceBillType,HRelationQty,HRelationMoney" + 
 | 
                        ",HMaterID,HPropertyID,HSecUnitID,HSecUnitRate,HUnitID,HQtyMust" + 
 | 
                        ",HQty,HPrice,HMoney,HWHID,HSCWHID,HSPID" + 
 | 
                        ",HDesignLife,HLeaveLife,HUseLife" + 
 | 
                        ",HSCSPID,HSPGroupID,HBatchNo,HStockOrgID" + 
 | 
                        ") values(" 
 | 
                        + omodel.HInterID.ToString() + "," + oSub.HEntryID.ToString() + ",'" + oSub.HCloseMan + "','" + oSub.HEntryCloseDate.ToShortDateString() + "'," + Convert.ToString(oSub.HCloseType ? 1 : 0) + ",'" + oSub.HRemark + "'" + 
 | 
                        "," + oSub.HSourceInterID.ToString() + "," + oSub.HSourceEntryID.ToString() + ",'" + oSub.HSourceBillNo + "','" + oSub.HSourceBillType + "'," + oSub.HRelationQty.ToString() + "," + oSub.HRelationMoney.ToString() + 
 | 
                        "," + oSub.HMaterID.ToString() + "," + oSub.HPropertyID.ToString() + "," + oSub.HSecUnitID.ToString() + "," + oSub.HSecUnitRate.ToString() + "," + oSub.HUnitID.ToString() + "," + oSub.HQtyMust.ToString() + 
 | 
                        "," + oSub.HQty.ToString() + "," + oSub.HPrice.ToString() + "," + oSub.HMoney.ToString() + "," + oSub.HWHID.ToString() + "," + oSub.HSCWHID.ToString() + "," + oSub.HSPID.ToString() + 
 | 
                        "," + oSub.HDesignLife.ToString() + "," + oSub.HLeaveLife.ToString() + "," + oSub.HUseLife.ToString() + 
 | 
                        "," + oSub.HSCSPID.ToString() + "," + oSub.HSPGroupID.ToString() + ",'" + oSub.HBatchNo + "'," + oSub.HStockOrgID.ToString() + 
 | 
                        ") "); 
 | 
                } 
 | 
                DataSet Ds; 
 | 
                foreach (Models.ClsSc_MouldProdBillSub oSub in DetailColl) 
 | 
                { 
 | 
                    Ds = oCn.RunProcReturn("exec h_p_Kf_ICStockBill_CheckKF " + omodel.HInterID + "," + oSub.HMaterID + "," + oSub.HWHID + "," + oSub.HSPID + ", 1", "gy_czygl"); 
 | 
                    if (Ds.Tables[0].Rows.Count == 0) 
 | 
                    { 
 | 
                        oCn.RollBack(); 
 | 
                        return false; 
 | 
                    } 
 | 
                    if (DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0][0]) == "N") 
 | 
                    { 
 | 
                        sReturn = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0][1]) + ", 不允许保存!"; 
 | 
                        oCn.RollBack(); 
 | 
                        return false; 
 | 
                    } 
 | 
                } 
 | 
                sReturn = "修改单据成功!"; 
 | 
                oCn.Commit(); 
 | 
                return true; 
 | 
            } 
 | 
            catch (Exception e) 
 | 
            { 
 | 
                sReturn = e.Message; 
 | 
                oCn.RollBack(); 
 | 
                throw (e); 
 | 
            } 
 | 
        } 
 | 
  
 | 
    } 
 | 
} 
 |