/// <summary>
        /// 校验Excel数据,这个方法一般用于重写校验逻辑
        /// </summary>
        public virtual bool CheckImportData(string fileName, List <Spl_WareUnitConvertModel> list, ref ValidationErrors errors)
        {
            var targetFile = new FileInfo(fileName);

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

            var excelFile = new ExcelQueryFactory(fileName);

            //对应列头
            excelFile.AddMapping <Spl_WareUnitConvertModel>(x => x.Name, "换算名称");
            excelFile.AddMapping <Spl_WareUnitConvertModel>(x => x.MainUnit, "主计量单位");
            excelFile.AddMapping <Spl_WareUnitConvertModel>(x => x.AssistUnit, "辅计量单位");
            excelFile.AddMapping <Spl_WareUnitConvertModel>(x => x.ConvertRate, "换算率");
            excelFile.AddMapping <Spl_WareUnitConvertModel>(x => x.CreateTime, "创建时间");

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

            //检查数据正确性
            foreach (var row in excelContent)
            {
                var errorMessage = new StringBuilder();
                var entity       = new Spl_WareUnitConvertModel();
                entity.Id          = row.Id;
                entity.Name        = row.Name;
                entity.MainUnit    = row.MainUnit;
                entity.AssistUnit  = row.AssistUnit;
                entity.ConvertRate = row.ConvertRate;
                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 Spl_WareUnitConvertModel GetById(object id)
        {
            if (IsExists(id))
            {
                Spl_WareUnitConvert      entity = m_Rep.GetById(id);
                Spl_WareUnitConvertModel model  = new Spl_WareUnitConvertModel();
                model.Id          = entity.Id;
                model.Name        = entity.Name;
                model.MainUnit    = entity.MainUnit;
                model.AssistUnit  = entity.AssistUnit;
                model.ConvertRate = entity.ConvertRate;
                model.CreateTime  = entity.CreateTime;

                return(model);
            }
            else
            {
                return(null);
            }
        }
Example #3
0
 public JsonResult Edit(Spl_WareUnitConvertModel model)
 {
     if (model != null && ModelState.IsValid)
     {
         if (m_BLL.Edit(ref errors, model))
         {
             LogHandler.WriteServiceLog(GetUserId(), "Id" + model.Id + ",Name" + model.Name, "成功", "修改", "Spl_WareUnitConvert");
             return(Json(JsonHandler.CreateMessage(1, Resource.EditSucceed)));
         }
         else
         {
             string ErrorCol = errors.Error;
             LogHandler.WriteServiceLog(GetUserId(), "Id" + model.Id + ",Name" + model.Name + "," + ErrorCol, "失败", "修改", "Spl_WareUnitConvert");
             return(Json(JsonHandler.CreateMessage(0, Resource.EditFail + ErrorCol)));
         }
     }
     else
     {
         return(Json(JsonHandler.CreateMessage(0, Resource.EditFail)));
     }
 }
        public virtual async Task <Tuple <ValidationErrors, bool> > CreateAsync(Spl_WareUnitConvertModel model)
        {
            ValidationErrors errors = new ValidationErrors();

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

                if (entity != null)
                {
                    errors.Add(Resource.PrimaryRepeat);
                    return(new Tuple <ValidationErrors, bool>(errors, false));
                }
                entity             = new Spl_WareUnitConvert();
                entity.Id          = model.Id;
                entity.Name        = model.Name;
                entity.MainUnit    = model.MainUnit;
                entity.AssistUnit  = model.AssistUnit;
                entity.ConvertRate = model.ConvertRate;
                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 virtual bool Create(ref ValidationErrors errors, Spl_WareUnitConvertModel model)
        {
            try
            {
                Spl_WareUnitConvert entity = m_Rep.GetById(model.Id);
                if (entity != null)
                {
                    errors.Add(Resource.PrimaryRepeat);
                    return(false);
                }
                entity             = new Spl_WareUnitConvert();
                entity.Id          = model.Id;
                entity.Name        = model.Name;
                entity.MainUnit    = model.MainUnit;
                entity.AssistUnit  = model.AssistUnit;
                entity.ConvertRate = model.ConvertRate;
                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 virtual bool Edit(ref ValidationErrors errors, Spl_WareUnitConvertModel model)
        {
            try
            {
                Spl_WareUnitConvert entity = m_Rep.GetById(model.Id);
                if (entity == null)
                {
                    errors.Add(Resource.Disable);
                    return(false);
                }
                entity.Id          = model.Id;
                entity.Name        = model.Name;
                entity.MainUnit    = model.MainUnit;
                entity.AssistUnit  = model.AssistUnit;
                entity.ConvertRate = model.ConvertRate;
                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);
            }
        }
Example #7
0
        public ActionResult Edit(string id)
        {
            Spl_WareUnitConvertModel entity = m_BLL.GetById(id);

            return(View(entity));
        }