| | |
| | | public DateTime HEndDate { get; set; }//结束时间 |
| | | public int ps { get; set; }//仅显示未完全配送 |
| | | public string user { get; set; }//当前登录人 |
| | | public string Arbitrarily { get; set; }//任意参数 |
| | | } |
| | | |
| | | [Route("Sc_ComplementGoodBill/ComplementGoodBillList")] |
| | |
| | | //反序列化传递的值 |
| | | ComplementGoodBill com = JsonConvert.DeserializeObject<ComplementGoodBill>(sWhere.ToString()); |
| | | |
| | | ds = oCN.RunProcReturn($"exec h_p_JIT_CallGoodsPlatForm_Query '{com.HSeOrderBillNo}','{com.DepartmentName}','{com.MaterialNumber}','{com.MaterialName}'," + |
| | | $"'{com.MaterialModel}','{com.HICMOBillNo}','{com.CPNumber}','{com.CPName}','{com.CPModel}','{com.HBeginDate}','{com.HEndDate.AddDays(1).AddSeconds(-1)}'," + |
| | | ds = oCN.RunProcReturn($"exec h_p_JIT_CallGoodsPlatForm_Query '{com.HSeOrderBillNo}','{com.DepartmentName}','{com.MaterialNumber}','{com.MaterialName}'," + |
| | | $"'{com.MaterialModel}','{com.HICMOBillNo}','{com.CPNumber}','{com.CPName}','{com.CPModel}'," + |
| | | $"{com.ps},{com.Organization},'{com.user}' ", "h_p_JIT_CallGoodsPlatForm_Query"); |
| | | |
| | | objJsonResult.code = "1"; |
| | |
| | | public long HSTOCKID = 0;//HSTOCKID |
| | | public string 退料原因 { get; set; }//退料原因 |
| | | public int HMaterialID = 0; //HMaterialIDCol |
| | | public string 物料代码 = ""; |
| | | public string HSourceBillNo { get; set; }//HSourceBillNoCol |
| | | public int 调出仓库可用库存数量 = 0;//HKFQtyKYCol |
| | | public int 调出仓库库存数量 = 0;//HKFQtySCol |
| | |
| | | { |
| | | if (listCa[i].HMaterialID != 0 && listCa[i].叫料数量 > 0) |
| | | { |
| | | var Hqty = 0.0; |
| | | var TuiHqty = 0.0; |
| | | //当前单据已叫料 和 已退料数量 |
| | | ds = oCN.RunProcReturn($@" |
| | | select isnull(a.HQty,0) 已叫料数量,isnull(b.HQty,0) 已退料申请数量 from ( |
| | | select sum(b.HQty) HQty,c.HNumber ,b.HSourceBillNo |
| | | from JIT_CallGoodsBillMain a |
| | | join JIT_CallGoodsBillSub b on a.HInterID=b.HInterID |
| | | left join Gy_Material c on b.HMaterID=c.HItemID |
| | | where b.HSourceBillNo='{listCa[i].HSourceBillNo}' |
| | | group by c.HNumber,b.HSourceBillNo |
| | | ) a |
| | | left join ( |
| | | select sum(b.HQty) HQty,c.HNumber,b.HSourceBillNo |
| | | from JIT_CallGoodsBackRequestBillMain a |
| | | inner join JIT_CallGoodsBackRequestBillSub b on a.HInterID=b.HInterID |
| | | left join Gy_Material c on b.HMaterID=c.HItemID |
| | | where b.HSourceBillNo='{listCa[i].HSourceBillNo}' |
| | | group by c.HNumber,b.HSourceBillNo |
| | | ) b on a.HNumber=b.HNumber and a.HSourceBillNo=b.HSourceBillNo where a.HNumber='{listCa[i].物料代码}'", "JIT_CallGoodsBillMain"); |
| | | |
| | | if (ds.Tables[0].Rows.Count > 0) |
| | | { |
| | | Hqty = double.Parse(ds.Tables[0].Rows[0]["已叫料数量"].ToString()); |
| | | TuiHqty = double.Parse(ds.Tables[0].Rows[0]["已退料申请数量"].ToString()); |
| | | } |
| | | |
| | | if (listCa[i].叫料数量 > listCa[i].计划发料数量) |
| | | { |
| | | objJsonResult.code = "0"; |
| | |
| | | return objJsonResult; |
| | | } |
| | | |
| | | if (listCa[i].库存数量 == 0 && listCa[i].叫料数量 > 0) |
| | | if((listCa[i].叫料数量 + Hqty - TuiHqty)> listCa[i].计划发料数量) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "叫料总数量大于计划发料数量!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | ds = oCN.RunProcReturn("select * from h_v_JIT_WarehouseList where 仓库ID=" + listCa[i].调出仓库id + " and 物料编码 = '" + listCa[i].物料代码 + "' and 库存组织=" + listCa[i].HOutOrgID, "h_v_JIT_WarehouseList"); |
| | | |
| | | var HSCWHIDCount= double.Parse(ds.Tables[0].Rows[0]["调出仓库可用库存数量"].ToString()); |
| | | |
| | | if (HSCWHIDCount == 0 && listCa[i].叫料数量 > 0) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | |
| | | return objJsonResult; |
| | | } |
| | | |
| | | if (listCa[i].叫料数量 > listCa[i].库存数量) |
| | | if (listCa[i].叫料数量 > HSCWHIDCount) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | |
| | | return objJsonResult; |
| | | } |
| | | |
| | | //if (listCa[i].调出仓库可用库存数量 == 0) |
| | | //{ |
| | | // objJsonResult.code = "0"; |
| | | // objJsonResult.count = 0; |
| | | // objJsonResult.Message = "调出仓库可用库存数量为0!"; |
| | | // objJsonResult.data = null; |
| | | // return objJsonResult; |
| | | //} |
| | | if (listCa[i].调出仓库id == listCa[i].调入仓库id) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "调出仓库和调入仓库不能一样!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | j = 1; |
| | | |
| | |
| | | string msg2 = sArray[0].ToString(); |
| | | DBUtility.ClsPub.CurUserName = sArray[1].ToString(); |
| | | string HOrgID = sArray[2].ToString(); |
| | | bool flag = false; |
| | | json flag =new json(); |
| | | |
| | | try |
| | | { |
| | |
| | | { |
| | | if (listCa[i].退料数量 > 0) |
| | | { |
| | | if (listCa[i].退料数量 > listCa[i].已配送数量) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "退料数量大于已配送数量!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | ds = oCN.RunProcReturn("select sum(d.HQty) HQty from JIT_CallGoodsBackRequestBillSub c inner join JIT_CallGoodsBackBillSub d on c.HInterID = d.HSourceInterID and c.HEntryID = d.HSourceEntryID and c.HMaterID = d.HMaterID " + |
| | | $"where c.HSourceInterID={listCa[i].HSouceInterID} and c.HSourceEntryID ={listCa[i].HSourceEntryID} and c.HSourceBillNo = '{listCa[i].HSourceBillNo}' and c.HMaterID={listCa[i].HMaterialID}", "JIT_CallGoodsBackRequestBillSub"); |
| | | |
| | | if ((double.Parse(ds.Tables[0].Rows[0][0].ToString()==""?"0": ds.Tables[0].Rows[0][0].ToString()) +listCa[i].退料数量) > listCa[i].已叫料数量) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = $"已经退料数量:{double.Parse(ds.Tables[0].Rows[0][0].ToString())},可退料数量为:{(listCa[i].已叫料数量 - double.Parse(ds.Tables[0].Rows[0][0].ToString()))}!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | if (listCa[i].调入仓库id == 0) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "请选择调入仓库!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | if (listCa[i].调出仓库id == 0) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "请选择调出仓库!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | flag = AddICStockTuiBill(listCa[i], "666601", "不良品退料", HOrgID, ref DBUtility.ClsPub.sExeReturnInfo); |
| | | flag = (json)AddICStockTuiBill(listCa[i], "666601", "不良品退料", HOrgID); |
| | | j = 1; |
| | | |
| | | if (flag.code == "0") |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = objJsonResult.Message; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | } |
| | | } |
| | | if (j == 0) |
| | |
| | | return objJsonResult; |
| | | } |
| | | |
| | | if (flag) |
| | | { |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "不良品退料成功!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | else |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "不良品退料失败!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "不良品退料成功!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | catch (Exception e) |
| | | { |
| | |
| | | } |
| | | |
| | | //新增 |
| | | public bool AddICStockTuiBill(CallGoodsBill listCa,string HBillType,string HBackType,string HOrgID, ref string sReturn) |
| | | public object AddICStockTuiBill(CallGoodsBill listCa,string HBillType,string HBackType,string HOrgID) |
| | | { |
| | | try |
| | | { |
| | | |
| | | |
| | | if (listCa.退料数量 > listCa.已配送数量 && listCa.已配送数量 > 0) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "退料数量大于已配送数量!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | if (listCa.调入仓库id == 0) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "请选择调入仓库!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | if (listCa.调出仓库id == 0) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "请选择调出仓库!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | var THqty = 0.0; |
| | | ds = oCN.RunProcReturn($@" |
| | | select sum(b.HQty) HQty,c.HNumber,b.HSourceBillNo |
| | | from JIT_CallGoodsBackRequestBillMain a |
| | | inner join JIT_CallGoodsBackRequestBillSub b on a.HInterID=b.HInterID |
| | | left join Gy_Material c on b.HMaterID=c.HItemID |
| | | where c.HNumber='{listCa.物料代码}' and b.HSourceBillNo='{listCa.HSourceBillNo}' |
| | | group by c.HNumber,b.HSourceBillNo |
| | | ", "JIT_CallGoodsBackRequestBillMain"); |
| | | |
| | | if (ds.Tables[0].Rows.Count > 0) |
| | | { |
| | | THqty = double.Parse(ds.Tables[0].Rows[0]["HQty"].ToString()); |
| | | } |
| | | |
| | | if ((listCa.退料数量 + THqty) > listCa.已配送数量) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "累计退料数量大于已配送数量!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | Int64 lngBillKey = listCa.HSouceInterID == 0 ? 0 : listCa.HSouceInterID; |
| | | Int64 lngBillKeyEntry = listCa.HSourceEntryID == 0 ? 0 : listCa.HSourceEntryID; |
| | | double HQty = (double)(listCa.退料数量 == 0 ? 0 : listCa.退料数量); |
| | |
| | | $" '{HBillType}','{DateTime.Now}','{HBillNo}',{HOrgID},'{ DBUtility.ClsPub.CurUserName}','{DateTime.Now}','','',0,0,0,''," + |
| | | $" 0, 0, {listCa.HOutOrgID}, {HOrgID}, 0,'{HBackType}')"); |
| | | |
| | | sReturn = "新增单据成功!"; |
| | | oCN.Commit(); |
| | | return true; |
| | | |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.Message = "新增单据成功!"; |
| | | return objJsonResult; |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | sReturn = e.Message; |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.Message = e.Message; ; |
| | | return objJsonResult; |
| | | throw (e); |
| | | } |
| | | } |
| | |
| | | List<CallGoodsBill> listCa = new List<CallGoodsBill>(); |
| | | //获取表格数据集合 |
| | | listCa = JsonConvert.DeserializeObject<List<CallGoodsBill>>(msg2.ToString()); |
| | | bool flag = false; |
| | | json flag = new json(); |
| | | |
| | | int j = 0; |
| | | for (int i = 0; i < listCa.Count; i++) |
| | | { |
| | | if (listCa[i].退料数量 > 0) |
| | | { |
| | | if (listCa[i].退料数量 > listCa[i].已配送数量) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "退料数量大于已配送数量!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | ds = oCN.RunProcReturn("select sum(d.HQty) HQty from JIT_CallGoodsBackRequestBillSub c inner join JIT_CallGoodsBackBillSub d on c.HInterID = d.HSourceInterID and c.HEntryID = d.HSourceEntryID and c.HMaterID = d.HMaterID " + |
| | | $"where c.HSourceInterID={listCa[i].HSouceInterID} and c.HSourceEntryID ={listCa[i].HSourceEntryID} and c.HSourceBillNo = '{listCa[i].HSourceBillNo}' and c.HMaterID={listCa[i].HMaterialID}", "JIT_CallGoodsBackRequestBillSub"); |
| | | |
| | | if ((double.Parse(ds.Tables[0].Rows[0][0].ToString() == "" ? "0" : ds.Tables[0].Rows[0][0].ToString()) + listCa[i].退料数量) > listCa[i].已叫料数量) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = $"已经退料数量:{double.Parse(ds.Tables[0].Rows[0][0].ToString())},可退料数量为:{(listCa[i].已叫料数量 - double.Parse(ds.Tables[0].Rows[0][0].ToString()))}!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | flag = AddICStockTuiBill(listCa[i], "666602", " 余量退料", HOrgID, ref DBUtility.ClsPub.sExeReturnInfo); |
| | | flag =(json)AddICStockTuiBill(listCa[i], "666602", " 余量退料", HOrgID); |
| | | j = 1; |
| | | if (flag.code == "0") |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = objJsonResult.Message; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | } |
| | | } |
| | | if (j == 0) |
| | |
| | | return objJsonResult; |
| | | } |
| | | |
| | | if (flag) |
| | | { |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "余量退料成功!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | else |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "余量退料失败!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "余量退料成功!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | catch (Exception e) |
| | | { |
| | |
| | | //获取表格数据集合 |
| | | listCa = JsonConvert.DeserializeObject<List<CallGoodsBill>>(msg2.ToString()); |
| | | |
| | | bool flag = false; |
| | | json flag = new json(); |
| | | int j = 0; |
| | | for (int i = 0; i < listCa.Count; i++) |
| | | { |
| | | if (listCa[i].退料数量 > 0) |
| | | { |
| | | if (listCa[i].退料数量 > listCa[i].已配送数量) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "退料数量大于已配送数量!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | ds = oCN.RunProcReturn("select sum(d.HQty) HQty from JIT_CallGoodsBackRequestBillSub c inner join JIT_CallGoodsBackBillSub d on c.HInterID = d.HSourceInterID and c.HEntryID = d.HSourceEntryID and c.HMaterID = d.HMaterID " + |
| | | $"where c.HSourceInterID={listCa[i].HSouceInterID} and c.HSourceEntryID ={listCa[i].HSourceEntryID} and c.HSourceBillNo = '{listCa[i].HSourceBillNo}' and c.HMaterID={listCa[i].HMaterialID}", "JIT_CallGoodsBackRequestBillSub"); |
| | | |
| | | if ((double.Parse(ds.Tables[0].Rows[0][0].ToString() == "" ? "0" : ds.Tables[0].Rows[0][0].ToString()) + listCa[i].退料数量) > listCa[i].已叫料数量) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = $"已经退料数量:{double.Parse(ds.Tables[0].Rows[0][0].ToString())},可退料数量为:{(listCa[i].已叫料数量 - double.Parse(ds.Tables[0].Rows[0][0].ToString()))}!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | flag = AddICStockTuiBill(listCa[i], "666603", "报废退料", HOrgID, ref DBUtility.ClsPub.sExeReturnInfo); |
| | | flag =(json) AddICStockTuiBill(listCa[i], "666603", "报废退料", HOrgID); |
| | | j = 1; |
| | | if (flag.code == "0") |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = objJsonResult.Message; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | } |
| | | } |
| | | if (j == 0) |
| | |
| | | return objJsonResult; |
| | | } |
| | | |
| | | if (flag) |
| | | { |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "报废退料成功!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | else |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "报废退料失败!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "报废退料成功!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | catch (Exception e) |
| | | { |
| | |
| | | } |
| | | #endregion |
| | | |
| | | #region 生产叫料平台 仓库库存列表 |
| | | |
| | | [Route("Sc_ComplementGoodBill/GetWarehouseList_JIT")] |
| | | [HttpGet] |
| | | public object GetWarehouseList_JIT(string sWhere) |
| | | { |
| | | try |
| | | { |
| | | ds = oCN.RunProcReturn("select * from h_v_JIT_WarehouseList where 1=1 "+ sWhere, "h_v_JIT_WarehouseList"); |
| | | |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "Sucess!"; |
| | | 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("Sc_ComplementGoodBill/NotGeneratedMaterialList")] |
| | | [HttpGet] |
| | | public object NotGeneratedMaterialList(string sWhere, string user) |
| | | { |
| | | try |
| | | { |
| | | //查询叫料单 未生成 拣料单 的条数 |
| | | //查询退料申请单 未生成 退料单的 条数 |
| | | ds = oCN.RunProcReturn($@"select count(*) 未生成 from JIT_CallGoodsBackRequestBillMain as a |
| | | inner join JIT_CallGoodsBackRequestBillSub as b on a.HInterID=b.HInterID |
| | | where a.HISCheck =0 and a.HOrgID={sWhere} |
| | | and a.HMaker = '{user}' |
| | | union all |
| | | select count(*) 未生成 from JIT_CallGoodsBillMain a |
| | | join JIT_CallGoodsBillSub b on a.HInterID=b.HInterID |
| | | where b.HPSQty=0 and a.HOrgID={sWhere} |
| | | and a.HMaker = '{user}'", "JIT_CallGoodsBackRequestBillMain"); |
| | | |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "Sucess!"; |
| | | 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 |
| | | |
| | | } |
| | | } |