| using Newtonsoft.Json; | 
| using Newtonsoft.Json.Linq; | 
| using Pub_Class; | 
| using System; | 
| using System.Collections; | 
| using System.Collections.Generic; | 
| using System.Data; | 
| using System.Data.SqlClient; | 
| using System.Web.Http; | 
| using WebAPI.Models; | 
|   | 
| namespace WebAPI.Controllers.CJGL | 
| { | 
|     public class Sc_ProcExchWorkBackBillController : ApiController | 
|     { | 
|         public DBUtility.ClsPub.Enum_BillStatus BillStatus; | 
|         private json objJsonResult = new json(); | 
|         SQLHelper.ClsCN oCN = new SQLHelper.ClsCN(); | 
|         public DAL.ClsSc_ICMOBill BillOld = new DAL.ClsSc_ICMOBill(); | 
|         DataSet ds; | 
|   | 
|         #region 工序返工申请单列表 | 
|         [Route("Sc_ProcExchWorkBackBill/Sc_ProcExchWorkBackBillList")] | 
|         [HttpGet] | 
|         public object Sc_ProcExchWorkBackBillList(string sWhere, string user) | 
|         { | 
|             try | 
|             { | 
|                 List<object> columnNameList = new List<object>(); | 
|                 //判断是否有查询权限 | 
|                 if (!DBUtility.ClsPub.Security_Log("Sc_ProcExchWorkBackBill_Query", 1, false, user)) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "无查询权限!"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 string sql1 = "select * from h_v_Sc_ProcExchWorkBackBillList where 1 = 1  "; | 
|                 string sql = sql1 + sWhere + " order by hmainid desc"; | 
|                 ds = oCN.RunProcReturn(sql, "h_v_Sc_ProcExchWorkBackBillList"); | 
|   | 
|                 //添加列名 | 
|                 foreach (DataColumn col in ds.Tables[0].Columns) | 
|                 { | 
|                     Type dataType = col.DataType; | 
|                     string ColmString = "{\"ColmCols\":\"" + col.ColumnName + "\",\"ColmType\":\"" + dataType.Name + "\"}"; | 
|                     columnNameList.Add(JsonConvert.DeserializeObject(ColmString));//获取到DataColumn列对象的列名 | 
|                 } | 
|   | 
|                | 
|                 objJsonResult.code = "1"; | 
|                 objJsonResult.count = 1; | 
|                 objJsonResult.Message = "Sucess!"; | 
|                 objJsonResult.list = columnNameList; | 
|                 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_ProcExchWorkBackBill/GetProcessExchangeBillSub")] | 
|         [HttpGet] | 
|         public object GetProcessExchangeBillSub_cf(string sWhere) | 
|         { | 
|             DataSet ds; | 
|             try | 
|             { | 
|                 SQLHelper.ClsCN oCN = new SQLHelper.ClsCN(); | 
|                 string sql = string.Format(@"select top 2 * from h_v_Sc_ProcessExchangeBillQuerySub"); | 
|                 ds = oCN.RunProcReturn(sql + sWhere + " order by cast(流水号 as int) ", "h_v_Sc_ProcessExchangeBillQuerySub"); | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 1; | 
|                 objJsonResult.Message = "获取信息成功!"; | 
|                 objJsonResult.data = ds.Tables[0]; | 
|             } | 
|             catch (Exception e) | 
|             { | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 0; | 
|                 objJsonResult.Message = "没有返回任何记录!" + e.ToString(); | 
|                 objJsonResult.data = null; | 
|             } | 
|             return objJsonResult; | 
|         } | 
|         #endregion | 
|   | 
|         #region 工序返工申请单  新增/编辑 | 
|         /// <summary> | 
|         /// 新增单据-保存按钮 | 
|         ///参数:string sql。 | 
|         ///返回值:object。 | 
|         /// </summary> | 
|         [Route("Sc_ProcExchWorkBackBill/Sc_ProcExchWorkBackBillAddBill")] | 
|         [HttpPost] | 
|         public object Sc_ProcExchWorkBackBillAddBill([FromBody] JObject sMainSub) | 
|         { | 
|             var _value = sMainSub["sMainSub"].ToString(); | 
|             string msg1 = _value.ToString(); | 
|             string[] sArray = msg1.Split(new string[] { ";" }, StringSplitOptions.RemoveEmptyEntries); | 
|             string msg2 = sArray[0].ToString();//主表 | 
|             string msg3 = sArray[1].ToString();//子表 | 
|             int msg5 = int.Parse(sArray[2].ToString());//类型 | 
|             string msg6 = sArray[3].ToString();//用户 | 
|   | 
|             ListModels oListModels = new ListModels(); | 
|   | 
|             try | 
|             { | 
|                 if (!DBUtility.ClsPub.Security_Log("Sc_ProcessExchangeBill_Edit", 1, false, msg6)) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "无保存权限!"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 //主表 | 
|                 DAL.ClsSc_ProcExchWorkBackBill oBill = new DAL.ClsSc_ProcExchWorkBackBill(); | 
|                 List<Model.ClsSc_ProcExchWorkBackBillMain> lsmain = new List<Model.ClsSc_ProcExchWorkBackBillMain>(); | 
|                 msg2 = msg2.Replace("\\", ""); | 
|                 msg2 = msg2.Replace("\n", "");  //\n | 
|                 lsmain = oListModels.getObjectByJson_ClsSc_ProcExchWorkBackBillMain(msg2); | 
|                 foreach (Model.ClsSc_ProcExchWorkBackBillMain oItem in lsmain) | 
|                 { | 
|                     oItem.HBillType = "3796"; | 
|                     oItem.HBillSubType = "3796"; | 
|                     oItem.HBillStatus = 1; | 
|                     oItem.HMaker = msg6; | 
|                     oItem.HYear = DBUtility.ClsPub.isLong(DateTime.Now.Year); | 
|                     oItem.HPeriod = DBUtility.ClsPub.isLong(DateTime.Now.Month); | 
|   | 
|                     if (DBUtility.ClsPub.isStrNull(oItem.HDate) == "") | 
|                     { | 
|                         objJsonResult.code = "0"; | 
|                         objJsonResult.count = 0; | 
|                         objJsonResult.Message = "保存失败!没有单据日期,无法保存!"; | 
|                         objJsonResult.data = 1; | 
|                         return objJsonResult; | 
|                     } | 
|                     if (oItem.HChecker != "") | 
|                     { | 
|                         objJsonResult.code = "0"; | 
|                         objJsonResult.count = 0; | 
|                         objJsonResult.Message = "保存失败!单据已审核,无法保存!"; | 
|                         objJsonResult.data = 1; | 
|                         return objJsonResult; | 
|                     } | 
|                     oBill.omodel = oItem; | 
|                 } | 
|   | 
|                 //表体数据 | 
|                 //按 },{来拆分数组 //去掉【和】 | 
|                 msg3 = msg3.Substring(1, msg3.Length - 2); | 
|                 msg3 = msg3.Replace("\\", ""); | 
|                 msg3 = msg3.Replace("\n", "");  //\n | 
|                 List<Model.ClsSc_ProcExchWorkBackBillSub> ls = new List<Model.ClsSc_ProcExchWorkBackBillSub>(); | 
|                 ls = oListModels.getObjectByJson_ClsSc_ProcExchWorkBackBillSub(msg3); | 
|                 int i = 0; | 
|                 foreach (Model.ClsSc_ProcExchWorkBackBillSub oItemSub in ls) | 
|                 { | 
|   | 
|                     i++; | 
|                     oItemSub.HEntryID = i; | 
|                     oItemSub.HEntryCloseDate = DBUtility.ClsPub.isDate(DateTime.Now); | 
|                     oItemSub.HCloseType = false;   //关闭类型 | 
|                     oItemSub.HSourceInterID = 0;     // 源单主内码 | 
|                     oItemSub.HSourceEntryID = 0;   //源单子内码 | 
|                     oItemSub.HRelationQty = 0;     //关联数量 | 
|                     oItemSub.HBillNo_bak = oBill.omodel.HBillNo;     //备份单据号 | 
|                     oItemSub.HCloseMan = "";      | 
|                     oItemSub.HSourceBillNo = "";      | 
|                     oItemSub.HSourceBillType = "";      | 
|                     oBill.DetailColl.Add(oItemSub); | 
|                 } | 
|                 //保存 | 
|                 //保存完毕后处理 | 
|                 bool bResult; | 
|                 if (msg5==1) | 
|                 { | 
|                     // bResult = oBill.AddBill(ref DBUtility.ClsPub.sExeReturnInfo); | 
|                     bResult = oBill.AddBill(ref DBUtility.ClsPub.sExeReturnInfo); | 
|                 } | 
|                 else | 
|                 { | 
|                     bResult = oBill.ModifyBill(oBill.omodel.HInterID, ref DBUtility.ClsPub.sExeReturnInfo); | 
|                 } | 
|                 if (bResult) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 1; | 
|                     objJsonResult.Message = "保存成功!"; | 
|                     objJsonResult.data = 1; | 
|                     return objJsonResult; | 
|                 } | 
|                 else | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "保存失败!" + DBUtility.ClsPub.sExeReturnInfo; | 
|                     objJsonResult.data = 1; | 
|                     return objJsonResult; | 
|                 } | 
|             } | 
|             catch (Exception e) | 
|             { | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 0; | 
|                 objJsonResult.Message = "保存失败!" + e.ToString(); | 
|                 objJsonResult.data = 1; | 
|                 return objJsonResult; | 
|             } | 
|         } | 
|   | 
|         #endregion | 
|   | 
|         #region 工序返工申请单 删除 | 
|         /// <summary> | 
|         /// 工序返工申请单 | 
|         /// </summary> | 
|         /// <returns></returns> | 
|         [Route("Sc_ProcExchWorkBackBill/DelProcExchWorkBackBill")] | 
|         [HttpGet] | 
|         public object DelProcExchWorkBackBill(string HInterID, string user) | 
|         { | 
|             //编辑权限 | 
|             if (!DBUtility.ClsPub.Security_Log("Sc_ProcExchWorkBackBill_Drop", 1, false, user)) | 
|             { | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 0; | 
|                 objJsonResult.Message = "无删除权限!"; | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|   | 
|   | 
|             Int64 lngBillKey = 0; | 
|             lngBillKey = DBUtility.ClsPub.isLong(HInterID); | 
|             if (lngBillKey == 0) | 
|             { | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 0; | 
|                 objJsonResult.Message = "单据ID为空!"; | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|             DAL.ClsSc_ProcExchWorkBackBill oBill = new DAL.ClsSc_ProcExchWorkBackBill(); | 
|             ds = oCN.RunProcReturn("select * from Sc_ProcExchWorkBackBillMain where HInterID=" + lngBillKey, "Sc_ProcExchWorkBackBillMain"); | 
|   | 
|             if (ds.Tables[0].Rows.Count>0) | 
|             { | 
|                 | 
|                 if (int.Parse(ds.Tables[0].Rows[0]["HBillStatus"].ToString()) > 1) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "单据当前处于不能删除状态,不能删除!"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 if (ds.Tables[0].Rows[0]["HChecker"].ToString() != "") | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "单据已经审核,不能删除!"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 bool IsDete = oBill.DeleteBill(lngBillKey, ref DBUtility.ClsPub.sExeReturnInfo); | 
|   | 
|                 if (IsDete) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 1; | 
|                     objJsonResult.Message = DBUtility.ClsPub.sExeReturnInfo; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|                 else | 
|                 { | 
|   | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = DBUtility.ClsPub.sExeReturnInfo; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|             } | 
|             else | 
|             { | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 0; | 
|                 objJsonResult.Message = "单据未找到"; | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|         } | 
|         #endregion | 
|   | 
|         //#region 工序返工申请单 审核 | 
|         //[Route("Sc_ProcExchWorkBackBill/set_CheckBill")] | 
|         //[HttpGet] | 
|         //public object set_CheckBill(int HInterID, string CurUserName) | 
|         //{ | 
|         //    try | 
|         //    { | 
|         //        //审核权限 | 
|         //        if (!DBUtility.ClsPub.Security_Log("Sc_ProcExchWorkBackBill_Check", 1, false, CurUserName)) | 
|         //        { | 
|         //            objJsonResult.code = "0"; | 
|         //            objJsonResult.count = 0; | 
|         //            objJsonResult.Message = "审核失败!无权限!"; | 
|         //            objJsonResult.data = null; | 
|         //            return objJsonResult; | 
|         //        } | 
|         //        if (HInterID == 0) | 
|         //        { | 
|         //            objJsonResult.code = "0"; | 
|         //            objJsonResult.count = 0; | 
|         //            objJsonResult.Message = "单据ID为0,不能审核!"; | 
|         //            objJsonResult.data = null; | 
|         //            return objJsonResult; | 
|         //        } | 
|   | 
|         //        DataSet Ds = oCN.RunProcReturn("Select * from Sc_ProcExchWorkBackBillMain Where HInterID=" + HInterID, "Sc_ProcExchWorkBackBillMain"); | 
|         //        if (Ds.Tables[0].Rows.Count > 0) | 
|         //        { | 
|         //            //查看是否已审核,关闭,作废 | 
|         //            if (Ds.Tables[0].Rows[0]["HChecker"].ToString() != "") | 
|         //            { | 
|         //                objJsonResult.code = "0"; | 
|         //                objJsonResult.count = 0; | 
|         //                objJsonResult.Message = "单据已审核!不能再次审核"; | 
|         //                objJsonResult.data = null; | 
|         //                return objJsonResult; | 
|         //            } | 
|   | 
|   | 
|         //            //审核 | 
|         //            if (Cj_StationInBillCheckBill(HInterID,int.Parse( Ds.Tables[0].Rows[0]["HProcExchInterID"].ToString()), CurUserName, ref DBUtility.ClsPub.sExeReturnInfo)) | 
|         //            { | 
|         //                objJsonResult.code = "1"; | 
|         //                objJsonResult.count = 1; | 
|         //                objJsonResult.Message = "审核成功!"; | 
|         //                objJsonResult.data = null; | 
|         //                return objJsonResult; | 
|         //            } | 
|         //            else | 
|         //            { | 
|         //                objJsonResult.code = "0"; | 
|         //                objJsonResult.count = 0; | 
|         //                objJsonResult.Message = "审核失败!原因:" + DBUtility.ClsPub.sExeReturnInfo; | 
|         //                objJsonResult.data = null; | 
|         //                return objJsonResult; | 
|         //            } | 
|   | 
|         //        } | 
|         //        else | 
|         //        { | 
|         //            objJsonResult.code = "0"; | 
|         //            objJsonResult.count = 0; | 
|         //            objJsonResult.Message = "单据未找到!"; | 
|         //            objJsonResult.data = null; | 
|         //            return objJsonResult; | 
|         //        } | 
|         //    } | 
|         //    catch (Exception e) | 
|         //    { | 
|         //        objJsonResult.code = "0"; | 
|         //        objJsonResult.count = 0; | 
|         //        objJsonResult.Message = "审核失败!" + e.ToString(); | 
|         //        objJsonResult.data = null; | 
|         //        return objJsonResult; | 
|         //    } | 
|         //} | 
|   | 
|         ////审核 | 
|         //public bool Cj_StationInBillCheckBill(Int64 HInterID,int HProcExchInterID, string CurUserName, ref string sReturn) | 
|         //{ | 
|         //    try | 
|         //    { | 
|         //        oCN.BeginTran(); | 
|         //        oCN.RunProc(" Update Sc_ProcExchWorkBackBillMain set HChecker='" + CurUserName + "',HBillStatus=2,HCheckDate=getdate() Where HInterID=" + HInterID.ToString()); | 
|         //        //回填工序流转卡 | 
|         //        oCN.RunProc("exec h_p_ProcExchWorkBackBill_Check_In " + HInterID.ToString()); | 
|         //        oCN.RunProc("exec h_p_Sc_ProcessExchangeBill_SetRemark " + HProcExchInterID.ToString()); //设置 备注 为 工艺流 | 
|         //        oCN.RunProc("exec h_p_Sc_ProcessExchangeBill_SetUpdate " + HProcExchInterID.ToString()); //设置 末道 首道 转 等信息   器具清单  工艺参数清单; | 
|         //        DataSet ds = new DataSet(); | 
|         //        //设置条码号  回填 领料批次 | 
|         //        ds = oCN.RunProcReturn("exec h_p_Mes_ProcessExchangeBackBarCode " + HProcExchInterID.ToString(), "h_p_Mes_ProcessExchangeBackBarCode"); | 
|         //        if (DBUtility.ClsPub.isLong(ds.Tables[0].Rows[0]["HBack"]) != 0) | 
|         //        { | 
|         //            sReturn = DBUtility.ClsPub.isStrNull(ds.Tables[0].Rows[0]["HBackRemark"]).ToString(); | 
|         //            oCN.RollBack(); | 
|         //            return false; | 
|         //        } | 
|   | 
|         //        //控制关联数量 | 
|         //        ds = null; | 
|         //        ds = oCN.RunProcReturn("exec h_p_Sc_ProcessExchangeBill_Checkqty " + HProcExchInterID.ToString(), "h_p_Sc_ProcessExchangeBill_Checkqty"); | 
|         //        if (DBUtility.ClsPub.isLong(ds.Tables[0].Rows[0]["HBack"]) != 0) | 
|         //        { | 
|         //            sReturn = DBUtility.ClsPub.isStrNull(ds.Tables[0].Rows[0]["HBackRemark"]).ToString(); | 
|         //            oCN.RollBack(); | 
|         //            return false; | 
|         //        } | 
|         //        oCN.Commit(); | 
|         //        return true; | 
|         //    } | 
|         //    catch (Exception e) | 
|         //    { | 
|         //        sReturn = e.Message; | 
|         //        oCN.RollBack(); | 
|         //        return false; ; | 
|         //    } | 
|         //} | 
|         //#endregion | 
|   | 
|         #region 工艺路线审核/反审核功能 | 
|         [Route("Sc_ProcExchWorkBackBill/CheckSc_ProcExchWorkBackBill")] | 
|         [HttpGet] | 
|         public object CheckSc_ProcExchWorkBackBill(string HInterID, int Type, string user) | 
|         { | 
|             try | 
|             { | 
|                 //判断是否有删除权限 | 
|                 if (!DBUtility.ClsPub.Security_Log("Sc_ProcExchWorkBackBill_Check", 1, false, user)) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "无权限审核!"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 if (string.IsNullOrWhiteSpace(HInterID)) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "HInterID为空!"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 ClsPub.CurUserName = user; | 
|                 BillOld.MvarItemKey = "Sc_ProcExchWorkBackBillMain"; | 
|                 oCN.BeginTran();//开始事务 | 
|   | 
|                 //Type 1 审核  2  反审核 | 
|                 if (Type == 1) | 
|                 { | 
|                     //判断单据是否已经审核 | 
|                     DataSet ds; | 
|                     string sql = "select * from " + BillOld.MvarItemKey + " where HinterID = " + HInterID; | 
|                     ds = oCN.RunProcReturn(sql, BillOld.MvarItemKey); | 
|                     if (ds.Tables[0] != null && ds.Tables[0].Rows.Count > 0) | 
|                     { | 
|                         if (ds.Tables[0].Rows[0]["HChecker"] != null && ds.Tables[0].Rows[0]["HChecker"].ToString() != "") | 
|                         { | 
|                             objJsonResult.code = "0"; | 
|                             objJsonResult.count = 0; | 
|                             objJsonResult.Message = "单据已审核!不需要再审核!"; | 
|                             objJsonResult.data = null; | 
|                             return objJsonResult; | 
|                         } | 
|                     } | 
|                     //审核单据 | 
|                     if (!BillOld.CheckBill(Int64.Parse(HInterID), ref ClsPub.sExeReturnInfo)) | 
|                     { | 
|                         objJsonResult.code = "0"; | 
|                         objJsonResult.count = 1; | 
|                         objJsonResult.Message = "审核失败!原因:" + ClsPub.sExeReturnInfo; | 
|                         objJsonResult.data = null; | 
|                         return objJsonResult; | 
|                     } | 
|                 } | 
|                 else | 
|                 { | 
|                     //判断单据是否已经反审核 | 
|                     DataSet ds; | 
|                     string sql = "select * from " + BillOld.MvarItemKey + " where HinterID = " + HInterID; | 
|                     ds = oCN.RunProcReturn(sql, BillOld.MvarItemKey); | 
|                     if (ds.Tables[0] != null && ds.Tables[0].Rows.Count > 0) | 
|                     { | 
|                         if (ds.Tables[0].Rows[0]["HChecker"] == null || ds.Tables[0].Rows[0]["HChecker"].ToString() == "") | 
|                         { | 
|                             objJsonResult.code = "0"; | 
|                             objJsonResult.count = 0; | 
|                             objJsonResult.Message = "单据已反审核!不需要再反审核!"; | 
|                             objJsonResult.data = null; | 
|                             return objJsonResult; | 
|                         } | 
|                     } | 
|                     //反审核单据 | 
|                     if (BillOld.AbandonCheck(Int64.Parse(HInterID), ref ClsPub.sExeReturnInfo)) | 
|                     { | 
|                         //SQLHelper.ClsCN oCn = new SQLHelper.ClsCN(); | 
|                         //DataSet DSet = oCn.RunProcReturn("exec h_p_Sc_ICMOBill_AbandonCheckCtrl " + int.Parse(HInterID), "h_p_Sc_ICMOBill_AbandonCheckCtrl"); | 
|                         ////if (DBUtility.ClsPub.isInt(DSet.Tables[0].Rows[0]["Hback"]) != 0) | 
|                         ////{ | 
|                         ////    objJsonResult.code = "0"; | 
|                         ////    objJsonResult.count = 1; | 
|                         ////    objJsonResult.Message = "该任务单已下推流转卡,不允许反审核" + DBUtility.ClsPub.isStrNull(DSet.Tables[0].Rows[0]["HBackRemark"]); | 
|                         ////    objJsonResult.data = null; | 
|                         ////    return objJsonResult; | 
|                         ////} | 
|                     } | 
|                     else | 
|                     { | 
|                         objJsonResult.code = "0"; | 
|                         objJsonResult.count = 1; | 
|                         objJsonResult.Message = "审核失败!原因:" + ClsPub.sExeReturnInfo; | 
|                         objJsonResult.data = null; | 
|                         return objJsonResult; | 
|                     } | 
|                 } | 
|   | 
|                 oCN.Commit();//提交事务 | 
|   | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 1; | 
|                 objJsonResult.Message = "执行成功!"; | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; ; | 
|   | 
|             } | 
|             catch (Exception e) | 
|             { | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 0; | 
|                 objJsonResult.Message = "执行失败!" + e.ToString(); | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|         } | 
|         #endregion | 
|   | 
|         #region 工艺路线单关闭/反关闭功能 | 
|         [Route("Sc_ProcExchWorkBackBill/CloseSc_ProcExchWorkBackBill")] | 
|         [HttpGet] | 
|         public object CloseSc_ProcExchWorkBackBill(string HInterID, int Type, string user) | 
|         { | 
|             try | 
|             { | 
|                 //判断是否有删除权限 | 
|                 if (!DBUtility.ClsPub.Security_Log("Sc_ProcExchWorkBackBill_Close", 1, false, user)) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "无权限关闭!"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 if (string.IsNullOrWhiteSpace(HInterID)) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "HInterID为空!"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 ClsPub.CurUserName = user; | 
|                 BillOld.MvarItemKey = "Sc_ProcExchWorkBackBillMain"; | 
|                 oCN.BeginTran();//开始事务 | 
|   | 
|                 //Type 1 关闭  2  反关闭 | 
|                 if (Type == 1) | 
|                 { | 
|                     //判断单据是否已经关闭 | 
|                     DataSet ds; | 
|                     string sql = "select * from " + BillOld.MvarItemKey + " where HinterID = " + HInterID; | 
|                     ds = oCN.RunProcReturn(sql, BillOld.MvarItemKey); | 
|                     if (ds.Tables[0] != null && ds.Tables[0].Rows.Count > 0) | 
|                     { | 
|                         if (ds.Tables[0].Rows[0]["HCloseMan"] != null && ds.Tables[0].Rows[0]["HCloseMan"].ToString() != "") | 
|                         { | 
|                             objJsonResult.code = "0"; | 
|                             objJsonResult.count = 0; | 
|                             objJsonResult.Message = "单据已关闭!不需要再关闭!"; | 
|                             objJsonResult.data = null; | 
|                             return objJsonResult; | 
|                         } | 
|                     } | 
|                     //关闭单据 | 
|                     if (!BillOld.CloseBill(Int64.Parse(HInterID), ref ClsPub.sExeReturnInfo)) | 
|                     { | 
|                         objJsonResult.code = "0"; | 
|                         objJsonResult.count = 1; | 
|                         objJsonResult.Message = "关闭失败!原因:" + ClsPub.sExeReturnInfo; | 
|                         objJsonResult.data = null; | 
|                         return objJsonResult; | 
|                     } | 
|                 } | 
|                 else | 
|                 { | 
|                     //判断单据是否已经反关闭 | 
|                     DataSet ds; | 
|                     string sql = "select * from " + BillOld.MvarItemKey + " where HinterID = " + HInterID; | 
|                     ds = oCN.RunProcReturn(sql, BillOld.MvarItemKey); | 
|                     if (ds.Tables[0] != null && ds.Tables[0].Rows.Count > 0) | 
|                     { | 
|                         if (ds.Tables[0].Rows[0]["HCloseMan"] == null || ds.Tables[0].Rows[0]["HCloseMan"].ToString() == "") | 
|                         { | 
|                             objJsonResult.code = "0"; | 
|                             objJsonResult.count = 0; | 
|                             objJsonResult.Message = "单据已反关闭!不需要再反关闭!"; | 
|                             objJsonResult.data = null; | 
|                             return objJsonResult; | 
|                         } | 
|                     } | 
|                     //反关闭单据 | 
|                     if (!BillOld.CancelClose(Int64.Parse(HInterID), ref ClsPub.sExeReturnInfo)) | 
|                     { | 
|                         objJsonResult.code = "0"; | 
|                         objJsonResult.count = 1; | 
|                         objJsonResult.Message = "反关闭失败!原因:" + ClsPub.sExeReturnInfo; | 
|                         objJsonResult.data = null; | 
|                         return objJsonResult; | 
|                     } | 
|                 } | 
|   | 
|                 oCN.Commit();//提交事务 | 
|   | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 1; | 
|                 objJsonResult.Message = "执行成功!"; | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; ; | 
|   | 
|             } | 
|             catch (Exception e) | 
|             { | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 0; | 
|                 objJsonResult.Message = "执行失败!" + e.ToString(); | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|         } | 
|         #endregion | 
|   | 
|         #region 排单墙查询列表 | 
|         [Route("Sc_ProcExchWorkBackBill/SingleRowWallList")] | 
|         [HttpGet] | 
|         public object SingleRowWallList(string sWhere, string user) | 
|         { | 
|             try | 
|             { | 
|                 DataTable dt1 = new DataTable("DataSouce"); | 
|                 DataTable dt2 = new DataTable("DataColor"); | 
|                 List<object> columnNameList = new List<object>(); | 
|   | 
|                 string sql = "exec h_p_SingleRowWall  "+ sWhere; | 
|                 ds = oCN.RunProcReturn(sql, "DataSouce"); | 
|   | 
|                 //添加列名 | 
|                 foreach (DataColumn col in ds.Tables[0].Columns) | 
|                 { | 
|                     dt1.Columns.Add(col.ColumnName); | 
|                     dt2.Columns.Add(col.ColumnName); | 
|                     Type dataType = col.DataType; | 
|                     string ColmString = "{\"ColmCols\":\"" + col.ColumnName + "\",\"ColmType\":\"" + dataType.Name + "\"}"; | 
|                     columnNameList.Add(JsonConvert.DeserializeObject(ColmString));//获取到DataColumn列对象的列名 | 
|                 } | 
|   | 
|                 if (ds.Tables.Count == 2) { | 
|   | 
|                     int[] num2 = new int[ds.Tables[0].Columns.Count];//记录每一列获取有值的行数 | 
|   | 
|                     for (int i = 0; i < ds.Tables[0].Rows.Count; i++) | 
|                     { | 
|                         int num = 0;//记录没有数据行的列数 | 
|                         int[] num3 = new int[ds.Tables[0].Columns.Count];//记录每一列没有数据的行数 | 
|   | 
|                         DataRow dtrow = dt1.NewRow(); | 
|                         for (int j = 0; j < ds.Tables[0].Columns.Count; j++) | 
|                         { | 
|                             int num1 = 0;//记录有多少次满足不为空的条件 | 
|                             DataColumn col = ds.Tables[0].Columns[j]; | 
|                             for (int k = 0; k < ds.Tables[0].Rows.Count; k++) | 
|                             { | 
|                                 DataRow item = ds.Tables[0].Rows[k]; | 
|                                 if (item[col.ColumnName.ToString()].ToString() != "") | 
|                                 { | 
|                                     num1 += 1; | 
|                                     if (num1 > num2[j]) | 
|                                     { | 
|                                         dtrow[col.ColumnName.ToString()] = item[col.ColumnName.ToString()].ToString(); | 
|                                         num2[j] += 1; | 
|                                         break; | 
|                                     } | 
|                                     else | 
|                                     { | 
|                                         num3[j] += 1; | 
|                                     } | 
|                                 } | 
|                                 else | 
|                                 { | 
|                                     num3[j] += 1; | 
|                                 } | 
|                                 if (num3[j] == ds.Tables[0].Rows.Count) | 
|                                 { | 
|                                     num += 1; | 
|                                 } | 
|                             } | 
|                         } | 
|                         if (num == ds.Tables[0].Columns.Count) | 
|                         { | 
|                             break; | 
|                         } | 
|                         dt1.Rows.Add(dtrow); | 
|                     } | 
|   | 
|                     int[] nums2 = new int[ds.Tables[1].Columns.Count];//记录每一列获取有值的行数 | 
|   | 
|                     for (int i = 0; i < ds.Tables[1].Rows.Count; i++) | 
|                     { | 
|                         int num = 0;//记录没有数据行的列数 | 
|                         int[] num3 = new int[ds.Tables[1].Columns.Count];//记录每一列没有数据的行数 | 
|   | 
|                         DataRow row = ds.Tables[1].Rows[i]; | 
|                         DataRow dtrow = dt2.NewRow(); | 
|                         for (int j = 0; j < ds.Tables[1].Columns.Count; j++) | 
|                         { | 
|                             int num1 = 0;//记录有多少次满足不为空的条件 | 
|                             DataColumn col = ds.Tables[1].Columns[j]; | 
|                             for (int k = 0; k < ds.Tables[1].Rows.Count; k++) | 
|                             { | 
|                                 DataRow item = ds.Tables[1].Rows[k]; | 
|                                 if (item[col.ColumnName.ToString()].ToString() != "") | 
|                                 { | 
|                                     num1 += 1; | 
|                                     if (num1 > nums2[j]) | 
|                                     { | 
|                                         dtrow[col.ColumnName.ToString()] = item[col.ColumnName.ToString()].ToString(); | 
|                                         nums2[j] += 1; | 
|                                         break; | 
|                                     } | 
|                                     else | 
|                                     { | 
|                                         num3[j] += 1; | 
|                                     } | 
|                                 } | 
|                                 else | 
|                                 { | 
|                                     num3[j] += 1; | 
|                                 } | 
|                                 if (num3[j] == ds.Tables[0].Rows.Count) | 
|                                 { | 
|                                     num += 1; | 
|                                 } | 
|                             } | 
|                         } | 
|                         if (num == ds.Tables[0].Columns.Count||i==3) | 
|                         { | 
|                             break; | 
|                         } | 
|                         dt2.Rows.Add(dtrow); | 
|                     } | 
|   | 
|                     ds.Tables.Clear(); | 
|                     ds.Tables.Add(dt1); | 
|                     ds.Tables.Add(dt2); | 
|                 }   | 
|   | 
|                 objJsonResult.code = "1"; | 
|                 objJsonResult.count = 1; | 
|                 objJsonResult.Message = "Sucess!"; | 
|                 objJsonResult.list = columnNameList; | 
|                 objJsonResult.data = ds; | 
|                 return objJsonResult; | 
|             } | 
|             catch (Exception e) | 
|             { | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 0; | 
|                 objJsonResult.Message = "Exception!" + e.ToString(); | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|         } | 
|         #endregion | 
|     } | 
| } |