yusijie
2025-02-20 5fccb067ad7dc2dbcdacf8db642aa471488cd8f0
WebAPI/Controllers/BLL/Xt_UserController.cs
@@ -1,6 +1,7 @@
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Pub_Class;
using SyntacticSugar.constant;
using System;
using System.Collections;
using System.Collections.Generic;
@@ -107,6 +108,26 @@
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                //获取当前用户身份列表
                string sql = "select HLev from System_UserGroupInfo u " +
                        " left join System_UserGroup r " +
                        "on u.GroupId = r.GroupID where u.UserId = '" + HCzybm + "'";
                //用户身份判断
                DataSet hLev = oCN.RunProcReturn(sql, "System_UserGroupInfo");
                foreach(DataRow dr in hLev.Tables[0].Rows)
                {
                    if (!dr["HLev"].Equals(RoleConstant.EMPLOYEE))
                    {
                        objJsonResult.code = CodeConstant.FAIL;
                        objJsonResult.count = CountConstant.FAIL;
                        objJsonResult.Message = "管理员身份不允许删除!";
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                }
                oCN.BeginTran();
                //删除用户信息
                oCN.RunProc("delete from  Gy_Czygl where Czybm='" + HCzybm + "'");
@@ -200,20 +221,31 @@
                        return objJsonResult;
                    }
                    //判断用户数是否大于客户账号数
                    ds = oCN.RunProcReturn("Exec h_p_Xt_BaseInfo ", "h_p_Xt_BaseInfo");
                    if (DBUtility.ClsPub.isStrNull(ds.Tables[0].Rows[0]["HBack"]) != "0")
                    {
                        objJsonResult.code = "0";
                        objJsonResult.count = 0;
                        objJsonResult.Message = ds.Tables[0].Rows[0]["HBackRemark"].ToString();
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                    oCN.RunProc("insert into Gy_Czygl (Czybm,Czymc,Czmm,Explain,HempID,HK3UserID " +
                    ",HKeeperID,HKeeper,HSecManagerID,HSecManager " +
                    ",HSellManID,HSellMan,HDeptID,HDept " +
                    ",HWhID,HWHName,HSupID,HSupName " +
                    ",HSCWHID,HSCWHName " +
                    ",HCloudUserName,HCloudUserPsd,HUSEORGID,HProcID" +
                    ",HGroupID,HSourceID) " +
                    ",HGroupID,HSourceID,HCheckEmpID,HWorkCenterID,HICNumber,HDingDingUserID) " +
                    "values ('" + lsmain[0].Czybm.ToString() + "','" + lsmain[0].Czymc.ToString() + "','" + ClsPub.StrToPsd(lsmain[0].Czmm.ToString()) + "','" + lsmain[0].Explain.ToString() + "','" + lsmain[0].HEmpID.ToString() + "',"+ lsmain[0].HK3UserID.ToString() + "" +
                    ","+ lsmain[0].HKeeperID.ToString() + ",'"+ lsmain[0].HKeeper.ToString() + "',"+ lsmain[0].HSecManagerID.ToString() + ",'"+ lsmain[0].HSecManager.ToString() + "'" +
                    "," + lsmain[0].HSellManID.ToString() + ",'" + lsmain[0].HSellMan.ToString() + "'," + lsmain[0].HDeptID.ToString() + ",'" + lsmain[0].HDept.ToString() + "'" +
                    "," + lsmain[0].HWhID.ToString() + ",'" + lsmain[0].HWHName.ToString() + "'," + lsmain[0].HSupID.ToString() + ",'" + lsmain[0].HSupName.ToString() + "'" +
                    "," + lsmain[0].HSCWHID.ToString() + ",'" + lsmain[0].HSCWHName.ToString() + "'" + 
                    ",'" + lsmain[0].HCloudUserName.ToString() + "','" + lsmain[0].HCloudUserPsd.ToString() + "',"+ lsmain[0].HOrgID.ToString() + "," + lsmain[0].HProcID.ToString() + "" +
                    ","+ lsmain[0].HGroupID.ToString() + ","+ lsmain[0].HSourceID.ToString() + ")");
                    ","+ lsmain[0].HGroupID.ToString() + ","+ lsmain[0].HSourceID.ToString() + "," + lsmain[0].HCheckEmpID.ToString() + "," + lsmain[0].HWorkCenterID.ToString() + ",'" + lsmain[0].HICNumber + "','" + lsmain[0].HDingDingUserID + "'" + ")");
                    //新增后查询  确保数据添加成功
                    ds = oCN.RunProcReturn("Select * from  Gy_Czygl where Czybm='" + lsmain[0].Czybm.ToString() + "'", "Gy_Czygl");
@@ -239,6 +271,17 @@
                }
                else //修改
                {
                    //判断用户数是否大于客户账号数
                    ds = oCN.RunProcReturn("Exec h_p_Xt_BaseInfo ", "h_p_Xt_BaseInfo");
                    if (DBUtility.ClsPub.isStrNull(ds.Tables[0].Rows[0]["HBack"]) != "0")
                    {
                        objJsonResult.code = "0";
                        objJsonResult.count = 0;
                        objJsonResult.Message = ds.Tables[0].Rows[0]["HBackRemark"].ToString();
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                    ds = oCN.RunProcReturn("select * from  Gy_Czygl where Czybm='" + lsmain[0].Czybm.ToString() + "'", "Gy_Czygl");
                    if (ds.Tables[0].Rows[0]["Czmm"].ToString() !=  lsmain[0].Czmm)  //修改密码
                    {
@@ -256,6 +299,7 @@
                        ",HDeptID=" + lsmain[0].HDeptID.ToString() +
                        ",HDept='" + lsmain[0].HDept.ToString() + "'" +
                        ",HWhID=" + lsmain[0].HWhID.ToString() +
                        ",HCheckEmpID=" + lsmain[0].HCheckEmpID.ToString() +
                        ",HWHName='" + lsmain[0].HWHName.ToString() + "'" +
                        ",HSCWHID=" + lsmain[0].HSCWHID.ToString() +
                        ",HSCWHName='" + lsmain[0].HSCWHName.ToString() + "'" +
@@ -263,10 +307,13 @@
                        ",HProcID=" + lsmain[0].HProcID.ToString() +
                        ",HSourceID=" + lsmain[0].HSourceID.ToString() +
                        ",HGroupID=" + lsmain[0].HGroupID.ToString() +
                        ",HWorkCenterID=" + lsmain[0].HWorkCenterID.ToString() +
                        ",HSupName='" + lsmain[0].HSupName.ToString() + "'" +
                        ",HCloudUserName='" + lsmain[0].HCloudUserName.ToString() + "'" +
                        ",HCloudUserPsd='" + lsmain[0].HCloudUserPsd.ToString() + "'" +
                        ",HUSEORGID=" + lsmain[0].HOrgID.ToString() +
                        ",HICNumber='" + lsmain[0].HICNumber + "'" +
                        ",HDingDingUserID='" + lsmain[0].HDingDingUserID + "'" +
                        "  where  Czybm='" + lsmain[0].Czybm.ToString() + "'");
                    }
                    else
@@ -283,6 +330,7 @@
                           ",HSellMan='" + lsmain[0].HSellMan.ToString() + "'" +
                           ",HDeptID=" + lsmain[0].HDeptID.ToString() +
                           ",HDept='" + lsmain[0].HDept.ToString() + "'" +
                           ",HCheckEmpID=" + lsmain[0].HCheckEmpID.ToString() +
                           ",HWhID=" + lsmain[0].HWhID.ToString() +
                           ",HWHName='" + lsmain[0].HWHName.ToString() + "'" +
                           ",HSCWHID=" + lsmain[0].HSCWHID.ToString() +
@@ -291,10 +339,13 @@
                            ",HProcID=" + lsmain[0].HProcID.ToString() +
                           ",HSourceID=" + lsmain[0].HSourceID.ToString() +
                           ",HGroupID=" + lsmain[0].HGroupID.ToString() +
                           ",HWorkCenterID=" + lsmain[0].HWorkCenterID.ToString() +
                           ",HSupName='" + lsmain[0].HSupName.ToString() + "'" +
                           ",HCloudUserName='" + lsmain[0].HCloudUserName.ToString() + "'" +
                           ",HCloudUserPsd='" + lsmain[0].HCloudUserPsd.ToString() + "'" +
                           ",HUSEORGID=" + lsmain[0].HOrgID.ToString() +
                           ",HICNumber='" + lsmain[0].HICNumber + "'" +
                           ",HDingDingUserID='" + lsmain[0].HDingDingUserID + "'" +
                           "  where  Czybm='" + lsmain[0].Czybm.ToString() + "'");
                    }
@@ -444,7 +495,7 @@
                }
                ////Excel模板缺少列 但需要从数据库中查询出来显示在页面的字段
                tb2.Columns.Add("HItemId", typeof(Int32));//供应商ID
                tb2.Columns.Add("HSupID", typeof(Int32));//供应商ID
                //添加数据
                for (int i = 1; i < ExcelDs.Tables[0].Rows.Count; i++)
@@ -513,10 +564,10 @@
                        }
                        else
                        {
                            tb2.Rows[i]["HItemID"] = ds.Tables[0].Rows[0]["HItemID"].ToString(); //供应商ID
                            tb2.Rows[i]["HSupID"] = ds.Tables[0].Rows[0]["HItemID"].ToString(); //供应商ID
                        }
                        //查询用户
                        ds = oCN.RunProcReturn("select * from h_v_Gy_UserList where  czybm='" + czybm + "'", "h_v_Gy_UserList");
                        ds = oCN.RunProcReturn("select * from Gy_Czygl where  czybm='" + czybm + "'", "Gy_Czygl");
                        if (ds.Tables[0].Rows.Count == 0)
                        {
@@ -528,7 +579,7 @@
                        }
                        else
                        {
                            tb2.Rows[i]["HItemID"] = ds.Tables[0].Rows[0]["HItemID"].ToString();
                            //tb2.Rows[i]["czybm"] = ds.Tables[0].Rows[0]["czybm"].ToString();
                        }
                        //审核代码是否合理
@@ -569,7 +620,7 @@
        }
  
        #region 提料计划信息 导入(保存)
        #region  导入(保存)
        [Route("Xt_User/UserSupperBill_btnSave")]
        [HttpPost]
        public object UserSupperBill_btnSave([FromBody] JObject sMainSub)
