| | |
| | | } |
| | | #endregion |
| | | |
| | | |
| | | #region 工序流转卡列表 |
| | | /// <summary> |
| | | /// 获取工序流转卡列表信息 |
| | |
| | | } |
| | | #endregion |
| | | |
| | | #region[批量拆分生成流转卡] |
| | | /// <summary> |
| | | /// 返回拆分后的生产订单信息 |
| | | /// </summary> |
| | | /// <param name="hmainid">生产任务单主子ID</param> |
| | | /// <returns>object</returns> |
| | | [Route("Sc_ProcessExchangeBill/BatchSpilt")] |
| | | [HttpGet] |
| | | public object BatchSpilt(string HInterID, string user) |
| | | { |
| | | try |
| | | { |
| | | if (string.IsNullOrWhiteSpace(HInterID)) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "源单主子id为空!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | string[] HInterEntryIDArr = HInterID.Split(','); |
| | | |
| | | string[] HData; |
| | | |
| | | for (int i = 0; i < HInterEntryIDArr.Length; i++) |
| | | { |
| | | string[] HIDs = HInterEntryIDArr[i].Split('@'); |
| | | |
| | | string sql = "exec h_p_Sc_ProcessExchange_BatchSplit '" + HIDs[0] + "','" + HIDs[1] + "'"; |
| | | |
| | | ds = oCN.RunProcReturn(sql, "h_p_Sc_ProcessExchange_BatchSplit"); |
| | | |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | if (ds == null || ds.Tables[0].Rows.Count == 0) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "拆分生产订单无数据!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | else |
| | | { |
| | | 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 |
| | | |
| | | } |
| | | } |