|  |  |  | 
|---|
|  |  |  | using System.Windows.Forms; | 
|---|
|  |  |  | using WebAPI.Models; | 
|---|
|  |  |  | using WebAPI.Service; | 
|---|
|  |  |  | using System.Text.RegularExpressions; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | namespace WebAPI.Controllers | 
|---|
|  |  |  | { | 
|---|
|  |  |  | 
|---|
|  |  |  | return objJsonResult; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | #region 物料根据分类获取最大物料编码 | 
|---|
|  |  |  | [Route("Gy_Material/getMaxNum")] | 
|---|
|  |  |  | [HttpGet] | 
|---|
|  |  |  | public object getMaxNum(int HMaterTypeID, string user, string Organization) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | try | 
|---|
|  |  |  | { | 
|---|
|  |  |  | List<object> columnNameList = new List<object>(); | 
|---|
|  |  |  | //编辑权限 | 
|---|
|  |  |  | if (!DBUtility.ClsPub.Security_Log_second("Gy_Material", 1, false, user)) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | objJsonResult.code = "0"; | 
|---|
|  |  |  | objJsonResult.count = 0; | 
|---|
|  |  |  | objJsonResult.Message = "无查看权限!"; | 
|---|
|  |  |  | objJsonResult.data = null; | 
|---|
|  |  |  | return objJsonResult; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if (HMaterTypeID == 0) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | objJsonResult.code = "0"; | 
|---|
|  |  |  | objJsonResult.count = 0; | 
|---|
|  |  |  | objJsonResult.Message = "没有选择具体分类!"; | 
|---|
|  |  |  | objJsonResult.data = null; | 
|---|
|  |  |  | return objJsonResult; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | else | 
|---|
|  |  |  | { | 
|---|
|  |  |  | ds = oCN.RunProcReturn(@"select * from h_v_Gy_MaterialList where 组织名称='" + Organization + "'" + "and HMaterTypeID = '"+ HMaterTypeID + "'" + " order by 物料代码 desc", "h_v_Gy_MaterialList"); | 
|---|
|  |  |  | if (ds == null || ds.Tables[0].Rows.Count == 0) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | objJsonResult.code = "0"; | 
|---|
|  |  |  | objJsonResult.count = 1; | 
|---|
|  |  |  | objJsonResult.Message = "没有找到该分类的物料编码请使用普通新增"; | 
|---|
|  |  |  | objJsonResult.data = null; | 
|---|
|  |  |  | return objJsonResult; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | string HNumber = ds.Tables[0].Rows[0]["物料代码"].ToString(); | 
|---|
|  |  |  | // 使用正则表达式找到数字部分  (?<=\D)是一个零宽断言,表示前面的字符不是数字 (\d+)$表示后面跟着一连串字符串知道末尾 | 
|---|
|  |  |  | Match match = Regex.Match(HNumber, @"(?<=\D)(\d+)$"); | 
|---|
|  |  |  | if (match.Success) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | string prefix = HNumber.Substring(0, HNumber.Length - match.Length); // 提取前缀 | 
|---|
|  |  |  | int number = int.Parse(match.Value); // 解析数字 | 
|---|
|  |  |  | // 数字+1 | 
|---|
|  |  |  | number++; | 
|---|
|  |  |  | // 格式化数字,保持原长度 | 
|---|
|  |  |  | string formattedNumber = number.ToString().PadLeft(match.Length, '0'); | 
|---|
|  |  |  | // 重新组合字符串 | 
|---|
|  |  |  | string result = prefix + formattedNumber; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | objJsonResult.code = "1"; | 
|---|
|  |  |  | objJsonResult.count = 1; | 
|---|
|  |  |  | objJsonResult.Message = "success"; | 
|---|
|  |  |  | objJsonResult.data = result; | 
|---|
|  |  |  | return objJsonResult; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | else | 
|---|
|  |  |  | { | 
|---|
|  |  |  | objJsonResult.code = "0"; | 
|---|
|  |  |  | objJsonResult.count = 1; | 
|---|
|  |  |  | objJsonResult.Message = "此分类物料编码格式有误"; | 
|---|
|  |  |  | objJsonResult.data = null; | 
|---|
|  |  |  | return objJsonResult; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | catch (Exception e) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | objJsonResult.code = "0"; | 
|---|
|  |  |  | objJsonResult.count = 0; | 
|---|
|  |  |  | objJsonResult.Message = "Exception!" + e.ToString(); | 
|---|
|  |  |  | objJsonResult.data = null; | 
|---|
|  |  |  | return objJsonResult; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | #endregion | 
|---|
|  |  |  |  | 
|---|
|  |  |  | #region 获取物料精度通过id | 
|---|
|  |  |  | [Route("Gy_Material/getDecByID")] | 
|---|
|  |  |  | [HttpGet] | 
|---|
|  |  |  | public object getDecByID(int HMaterID) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | try | 
|---|
|  |  |  | { | 
|---|
|  |  |  | if(HMaterID == 0) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | objJsonResult.code = "0"; | 
|---|
|  |  |  | objJsonResult.count = 0; | 
|---|
|  |  |  | objJsonResult.Message = "没有选择物料"; | 
|---|
|  |  |  | objJsonResult.data = null; | 
|---|
|  |  |  | return objJsonResult; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | ds = oCN.RunProcReturn(@"select HQtyDec,HPriceDec,HMoneyDec from Gy_Material where HitemID=" + HMaterID , "Gy_Material"); | 
|---|
|  |  |  | if (ds == null || ds.Tables[0].Rows.Count == 0) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | objJsonResult.code = "0"; | 
|---|
|  |  |  | objJsonResult.count = 1; | 
|---|
|  |  |  | objJsonResult.Message = "没有找到该物料编码"; | 
|---|
|  |  |  | objJsonResult.data = null; | 
|---|
|  |  |  | return objJsonResult; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | objJsonResult.code = "1"; | 
|---|
|  |  |  | objJsonResult.count = 1; | 
|---|
|  |  |  | objJsonResult.Message = "Success"; | 
|---|
|  |  |  | objJsonResult.data = ds.Tables[0]; | 
|---|
|  |  |  | return objJsonResult; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | catch (Exception e) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | objJsonResult.code = "0"; | 
|---|
|  |  |  | objJsonResult.count = 0; | 
|---|
|  |  |  | objJsonResult.Message = "Exception!" + e.ToString(); | 
|---|
|  |  |  | objJsonResult.data = null; | 
|---|
|  |  |  | return objJsonResult; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | #endregion | 
|---|
|  |  |  |  | 
|---|
|  |  |  | #region 获取项目号 | 
|---|
|  |  |  | [Route("Gy_Material/Get_HProject")] | 
|---|
|  |  |  | [HttpGet] | 
|---|
|  |  |  | public object Get_HProject(string HOrgID) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | try | 
|---|
|  |  |  | { | 
|---|
|  |  |  | DataSet oDs = new DataSet(); | 
|---|
|  |  |  | //========== | 
|---|
|  |  |  | oDs = oCN.RunProcReturn("select top(20) HInterID as HItemID,HProName HName from PM_ProjectBillMain", "PM_ProjectBillMain"); | 
|---|
|  |  |  | objJsonResult.code = "1"; | 
|---|
|  |  |  | objJsonResult.count = 1; | 
|---|
|  |  |  | objJsonResult.Message = "获取成功!"; | 
|---|
|  |  |  | objJsonResult.data = oDs.Tables[0]; | 
|---|
|  |  |  | return objJsonResult; ; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | catch (Exception e) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | objJsonResult.code = "0"; | 
|---|
|  |  |  | objJsonResult.count = 0; | 
|---|
|  |  |  | objJsonResult.Message = "删除失败!" + e.ToString(); | 
|---|
|  |  |  | objJsonResult.data = null; | 
|---|
|  |  |  | return objJsonResult; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | #endregion | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /// <summary> | 
|---|
|  |  |  | /// 物料设置获取信息 | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | #endregion | 
|---|
|  |  |  |  | 
|---|
|  |  |  | #region[器具档案编辑时获取子表数据] | 
|---|
|  |  |  | [Route("Gy_MouldFileMain/Gy_MouldFileSubDetai")] | 
|---|
|  |  |  | [HttpGet] | 
|---|
|  |  |  | public object Gy_MouldFileSubDetai(long HInterID) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | try | 
|---|
|  |  |  | { | 
|---|
|  |  |  | List<DataTable> tableList = new List<DataTable>(); | 
|---|
|  |  |  | ds = oCN.RunProcReturn("select a.*,b.HBillNo from Gy_MouldFileSub_MaintainRule AS a left join Sc_MouldMaintainRuleBillMain as b on b.HInterID = a.HMaintainRuleID where a.HInterID = " + HInterID, "Gy_MouldFileBill_MaintainRule"); | 
|---|
|  |  |  | tableList.Add(ds.Tables[0]); | 
|---|
|  |  |  | ds = oCN.RunProcReturn("select a.*,b.HBillNo from Gy_MouldFileSub_DotCheckRule AS a left join Sc_MouldDotCheckRuleBillMain as b on b.HInterID = a.HDotCheckRuleID where a.HInterID = " + HInterID, "Gy_MouldFileBill_DotCheckRule"); | 
|---|
|  |  |  | tableList.Add(ds.Tables[0]); | 
|---|
|  |  |  | objJsonResult.code = "1"; | 
|---|
|  |  |  | objJsonResult.count = 1; | 
|---|
|  |  |  | objJsonResult.Message = ""; | 
|---|
|  |  |  | objJsonResult.data = tableList; | 
|---|
|  |  |  | return objJsonResult; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | catch (Exception e) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | objJsonResult.code = "0"; | 
|---|
|  |  |  | objJsonResult.count = 0; | 
|---|
|  |  |  | objJsonResult.Message = "Exception!" + e.ToString(); | 
|---|
|  |  |  | objJsonResult.data = null; | 
|---|
|  |  |  | return objJsonResult; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | #endregion | 
|---|
|  |  |  | /// <summary> | 
|---|
|  |  |  | /// 新增模具档案-保存按钮 | 
|---|
|  |  |  | ///参数:string sql。 | 
|---|
|  |  |  | 
|---|
|  |  |  | objJsonResult = AddBillMain(msg1); | 
|---|
|  |  |  | if (objJsonResult.code == "0") | 
|---|
|  |  |  | { | 
|---|
|  |  |  | oCN.RollBack(); | 
|---|
|  |  |  | objJsonResult.code = "0"; | 
|---|
|  |  |  | objJsonResult.count = 0; | 
|---|
|  |  |  | objJsonResult.Message = objJsonResult.Message; | 
|---|
|  |  |  | 
|---|
|  |  |  | string msg3 = sArray[1].ToString();//模块权限 | 
|---|
|  |  |  | string msg4 = sArray[2].ToString();//当前人 | 
|---|
|  |  |  | string msg5 = sArray[3].ToString();//子表数据 | 
|---|
|  |  |  | string msg6 = sArray[4].ToString();//子表1数据 | 
|---|
|  |  |  | string msg7 = sArray[5].ToString();//子表2数据 | 
|---|
|  |  |  | try | 
|---|
|  |  |  | { | 
|---|
|  |  |  | msg2 = "[" + msg2.ToString() + "]"; | 
|---|
|  |  |  | 
|---|
|  |  |  | long HSPID = mainList[0].HSPID; | 
|---|
|  |  |  | Double HDesignLife = mainList[0].HDesignLife; | 
|---|
|  |  |  | Double HUseLife = mainList[0].HUseLife; | 
|---|
|  |  |  | Double HInitLife = mainList[0].HInitLife;//上线初始化寿命 | 
|---|
|  |  |  | Double HLeaveLife = mainList[0].HLeaveLife; | 
|---|
|  |  |  | Double HProdQty = mainList[0].HProdQty; | 
|---|
|  |  |  | Double HProdWeight = mainList[0].HProdWeight; | 
|---|
|  |  |  | 
|---|
|  |  |  | ",HPrintQty,HMouldStatus,HWhID,HRoutingID,HCaveQty" + | 
|---|
|  |  |  | ",HBomID,HVersion,HSPGroupID,HSPID,HDesignLife,HNowSupID,HNowSupTypeID" + | 
|---|
|  |  |  | ",HUseLife,HLeaveLife,HProdQty,HProdWeight,HMouldOWNER,HSaveLife,HMouldDotCheckRuleInterID,HMouldMaintainRuleInterID,HBarCode,HMadeSupID" + | 
|---|
|  |  |  | ",HMouldClass,HNowWHID,HNowSPID) " + | 
|---|
|  |  |  | ",HMouldClass,HNowWHID,HNowSPID,HInitLife) " + | 
|---|
|  |  |  | " values('" + BillType + "','" + BillType + "'," + HInterID + ",'" + HBillNo + "','" + HDate + "'" + | 
|---|
|  |  |  | "," + HYear + "," + HPeriod + ",'" + HRemark + "','" + HMaker + "',getdate()" + | 
|---|
|  |  |  | ",'" + HMouldNo + "','" + HName + "','" + HModel + "','" + HModel2 + "','" + HDiameter + "'" + | 
|---|
|  |  |  | 
|---|
|  |  |  | "," + HPrintQty + ",'" + HMouldStatus + "'," + HWHID + "," + HRoutingID + "," + HCaveQty + | 
|---|
|  |  |  | "," + HBOMID + ",'" + HVersion + "'," + HSPGroupID + "," + HSPID + ",'" + HDesignLife + "','" + HNowSupID + "','" + HNowSupTypeID + "'" + | 
|---|
|  |  |  | ",'" + HUseLife + "','" + HLeaveLife + "','" + HProdQty + "','" + HProdWeight + "','" + HMouldOWNER + "','" + HSaveLife + "','" + HMouldDotCheckRuleInterID + "','" + HMouldMaintainRuleInterID + "','" + HBarCode + "'," + HMadeSupID + | 
|---|
|  |  |  | ",'"+ HMouldClass + "'," + HNowWHID + "," + HNowSPID + ") "); | 
|---|
|  |  |  | ",'"+ HMouldClass + "'," + HNowWHID + "," + HNowSPID + ",'" + HInitLife + "') "); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //子表 | 
|---|
|  |  |  | oCN.RunProc("Insert into Gy_MouldFileSub " + | 
|---|
|  |  |  | 
|---|
|  |  |  | ",0,0,'','',0,0 " + | 
|---|
|  |  |  | ") "); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | objJsonResult = AddBillSub(msg5,HInterID, HBillNo); | 
|---|
|  |  |  | objJsonResult = AddBillSub(msg5,msg6,msg7,HInterID, HBillNo); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | if (objJsonResult.code == "0") | 
|---|
|  |  |  | { | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | catch (Exception e) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | oCN.RollBack(); | 
|---|
|  |  |  | objJsonResult.code = "0"; | 
|---|
|  |  |  | objJsonResult.count = 0; | 
|---|
|  |  |  | objJsonResult.Message = "Exception!" + e.ToString(); | 
|---|
|  |  |  | 
|---|
|  |  |  | string msg3 = sArray[1].ToString();//模块权限 | 
|---|
|  |  |  | string msg4 = sArray[2].ToString();//当前人 | 
|---|
|  |  |  | string msg5 = sArray[3].ToString();//子表数据 | 
|---|
|  |  |  | string msg6 = sArray[4].ToString();//子表2数据 | 
|---|
|  |  |  | string msg7 = sArray[5].ToString();//子表3数据 | 
|---|
|  |  |  | try | 
|---|
|  |  |  | { | 
|---|
|  |  |  | if (!DBUtility.ClsPub.Security_Log(msg3, 1, false, msg4)) | 
|---|
|  |  |  | 
|---|
|  |  |  | long HSPID = mainList[0].HSPID; | 
|---|
|  |  |  | Double HDesignLife = mainList[0].HDesignLife; | 
|---|
|  |  |  | Double HUseLife = mainList[0].HUseLife; | 
|---|
|  |  |  | Double HInitLife = mainList[0].HInitLife; | 
|---|
|  |  |  | Double HLeaveLife = mainList[0].HLeaveLife; | 
|---|
|  |  |  | Double HProdQty = mainList[0].HProdQty; | 
|---|
|  |  |  | Double HProdWeight = mainList[0].HProdWeight; | 
|---|
|  |  |  | 
|---|
|  |  |  | ",HMadeSupID=" + HMadeSupID + | 
|---|
|  |  |  | ",HNowWHID=" + HNowWHID + | 
|---|
|  |  |  | ",HNowSPID=" + HNowSPID + | 
|---|
|  |  |  | " where HInterID=" + HInterID.ToString()); | 
|---|
|  |  |  | ",HInitLife='" + HInitLife + | 
|---|
|  |  |  | "' where HInterID=" + HInterID.ToString()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //修改子项目代码 | 
|---|
|  |  |  | //oCN.RunProc("exec h_p_Gy_UpdateNumber Gy_Department,'" + HNumber + ".','" + this.HOldNumber + ".'", ref DBUtility.ClsPub.sExeReturnInfo); | 
|---|
|  |  |  | 
|---|
|  |  |  | // oCN.RunProc("Update Gy_Department set HEndflag=0 where HItemID=" + HInterID, ref DBUtility.ClsPub.sExeReturnInfo); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | oCN.RunProc("delete from Gy_MouldFileSub_SubMater where HInterID='" + HInterID + "'"); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | objJsonResult = AddBillSub(msg5, HInterID, HBillNo); | 
|---|
|  |  |  | oCN.RunProc("delete from Gy_MouldFileSub_MaintainRule where HInterID='" + HInterID + "'"); | 
|---|
|  |  |  | oCN.RunProc("delete from Gy_MouldFileSub_DotCheckRule where HInterID='" + HInterID + "'"); | 
|---|
|  |  |  | objJsonResult = AddBillSub(msg5, msg6, msg7, HInterID, HBillNo); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | oCN.Commit(); | 
|---|
|  |  |  | objJsonResult.code = "1"; | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public json AddBillSub(string msg5, long HInterID, string HBillNo) | 
|---|
|  |  |  | public json AddBillSub(string msg5, string msg6, string msg7, long HInterID, string HBillNo) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | List<Gy_MouldFileSub_SubMater> DetailColl = Newtonsoft.Json.JsonConvert.DeserializeObject<List<Gy_MouldFileSub_SubMater>>(msg5); | 
|---|
|  |  |  | List<ClsGy_MouldFileBillSub_MaintainRule> MaintainRuleColl = Newtonsoft.Json.JsonConvert.DeserializeObject<List<ClsGy_MouldFileBillSub_MaintainRule>>(msg6); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<ClsGy_MouldFileBillSub_DotCheckRule> DotCheckRuleColl = Newtonsoft.Json.JsonConvert.DeserializeObject<List<ClsGy_MouldFileBillSub_DotCheckRule>>(msg7); | 
|---|
|  |  |  | int i = 0;                                          //作为子表内码 | 
|---|
|  |  |  | foreach (Gy_MouldFileSub_SubMater oSub in DetailColl) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | 
|---|
|  |  |  | "')"; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | oCN.RunProc(sql); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | i = 0; | 
|---|
|  |  |  | //保存保养规格 | 
|---|
|  |  |  | foreach (ClsGy_MouldFileBillSub_MaintainRule oSub in MaintainRuleColl) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | i++; | 
|---|
|  |  |  | Int64 NewHEntryID = i; | 
|---|
|  |  |  | Int64 newHFlag = 1; | 
|---|
|  |  |  | if (oSub.HStdFlag == true) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | newHFlag = 1; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | else | 
|---|
|  |  |  | { | 
|---|
|  |  |  | newHFlag = 0; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | oCN.RunProc($@"Insert into Gy_MouldFileSub_MaintainRule | 
|---|
|  |  |  | (HInterID,HBillNo_bak,HEntryID,HRemark,HSourceInterID,HSourceEntryID,HSourceBillNo,HSourceBillType,HRelationQty,HRelationMoney, | 
|---|
|  |  |  | HMaintainRuleID,HStdFlag | 
|---|
|  |  |  | ) | 
|---|
|  |  |  | values({HInterID},'{HBillNo}',{NewHEntryID},'{oSub.HRemark}',{oSub.HSourceInterID},{oSub.HSourceEntryID},'{oSub.HSourceBillNo}','{oSub.HSourceBillType}',{oSub.HRelationQty},{oSub.HRelationMoney} | 
|---|
|  |  |  | ,{oSub.HMaintainRuleID},{newHFlag})"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | i = 0; | 
|---|
|  |  |  | //保存点检规程 | 
|---|
|  |  |  | foreach (ClsGy_MouldFileBillSub_DotCheckRule oSub in DotCheckRuleColl) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | i++; | 
|---|
|  |  |  | Int64 NewHEntryID = i; | 
|---|
|  |  |  | Int64 newHFlag = 1; | 
|---|
|  |  |  | if (oSub.HStdFlag == true) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | newHFlag = 1; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | else | 
|---|
|  |  |  | { | 
|---|
|  |  |  | newHFlag = 0; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | oCN.RunProc($@"Insert into Gy_MouldFileSub_DotCheckRule | 
|---|
|  |  |  | (HInterID,HBillNo_bak,HEntryID,HRemark,HSourceInterID,HSourceEntryID,HSourceBillNo,HSourceBillType,HRelationQty,HRelationMoney, | 
|---|
|  |  |  | HDotCheckRuleID,HStdFlag | 
|---|
|  |  |  | ) | 
|---|
|  |  |  | values({HInterID},'{HBillNo}',{NewHEntryID},'{oSub.HRemark}',{oSub.HSourceInterID},{oSub.HSourceEntryID},'{oSub.HSourceBillNo}','{oSub.HSourceBillType}',{oSub.HRelationQty},{oSub.HRelationMoney} | 
|---|
|  |  |  | ,{oSub.HDotCheckRuleID},{newHFlag})"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | objJsonResult.code = "1"; | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if (oBill.DeleteBill(hmainid, ref DBUtility.ClsPub.sExeReturnInfo)) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | oCN.RunProc("Delete From Gy_MouldFileSub_MaintainRule  where HInterID=" + hmainid); | 
|---|
|  |  |  | oCN.RunProc("Delete From Gy_MouldFileSub_DotCheckRule  where HInterID=" + hmainid); | 
|---|
|  |  |  | //写入日志 | 
|---|
|  |  |  | ClsPub.Add_Log("", "删除项目,代码:" + oBill.omodel.HMouldNo + ",名称:" + oBill.omodel.HName, ClsPub.CurUserName); | 
|---|
|  |  |  | //更新上级为 末级 | 
|---|
|  |  |  | 
|---|
|  |  |  | ,HPERUNITSTANDHOUR,HSTDLABORPREPARETIME,HSTDMACHINEPREPARETIME | 
|---|
|  |  |  | ) | 
|---|
|  |  |  | values | 
|---|
|  |  |  | ({jsonData.HItemID},{jsonData.HERPItemID},'{jsonData.HNumber}','{jsonData.HName}','{jsonData.HModel}', | 
|---|
|  |  |  | ({jsonData.HItemID},{jsonData.HItemID},'{jsonData.HNumber}','{jsonData.HName}','{jsonData.HModel}', | 
|---|
|  |  |  | '{jsonData.HShortNumber}',{jsonData.HParentID},{jsonData.HLevel},{jsonData.HEndFlag},{jsonData.HStopflag},'{jsonData.HRemark}',{jsonData.HMaterClsID},{jsonData.HUnitID},{jsonData.HUnitGroupID},{jsonData.HLength},{jsonData.HWidth},{jsonData.HHeight},{jsonData.HJQty},{jsonData.HMQty},'{jsonData.HOldMaterNumber}',{jsonData.HWHID},{jsonData.HSPID},'{jsonData.HPlanMode}','{jsonData.HUseFlag}','{jsonData.HMakeTime}',{jsonData.HMinPickQty},{jsonData.HCREATEORGID},{jsonData.HUSEORGID},'{jsonData.HBatchManager}',{jsonData.HCHECKINCOMING},{jsonData.HAuxPropFlag},{jsonData.HISKFPERIOD},{jsonData.HAuxUnitID},{jsonData.HSNUnitID},{jsonData.HBASEUNITID},{jsonData.HSALEUNITID},{jsonData.HSALEPRICEUNITID},{jsonData.HPERUNITSTANDHOUR},'{jsonData.HSTDLABORPREPARETIME}','{jsonData.HSTDMACHINEPREPARETIME}')"; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | oCN.RunProc(sql); | 
|---|