public ActionResult Edit(string id)
        {
            Spl_ContactCompanyModel entity = m_BLL.GetById(id);

            ViewBag.ContactCompanyCategory = new SelectList(ContactCompanyCategoryBLL.GetList(ref setNoPagerAscById, ""), "Id", "Name", entity.ContactCompanyCategoryId);
            return(View(entity));
        }
        /// <summary>
        /// 校验Excel数据,这个方法一般用于重写校验逻辑
        /// </summary>
        public virtual bool CheckImportData(string fileName, List <Spl_ContactCompanyModel> list, ref ValidationErrors errors)
        {
            var targetFile = new FileInfo(fileName);

            if (!targetFile.Exists)
            {
                errors.Add("导入的数据文件不存在");
                return(false);
            }

            var excelFile = new ExcelQueryFactory(fileName);

            //对应列头
            excelFile.AddMapping <Spl_ContactCompanyModel>(x => x.Code, "Code");
            excelFile.AddMapping <Spl_ContactCompanyModel>(x => x.Name, "Name");
            excelFile.AddMapping <Spl_ContactCompanyModel>(x => x.Phone, "Phone");
            excelFile.AddMapping <Spl_ContactCompanyModel>(x => x.ContactCompanyCategoryId, "ContactCompanyCategoryId");
            excelFile.AddMapping <Spl_ContactCompanyModel>(x => x.Remark, "Remark");
            excelFile.AddMapping <Spl_ContactCompanyModel>(x => x.Enable, "Enable");
            excelFile.AddMapping <Spl_ContactCompanyModel>(x => x.CreateTime, "CreateTime");

            //SheetName
            var excelContent = excelFile.Worksheet <Spl_ContactCompanyModel>(0);
            int rowIndex     = 1;

            //检查数据正确性
            foreach (var row in excelContent)
            {
                var errorMessage = new StringBuilder();
                var entity       = new Spl_ContactCompanyModel();
                entity.Id    = row.Id;
                entity.Code  = row.Code;
                entity.Name  = row.Name;
                entity.Phone = row.Phone;
                entity.ContactCompanyCategoryId = row.ContactCompanyCategoryId;
                entity.Remark     = row.Remark;
                entity.Enable     = row.Enable;
                entity.CreateTime = row.CreateTime;

                //=============================================================================
                if (errorMessage.Length > 0)
                {
                    errors.Add(string.Format(
                                   "第 {0} 列发现错误:{1}{2}",
                                   rowIndex,
                                   errorMessage,
                                   "<br/>"));
                }
                list.Add(entity);
                rowIndex += 1;
            }
            if (errors.Count > 0)
            {
                return(false);
            }
            return(true);
        }
        public virtual async Task <Tuple <ValidationErrors, bool> > CreateAsync(Spl_ContactCompanyModel model)
        {
            ValidationErrors errors = new ValidationErrors();

            try
            {
                Spl_ContactCompany entity = await m_Rep.GetByIdAsync(model.Id);

                if (entity != null)
                {
                    errors.Add(Resource.PrimaryRepeat);
                    return(new Tuple <ValidationErrors, bool>(errors, false));
                }
                entity       = new Spl_ContactCompany();
                entity.Id    = model.Id;
                entity.Code  = model.Code;
                entity.Name  = model.Name;
                entity.Phone = model.Phone;
                entity.ContactCompanyCategoryId = model.ContactCompanyCategoryId;
                entity.Remark     = model.Remark;
                entity.Enable     = model.Enable;
                entity.CreateTime = model.CreateTime;


                if (await m_Rep.CreateAsync(entity))
                {
                    return(new Tuple <ValidationErrors, bool>(errors, true));
                }
                else
                {
                    errors.Add(Resource.InsertFail);
                    return(new Tuple <ValidationErrors, bool>(errors, false));
                }
            }
            catch (Exception ex)
            {
                errors.Add(ex.Message);
                ExceptionHander.WriteException(ex);
                return(new Tuple <ValidationErrors, bool>(errors, false));
            }
        }
 public JsonResult Edit(Spl_ContactCompanyModel model)
 {
     if (model != null && ModelState.IsValid)
     {
         if (m_BLL.Edit(ref errors, model))
         {
             LogHandler.WriteServiceLog(GetUserId(), "Id" + model.Id + ",Code" + model.Name, "成功", "修改", "Spl_ContactCompany");
             return(Json(JsonHandler.CreateMessage(1, Resource.EditSucceed)));
         }
         else
         {
             string ErrorCol = errors.Error;
             LogHandler.WriteServiceLog(GetUserId(), "Id" + model.Id + ",Code" + model.Name + "," + ErrorCol, "失败", "修改", "Spl_ContactCompany");
             return(Json(JsonHandler.CreateMessage(0, Resource.EditFail + ErrorCol)));
         }
     }
     else
     {
         return(Json(JsonHandler.CreateMessage(0, Resource.EditFail)));
     }
 }
        public virtual Spl_ContactCompanyModel GetById(object id)
        {
            if (IsExists(id))
            {
                Spl_ContactCompany      entity = m_Rep.GetById(id);
                Spl_ContactCompanyModel model  = new Spl_ContactCompanyModel();
                model.Id    = entity.Id;
                model.Code  = entity.Code;
                model.Name  = entity.Name;
                model.Phone = entity.Phone;
                model.ContactCompanyCategoryId = entity.ContactCompanyCategoryId;
                model.Remark     = entity.Remark;
                model.Enable     = entity.Enable;
                model.CreateTime = entity.CreateTime;

                return(model);
            }
            else
            {
                return(null);
            }
        }
        public virtual bool Edit(ref ValidationErrors errors, Spl_ContactCompanyModel model)
        {
            try
            {
                Spl_ContactCompany entity = m_Rep.GetById(model.Id);
                if (entity == null)
                {
                    errors.Add(Resource.Disable);
                    return(false);
                }
                entity.Id    = model.Id;
                entity.Code  = model.Code;
                entity.Name  = model.Name;
                entity.Phone = model.Phone;
                entity.ContactCompanyCategoryId = model.ContactCompanyCategoryId;
                entity.Remark     = model.Remark;
                entity.Enable     = model.Enable;
                entity.CreateTime = model.CreateTime;



                if (m_Rep.Edit(entity))
                {
                    return(true);
                }
                else
                {
                    errors.Add(Resource.NoDataChange);
                    return(false);
                }
            }
            catch (Exception ex)
            {
                errors.Add(ex.Message);
                ExceptionHander.WriteException(ex);
                return(false);
            }
        }
        public virtual bool Create(ref ValidationErrors errors, Spl_ContactCompanyModel model)
        {
            try
            {
                Spl_ContactCompany entity = m_Rep.GetById(model.Id);
                if (entity != null)
                {
                    errors.Add(Resource.PrimaryRepeat);
                    return(false);
                }
                entity       = new Spl_ContactCompany();
                entity.Id    = model.Id;
                entity.Code  = model.Code;
                entity.Name  = model.Name;
                entity.Phone = model.Phone;
                entity.ContactCompanyCategoryId = model.ContactCompanyCategoryId;
                entity.Remark     = model.Remark;
                entity.Enable     = model.Enable;
                entity.CreateTime = model.CreateTime;


                if (m_Rep.Create(entity))
                {
                    return(true);
                }
                else
                {
                    errors.Add(Resource.InsertFail);
                    return(false);
                }
            }
            catch (Exception ex)
            {
                errors.Add(ex.Message);
                ExceptionHander.WriteException(ex);
                return(false);
            }
        }
 public JsonResult Create(Spl_ContactCompanyModel model)
 {
     model.Id         = ResultHelper.NewId;
     model.CreateTime = ResultHelper.NowTime;
     if (model != null && ModelState.IsValid)
     {
         if (m_BLL.Create(ref errors, model))
         {
             LogHandler.WriteServiceLog(GetUserId(), "Id" + model.Id + ",Code" + model.Name, "成功", "创建", "Spl_ContactCompany");
             return(Json(JsonHandler.CreateMessage(1, Resource.InsertSucceed)));
         }
         else
         {
             string ErrorCol = errors.Error;
             LogHandler.WriteServiceLog(GetUserId(), "Id" + model.Id + ",Code" + model.Name + "," + ErrorCol, "失败", "创建", "Spl_ContactCompany");
             return(Json(JsonHandler.CreateMessage(0, Resource.InsertFail + ErrorCol)));
         }
     }
     else
     {
         return(Json(JsonHandler.CreateMessage(0, Resource.InsertFail)));
     }
 }
        public ActionResult Details(string id)
        {
            Spl_ContactCompanyModel entity = m_BLL.GetById(id);

            return(View(entity));
        }