@@ -599,49 +650,27 @@
                int i = 1;
                foreach (Dictionary<string, string> item in list)
                {
                    string HSupID = item["HSupID"].ToString();//供应商
                    string HMaterID = item["HMaterID"].ToString();//物料ID
                    string HOrgID = item["HOrgID"].ToString();//组织ID
                    string HSupplierName = item["供应商"].ToString();
                    string HMaterName = item["物料名称"].ToString();
                    string HMaterModel = item["规格型号"].ToString();
                    string HUnitID = item["HUnitID"].ToString();//计量单位
                    string JITType = item["JIT物料分类"].ToString();
                    string JITPSL = item["JIT拉动安全库存量"].ToString();
                    string JITMDSC = item["JIT物料需求供货周期"].ToString();
                    string JIPEB = item["JIT提货经济批量"].ToString();
                    string JITPBCC = item["JIT提货批量对应周期(天)"].ToString();
                    string JISLT = item["JIT供货提前期(天)"].ToString();
                    string JIDLT = item["JIT到货前置期(天)"].ToString();
                    string JITDCD = item["JIT送货控制天数"].ToString();
                    string JIMLC = item["JIT最小起送量"].ToString();
                    string HRemark = item["备注"].ToString();
                    string HSupID = item["HSupID"].ToString();//供应商ID
                    string HUserID = item["用户代码"].ToString();//用户代码
                    string czymc = item["用户名称"].ToString();//用户名称
                    string HNumber = item["供应商代码"].ToString();//供应商代码
                    string HName = item["供应商名称"].ToString();//供应商名称
                    ds = oCN.RunProcReturn("select * from Cg_PODemandPlanConfigBillSub where HMaterID=" + HMaterID + " and HSupplierID=" + HSupID, "Cg_PODemandPlanConfigBillSub");
                    var ds = oCN.RunProcReturn("select * from Gy_UserSupplierRelation where  HSupID='" + HSupID + "'and HUserID='" + HUserID + "'", "Gy_UserSupplierRelation");
                    if (ds.Tables[0].Rows.Count == 0)
                    if (ds.Tables[0].Rows.Count >0)
                    {
                        long HInterID = DBUtility.ClsPub.CreateBillID_Prod("4611", ref DBUtility.ClsPub.sExeReturnInfo);//获得一个新的id
                        string HBillNo = DBUtility.ClsPub.CreateBillCode_Prod("4611", ref DBUtility.ClsPub.sExeReturnInfo, true);//获得一个新的单据号
                        string sql = "insert into Cg_PODemandPlanConfigBillMain(HInterID,HBillNo,HYear,HPeriod,HBillType,HBillSubType,HDate,HBillStatus,HMaker,HMakeDate,HOrgId)" +
                            $"values({HInterID}, '{HBillNo}',{DateTime.Now.Year}, {DateTime.Now.Month}, '4611', '4611', GETDATE(), 1, '{user}', GETDATE(), {HOrgID})";
                        string sql1 = "insert into Cg_PODemandPlanConfigBillSub(HInterID,HEntryID,HRemark,HSupplierID,HSupplierName,HMaterID," +
                       "HMaterName, HMaterModel, HJITMaterGroup, HJITSafeStock, HJITMaterDemand, HJITBatchQty, HDeliveryPeriod, " +
                       "HLeadTime, HLeadTime_Sec, HDeliveryMode, HDeliveryDaysCtrl,HUnitID,HJITMinDeliveryQty)values" +
                       $"({HInterID}, 1, '{HRemark}', {(HSupID == "" ? "0" : HSupID)}, '{HSupplierName}', {(HMaterID == "" ? "0" : HMaterID)}," +
                       $" '{HMaterName}', '{HMaterModel}', '{JITType}', {(JITPSL == "" ? "0" : JITPSL)}, {(JITMDSC == "" ? "0" : JITMDSC)},{(JIPEB == "" ? "0" : JIPEB)},{(JITPBCC == "" ? "0" : JITPBCC)}," +
                       $" {(JISLT == "" ? "0" : JISLT)}, {(JIDLT == "" ? "0" : JIDLT)}, '', {(JITDCD == "" ? "0" : JITDCD)} ,{HUnitID},{JIMLC})";
                        //主表
                        oCN.RunProc(sql);
                        //子表
                        oCN.RunProc(sql1);
                        oCN.RollBack();
                        objJsonResult.code = "0";
                        objJsonResult.count = 0;
                        objJsonResult.Message = "第" + i + "行, 用户: " + czymc + " 与 供应商: "+ HName + ",已存在,或,插入表格有重复信息";
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                    else
                    {
                        oCN.RunProc("   update  Cg_PODemandPlanConfigBillSub set HLeadTime=" + JISLT + "  where HMaterID=" + HMaterID + " and HSupplierID=" + HSupID);
                        oCN.RunProc("insert into Gy_UserSupplierRelation (HSupID,HUserID) values ('" + HSupID + "','" + HUserID + "')");
                    }
                    i++;
@@ -703,7 +732,7 @@
                return objJsonResult;
            }
        }
        #endregion
        #endregion
        #region 用户关联组织保存
        [Route("Xt_User/SaveUserByOrg")]
