| using DBUtility; | 
| using Newtonsoft.Json; | 
| using Newtonsoft.Json.Linq; | 
| using SyntacticSugar.constant; | 
| using System; | 
| using System.Collections.Generic; | 
| using System.Data; | 
| using System.IO; | 
| using System.Linq; | 
| using System.Net; | 
| using System.Net.Http; | 
| using System.Web; | 
| using System.Web.Http; | 
| using WebAPI.Controllers.SCGL.日计划管理; | 
| using WebAPI.Models; | 
|   | 
| namespace WebAPI.Controllers.BaseSet | 
| { | 
|     public class Gy_QCCheckClassController : ApiController | 
|     { | 
|         public DBUtility.ClsPub.Enum_BillStatus BillStatus; | 
|   | 
|         private json objJsonResult = new json(); | 
|         SQLHelper.ClsCN oCN = new SQLHelper.ClsCN(); | 
|         DataSet ds; | 
|   | 
|         #region 检验项目分类列表数据 | 
|         /// <summary> | 
|         /// 返回检验项目列表 | 
|         ///参数:string sql。 | 
|         ///返回值:object。 | 
|         /// </summary> | 
|         [Route("Gy_QCCheckClass/list")] | 
|         [HttpGet] | 
|         public object list(string sWhere,string user) | 
|         { | 
|             try | 
|             { | 
|                 List<object> columnNameList = new List<object>(); | 
|                 //查看权限 | 
|                 if (!DBUtility.ClsPub.Security_Log("Gy_QCCheckClass_Query", 1, false, user)) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "无查看权限!"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 if (sWhere == null || sWhere.Equals("")) | 
|                 { | 
|                     ds = oCN.RunProcReturn("select * from h_v_IF_QCCheckClassList order by 代码", "h_v_IF_QCCheckClassList"); | 
|                 } | 
|                 else | 
|                 { | 
|                     string sql1 = "select * from h_v_IF_QCCheckClassList where 1 = 1 "; | 
|                     string sql = sql1 + sWhere+ " order by 代码"; | 
|                     ds = oCN.RunProcReturn(sql, "h_v_IF_QCCheckClassList"); | 
|                 } | 
|   | 
|                 //添加列名 | 
|                 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列对象的列名 | 
|                 } | 
|   | 
|   | 
|                 //if (ds.Tables[0].Rows.Count != 0 || ds != null) | 
|                 //{ | 
|                 objJsonResult.code = "1"; | 
|                 objJsonResult.count = 1; | 
|                 objJsonResult.Message = "Sucess!"; | 
|                 objJsonResult.data = ds.Tables[0]; | 
|                 objJsonResult.list = columnNameList; | 
|                 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 = "Exception!" + e.ToString(); | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|         } | 
|         #endregion | 
|   | 
|         #region 检验项目根据树型ID查询所有层级列表数据 | 
|         /// <summary> | 
|         /// 根据树型ID 查找记录 | 
|         ///参数:string sql。 | 
|         ///返回值:object。 | 
|         /// </summary> | 
|         [Route("Gy_QCCheckClass/cx")] | 
|         [HttpGet] | 
|         public object cx(long HInterID) | 
|         { | 
|             try | 
|             { | 
|   | 
|                 //ds = oCN.RunProcReturn("select * from h_v_IF_RepairCheckList where HitemID=" + HInterID, "h_v_IF_RepairCheckList"); | 
|                 ds = oCN.RunProcReturn(string.Format(@"WITH a AS (SELECT * FROM dbo.h_v_IF_QCCheckClassList WHERE HitemID=" + HInterID + " UNION ALL SELECT s.* FROM dbo.h_v_IF_QCCheckClassList AS s,a WHERE s.parentid=a.HitemID) SELECT * FROM a"), "h_v_IF_QCCheckClassList"); | 
|                 if (ds == null || ds.Tables[0].Rows.Count == 0) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "false!"; | 
|                     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 | 
|   | 
|         #region 删除检验项目 | 
|         /// <summary> | 
|         /// 检验项目列表删除按钮 | 
|         ///参数:string sql。 | 
|         ///返回值:object。 | 
|         /// </summary> | 
|         [Route("Gy_QCCheckClass/Delete_Json")] | 
|         [HttpGet] | 
|         public object Delete_Json(long HItemID, string User, string ModRightNameDelete) | 
|         { | 
|             DAL.ClsGy_QCCheckClass_Ctl oDept = new DAL.ClsGy_QCCheckClass_Ctl(); | 
|             DAL.ClsGy_QCCheckClass_View oDeptHlp = new DAL.ClsGy_QCCheckClass_View(); | 
|             try | 
|             { | 
|                 //判断是否有删除权限 | 
|                 if (!DBUtility.ClsPub.Security_Log(ModRightNameDelete, 1, false, User)) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "没有删除权限"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 if (oDeptHlp.GetInfoByID(HItemID)) | 
|                 { | 
|                     if (oDept.HavChildCodes(HItemID)) | 
|                     { | 
|                         objJsonResult.code = "0"; | 
|                         objJsonResult.count = 0; | 
|                         objJsonResult.Message = "此项目存在子项目,不能删除!"; | 
|                         objJsonResult.data = null; | 
|                         return objJsonResult; | 
|                     } | 
|                     //删除前判断是否 已使用 20141020 | 
|                     if (oDeptHlp.omodel.HUseFlag != "未使用") | 
|                     { | 
|                         objJsonResult.code = "0"; | 
|                         objJsonResult.count = 0; | 
|                         objJsonResult.Message = "此项目已使用或者未检测,不能删除!请重新检测再删除!"; | 
|                         objJsonResult.data = null; | 
|                         return objJsonResult; | 
|                     } | 
|                     // | 
|                     if (oDept.DeleteByID(HItemID)) | 
|                     { | 
|                         //写入日志 | 
|                         ClsPub.Add_Log("", "删除项目,代码:" + oDeptHlp.omodel.HNumber + ",名称:" + oDeptHlp.omodel.HName, ClsPub.CurUserName); | 
|                         //更新上级为 末级 | 
|                         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; | 
|                     } | 
|                 } | 
|                 //ds = oCN.RunProcReturn("delete from Gy_Department where HItemID =  " + HItemID, "Gy_Department"); | 
|   | 
|                 objJsonResult.code = "1"; | 
|                 objJsonResult.count = 1; | 
|                 objJsonResult.Message = "删除成功"; | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|             catch (Exception e) | 
|             { | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 0; | 
|                 objJsonResult.Message = "Exception!" + e.ToString(); | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|         } | 
|         #endregion | 
|   | 
|         #region 检验项目新增保存 | 
|         /// <summary> | 
|         /// 检验项目-保存按钮 | 
|         ///参数:string sql。 | 
|         ///返回值:object。 | 
|         /// </summary> | 
|         [Route("Gy_QCCheckClass/AddBill")] | 
|         [HttpPost] | 
|         public object AddBill([FromBody] JObject oMain) | 
|         { | 
|             try | 
|             { | 
|                 var _value = oMain["oMain"].ToString(); | 
|                 string msg1 = _value.ToString(); | 
|                 string[] sArray = msg1.Split(new string[] { ";" }, StringSplitOptions.RemoveEmptyEntries); | 
|                 string msg2 = sArray[0].ToString(); | 
|                 string msg3 = sArray[1].ToString(); | 
|                 string msg4 = sArray[2].ToString(); | 
|                 string msg5 = sArray[3].ToString(); | 
|                 //反序列化 | 
|                 msg2 = "[" + msg2.ToString() + "]"; | 
|   | 
|                 DAL.ClsGy_QCCheckClass_Ctl oDept = new DAL.ClsGy_QCCheckClass_Ctl(); | 
|                 DAL.ClsGy_QCCheckClass_View oDeptHlp = new DAL.ClsGy_QCCheckClass_View(); | 
|   | 
|   | 
|                 //判断权限 | 
|                 if (!ClsPub.Security_Log(msg5, 1, false, msg4)) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "无保存权限"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 List<CheckItem> list = Newtonsoft.Json.JsonConvert.DeserializeObject<List<CheckItem>>(msg2); | 
|   | 
|                 long HItemID = list[0].HItemID.ToString() == "" ? 0 : list[0].HItemID; | 
|                 string HNumber = list[0].HNumber; | 
|                 string HName = list[0].HName; | 
|                 string HShortNumber = list[0].HNumber; | 
|                 long HParentID = list[0].HParentID; | 
|                 string HHelpCode = list[0].HHelpCode; | 
|                 string HRemark = list[0].HRemark; | 
|                 bool HStopflag = list[0].HStopflag; | 
|                 bool HUseFlag = list[0].HUseFlag; | 
|                 long HQCCheckClassID = list[0].HQCCheckClassID; | 
|   | 
|                 if (!DBUtility.ClsPub.AllowNumber(HNumber)) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "代码中不能出现连续‘.’并且首位末位不能为‘.’!"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 //若MAINDI重复则重新获取 | 
|                 oCN.BeginTran(); | 
|                 //主表 | 
|                 oCN.RunProc("Insert Into Gy_QCCheckClass " + | 
|                 "(HNumber,HName,HHelpCode,HShortNumber,HParentID" + | 
|                 ",HLevel,HEndFlag,HStopflag,HRemark,HUseFlag) " + | 
|                 " values('" + HNumber + "','" + HName + "','" + HHelpCode + "','" + HShortNumber + "','" + HItemID + "'" + | 
|                 ",'1',0,'" + Convert.ToString(HStopflag ? 1 : 0) + "','" + HRemark + "','未使用')"); | 
|                 //修改上级为非末级代码 | 
|                 if (list[0].HItemID.ToString() != "") | 
|                 { | 
|                     oCN.RunProc("Update Gy_QCCheckClass set HEndflag=0 where HItemID=" + HItemID, ref DBUtility.ClsPub.sExeReturnInfo); | 
|                 } | 
|                 oCN.Commit(); | 
|                 objJsonResult.code = "1"; | 
|                 objJsonResult.count = 1; | 
|                 objJsonResult.Message = "新增成功!"; | 
|                 //objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|             catch (Exception e) | 
|             { | 
|                 oCN.RollBack(); | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 0; | 
|                 objJsonResult.Message = "Exception!" + e.Message; | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|         } | 
|         #endregion | 
|   | 
|         #region 检验项目修改保存 | 
|         /// <summary> | 
|         /// 修改单据-保存按钮 | 
|         ///参数:string sql。 | 
|         ///返回值:object。 | 
|         /// </summary> | 
|         [Route("Gy_QCCheckClass/EditBill")] | 
|         [HttpPost] | 
|         public object EditBill([FromBody] JObject oMain) | 
|         { | 
|   | 
|             try | 
|             { | 
|                 DAL.ClsGy_QCCheckClass_Ctl oDept = new DAL.ClsGy_QCCheckClass_Ctl(); | 
|                 DAL.ClsGy_QCCheckClass_View oDeptHlp = new DAL.ClsGy_QCCheckClass_View(); | 
|   | 
|                 var _value = oMain["oMain"].ToString(); | 
|                 string msg1 = _value.ToString(); | 
|                 string[] sArray = msg1.Split(new string[] { ";" }, StringSplitOptions.RemoveEmptyEntries); | 
|                 string msg2 = sArray[0].ToString(); | 
|                 string msg3 = sArray[1].ToString(); | 
|                 string msg4 = sArray[2].ToString();//用户名 | 
|                 string msg5 = sArray[3].ToString();//修改模块名称 | 
|   | 
|                 //判断权限 | 
|                 if (!DBUtility.ClsPub.Security_Log(msg5, 1, false, msg4)) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "无保存权限"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 //反序列化 | 
|                 msg2 = "[" + msg2.ToString() + "]"; | 
|                 List<MaintenanceAcceptItem> list = Newtonsoft.Json.JsonConvert.DeserializeObject<List<MaintenanceAcceptItem>>(msg2); | 
|   | 
|                 long HItemID = int.Parse(msg3); | 
|                 string HNumber = list[0].HNumber; | 
|                 string HName = list[0].HName; | 
|                 string HShortNumber = list[0].HNumber; | 
|                 long HParentID = list[0].HParentID.ToString() == "" ? 0 : list[0].HParentID; | 
|                 string HHelpCode = list[0].HHelpCode; | 
|                 string HRemark = list[0].HRemark; | 
|                 string HStopflag = list[0].HStopflag; | 
|                 string HUseFlag = list[0].HUseFlag; | 
|   | 
|                 if (!DBUtility.ClsPub.AllowNumber(HNumber)) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "代码中不能出现连续‘.’并且首位末位不能为‘.’!"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 if (oDept.HavSameNumber(HItemID, HNumber)) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "代码重复!"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|   | 
|                 //若MAINDI重复则重新获取 | 
|                 oCN.BeginTran(); | 
|                 //主表 | 
|                 oCN.RunProc("Update Gy_QCCheckClass set " + | 
|                     " HNumber='" + HNumber + "'" + | 
|                     ",HName='" + HName + "'" + | 
|                     ",HShortNumber='" + HShortNumber + "'" + | 
|                     ",HHelpCode='" + HHelpCode + "'" + | 
|                     ",HParentID=" + HParentID + | 
|                     ",HStopflag='" + HStopflag + "'" + | 
|                     ",HRemark= '" + HRemark + "' Where HItemID=" + HItemID, ref DBUtility.ClsPub.sExeReturnInfo); | 
|                 //修改子项目代码 | 
|                 //oCN.RunProc("exec h_p_Gy_UpdateNumber Gy_RepairCheck,'" + HNumber + ".','" + this.HOldNumber + ".'", ref DBUtility.ClsPub.sExeReturnInfo); | 
|                 //将上级 为非末级 | 
|                 oCN.RunProc("Update Gy_QCCheckClass set HEndflag=0 where HItemID=" + HParentID, ref DBUtility.ClsPub.sExeReturnInfo); | 
|                 // | 
|                 oCN.Commit(); | 
|                 objJsonResult.code = "1"; | 
|                 objJsonResult.count = 1; | 
|                 objJsonResult.Message = "修改单据成功!"; | 
|                 //objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|             catch (Exception e) | 
|             { | 
|                 oCN.RollBack(); | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 0; | 
|                 objJsonResult.Message = "Exception!" + e.Message; | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|         } | 
|         #endregion | 
|   | 
|         #region 检验项目修改获取绑定数据 | 
|         /// <summary> | 
|         /// 维修列表修改按钮方法 | 
|         ///参数:string sql。 | 
|         ///返回值:object。 | 
|         /// </summary> | 
|         [Route("Gy_QCCheckClass/xg")] | 
|         [HttpGet] | 
|         public object xg(long HInterID) | 
|         { | 
|             try | 
|             { | 
|                 ds = oCN.RunProcReturn("select * from Gy_QCCheckClass where HItemID=" + HInterID, "Gy_QCCheckClass"); | 
|   | 
|                 objJsonResult.code = "1"; | 
|                 objJsonResult.count = 1; | 
|                 objJsonResult.Message = ""; | 
|                 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("Gy_QCCheckClass/LoadTree")] | 
|         [HttpGet] | 
|         public object LoadTree_Json(string sWhere) | 
|         { | 
|             SQLHelper.ClsCN SubCn = new SQLHelper.ClsCN(); | 
|             //ds = oCN.RunProcReturn("select * from h_v_IF_GroupList " + sWhere, "h_v_IF_GroupList"); | 
|   | 
|             ds = oCN.RunProcReturn("select * from h_v_Gy_QCCheckClassLoadTree", "h_v_Gy_QCCheckClassLoadTree"); | 
|   | 
|             objJsonResult.code = "1"; | 
|             objJsonResult.count = 1; | 
|             objJsonResult.Message = "Sucess!"; | 
|             objJsonResult.data = ds.Tables[0]; | 
|             return objJsonResult; | 
|         } | 
|         #endregion | 
|   | 
|         #region 校验项目分类列表 文件上传 | 
|         [Route("Gy_QCCheckClass/Gy_QCCheckClass_Excel")] | 
|         [HttpPost] | 
|         public json Gy_QCCheckClass_Excel() | 
|         { | 
|             json res = new json(); | 
|             try | 
|             { | 
|                 //获取文件名称 | 
|                 var file = HttpContext.Current.Request.Files[0]; | 
|                 //获取文件物理路径 | 
|                 string ExcelPath = HttpContext.Current.Server.MapPath("~/" + file.FileName); | 
|                 //保存文件 | 
|                 file.SaveAs(ExcelPath); | 
|   | 
|                 NpoiHelper np = new NpoiHelper(); | 
|                 DataSet ExcelDs = np.ReadExcel(ExcelPath, 1, 1, "0"); | 
|   | 
|                 //删除文件 | 
|                 File.Delete(ExcelPath); | 
|   | 
|                 //创建临时表 | 
|                 DataTable provisional = new DataTable("dt2"); | 
|   | 
|                 //添加列名 | 
|                 for (int i = 0; i < ExcelDs.Tables[0].Columns.Count; i++) | 
|                 { | 
|                     provisional.Columns.Add(ExcelDs.Tables[0].Rows[0][i].ToString()); | 
|                 } | 
|                 //模板缺少列 但需要从数据库中查询出来显示在页面的字段 | 
|                 provisional.Columns.Add("HOrgID", typeof(Int32));//组织ID | 
|                 //添加数据 | 
|                 for (int i = 1; i < ExcelDs.Tables[0].Rows.Count; i++) | 
|                 { | 
|                     DataRow row = provisional.NewRow(); | 
|                     for (int j = 0; j < ExcelDs.Tables[0].Columns.Count; j++) | 
|                     { | 
|                         row[j] = ExcelDs.Tables[0].Rows[i][j].ToString(); | 
|                     } | 
|                     provisional.Rows.Add(row); | 
|                 } | 
|   | 
|                 //判断列 | 
|                 string error = JudgmentColumns(provisional); | 
|                 if (error.Length > 0) | 
|                 { | 
|                     res.code = "0"; | 
|                     res.count = 0; | 
|                     res.Message = $"Excel模板存在错误,{error}\r\n"; | 
|                     res.data = null; | 
|                     return res; | 
|                 } | 
|   | 
|                 for (int i = 0; i <= provisional.Rows.Count - 1; i++) | 
|                 { | 
|                     string HQCCheckClassName = DBUtility.ClsPub.isStrNull(provisional.Rows[i]["检验项目分类"].ToString()); | 
|                     string HQCCheckClassNumber = DBUtility.ClsPub.isStrNull(provisional.Rows[i]["检验项目分类代码"].ToString()); | 
|                     string HORGNumber = DBUtility.ClsPub.isStrNull(provisional.Rows[i]["组织代码"].ToString()); | 
|                     string HORGName = DBUtility.ClsPub.isStrNull(provisional.Rows[i]["组织名称"].ToString()); | 
|                     //获取真实行数 | 
|                     int line = i + 1; | 
|                     if (HORGNumber != "") | 
|                     { | 
|                         //查询组织 | 
|                         ds = oCN.RunProcReturn("select * from Xt_ORGANIZATIONS where  HNumber='" + HORGNumber + "' and Hname='" + HORGName + "'", "Xt_ORGANIZATIONS"); | 
|   | 
|                         if (ds.Tables[0].Rows.Count == 0) | 
|                         { | 
|                             res.code = "0"; | 
|                             res.count = 0; | 
|                             res.Message = "第" + line + "行,组织不存在!"; | 
|                             res.data = null; | 
|                             return res; | 
|                         } | 
|                         else | 
|                         { | 
|                             provisional.Rows[i]["HOrgID"] = ds.Tables[0].Rows[0]["HItemID"].ToString(); | 
|                         } | 
|                         string HORGid = ds.Tables[0].Rows[0]["HItemID"].ToString(); | 
|                     } | 
|                     else | 
|                     { | 
|                         res.code = CodeConstant.FAIL; | 
|                         res.count = CountConstant.FAIL; | 
|                         res.Message = "第" + line + "行,组织代码为空"; | 
|                         res.data = null; | 
|                         return res; | 
|                     } | 
|                 } | 
|   | 
|                 res.code = "1"; | 
|                 res.count = 1; | 
|                 res.Message = error; | 
|                 res.data = provisional; | 
|                 return res; | 
|             } | 
|             catch (Exception e) | 
|             { | 
|                 res.code = "0"; | 
|                 res.count = 0; | 
|                 res.Message = "Exception!" + e.ToString(); | 
|                 res.data = null; | 
|                 return res; | 
|             } | 
|         } | 
|   | 
|         /// <summary> | 
|         /// 判断列 | 
|         /// </summary> | 
|         /// <param name="provisional"></param> | 
|         /// <returns></returns> | 
|         private static string JudgmentColumns(DataTable provisional) | 
|         { | 
|             var error = ""; | 
|   | 
|             //查询没有的列 | 
|             if (!provisional.Columns.Contains("组织代码")) | 
|                 error += "没有找到【组织代码】的标题,"; | 
|   | 
|             if(!provisional.Columns.Contains("检验项目分类代码")) | 
|                 error += "没有找到【检验项目分类代码】的标题,"; | 
|   | 
|             if (!provisional.Columns.Contains("组织名称")) | 
|                 error += "没有找到【组织名称】的标题,"; | 
|   | 
|             if (!provisional.Columns.Contains("检验项目分类")) | 
|                 error += "没有找到【检验项目分类】的标题,"; | 
|   | 
|             if (!provisional.Columns.Contains("助记码")) | 
|                 error += "没有找到【助记码】的标题,"; | 
|   | 
|             if (!provisional.Columns.Contains("备注")) | 
|                 error += "没有找到【备注】的标题,"; | 
|             return error; | 
|         } | 
|         #endregion | 
|   | 
|         #region 校验项目分类列表 导入(保存) | 
|         [Route("Gy_QCCheckClass/Gy_QCCheckClass_btnSave")] | 
|         [HttpPost] | 
|         public object Gy_Group_btnSave([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 user = sArray[1].ToString(); | 
|             string organ = sArray[2].ToString(); | 
|             try | 
|             { | 
|                 if (!DBUtility.ClsPub.Security_Log("Gy_QCCheckClass_Edit", 1, false, user)) | 
|                 { | 
|                     objJsonResult.code = "0"; | 
|                     objJsonResult.count = 0; | 
|                     objJsonResult.Message = "无保存权限!"; | 
|                     objJsonResult.data = null; | 
|                     return objJsonResult; | 
|                 } | 
|   | 
|                 List<object> Excel = Newtonsoft.Json.JsonConvert.DeserializeObject<List<object>>(msg2); | 
|                 List<Dictionary<string, string>> list = new List<Dictionary<string, string>>(); | 
|   | 
|                 foreach (JObject item in Excel) | 
|                 { | 
|                     Dictionary<string, string> dic = new Dictionary<string, string>(); | 
|                     foreach (var itm in item.Properties()) | 
|                     { | 
|                         dic.Add(itm.Name, itm.Value.ToString()); | 
|                     } | 
|                     list.Add(dic); | 
|                 } | 
|   | 
|                 oCN.BeginTran(); | 
|                 int i = 1; | 
|                 foreach (Dictionary<string, string> item in list) | 
|                 { | 
|                     string HNumber = item["检验项目分类代码"].ToString(); | 
|                     string HUSEORGID = item["HOrgID"].ToString(); | 
|                     string HName = item["检验项目分类"].ToString(); | 
|                     string HHelpCode = item["助记码"]; | 
|                     string HRemark = item["备注"].ToString(); | 
|   | 
|                     string sShortNumber; | 
|                     sShortNumber = DBUtility.ClsPub.GetShortNumber(HNumber);//短代码 | 
|                     if (sShortNumber.Trim() == "") | 
|                     { | 
|                         objJsonResult.code = "0"; | 
|                         objJsonResult.count = 0; | 
|                         objJsonResult.Message = "保存失败!短代码为空!"; | 
|                         objJsonResult.data = 1; | 
|                         return objJsonResult; | 
|                     } | 
|                     int HEndFlag = 1;//末级标志 | 
|                     int HLevel = DBUtility.ClsPub.GetLevel(HNumber); //等级 | 
|   | 
|   | 
|                     if (!DBUtility.ClsPub.AllowNumber(HNumber.Trim())) | 
|                     { | 
|                         objJsonResult.code = "0"; | 
|                         objJsonResult.count = 0; | 
|                         objJsonResult.Message = "保存失败!代码中不能出现连续‘.’并且首位末位不能为‘.’!"; | 
|                         objJsonResult.data = 1; | 
|                         return objJsonResult; | 
|                     } | 
|   | 
|                     ds = oCN.RunProcReturn("select * from Gy_QCCheckClass where HNumber='" + HNumber + "'", "Gy_QCCheckClass"); | 
|   | 
|                     if (ds.Tables[0].Rows.Count == 0) | 
|                     { | 
|   | 
|                         string sql = "insert into Gy_QCCheckClass (HName,HNumber,HShortNumber,HLevel,HHelpCode,HParentID,HStopflag,HEndFlag,HRemark,HUseFlag, HUSEORGID, HCREATEORGID, HMakeTime,HMakeEmp)" + | 
|                             $"values('{HName}', '{HNumber}', '{sShortNumber}',{HLevel},'',0,'0','0','{HRemark}', '未使用', '{HUSEORGID}', '{HUSEORGID}', '{System.DateTime.Now.ToString("G")}', '{user}')"; | 
|                         oCN.RunProc(sql); | 
|                     } | 
|                     else | 
|                     { | 
|                         oCN.RunProc("update  Gy_QCCheckClass  set  HName='" + HName + "', HHelpCode='" + HHelpCode + "', HModifyEmp = '" + user + "', HModifyTime = '" + System.DateTime.Now.ToString("G") + "',HUSEORGID="+ HUSEORGID + ",HRemark='"+HRemark+"' where HNumber='" + HNumber + "'"); | 
|                     } | 
|   | 
|                     i++; | 
|                 } | 
|   | 
|                 oCN.Commit(); | 
|   | 
|                 objJsonResult.code = "1"; | 
|                 objJsonResult.count = 1; | 
|                 objJsonResult.Message = "导入成功!"; | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|             catch (Exception e) | 
|             { | 
|                 LogService.Write(e); | 
|                 objJsonResult.code = "0"; | 
|                 objJsonResult.count = 0; | 
|                 objJsonResult.Message = "Exception!" + e.ToString(); | 
|                 objJsonResult.data = null; | 
|                 return objJsonResult; | 
|             } | 
|         } | 
|         #endregion | 
|     } | 
| } |