| | |
| | | string msg1 = _value.ToString(); |
| | | try |
| | | { |
| | | //委外工序发出反序列化 |
| | | //组托单反序列化 |
| | | msg1 = "[" + msg1.ToString() + "]"; |
| | | List<GroupOrderBill> list = Newtonsoft.Json.JsonConvert.DeserializeObject<List<GroupOrderBill>>(msg1); |
| | | //获取年月日并拼接成字符串 |
| | |
| | | string HMaker = list[0].HMaker;//制单人 |
| | | string HBatchNo = list[0].HBatchNo;//入库批次 |
| | | string HBarCode_Cus = list[0].HBarCode_Cus;//客户标签(黑标号) |
| | | //校验黑标号唯一性 |
| | | ds= oCN.RunProcReturn($"select * from Sc_PackUnionBillMain where HBarCode_Cus ='{HBarCode_Cus}'", "Sc_PackUnionBillMain"); |
| | | if (ds.Tables[0].Rows.Count > 0) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = $"黑标号{HBarCode_Cus}已存在"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | //生成唯一条码 |
| | | ds = oCN.RunProcReturn("exec h_p_WMS_GetMaxNo '" + nowDate + "'", "h_p_WMS_GetMaxNo"); //获取最大流水号 |
| | | oCN.RunProc("exec h_p_WMS_SetMaxNo '" + nowDate + "'"); |
| | |
| | | oCN.RunProc("exec h_p_SaveGroupOrder " + HInterID + ""); |
| | | //根据子表汇总生成Sc_PackUnionBillSub_Sum表记录 |
| | | oCN.RunProc("exec h_p_Sc_PackUnionBill_SumSubBill " + HInterID + ",'','',''"); |
| | | //插入条码档案表 |
| | | oCN.RunProc("exec h_p_SaveGroupOrderCodeToGy_BarCodeBill " + HInterID + ""); |
| | | oCN.Commit(); |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | |
| | | try |
| | | { |
| | | SQLHelper.ClsCN oCn = new SQLHelper.ClsCN(); |
| | | oCn.RunProc("Delete from KF_PonderationBillMain_Temp where HBarCode = " + BarCode + " and HBillType = '2601'"); |
| | | oCn.RunProc("Delete from KF_PonderationBillMain_Temp where HBarCode = '" + BarCode + "' and HBillType = '2601'"); |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "删除成功!"; |
| | |
| | | { |
| | | SQLHelper.ClsCN oCn = new SQLHelper.ClsCN(); |
| | | oCN.BeginTran(); |
| | | oCn.RunProc("Delete from Sc_PackUnionBillMain where HInterID = " + HInterID); |
| | | oCn.RunProc("Delete from Sc_PackUnionBillSub where HInterID = " + HInterID + " and HEntryID = " + HEntryID); |
| | | //重新刷新更新 汇总子表 的记录和条码档案 |
| | | oCn.RunProc("Delete from Sc_PackUnionBillSub_Sum where HInterID = " + HInterID); |
| | |
| | | try |
| | | { |
| | | SQLHelper.ClsCN oCn = new SQLHelper.ClsCN(); |
| | | oCn.RunProc("update Sc_PackUnionBillMain set HBarCode_Cus = " + HBarCode_Cus + " where HInterID = " + HInterID); |
| | | oCn.RunProc("update Sc_PackUnionBillMain set HBarCode_Cus = '" + HBarCode_Cus + "' where HInterID = " + HInterID); |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "修改成功!"; |