@@ -750,6 +779,316 @@
        }
        #endregion
        #region 用户关联组织维护列表
        /// <summary>
        ///参数:string sql。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/UserRelationOrganizationList")]
        [HttpGet]
        public object UserRelationOrganizationList(string sWhere, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                //if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationOrganization_Query", 1, false, user))
                //{
                //    objJsonResult.code = "0";
                //    objJsonResult.count = 0;
                //    objJsonResult.Message = "无查看权限!";
                //    objJsonResult.data = null;
                //    return objJsonResult;
                //}
                string sql = "";
                if (sWhere == null || sWhere.Equals(""))
                {
                    sql = "select * from h_v_Gy_UserOrganizationRelationList_Query order by 用户代码 asc,组织代码 asc";
                    ds = oCN.RunProcReturn(sql, "h_v_Gy_UserOrganizationRelationList_Query");
                }
                else
                {
                    sql = "select * from h_v_Gy_UserOrganizationRelationList_Query where 1=1 ";
                    sql = sql + sWhere + " order by 用户代码 asc,组织代码 asc";
                    ds = oCN.RunProcReturn(sql, "h_v_Gy_UserOrganizationRelationList_Query");
                }
                //添加列名
                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.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                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 HInterID。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/UserRelationOrganizationlist_Drop")]
        [HttpGet]
        public object UserRelationOrganizationlist_Drop(string HInterID, string user)
        {
            try
            {
                string s = "";
                //查看权限
                //if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationOrganization_Drop", 1, false, user))
                //{
                //    objJsonResult.code = "0";
                //    objJsonResult.count = 0;
                //    objJsonResult.Message = "无删除权限!";
                //    objJsonResult.data = null;
                //    return objJsonResult;
                //}
                if (HInterID == null || HInterID.Equals(""))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "HInterID不能为空!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                oCN.BeginTran();
                string sql = "delete from Gy_UserORGRelation where HItemID = " + HInterID;
                oCN.RunProc(sql);
                oCN.Commit();
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "Sucess!";
                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("Xt_User/UserRelationOrganizationList_EditInit")]
        [HttpGet]
        public object UserRelationOrganizationList_EditInit(int HItemID, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                //if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationOrganization_Query", 1, false, user))
                //{
                //    objJsonResult.code = "0";
                //    objJsonResult.count = 0;
                //    objJsonResult.Message = "无查看权限!";
                //    objJsonResult.data = null;
                //    return objJsonResult;
                //}
                string sql = "select * from h_v_Gy_UserOrganizationRelationList_Query where HItemID = " + HItemID;
                ds = oCN.RunProcReturn(sql, "h_v_Gy_UserOrganizationRelationList_Query");
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "Sucess!";
                objJsonResult.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                return objJsonResult;
            }
            catch (Exception e)
            {
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
        #endregion
        #region 用户关联组织维护 保存
        [Route("Xt_User/UserRelationOrganizationList_Save")]
        [HttpPost]
        public object UserRelationOrganizationList_Save([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 saveType = sArray[2].ToString();
            try
            {
                //if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationOrganization_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);
                }
                if (saveType == "1")
                {
                    oCN.BeginTran();
                    string err = "";
                    int i = 1;
                    string sql = "";
                    foreach (Dictionary<string, string> item in list)
                    {
                        string HItemID = item["HItemID"].ToString();        //
                        string HUserID = item["HUserID"].ToString();        //用户代码
                        string HUserName = item["HUserName"].ToString();    //用户名称
                        string HOrgID = item["HOrgID"].ToString();          //组织内码
                        string HOrgNumber = item["HOrgNumber"].ToString();  //组织代码
                        string HOrgName = item["HOrgName"].ToString();      //组织名称
                        sql = "select * from Gy_UserORGRelation where HUserID = '" + HUserID + "' and HOrgID = " + HOrgID;
                        ds = oCN.RunProcReturn(sql, "Gy_UserORGRelation");
                        if (ds.Tables[0].Rows.Count == 0)
                        {
                            sql = "insert into Gy_UserORGRelation(HUserID,HOrgID)" +
                                "values(" +
                                "'" + HUserID + "'" +
                                "," + HOrgID + "" +
                                ")";
                            oCN.RunProc(sql);
                        }
                        else
                        {
                            err += "第" + i + "行:用户【" + HUserName + "】已经关联组织【" + HOrgName + "】";
                        }
                        i++;
                    }
                    //判断是否存在错误
                    if (err.Length > 0)
                    {
                        oCN.RollBack();
                        objJsonResult.code = "0";
                        objJsonResult.count = 0;
                        objJsonResult.Message = "保存失败:" + err;
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                }
                else if (saveType == "3")
                {
                    oCN.BeginTran();
                    string err = "";
                    int i = 1;
                    string sql = "";
                    foreach (Dictionary<string, string> item in list)
                    {
                        string HItemID = item["HItemID"].ToString();        //
                        string HUserID = item["HUserID"].ToString();        //用户代码
                        string HUserName = item["HUserName"].ToString();    //用户名称
                        string HOrgID = item["HOrgID"].ToString();          //组织内码
                        string HOrgNumber = item["HOrgNumber"].ToString();  //组织代码
                        string HOrgName = item["HOrgName"].ToString();      //组织名称
                        sql = "select * from Gy_UserORGRelation where HItemID = " + HItemID;
                        ds = oCN.RunProcReturn(sql, "Gy_UserORGRelation");
                        if (ds.Tables[0].Rows.Count > 0)
                        {
                            sql = "select * from Gy_UserORGRelation where HUserID = '" + HUserID + "' and HOrgID = " + HOrgID + " and HItemID <> " + HItemID;
                            ds = oCN.RunProcReturn(sql, "Gy_UserORGRelation");
                            if (ds.Tables[0].Rows.Count == 0)
                            {
                                sql = "update Gy_UserORGRelation set " +
                                      "HUserID = '" + HUserID + "' " +
                                      ",HOrgID = " + HOrgID + " " +
                                      "where HItemID = " + HItemID;
                                oCN.RunProc(sql);
                            }
                            else
                            {
                                err += "第" + i + "行:用户【" + HUserName + "】已经关联组织【" + HOrgName + "】";
                            }
                        }
                        else
                        {
                            err += "第" + i + "行:记录不存在!";
                        }
                        i++;
                    }
                    //判断是否存在错误
                    if (err.Length > 0)
                    {
                        oCN.RollBack();
                        objJsonResult.code = "0";
                        objJsonResult.count = 0;
                        objJsonResult.Message = "保存失败:" + err;
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                }
                oCN.Commit();
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "保存成功!";
                objJsonResult.data = null;
                return objJsonResult;
            }
            catch (Exception e)
            {
                LogService.Write(e);
                oCN.RollBack();
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
        #endregion
        #region  根据用户编码查找已分配仓库列表
        [Route("Xt_User/UserStocklistPlaylist")]
        [HttpGet]
@@ -775,6 +1114,110 @@
                    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("Xt_User/Gy_UserStockRelationList")]
        [HttpGet]
        public object Gy_UserStockRelationList(string sWhere, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserStockRelation_Query", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无查看权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                string sql1 = "select * from h_v_Gy_UserStockRelation where 1 = 1";
                string sql = sql1 + sWhere + " order by 用户代码 ";
                ds = oCN.RunProcReturn(sql, "h_v_Gy_UserStockRelation");
                //添加列名
                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.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                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 HInterID。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/Gy_UserStockRelationDrop")]
        [HttpGet]
        public object Gy_UserStockRelationDrop(string HItemID, string user)
        {
            try
            {
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserStockRelation_Drop", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无删除权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                if (HItemID == null || HItemID.Equals(""))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "HItemID不能为空!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                oCN.BeginTran();
                string sql = "delete from Gy_UserStockRelation where HItemID = " + HItemID;
                oCN.RunProc(sql);
                oCN.Commit();
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "删除成功!";
                objJsonResult.data = null;
                return objJsonResult;
            }
            catch (Exception e)
            {
@@ -832,6 +1275,45 @@
        }
        #endregion
        #region  用户关联用户列表查询
        [Route("Xt_User/Gy_UserByUserList")]
        [HttpGet]
        public object Gy_UserByUserList(string sWhere, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                string sql1 = "select * from h_v_Gy_UserByUserRelationList where 1 = 1";
                string sql = sql1 + sWhere + " order by 用户代码 ";
                ds = oCN.RunProcReturn(sql, "h_v_Gy_UserStockRelation");
                //添加列名
                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.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                return objJsonResult;
            }
            catch (Exception e)
            {
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
        #endregion
        #region  根据用户编码查找已分配班组列表
        [Route("Xt_User/UserGrouplistPlaylist")]
        [HttpGet]
@@ -857,6 +1339,69 @@
                    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("Xt_User/Gy_UserGroupRelationList")]
        [HttpGet]
        public object Gy_UserGroupRelationList(string sWhere, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_Group_Query", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无查看权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                string sql = "";
                if (sWhere == null || sWhere.Equals(""))
                {
                    sql = "select * from h_v_Gy_UserGroupRelationList_Query order by 用户代码 asc,班组代码 asc";
                    ds = oCN.RunProcReturn(sql, "h_v_Gy_UserGroupRelationList_Query");
                }
                else
                {
                    sql = "select * from h_v_Gy_UserGroupRelationList_Query where 1=1 ";
                    sql = sql + sWhere + " order by 用户代码 asc,班组代码 asc";
                    ds = oCN.RunProcReturn(sql, "h_v_Gy_UserGroupRelationList_Query");
                }
                //添加列名
                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.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                return objJsonResult;
            }
            catch (Exception e)
            {
@@ -909,6 +1454,62 @@
                objJsonResult.count = 0;
                objJsonResult.Message = "保存失败!" + e.ToString();
                objJsonResult.data = 1;
                return objJsonResult;
            }
        }
        #endregion
        #region 用户关联班组维护 删除
        /// <summary>
        ///参数:string HInterID。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/UserGroupRelationList_Drop")]
        [HttpGet]
        public object UserGroupRelationList_Drop(string HInterID, string user)
        {
            try
            {
                string s = "";
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_Group_Delete", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无删除权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                if (HInterID == null || HInterID.Equals(""))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "HInterID不能为空!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                oCN.BeginTran();
                string sql = "delete from Gy_UserGroupRelation where HItemID = " + HInterID;
                oCN.RunProc(sql);
                oCN.Commit();
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "Sucess!";
                objJsonResult.data = null;
                return objJsonResult;
            }
            catch (Exception e)
            {
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
@@ -991,6 +1592,168 @@
                objJsonResult.count = 0;
                objJsonResult.Message = "保存失败!" + e.ToString();
                objJsonResult.data = 1;
                return objJsonResult;
            }
        }
        #endregion
        #region 用户关联部门查询
        /// <summary>
        ///参数:string sql。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/UserRelationDeptlist")]
        [HttpGet]
        public object UserRelationDeptlist(string sWhere, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationDept_Query", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无查看权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                string sql = "";
                if (sWhere == null || sWhere.Equals(""))
                {
                    sql = "select * from h_v_Gy_UserDeptRelationList_Query order by 用户代码 asc,部门代码 asc";
                    ds = oCN.RunProcReturn(sql, "h_v_Gy_UserDeptRelationList_Query");
                }
                else
                {
                    sql = "select * from h_v_Gy_UserDeptRelationList_Query where 1=1 ";
                    sql = sql + sWhere + " order by 用户代码 asc,部门代码 asc";
                    ds = oCN.RunProcReturn(sql, "h_v_Gy_UserDeptRelationList_Query");
                }
                //添加列名
                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.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                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>
        ///参数:string sql。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/UserRelationDeptlist_EditInit")]
        [HttpGet]
        public object UserRelationDeptlist_EditInit(int HItemID, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationDept_Query", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无查看权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                string sql = "select * from h_v_Gy_UserDeptRelationList_Query where HItemID = " + HItemID;
                ds = oCN.RunProcReturn(sql, "h_v_Gy_UserDeptRelationList_Query");
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "Sucess!";
                objJsonResult.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                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 HInterID。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/UserRelationDeptlist_Drop")]
        [HttpGet]
        public object UserRelationDeptlist_Drop(string HInterID, string user)
        {
            try
            {
                string s = "";
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationDept_Drop", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无删除权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                if (HInterID == null || HInterID.Equals(""))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "HInterID不能为空!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                oCN.BeginTran();
                string sql = "delete from Gy_UserDeptRelation where HItemID = " + HInterID;
                oCN.RunProc(sql);
                oCN.Commit();
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "Sucess!";
                objJsonResult.data = null;
                return objJsonResult;
            }
            catch (Exception e)
            {
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
@@ -1115,6 +1878,69 @@
        }
        #endregion
        #region 用户关联工位维护列表
        /// <summary>
        ///参数:string sql。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/UserByWorkStationRelationList")]
        [HttpGet]
        public object UserByWorkStationRelationList(string sWhere, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserWorkStationList_Query", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无查看权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                string sql = "";
                if (sWhere == null || sWhere.Equals(""))
                {
                    sql = "select * from h_v_Gy_UserByWorkStationRelationList_Query order by 用户代码 asc,工位代码 asc";
                    ds = oCN.RunProcReturn(sql, "h_v_Gy_UserByWorkStationRelationList_Query");
                }
                else
                {
                    sql = "select * from h_v_Gy_UserByWorkStationRelationList_Query where 1=1 ";
                    sql = sql + sWhere + " order by 用户代码 asc,工位代码 asc";
                    ds = oCN.RunProcReturn(sql, "h_v_Gy_UserByWorkStationRelationList_Query");
                }
                //添加列名
                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.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                return objJsonResult;
            }
            catch (Exception e)
            {
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
        #endregion
        #region 用户关联工位保存
        [Route("Xt_User/SaveUserByWorkStation")]
        [HttpPost]
@@ -1160,6 +1986,105 @@
        }
        #endregion
        #region 用户关联工位维护 编辑初始化
        /// <summary>
        ///参数:string sql。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/UserByWorkStationRelationList_EditInit")]
        [HttpGet]
        public object UserByWorkStationRelationList_EditInit(int HItemID, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserWorkStationList_Query", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无查看权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                string sql = "select * from h_v_Gy_UserByWorkStationRelationList_Query where 用户代码 = '" + HItemID + "'";
                ds = oCN.RunProcReturn(sql, "h_v_Gy_UserByWorkStationRelationList_Query");
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "Sucess!";
                objJsonResult.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                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 HInterID。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/UserByWorkStationRelationList_Drop")]
        [HttpGet]
        public object UserByWorkStationRelationList_Drop(string HInterID, string user)
        {
            try
            {
                string s = "";
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserWorkStationList_Drop", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无删除权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                if (HInterID == null || HInterID.Equals(""))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "HInterID不能为空!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                oCN.BeginTran();
                string sql = "delete from Gy_UserByWorkStationRelation where HItemID = " + HInterID;
                oCN.RunProc(sql);
                oCN.Commit();
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "Sucess!";
                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  根据用户编码查找已分配职员列表
        [Route("Xt_User/UserEmployeelistPlaylist")]
        [HttpGet]
@@ -1197,7 +2122,7 @@
        }
        #endregion
        #region 用户关联职员保存
        #region 用户关联职员保存 Excel导入
        [Route("Xt_User/SaveUserEmployee")]
        [HttpPost]
        public object SaveUserEmployee([FromBody] JObject msg)
@@ -1237,6 +2162,553 @@
                objJsonResult.count = 0;
                objJsonResult.Message = "保存失败!" + e.ToString();
                objJsonResult.data = 1;
                return objJsonResult;
            }
        }
        /// <summary>
        /// 文件上传解析回显
        /// </summary>
        /// <returns></returns>
        [Route("Xt_User/UserEmployeeBill_Excel")]
        [HttpPost]
        public object UserEmployeeBill_Excel()
        {
            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 tb2 = new DataTable("dt2");
                //添加列名
                for (int i = 0; i < ExcelDs.Tables[0].Columns.Count; i++)
                {
                    tb2.Columns.Add(ExcelDs.Tables[0].Rows[0][i].ToString());
                }
                ////Excel模板缺少列 但需要从数据库中查询出来显示在页面的字段
                tb2.Columns.Add("HEmployeeID", typeof(Int32));//工序ID
                //添加数据
                for (int i = 1; i < ExcelDs.Tables[0].Rows.Count; i++)
                {
                    DataRow row = tb2.NewRow();
                    for (int j = 0; j < ExcelDs.Tables[0].Columns.Count; j++)
                    {
                        row[j] = ExcelDs.Tables[0].Rows[i][j].ToString();
                    }
                    tb2.Rows.Add(row);
                }
                var error = "";
                ////查询用户关联供应商没有的列
                if (!tb2.Columns.Contains("用户代码"))
                    error += "没有找到【用户代码】的标题,";
                if (!tb2.Columns.Contains("用户名称"))
                    error += "没有找到【用户名称】的标题,";
                if (!tb2.Columns.Contains("职员代码"))
                    error += "没有找到【职员代码】的标题,";
                if (!tb2.Columns.Contains("职员名称"))
                    error += "没有找到【职员名称】的标题,";
                if (error.Length > 0)
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = $"Excel模板存在错误,{error}\r\n";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                for (int i = 0; i <= tb2.Rows.Count - 1; i++)
                {
                    string czybm = "";
                    string czymc = "";
                    string HNumber = "";
                    string HName = "";
                    //HORGNumber = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["组织编码"].ToString());
                    //HORGName = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["组织"].ToString());
                    czybm = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["用户代码"].ToString());
                    czymc = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["用户名称"].ToString());
                    HNumber = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["职员代码"].ToString());
                    HName = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["职员名称"].ToString());
                    int index = i + 1;
                    //检查用户与工序代码是否都为空
                    if (czybm != "" || HNumber != "")
                    {
                        //查询工序
                        ds = oCN.RunProcReturn("select * from Gy_Employee where  HNumber='" + HNumber + "'", "Gy_Employee");
                        if (ds.Tables[0].Rows.Count == 0)
                        {
                            objJsonResult.code = "0";
                            objJsonResult.count = 0;
                            objJsonResult.Message = "第" + index + "行,职员名称:" + HName + ",不存在!";
                            objJsonResult.data = null;
                            return objJsonResult;
                        }
                        else
                        {
                            tb2.Rows[i]["HEmployeeID"] = ds.Tables[0].Rows[0]["HItemID"].ToString(); //职员ID
                        }
                        //查询用户
                        ds = oCN.RunProcReturn("select * from Gy_Czygl where  czybm='" + czybm + "'", "Gy_Czygl");
                        if (ds.Tables[0].Rows.Count == 0)
                        {
                            objJsonResult.code = "0";
                            objJsonResult.count = 0;
                            objJsonResult.Message = "第" + index + "行,用户: " + czymc + ",不存在!";
                            objJsonResult.data = null;
                            return objJsonResult;
                        }
                        else
                        {
                            //tb2.Rows[i]["czybm"] = ds.Tables[0].Rows[0]["czybm"].ToString();
                        }
                        //审核代码是否合理
                        if (!DBUtility.ClsPub.AllowNumber(czybm))
                        {
                            objJsonResult.code = "0";
                            objJsonResult.count = 0;
                            objJsonResult.Message = "第" + index + "行,用户代码中不能出现连续‘.’并且首位末位不能为‘.’!";
                            objJsonResult.data = null;
                            return objJsonResult;
                        }
                    }
                    else
                    {
                        objJsonResult.code = "1";
                        objJsonResult.count = 1;
                        objJsonResult.Message = "第" + index + "行,用户代码为空";
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                }
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = error;
                objJsonResult.data = tb2;
                return objJsonResult;
            }
            catch (Exception e)
            {
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
        /// <summary>
        /// 导入保存
        /// </summary>
        /// <param name="sMainSub"></param>
        /// <returns></returns>
        [Route("Xt_User/UserEmployeeBill_btnSave")]
        [HttpPost]
        public object UserEmployeeBill_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();
            try
            {
                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 HEmployeeID = item["HEmployeeID"].ToString();//职员ID
                    string HUserID = item["用户代码"].ToString();//用户代码
                    string czymc = item["用户名称"].ToString();//用户名称
                    string HNumber = item["职员代码"].ToString();//职员代码
                    string HName = item["职员名称"].ToString();//职员名称
                    var ds = oCN.RunProcReturn("select * from Gy_UserEmployeeRelation where  HEmployeeID='" + HEmployeeID + "'and HUserID='" + HUserID + "'", "Gy_UserEmployeeRelation");
                    if (ds.Tables[0].Rows.Count > 0)
                    {
                        oCN.RollBack();
                        objJsonResult.code = "0";
                        objJsonResult.count = 0;
                        objJsonResult.Message = "第" + i + "行, 用户: " + czymc + " 与 工序名: " + HName + ",已存在,或,插入表格有重复信息";
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                    else
                    {
                        oCN.RunProc("insert into Gy_UserEmployeeRelation (HEmployeeID,HUserID) values ('" + HEmployeeID + "','" + HUserID + "')");
                    }
                    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
        #region 用户关联职员维护列表
        /// <summary>
        ///参数:string sql。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/UserRelationEmployeelist")]
        [HttpGet]
        public object UserRelationEmployeelist(string sWhere, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                //if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationEmployee_Query", 1, false, user))
                //{
                //    objJsonResult.code = "0";
                //    objJsonResult.count = 0;
                //    objJsonResult.Message = "无查看权限!";
                //    objJsonResult.data = null;
                //    return objJsonResult;
                //}
                string sql = "";
                if (sWhere == null || sWhere.Equals(""))
                {
                    sql = "select * from h_v_Gy_UserEmployeeRelationList_Query order by 用户代码 asc,职员代码 asc";
                    ds = oCN.RunProcReturn(sql, "h_v_Gy_UserEmployeeRelationList_Query");
                }
                else
                {
                    sql = "select * from h_v_Gy_UserEmployeeRelationList_Query where 1=1 ";
                    sql = sql + sWhere + " order by 用户代码 asc,职员代码 asc";
                    ds = oCN.RunProcReturn(sql, "h_v_Gy_UserEmployeeRelationList_Query");
                }
                //添加列名
                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.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                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 HInterID。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/UserRelationEmployeelist_Drop")]
        [HttpGet]
        public object UserRelationEmployeelist_Drop(string HInterID, string user)
        {
            try
            {
                string s = "";
                //查看权限
                //if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationEmployee_Drop", 1, false, user))
                //{
                //    objJsonResult.code = "0";
                //    objJsonResult.count = 0;
                //    objJsonResult.Message = "无删除权限!";
                //    objJsonResult.data = null;
                //    return objJsonResult;
                //}
                if (HInterID == null || HInterID.Equals(""))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "HInterID不能为空!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                oCN.BeginTran();
                string sql = "delete from Gy_UserEmployeeRelation where HItemID = " + HInterID;
                oCN.RunProc(sql);
                oCN.Commit();
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "Sucess!";
                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("Xt_User/UserRelationEmployeelist_EditInit")]
        [HttpGet]
        public object UserRelationEmployeelist_EditInit(int HItemID, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                //if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationEmployee_Query", 1, false, user))
                //{
                //    objJsonResult.code = "0";
                //    objJsonResult.count = 0;
                //    objJsonResult.Message = "无查看权限!";
                //    objJsonResult.data = null;
                //    return objJsonResult;
                //}
                string sql = "select * from h_v_Gy_UserEmployeeRelationList_Query where HItemID = " + HItemID;
                ds = oCN.RunProcReturn(sql, "h_v_Gy_UserEmployeeRelationList_Query");
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "Sucess!";
                objJsonResult.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                return objJsonResult;
            }
            catch (Exception e)
            {
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
        #endregion
        #region 用户关联职员维护 保存
        [Route("Xt_User/UserRelationEmployeelist_Save")]
        [HttpPost]
        public object UserRelationEmployeelist_Save([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 saveType = sArray[2].ToString();
            try
            {
                //if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationEmployee_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);
                }
                if (saveType == "1")
                {
                    oCN.BeginTran();
                    string err = "";
                    int i = 1;
                    string sql = "";
                    foreach (Dictionary<string, string> item in list)
                    {
                        string HItemID = item["HItemID"].ToString();        //
                        string HUserID = item["HUserID"].ToString();        //用户代码
                        string HUserName = item["HUserName"].ToString();    //用户名称
                        string HEmpID = item["HEmpID"].ToString();          //客户内码
                        string HEmpNumber = item["HEmpNumber"].ToString();  //客户代码
                        string HEmpName = item["HEmpName"].ToString();      //客户名称
                        sql = "select * from Gy_UserEmployeeRelation where HUserID = '" + HUserID + "' and HEmployeeID = " + HEmpID;
                        ds = oCN.RunProcReturn(sql, "Gy_UserEmployeeRelation");
                        if (ds.Tables[0].Rows.Count == 0)
                        {
                            sql = "insert into Gy_UserEmployeeRelation(HUserID,HEmployeeID)" +
                                "values(" +
                                "'" + HUserID + "'" +
                                "," + HEmpID + "" +
                                ")";
                            oCN.RunProc(sql);
                        }
                        else
                        {
                            err += "第" + i + "行:用户【" + HUserName + "】已经关联职员【" + HEmpName + "】";
                        }
                        i++;
                    }
                    //判断是否存在错误
                    if (err.Length > 0)
                    {
                        oCN.RollBack();
                        objJsonResult.code = "0";
                        objJsonResult.count = 0;
                        objJsonResult.Message = "保存失败:" + err;
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                }
                else if (saveType == "3")
                {
                    oCN.BeginTran();
                    string err = "";
                    int i = 1;
                    string sql = "";
                    foreach (Dictionary<string, string> item in list)
                    {
                        string HItemID = item["HItemID"].ToString();        //
                        string HUserID = item["HUserID"].ToString();        //用户代码
                        string HUserName = item["HUserName"].ToString();    //用户名称
                        string HEmpID = item["HEmpID"].ToString();          //职员内码
                        string HEmpNumber = item["HEmpNumber"].ToString();  //职员代码
                        string HEmpName = item["HEmpName"].ToString();      //职员名称
                        sql = "select * from Gy_UserEmployeeRelation where HItemID = " + HItemID;
                        ds = oCN.RunProcReturn(sql, "Gy_UserEmployeeRelation");
                        if (ds.Tables[0].Rows.Count > 0)
                        {
                            sql = "select * from Gy_UserEmployeeRelation where HUserID = '" + HUserID + "' and HEmployeeID = " + HEmpID + " and HItemID <> " + HItemID;
                            ds = oCN.RunProcReturn(sql, "Gy_UserEmployeeRelation");
                            if (ds.Tables[0].Rows.Count == 0)
                            {
                                sql = "update Gy_UserEmployeeRelation set " +
                                      "HUserID = '" + HUserID + "' " +
                                      ",HEmployeeID = " + HEmpID + " " +
                                      "where HItemID = " + HItemID;
                                oCN.RunProc(sql);
                            }
                            else
                            {
                                err += "第" + i + "行:用户【" + HUserName + "】已经关联职员【" + HEmpName + "】";
                            }
                        }
                        else
                        {
                            err += "第" + i + "行:记录不存在!";
                        }
                        i++;
                    }
                    //判断是否存在错误
                    if (err.Length > 0)
                    {
                        oCN.RollBack();
                        objJsonResult.code = "0";
                        objJsonResult.count = 0;
                        objJsonResult.Message = "保存失败:" + err;
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                }
                oCN.Commit();
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "保存成功!";
                objJsonResult.data = null;
                return objJsonResult;
            }
            catch (Exception e)
            {
                LogService.Write(e);
                oCN.RollBack();
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
@@ -1350,6 +2822,109 @@
                    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("Xt_User/Gy_UserMaterList")]
        [HttpGet]
        public object Gy_UserMaterList(string sWhere, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserMaterList_Query", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无查看权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                string sql1 = "select * from h_v_Gy_UserMater where 1 = 1";
                string sql = sql1 + sWhere + " order by 用户代码 ";
                ds = oCN.RunProcReturn(sql, "h_v_Gy_UserMater");
                //添加列名
                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.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                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 HInterID。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/Gy_UserMaterRelationDrop")]
        [HttpGet]
        public object Gy_UserMaterRelationDrop(string HItemID, string user)
        {
            try
            {
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserMaterList_Drop", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无删除权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                if (HItemID == null || HItemID.Equals(""))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "HItemID不能为空!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                oCN.BeginTran();
                string sql = "delete from Gy_UserMaterRelation where HItemID = " + HItemID;
                oCN.RunProc(sql);
                oCN.Commit();
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "删除成功!";
                objJsonResult.data = null;
                return objJsonResult;
            }
            catch (Exception e)
            {
@@ -1505,251 +3080,6 @@
            }
        }
        #endregion
        #region 用户关联客户 文件上传
        [Route("Xt_User/Gy_UserCustomer_ImportByExcel")]
        [HttpPost]
        public object Gy_UserCustomer_ImportByExcel()
        {
            try
            {
                //var WorkBookName = HttpContext.Current.Request["WorkBookName"];
                //DBUtility.ClsPub.HOrgID = long.Parse(HttpContext.Current.Request["HOrgID"]);
                //获取文件名称
                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 tb2 = new DataTable("dt2");
                //添加列名
                for (int i = 0; i < ExcelDs.Tables[0].Columns.Count; i++)
                {
                    tb2.Columns.Add(ExcelDs.Tables[0].Rows[0][i].ToString());
                }
                //模板缺少列 但需要从数据库中查询出来显示在页面的字段
                tb2.Columns.Add("HCusID", typeof(Int32));//组织ID
                tb2.Columns.Add("HUserID", typeof(Int32));//供应商
                //添加数据
                for (int i = 1; i < ExcelDs.Tables[0].Rows.Count; i++)
                {
                    DataRow row = tb2.NewRow();
                    for (int j = 0; j < ExcelDs.Tables[0].Columns.Count; j++)
                    {
                        row[j] = ExcelDs.Tables[0].Rows[i][j].ToString();
                    }
                    tb2.Rows.Add(row);
                }
                //查询Excel文件中没有的列
                var error = "";
                if (!tb2.Columns.Contains("客户代码"))
                {
                    error += "没有找到【客户代码】的标题,";
                }
                if (!tb2.Columns.Contains("客户名称"))
                {
                    error += "没有找到【客户名称】的标题,";
                }
                if (!tb2.Columns.Contains("用户名称"))
                {
                    error += "没有找到【用户名称】的标题,";
                }
                if (error.Length > 0)
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = $"Excel模板存在错误,{error}\r\n";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                //查询数据赋给数据表
                string err = "";
                for (int i = 0; i <= tb2.Rows.Count - 1; i++)
                {
                    string HCusNumber = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["客户代码"].ToString());
                    string HCusName = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["客户名称"].ToString());
                    string HUserName = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["用户名称"].ToString());
                    int index = i + 1;
                    string sql = "";
                    if (HCusNumber != "" && HUserName != "")
                    {
                        //获取客户内码
                        sql = "select * from Gy_Customer where HNumber = '" + HCusNumber + "'";
                        string HCusID = "0";
                        ds = oCN.RunProcReturn(sql, "Gy_Customer");
                        if (ds.Tables[0].Rows.Count == 0)
                        {
                            err += "第" + index + "行,客户不存在!";
                            continue;
                        }
                        else
                        {
                            tb2.Rows[i]["HCusID"] = ds.Tables[0].Rows[0]["HItemID"].ToString();
                            HCusID = ds.Tables[0].Rows[0]["HItemID"].ToString();
                        }
                        //获取用户内码
                        sql = "select * from Gy_Czygl where Czymc = '" + HUserName + "'";
                        string HUserID = "";
                        ds = oCN.RunProcReturn(sql, "Gy_Czygl");
                        if (ds.Tables[0].Rows.Count == 0)
                        {
                            err += "第" + index + "行,用户不存在!";
                            continue;
                        }
                        else
                        {
                            tb2.Rows[i]["HUserID"] = ds.Tables[0].Rows[0]["Czybm"].ToString();
                            HUserID = ds.Tables[0].Rows[0]["Czybm"].ToString();
                        }
                        //判断表中是否已经存在该用户关联客户
                        sql = "select * from Gy_UserCustomerRelation where HCusID = " + HCusID + " and HUserID = '" + HUserID + "'";
                        ds = oCN.RunProcReturn(sql, "Gy_UserCustomerRelation");
                        if (ds.Tables[0].Rows.Count > 0)
                        {
                            err += "第" + index + "行,该用户与客户已经关联!";
                            continue;
                        }
                    }
                    else
                    {
                        err += "第" + index + "行,客户代码或用户名称为空!";
                        continue;
                    }
                }
                if (err.Length > 0)
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "导入错误:" + err;
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = error;
                objJsonResult.data = tb2;
                return objJsonResult;
            }
            catch (Exception e)
            {
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
        #endregion
        #region 用户关联客户 导入(保存)
        [Route("Xt_User/Gy_UserCustomer_ImportByExcel_Save")]
        [HttpPost]
        public object Gy_UserCustomer_ImportByExcel_Save([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();
            try
            {
                if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationCustomer_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();
                string err = "";
                int i = 1;
                string sql = "";
                foreach (Dictionary<string, string> item in list)
                {
                    string HUserID = item["HUserID"].ToString();//供应商
                    string HUserName = item["用户名称"].ToString();//物料ID
                    string HCusID = item["HCusID"].ToString();//组织ID
                    string HCusNumber = item["客户代码"].ToString();
                    string HCusName = item["客户名称"].ToString();
                    sql = "select * from Gy_UserCustomerRelation where HUserID = '" + HUserID + "' and HCusID = " + HCusID;
                    ds = oCN.RunProcReturn(sql, "Gy_UserCustomerRelation");
                    if (ds.Tables[0].Rows.Count == 0)
                    {
                        sql = "insert into Gy_UserCustomerRelation(HUserID,HCusID)" +
                            "values(" +
                            "'" + HUserID + "'" +
                            "," + HCusID + "" +
                            ")";
                        oCN.RunProc(sql);
                    }
                    else
                    {
                        err += "第" + i + "行:用户已经关联该客户!";
                    }
                    i++;
                }
                //判断是否存在错误
                if (err.Length > 0)
                {
                    oCN.RollBack();
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "导入错误:"+ err;
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                oCN.Commit();
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "导入成功!";
                objJsonResult.data = null;
                return objJsonResult;
            }
            catch (Exception e)
            {
                LogService.Write(e);
                oCN.RollBack();
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
        #endregion
        #region 用户关联客户保存
        [Route("Xt_User/SaveUserCustomer")]
        [HttpPost]
@@ -1807,6 +3137,837 @@
        }
        #endregion
        #region 用户关联客户 文件上传
        [Route("Xt_User/Gy_UserCustomer_ImportByExcel")]
        [HttpPost]
        public object Gy_UserCustomer_ImportByExcel()
        {
            try
            {
                //var WorkBookName = HttpContext.Current.Request["WorkBookName"];
                //DBUtility.ClsPub.HOrgID = long.Parse(HttpContext.Current.Request["HOrgID"]);
                //获取文件名称
                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 tb2 = new DataTable("dt2");
                //添加列名
                for (int i = 0; i < ExcelDs.Tables[0].Columns.Count; i++)
                {
                    tb2.Columns.Add(ExcelDs.Tables[0].Rows[0][i].ToString());
                }
                //模板缺少列 但需要从数据库中查询出来显示在页面的字段
                tb2.Columns.Add("客户内码", typeof(string));//客户内码
                tb2.Columns.Add("判定结果", typeof(string));//判定结果
                //添加数据
                for (int i = 1; i < ExcelDs.Tables[0].Rows.Count; i++)
                {
                    DataRow row = tb2.NewRow();
                    for (int j = 0; j < ExcelDs.Tables[0].Columns.Count; j++)
                    {
                        row[j] = ExcelDs.Tables[0].Rows[i][j].ToString();
                    }
                    tb2.Rows.Add(row);
                }
                //查询Excel文件中没有的列
                var error = "";
                if (!tb2.Columns.Contains("用户代码"))
                {
                    error += "没有找到【用户代码】的标题,";
                }
                if (!tb2.Columns.Contains("用户名称"))
                {
                    error += "没有找到【用户名称】的标题,";
                }
                if (!tb2.Columns.Contains("客户代码"))
                {
                    error += "没有找到【客户代码】的标题,";
                }
                if (!tb2.Columns.Contains("客户名称"))
                {
                    error += "没有找到【客户名称】的标题,";
                }
                if (!tb2.Columns.Contains("组织代码"))
                {
                    error += "没有找到【组织代码】的标题,";
                }
                if (!tb2.Columns.Contains("组织名称"))
                {
                    error += "没有找到【组织名称】的标题,";
                }
                if (error.Length > 0)
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = $"Excel模板存在错误,{error}\r\n";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                //查询数据赋给数据表
                for (int i = 0; i <= tb2.Rows.Count - 1; i++)
                {
                    string HUserID = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["用户代码"].ToString());
                    string HUserName = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["用户名称"].ToString());
                    string HCusNumber = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["客户代码"].ToString());
                    string HCusName = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["客户名称"].ToString());
                    string HOrgNumber = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["组织代码"].ToString());
                    string HOrgName = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["组织名称"].ToString());
                    int index = i + 1;
                    //string sql = "";
                    ////判定用户是否存在并设置数据
                    //sql = "select * from Gy_Czygl where Czybm = '" + HUserID + "'";
                    //ds = oCN.RunProcReturn(sql, "Gy_Czygl");
                    //if (ds.Tables[0].Rows.Count > 0)
                    //{
                    //    tb2.Rows[i]["用户名称"] = ds.Tables[0].Rows[0]["Czymc"];
                    //}
                    //else
                    //{
                    //    sql = "select * from Gy_Czygl where Czymc = '" + HUserName + "'";
                    //    ds = oCN.RunProcReturn(sql, "Gy_Czygl");
                    //    if (ds.Tables[0].Rows.Count > 0)
                    //    {
                    //        tb2.Rows[i]["用户代码"] = ds.Tables[0].Rows[0]["Czybm"];
                    //    }
                    //}
                    ////判定客户是否存在并设置数据
                    //sql = "select c.HItemID 客户内码,c.HNumber 客户代码,c.HName 客户名称,isnull(c.HUSEORGID,0) 组织内码,isnull(o.HNumber,'') 组织代码,isnull(o.Hname,'') 组织名称 from " +
                    //    "Gy_Customer as c " +
                    //    "left join Xt_ORGANIZATIONS o on c.HUSEORGID = o.HItemID " +
                    //    "where " +
                    //        "c.HNumber = '" + HCusNumber + "' " +
                    //        "and isnull(o.HNumber,'')<>'' and isnull(o.HNumber,'') = '" + HOrgNumber + "'";
                    //ds = oCN.RunProcReturn(sql, "Gy_Customer");
                    //if(ds.Tables[0].Rows.Count > 0)
                    //{
                    //    tb2.Rows[i]["客户内码"] = ds.Tables[0].Rows[0]["客户内码"];
                    //    tb2.Rows[i]["客户名称"] = ds.Tables[0].Rows[0]["客户名称"];
                    //    tb2.Rows[i]["组织名称"] = ds.Tables[0].Rows[0]["组织名称"];
                    //}
                    //else
                    //{
                    //    sql = "select c.HItemID 客户内码,c.HNumber 客户代码,c.HName 客户名称,isnull(c.HUSEORGID,0) 组织内码,isnull(o.HNumber,'') 组织代码,isnull(o.Hname,'') 组织名称 from " +
                    //    "Gy_Customer as c " +
                    //    "left join Xt_ORGANIZATIONS o on c.HUSEORGID = o.HItemID " +
                    //    "where " +
                    //        "c.HNumber = '" + HCusNumber + "' " +
                    //        "and isnull(o.HName,'')<>'' and isnull(o.HName,'') = '" + HOrgName + "'";
                    //    ds = oCN.RunProcReturn(sql, "Gy_Customer");
                    //    if (ds.Tables[0].Rows.Count > 0)
                    //    {
                    //        tb2.Rows[i]["客户内码"] = ds.Tables[0].Rows[0]["客户内码"];
                    //        tb2.Rows[i]["客户名称"] = ds.Tables[0].Rows[0]["客户名称"];
                    //        tb2.Rows[i]["组织代码"] = ds.Tables[0].Rows[0]["组织代码"];
                    //    }
                    //}
                    tb2.Rows[i]["判定结果"] = "";
                }
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = error;
                objJsonResult.data = tb2;
                return objJsonResult;
            }
            catch (Exception e)
            {
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
        #endregion
        #region 用户关联客户 导入(数据验证)
        [Route("Xt_User/Gy_UserCustomer_ImportByExcel_Confirm")]
        [HttpPost]
        public object Gy_UserCustomer_ImportByExcel_Confirm([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[] importFieldList = sArray[2].ToString().Split(new string[] { ";" }, StringSplitOptions.RemoveEmptyEntries);
            try
            {
                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);
                }
                //创建临时表并设置列名
                DataTable tb2 = new DataTable("dt2");
                tb2.Columns.Add("用户代码", typeof(string));
                tb2.Columns.Add("用户名称", typeof(string));
                tb2.Columns.Add("客户内码", typeof(string));
                tb2.Columns.Add("客户代码", typeof(string));
                tb2.Columns.Add("客户名称", typeof(string));
                tb2.Columns.Add("组织代码", typeof(string));
                tb2.Columns.Add("组织名称", typeof(string));
                tb2.Columns.Add("判定结果", typeof(string));
                string error = "";
                int i = 1;
                string sql = "";
                foreach (Dictionary<string, string> item in list)
                {
                    //记录判定结果
                    string err = "";
                    DataRow row = tb2.NewRow();
                    tb2.Rows.Add(row);
                    string HUserID = item["用户代码"].ToString();
                    string HUserName = item["用户名称"].ToString();
                    string HCusID = item["客户内码"].ToString();
                    string HCusNumber = item["客户代码"].ToString();
                    string HCusName = item["客户名称"].ToString();
                    string HOrgNumber = item["组织代码"].ToString();
                    string HOrgName = item["组织名称"].ToString();
                    tb2.Rows[i - 1]["用户代码"] = HUserID;
                    tb2.Rows[i - 1]["用户名称"] = HUserName;
                    tb2.Rows[i - 1]["客户内码"] = HCusID;
                    tb2.Rows[i - 1]["客户代码"] = HCusNumber;
                    tb2.Rows[i - 1]["客户名称"] = HCusName;
                    tb2.Rows[i - 1]["组织代码"] = HOrgNumber;
                    tb2.Rows[i - 1]["组织名称"] = HOrgName;
                    tb2.Rows[i - 1]["判定结果"] = "";
                    //根据导入字段获取用户相关数据,并进行校验
                    sql = "";
                    if (importFieldList[0] == "HUserID")
                    {
                        sql = "select * from Gy_Czygl where Czybm = '" + HUserID + "'";
                    }
                    else if(importFieldList[0] == "HUserName")
                    {
                        sql = "select * from Gy_Czygl where Czymc = '" + HUserName + "'";
                    }
                    ds = oCN.RunProcReturn(sql, "Gy_Czygl");
                    if (ds.Tables[0].Rows.Count == 0)
                    {
                        err += "用户不存在;";
                    }
                    else
                    {
                        tb2.Rows[i - 1]["用户代码"] = ds.Tables[0].Rows[0]["Czybm"];
                        tb2.Rows[i - 1]["用户名称"] = ds.Tables[0].Rows[0]["Czymc"];
                        HUserID = ds.Tables[0].Rows[0]["Czybm"].ToString();
                        HUserName = ds.Tables[0].Rows[0]["Czymc"].ToString();
                    }
                    //根据导入字段获取客户相关数据,并进行校验
                    sql = "";
                    if (importFieldList[1] == "HOrgNumber")
                    {
                        sql = "select * from Xt_ORGANIZATIONS where HNumber = '" + HOrgNumber + "'";
                    }
                    else if (importFieldList[1] == "HOrgName")
                    {
                        sql = "select * from Xt_ORGANIZATIONS where HName = '" + HOrgName + "'";
                    }
                    ds = oCN.RunProcReturn(sql, "Xt_ORGANIZATIONS");
                    if (ds.Tables[0].Rows.Count == 0)
                    {
                        err += "组织不存在;";
                        HCusID = "0";
                        tb2.Rows[i - 1]["客户内码"] = "0";
                    }
                    else
                    {
                        tb2.Rows[i - 1]["组织代码"] = ds.Tables[0].Rows[0]["HNumber"];
                        tb2.Rows[i - 1]["组织名称"] = ds.Tables[0].Rows[0]["HName"];
                        sql = "select c.* from " +
                        "Gy_Customer as c " +
                        "left join Xt_ORGANIZATIONS o on c.HUSEORGID = o.HItemID " +
                        "where c.HNumber = '" + HCusNumber + "' " +
                        "and o.HNumber = '" + ds.Tables[0].Rows[0]["HNumber"] + "' " +
                        "and o.HName = '" + ds.Tables[0].Rows[0]["HName"] + "'";
                        ds = oCN.RunProcReturn(sql, "Gy_Customer");
                        if (ds.Tables[0].Rows.Count == 0)
                        {
                            err += "该组织下客户不存在;";
                            HCusID = "0";
                            tb2.Rows[i - 1]["客户内码"] = "0";
                        }
                        else
                        {
                            tb2.Rows[i - 1]["客户内码"] = ds.Tables[0].Rows[0]["HItemID"];
                            tb2.Rows[i - 1]["客户代码"] = ds.Tables[0].Rows[0]["HNumber"];
                            tb2.Rows[i - 1]["客户名称"] = ds.Tables[0].Rows[0]["HName"];
                            HCusID = ds.Tables[0].Rows[0]["HItemID"].ToString();
                        }
                    }
                    //判定客户是否已经关联用户
                    sql = "select a.HItemID,a.HCusID,c.HName HCusName,a.HUserID,b.Czymc " +
                            " from Gy_UserCustomerRelation as a" +
                            " left join Gy_Czygl as b on a.HUserID = b.Czybm " +
                            " left join Gy_Customer as c on a.HCusID = c.HItemID " +
                            " where a.HCusID = " + HCusID;
                    ds = oCN.RunProcReturn(sql, "Gy_UserCustomerRelation");
                    if (ds.Tables[0].Rows.Count > 0 && ds.Tables[0].Rows[0]["HUserID"].ToString()!= HUserID)
                    {
                        err += "用户【" + ds.Tables[0].Rows[0]["Czymc"].ToString() + "】已经关联客户【" + ds.Tables[0].Rows[0]["HCusName"].ToString() + "】;";
                    }
                    else
                    {
                        //判定该用户与客户是否已经关联
                        sql = "select * from Gy_UserCustomerRelation where HUserID = '" + HUserID + "' and HCusID = " + HCusID;
                        ds = oCN.RunProcReturn(sql, "Gy_UserCustomerRelation");
                        if (ds.Tables[0].Rows.Count > 0)
                        {
                            err += "用户已经关联该客户;";
                        }
                    }
                    tb2.Rows[i - 1]["判定结果"] = err;
                    error += err;
                    i++;
                }
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = (error.Length>0?"0":"1");
                objJsonResult.data = tb2;
                return objJsonResult;
            }
            catch (Exception e)
            {
                LogService.Write(e);
                oCN.RollBack();
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
        #endregion
        #region 用户关联客户 导入(保存)
        [Route("Xt_User/Gy_UserCustomer_ImportByExcel_Save")]
        [HttpPost]
        public object Gy_UserCustomer_ImportByExcel_Save([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 saveType = sArray[2].ToString();
            try
            {
                if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationCustomer_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);
                }
                if(saveType == "1")
                {
                    oCN.BeginTran();
                    string err = "";
                    int i = 1;
                    string sql = "";
                    foreach (Dictionary<string, string> item in list)
                    {
                        string HUserID = item["用户代码"].ToString();//供应商
                        string HUserName = item["用户名称"].ToString();//物料ID
                        string HCusID = item["客户内码"].ToString();//组织ID
                        string HCusNumber = item["客户代码"].ToString();
                        string HCusName = item["客户名称"].ToString();
                        string HOrgNumber = item["组织代码"].ToString();
                        string HOrgName = item["组织名称"].ToString();
                        sql = "select * from Gy_UserCustomerRelation where HUserID = '" + HUserID + "' and HCusID = " + HCusID;
                        ds = oCN.RunProcReturn(sql, "Gy_UserCustomerRelation");
                        if (ds.Tables[0].Rows.Count == 0)
                        {
                            sql = "select a.HItemID,a.HCusID,c.HName HCusName,a.HUserID,b.Czymc " +
                            " from Gy_UserCustomerRelation as a" +
                            " left join Gy_Czygl as b on a.HUserID = b.Czybm " +
                            " left join Gy_Customer as c on a.HCusID = c.HItemID " +
                            " where a.HCusID = " + HCusID;
                            ds = oCN.RunProcReturn(sql, "Gy_UserCustomerRelation");
                            if (ds.Tables[0].Rows.Count == 0)
                            {
                                sql = "insert into Gy_UserCustomerRelation(HUserID,HCusID)" +
                                "values(" +
                                "'" + HUserID + "'" +
                                "," + HCusID + "" +
                                ")";
                                oCN.RunProc(sql);
                            }
                            else
                            {
                                err += "第" + i + "行:用户【" + ds.Tables[0].Rows[0]["Czymc"].ToString() + "】已经关联客户【" + ds.Tables[0].Rows[0]["HCusName"].ToString() + "】,客户不可被多个用户关联!";
                            }
                            i++;
                        }
                        else
                        {
                        }
                        i++;
                    }
                    //判断是否存在错误
                    if (err.Length > 0)
                    {
                        oCN.RollBack();
                        objJsonResult.code = "0";
                        objJsonResult.count = 0;
                        objJsonResult.Message = "导入错误:" + err;
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                }
                else if(saveType == "2")
                {
                    oCN.BeginTran();
                    string err = "";
                    int i = 1;
                    string sql = "";
                    foreach (Dictionary<string, string> item in list)
                    {
                        string HUserID = item["用户代码"].ToString();//供应商
                        string HUserName = item["用户名称"].ToString();//物料ID
                        string HCusID = item["客户内码"].ToString();//组织ID
                        string HCusNumber = item["客户代码"].ToString();
                        string HCusName = item["客户名称"].ToString();
                        string HOrgNumber = item["组织代码"].ToString();
                        string HOrgName = item["组织名称"].ToString();
                        sql = "select a.HItemID,a.HCusID,c.HName HCusName,a.HUserID,b.Czymc " +
                            " from Gy_UserCustomerRelation as a" +
                            " left join Gy_Czygl as b on a.HUserID = b.Czybm " +
                            " left join Gy_Customer as c on a.HCusID = c.HItemID " +
                            " where a.HCusID = " + HCusID;
                        ds = oCN.RunProcReturn(sql, "Gy_UserCustomerRelation");
                        if (ds.Tables[0].Rows.Count > 0 && ds.Tables[0].Rows[0]["HUserID"].ToString()!=HUserID)
                        {
                            err += "第" + i + "行:用户【" + ds.Tables[0].Rows[0]["Czymc"].ToString() + "】已经关联客户【" + ds.Tables[0].Rows[0]["HCusName"].ToString() + "】,客户不可被多个用户关联!";
                        }
                        else
                        {
                            sql = "select * from Gy_UserCustomerRelation where HUserID = '" + HUserID + "' and HCusID = " + HCusID;
                            ds = oCN.RunProcReturn(sql, "Gy_UserCustomerRelation");
                            if (ds.Tables[0].Rows.Count == 0)
                            {
                                sql = "insert into Gy_UserCustomerRelation(HUserID,HCusID)" +
                                    "values(" +
                                    "'" + HUserID + "'" +
                                    "," + HCusID + "" +
                                    ")";
                                oCN.RunProc(sql);
                            }
                            else
                            {
                                err += "第" + i + "行:用户已经关联该客户!";
                            }
                        }
                        i++;
                    }
                    //判断是否存在错误
                    if (err.Length > 0)
                    {
                        oCN.RollBack();
                        objJsonResult.code = "0";
                        objJsonResult.count = 0;
                        objJsonResult.Message = "导入错误:" + err;
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                }
                oCN.Commit();
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "导入成功!";
                objJsonResult.data = null;
                return objJsonResult;
            }
            catch (Exception e)
            {
                LogService.Write(e);
                oCN.RollBack();
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
        #endregion
        #region 用户关联客户维护列表
        /// <summary>
        ///参数:string sql。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/UserRelationCustomerlist")]
        [HttpGet]
        public object UserRelationCustomerlist(string sWhere, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationCustomer_Query", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无查看权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                string sql = "";
                if (sWhere == null || sWhere.Equals(""))
                {
                    sql = "select * from h_v_Gy_UserCustomerRelationList_Query order by 用户代码 asc,客户代码 asc";
                    ds = oCN.RunProcReturn(sql, "Gy_UserCustomerRelation");
                }
                else
                {
                    sql = "select * from h_v_Gy_UserCustomerRelationList_Query where 1=1 ";
                    sql = sql + sWhere + " order by 用户代码 asc,客户代码 asc";
                    ds = oCN.RunProcReturn(sql, "Gy_UserCustomerRelation");
                }
                //添加列名
                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.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                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 HInterID。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/UserRelationCustomerlist_Drop")]
        [HttpGet]
        public object UserRelationCustomerlist_Drop(string HInterID, string user)
        {
            try
            {
                string s = "";
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationCustomer_Drop", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无删除权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                if (HInterID == null || HInterID.Equals(""))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "HInterID不能为空!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                oCN.BeginTran();
                string sql = "delete from Gy_UserCustomerRelation where HItemID = " + HInterID;
                oCN.RunProc(sql);
                oCN.Commit();
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "Sucess!";
                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("Xt_User/UserRelationCustomerlist_EditInit")]
        [HttpGet]
        public object UserRelationCustomerlist_EditInit(int HItemID, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationCustomer_Query", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无查看权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                string sql = "select * from h_v_Gy_UserCustomerRelationList_Query where HItemID = " + HItemID;
                ds = oCN.RunProcReturn(sql, "h_v_Gy_UserCustomerRelationList_Query");
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "Sucess!";
                objJsonResult.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                return objJsonResult;
            }
            catch (Exception e)
            {
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
        #endregion
        #region 用户关联客户维护 保存
        [Route("Xt_User/UserRelationCustomerlist_Save")]
        [HttpPost]
        public object UserRelationCustomerlist_Save([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 saveType = sArray[2].ToString();
            try
            {
                if (!DBUtility.ClsPub.Security_Log("Gy_UserRelationCustomer_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);
                }
                if (saveType == "1")
                {
                    oCN.BeginTran();
                    string err = "";
                    int i = 1;
                    string sql = "";
                    foreach (Dictionary<string, string> item in list)
                    {
                        string HItemID = item["HItemID"].ToString();        //
                        string HUserID = item["HUserID"].ToString();        //用户代码
                        string HUserName = item["HUserName"].ToString();    //用户名称
                        string HCusID = item["HCusID"].ToString();          //客户内码
                        string HCusNumber = item["HCusNumber"].ToString();  //客户代码
                        string HCusName = item["HCusName"].ToString();      //客户名称
                        sql = "select a.HItemID,a.HCusID,c.HName HCusName,a.HUserID,b.Czymc " +
                            " from Gy_UserCustomerRelation as a" +
                            " left join Gy_Czygl as b on a.HUserID = b.Czybm " +
                            " left join Gy_Customer as c on a.HCusID = c.HItemID " +
                            " where a.HCusID = " + HCusID;
                        ds = oCN.RunProcReturn(sql, "Gy_UserCustomerRelation");
                        if (ds.Tables[0].Rows.Count == 0)
                        {
                            sql = "insert into Gy_UserCustomerRelation(HUserID,HCusID)" +
                                "values(" +
                                "'" + HUserID + "'" +
                                "," + HCusID + "" +
                                ")";
                            oCN.RunProc(sql);
                        }
                        else
                        {
                            err += "第" + i + "行:用户【" + ds.Tables[0].Rows[0]["Czymc"].ToString() + "】已经关联客户【" + ds.Tables[0].Rows[0]["HCusName"].ToString() + "】,客户不可被多个用户关联!";
                        }
                        i++;
                    }
                    //判断是否存在错误
                    if (err.Length > 0)
                    {
                        oCN.RollBack();
                        objJsonResult.code = "0";
                        objJsonResult.count = 0;
                        objJsonResult.Message = "保存失败:" + err;
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                }
                else if (saveType == "3")
                {
                    oCN.BeginTran();
                    string err = "";
                    int i = 1;
                    string sql = "";
                    foreach (Dictionary<string, string> item in list)
                    {
                        string HItemID = item["HItemID"].ToString();        //
                        string HUserID = item["HUserID"].ToString();        //用户代码
                        string HUserName = item["HUserName"].ToString();    //用户名称
                        string HCusID = item["HCusID"].ToString();          //客户内码
                        string HCusNumber = item["HCusNumber"].ToString();  //客户代码
                        string HCusName = item["HCusName"].ToString();      //客户名称
                        sql = "select * from Gy_UserCustomerRelation where HItemID = " + HItemID;
                        ds = oCN.RunProcReturn(sql, "Gy_UserCustomerRelation");
                        if (ds.Tables[0].Rows.Count > 0)
                        {
                            sql = "select a.HItemID,a.HCusID,c.HName HCusName,a.HUserID,b.Czymc " +
                            " from Gy_UserCustomerRelation as a" +
                            " left join Gy_Czygl as b on a.HUserID = b.Czybm " +
                            " left join Gy_Customer as c on a.HCusID = c.HItemID " +
                            " where a.HCusID = " + HCusID + " and a.HItemID <> " + HItemID;
                            ds = oCN.RunProcReturn(sql, "Gy_UserCustomerRelation");
                            if(ds.Tables[0].Rows.Count == 0)
                            {
                                sql = "update Gy_UserCustomerRelation set " +
                                      "HUserID = '" + HUserID + "' " +
                                      ",HCusID = " + HCusID + " " +
                                      "where HItemID = " + HItemID;
                                oCN.RunProc(sql);
                            }
                            else
                            {
                                err += "第" + i + "行:用户【" + ds.Tables[0].Rows[0]["Czymc"].ToString() + "】已经关联客户【" + ds.Tables[0].Rows[0]["HCusName"].ToString() + "】,客户不可被多个用户关联!";
                            }
                        }
                        else
                        {
                            err += "第" + i + "行:记录不存在!";
                        }
                        i++;
                    }
                    //判断是否存在错误
                    if (err.Length > 0)
                    {
                        oCN.RollBack();
                        objJsonResult.code = "0";
                        objJsonResult.count = 0;
                        objJsonResult.Message = "保存失败:" + err;
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                }
                oCN.Commit();
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "保存成功!";
                objJsonResult.data = null;
                return objJsonResult;
            }
            catch (Exception e)
            {
                LogService.Write(e);
                oCN.RollBack();
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
        #endregion
        #region  根据用户编码查找已分配工序列表
        [Route("Xt_User/ProcessPlaylist")]
        [HttpGet]
@@ -1844,7 +4005,7 @@
        }
        #endregion
        #region 用户关联工序保存
        #region 用户关联工序保存  Excel导入
        [Route("Xt_User/SaveUserProcess")]
        [HttpPost]
        public object SaveUserProcess([FromBody] JObject msg)
@@ -1888,6 +4049,466 @@
                return objJsonResult;
            }
        }
        /// <summary>
        /// 文件上传解析回显
        /// </summary>
        /// <returns></returns>
        [Route("Xt_User/UserProcessBill_Excel")]
        [HttpPost]
        public object UserProcessBill_Excel()
        {
            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 tb2 = new DataTable("dt2");
                //添加列名
                for (int i = 0; i < ExcelDs.Tables[0].Columns.Count; i++)
                {
                    tb2.Columns.Add(ExcelDs.Tables[0].Rows[0][i].ToString());
                }
                ////Excel模板缺少列 但需要从数据库中查询出来显示在页面的字段
                tb2.Columns.Add("HProcID", typeof(Int32));//工序ID
                //添加数据
                for (int i = 1; i < ExcelDs.Tables[0].Rows.Count; i++)
                {
                    DataRow row = tb2.NewRow();
                    for (int j = 0; j < ExcelDs.Tables[0].Columns.Count; j++)
                    {
                        row[j] = ExcelDs.Tables[0].Rows[i][j].ToString();
                    }
                    tb2.Rows.Add(row);
                }
                var error = "";
                ////查询用户关联供应商没有的列
                if (!tb2.Columns.Contains("用户代码"))
                    error += "没有找到【用户代码】的标题,";
                if (!tb2.Columns.Contains("用户名称"))
                    error += "没有找到【用户名称】的标题,";
                if (!tb2.Columns.Contains("工序代码"))
                    error += "没有找到【工序代码】的标题,";
                if (!tb2.Columns.Contains("工序名称"))
                    error += "没有找到【工序名称】的标题,";
                if (error.Length > 0)
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = $"Excel模板存在错误,{error}\r\n";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                for (int i = 0; i <= tb2.Rows.Count - 1; i++)
                {
                    string czybm = "";
                    string czymc = "";
                    string HNumber = "";
                    string HName = "";
                    //HORGNumber = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["组织编码"].ToString());
                    //HORGName = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["组织"].ToString());
                    czybm = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["用户代码"].ToString());
                    czymc = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["用户名称"].ToString());
                    HNumber = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["工序代码"].ToString());
                    HName = DBUtility.ClsPub.isStrNull(tb2.Rows[i]["工序名称"].ToString());
                    int index = i + 1;
                    //检查用户与工序代码是否都为空
                    if (czybm != "" || HNumber != "")
                    {
                        //查询工序
                        ds = oCN.RunProcReturn("select * from Gy_Process where  HNumber='" + HNumber + "'", "Gy_Process");
                        if (ds.Tables[0].Rows.Count == 0)
                        {
                            objJsonResult.code = "0";
                            objJsonResult.count = 0;
                            objJsonResult.Message = "第" + index + "行,工序名称:" + HName + ",不存在!";
                            objJsonResult.data = null;
                            return objJsonResult;
                        }
                        else
                        {
                            tb2.Rows[i]["HProcID"] = ds.Tables[0].Rows[0]["HItemID"].ToString(); //工序ID
                        }
                        //查询用户
                        ds = oCN.RunProcReturn("select * from Gy_Czygl where  czybm='" + czybm + "'", "Gy_Czygl");
                        if (ds.Tables[0].Rows.Count == 0)
                        {
                            objJsonResult.code = "0";
                            objJsonResult.count = 0;
                            objJsonResult.Message = "第" + index + "行,用户: " + czymc + ",不存在!";
                            objJsonResult.data = null;
                            return objJsonResult;
                        }
                        else
                        {
                            //tb2.Rows[i]["czybm"] = ds.Tables[0].Rows[0]["czybm"].ToString();
                        }
                        //审核代码是否合理
                        if (!DBUtility.ClsPub.AllowNumber(czybm))
                        {
                            objJsonResult.code = "0";
                            objJsonResult.count = 0;
                            objJsonResult.Message = "第" + index + "行,用户代码中不能出现连续‘.’并且首位末位不能为‘.’!";
                            objJsonResult.data = null;
                            return objJsonResult;
                        }
                    }
                    else
                    {
                        objJsonResult.code = "1";
                        objJsonResult.count = 1;
                        objJsonResult.Message = "第" + index + "行,用户代码为空";
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                }
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = error;
                objJsonResult.data = tb2;
                return objJsonResult;
            }
            catch (Exception e)
            {
                objJsonResult.code = "0";
                objJsonResult.count = 0;
                objJsonResult.Message = "Exception!" + e.ToString();
                objJsonResult.data = null;
                return objJsonResult;
            }
        }
        /// <summary>
        /// 导入保存
        /// </summary>
        /// <param name="sMainSub"></param>
        /// <returns></returns>
        [Route("Xt_User/UserProcessBill_btnSave")]
        [HttpPost]
        public object UserProcessBill_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();
            try
            {
                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 HProcID = item["HProcID"].ToString();//工序ID
                    string HUserID = item["用户代码"].ToString();//用户代码
                    string czymc = item["用户名称"].ToString();//用户名称
                    string HNumber = item["工序代码"].ToString();//工序代码
                    string HName = item["工序名称"].ToString();//工序名称
                    var ds = oCN.RunProcReturn("select * from Gy_UserByProcess where  HProcID='" + HProcID + "'and HUserID='" + HUserID + "'", "Gy_UserByProcess");
                    if (ds.Tables[0].Rows.Count > 0)
                    {
                        oCN.RollBack();
                        objJsonResult.code = "0";
                        objJsonResult.count = 0;
                        objJsonResult.Message = "第" + i + "行, 用户: " + czymc + " 与 工序名: " + HName + ",已存在,或,插入表格有重复信息";
                        objJsonResult.data = null;
                        return objJsonResult;
                    }
                    else
                    {
                        oCN.RunProc("insert into Gy_UserByProcess (HProcID,HUserID) values ('" + HProcID + "','" + HUserID + "')");
                    }
                    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
        #region  用户关联工序列表查询
        [Route("Xt_User/UserProcesslist")]
        [HttpGet]
        public object UserProcesslist(string sWhere, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserProcessList_Query", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无查看权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                string sql1 = "select * from h_v_Gy_UserProcess where 1 = 1";
                string sql = sql1 + sWhere + " order by 用户代码 ";
                ds = oCN.RunProcReturn(sql, "h_v_Gy_UserProcess");
                //添加列名
                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.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                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 HInterID。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/Gy_UserProcessDrop")]
        [HttpGet]
        public object Gy_UserProcessDrop(string HItemID, string user)
        {
            try
            {
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserProcessList_Drop", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无删除权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                if (HItemID == null || HItemID.Equals(""))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "HInterID不能为空!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                oCN.BeginTran();
                string sql = "delete from Gy_UserByProcess where HItemID = " + HItemID;
                oCN.RunProc(sql);
                oCN.Commit();
                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("Xt_User/Gy_UserSupplierRelationList")]
        [HttpGet]
        public object Gy_UserSupplierRelationList(string sWhere, string user)
        {
            try
            {
                List<object> columnNameList = new List<object>();
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserSupplierRelationList", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无查看权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                string sql = "";
                if (sWhere == null || sWhere.Equals(""))
                {
                    sql = "select * from h_v_Gy_UserSupplierRelationList_Query order by 用户代码 asc,供应商代码 asc";
                    ds = oCN.RunProcReturn(sql, "h_v_Gy_UserSupplierRelationList_Query");
                }
                else
                {
                    sql = "select * from h_v_Gy_UserSupplierRelationList_Query where 1=1 ";
                    sql = sql + sWhere + " order by 用户代码 asc,供应商代码 asc";
                    ds = oCN.RunProcReturn(sql, "h_v_Gy_UserSupplierRelationList_Query");
                }
                //添加列名
                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.data = ds.Tables[0];
                objJsonResult.list = columnNameList;
                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 HInterID。
        ///返回值:object。
        /// </summary>
        [Route("Xt_User/UserSupplierRelationList_Drop")]
        [HttpGet]
        public object UserSupplierRelationList_Drop(string HInterID, string user)
        {
            try
            {
                string s = "";
                //查看权限
                if (!DBUtility.ClsPub.Security_Log("Gy_UserSupplierRelation_Delete", 1, false, user))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "无删除权限!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                if (HInterID == null || HInterID.Equals(""))
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "HInterID不能为空!";
                    objJsonResult.data = null;
                    return objJsonResult;
                }
                oCN.BeginTran();
                string sql = "delete from Gy_UserSupplierRelation where HItemID = " + HInterID;
                oCN.RunProc(sql);
                oCN.Commit();
                objJsonResult.code = "1";
                objJsonResult.count = 1;
                objJsonResult.Message = "Sucess!";
                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
    }
}