|  |  | 
 |  |  |                     oCN.RunProc("exec h_p_Kf_SellOutBill_Check " + HInterID + ",'" + oBill.BillType + "','" + CurUserName + "'"); | 
 |  |  |                     //审核更新 及时库存表 减少库存 | 
 |  |  |                     ds = oCN.RunProcReturn("exec h_KF_UPDateICinventory  '" + HInterID + "','" + oBill.BillType + "','1'", "h_KF_UPDateICinventory"); | 
 |  |  |                     //=========================审核反审核后负库存控制   | 
 |  |  |                     DataSet ds2 = oCN.RunProcReturn("Exec h_p_KF_ICinventoryStockCtrl '" + HInterID + "', '" + oBill.BillType + "'", "h_p_KF_ICinventoryStockCtrl"); | 
 |  |  |                     if (ds2 == null) | 
 |  |  |                     { | 
 |  |  |                         oCN.RollBack(); | 
 |  |  |                         objJsonResult.code = "0"; | 
 |  |  |                         objJsonResult.count = 1; | 
 |  |  |                         objJsonResult.Message = "审核失败!原因:" + "库存更新后控制判断失败"; | 
 |  |  |                         objJsonResult.data = null; | 
 |  |  |                         return objJsonResult; | 
 |  |  |                     } | 
 |  |  |                     if (DBUtility.ClsPub.isStrNull(ds2.Tables[0].Rows[0]["HBack"]) != "0") | 
 |  |  |                     { | 
 |  |  |                         oCN.RollBack(); | 
 |  |  |                         string sReturn = "库存更新失败!" + DBUtility.ClsPub.isStrNull(ds2.Tables[0].Rows[0]["HBackRemark"]); | 
 |  |  |                         objJsonResult.code = "0"; | 
 |  |  |                         objJsonResult.count = 1; | 
 |  |  |                         objJsonResult.Message = "审核失败!原因:" + sReturn; | 
 |  |  |                         objJsonResult.data = null; | 
 |  |  |                         return objJsonResult; | 
 |  |  |                     } | 
 |  |  |                     //============================ | 
 |  |  |                     //写入日志 | 
 |  |  |                     string WorkList = "审核单据,单据号:" + oBill.omodel.HBillNo; | 
 |  |  |                     string SystemName = "LMES-销售出库单模块"; | 
 |  |  | 
 |  |  |             } | 
 |  |  |         } | 
 |  |  |         #endregion | 
 |  |  |  | 
 |  |  |         #region 销售出库单 下查 | 
 |  |  |         /// <summary> | 
 |  |  |         /// </summary> | 
 |  |  |         /// <param name="HInterID">单据ID</param> | 
 |  |  |         /// <returns></returns> | 
 |  |  |         [Route("Kf_SellOutBill/SellOutBill_LookDown")] | 
 |  |  |         [HttpGet] | 
 |  |  |         public object SellOutBill_LookDown(int HInterID) | 
 |  |  |         { | 
 |  |  |             try | 
 |  |  |             { | 
 |  |  |                 List<object> columnNameListSum = new List<object>(); | 
 |  |  |                 List<object> columnNameList0 = new List<object>(); | 
 |  |  |                 //List<object> columnNameList1 = new List<object>(); | 
 |  |  |                 //List<object> columnNameList2 = new List<object>(); | 
 |  |  |                 //List<object> columnNameList3 = new List<object>(); | 
 |  |  |                 //List<object> columnNameList4 = new List<object>(); | 
 |  |  |  | 
 |  |  |                 string sql = "exec h_p_Kf_SellOutBill_lookdown " + HInterID; | 
 |  |  |                 ds = oCN.RunProcReturn(sql, "h_p_Kf_SellOutBill_lookdown"); | 
 |  |  |  | 
 |  |  |                 //添加 销售调价单 列名 | 
 |  |  |                 foreach (DataColumn col in ds.Tables[0].Columns) | 
 |  |  |                 { | 
 |  |  |                     Type dataType = col.DataType; | 
 |  |  |                     string ColmString = "{\"ColmCols\":\"" + col.ColumnName + "\",\"ColmType\":\"" + dataType.Name + "\"}"; | 
 |  |  |                     columnNameList0.Add(JsonConvert.DeserializeObject(ColmString));//获取到DataColumn列对象的列名 | 
 |  |  |                 } | 
 |  |  |  | 
 |  |  |                 ////添加 生产订单 列名 | 
 |  |  |                 //foreach (DataColumn col in ds.Tables[1].Columns) | 
 |  |  |                 //{ | 
 |  |  |                 //    Type dataType = col.DataType; | 
 |  |  |                 //    string ColmString = "{\"ColmCols\":\"" + col.ColumnName + "\",\"ColmType\":\"" + dataType.Name + "\"}"; | 
 |  |  |                 //    columnNameList1.Add(JsonConvert.DeserializeObject(ColmString));//获取到DataColumn列对象的列名 | 
 |  |  |                 //} | 
 |  |  |  | 
 |  |  |                 ////添加 特批申请单 列名 | 
 |  |  |                 //foreach (DataColumn col in ds.Tables[2].Columns) | 
 |  |  |                 //{ | 
 |  |  |                 //    Type dataType = col.DataType; | 
 |  |  |                 //    string ColmString = "{\"ColmCols\":\"" + col.ColumnName + "\",\"ColmType\":\"" + dataType.Name + "\"}"; | 
 |  |  |                 //    columnNameList2.Add(JsonConvert.DeserializeObject(ColmString));//获取到DataColumn列对象的列名 | 
 |  |  |                 //} | 
 |  |  |  | 
 |  |  |                 ////添加 销售出库单 列名 | 
 |  |  |                 //foreach (DataColumn col in ds.Tables[3].Columns) | 
 |  |  |                 //{ | 
 |  |  |                 //    Type dataType = col.DataType; | 
 |  |  |                 //    string ColmString = "{\"ColmCols\":\"" + col.ColumnName + "\",\"ColmType\":\"" + dataType.Name + "\"}"; | 
 |  |  |                 //    columnNameList3.Add(JsonConvert.DeserializeObject(ColmString));//获取到DataColumn列对象的列名 | 
 |  |  |                 //} | 
 |  |  |  | 
 |  |  |                 ////添加 工序流转卡 列名 | 
 |  |  |                 //foreach (DataColumn col in ds.Tables[4].Columns) | 
 |  |  |                 //{ | 
 |  |  |                 //    Type dataType = col.DataType; | 
 |  |  |                 //    string ColmString = "{\"ColmCols\":\"" + col.ColumnName + "\",\"ColmType\":\"" + dataType.Name + "\"}"; | 
 |  |  |                 //    columnNameList4.Add(JsonConvert.DeserializeObject(ColmString));//获取到DataColumn列对象的列名 | 
 |  |  |                 //} | 
 |  |  |  | 
 |  |  |                 columnNameListSum.Add(columnNameList0); | 
 |  |  |                 //columnNameListSum.Add(columnNameList1); | 
 |  |  |                 //columnNameListSum.Add(columnNameList2); | 
 |  |  |                 //columnNameListSum.Add(columnNameList3); | 
 |  |  |                 //columnNameListSum.Add(columnNameList4); | 
 |  |  |  | 
 |  |  |                 objJsonResult.code = "1"; | 
 |  |  |                 objJsonResult.count = 1; | 
 |  |  |                 objJsonResult.Message = "Sucess!"; | 
 |  |  |                 objJsonResult.data = ds.Tables; | 
 |  |  |                 objJsonResult.list = columnNameListSum; | 
 |  |  |                 return objJsonResult; | 
 |  |  |             } | 
 |  |  |             catch (Exception e) | 
 |  |  |             { | 
 |  |  |                 objJsonResult.code = "0"; | 
 |  |  |                 objJsonResult.count = 0; | 
 |  |  |                 objJsonResult.Message = "Exception!" + e.ToString(); | 
 |  |  |                 objJsonResult.data = null; | 
 |  |  |                 return objJsonResult; | 
 |  |  |             } | 
 |  |  |         } | 
 |  |  |         #endregion | 
 |  |  |     } | 
 |  |  | } |