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

            ViewBag.WarehouseCategory = new SelectList(WarehouseCategoryBLL.GetList(ref setNoPagerAscById, ""), "Id", "Name", entity.WarehouseCategoryId);
            return(View(entity));
        }
Exemplo n.º 2
0
        public virtual async Task <Spl_WarehouseModel> GetByIdAsync(object id)
        {
            if (IsExists(id))
            {
                Spl_Warehouse entity = await m_Rep.GetByIdAsync(id);

                Spl_WarehouseModel model = new Spl_WarehouseModel();
                model.Id                  = entity.Id;
                model.Name                = entity.Name;
                model.Code                = entity.Code;
                model.IsDefault           = entity.IsDefault;
                model.ContactPerson       = entity.ContactPerson;
                model.ContactPhone        = entity.ContactPhone;
                model.Address             = entity.Address;
                model.Remark              = entity.Remark;
                model.Enable              = entity.Enable;
                model.CreateTime          = entity.CreateTime;
                model.WarehouseCategoryId = entity.WarehouseCategoryId;

                return(model);
            }
            else
            {
                return(null);
            }
        }
Exemplo n.º 3
0
        public virtual async Task <Tuple <ValidationErrors, bool> > CreateAsync(Spl_WarehouseModel model)
        {
            ValidationErrors errors = new ValidationErrors();

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

                if (entity != null)
                {
                    errors.Add(Resource.PrimaryRepeat);
                    return(new Tuple <ValidationErrors, bool>(errors, false));
                }
                entity                     = new Spl_Warehouse();
                entity.Id                  = model.Id;
                entity.Name                = model.Name;
                entity.Code                = model.Code;
                entity.IsDefault           = model.IsDefault;
                entity.ContactPerson       = model.ContactPerson;
                entity.ContactPhone        = model.ContactPhone;
                entity.Address             = model.Address;
                entity.Remark              = model.Remark;
                entity.Enable              = model.Enable;
                entity.CreateTime          = model.CreateTime;
                entity.WarehouseCategoryId = model.WarehouseCategoryId;


                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));
            }
        }
Exemplo n.º 4
0
        public virtual bool Edit(ref ValidationErrors errors, Spl_WarehouseModel model)
        {
            try
            {
                Spl_Warehouse entity = m_Rep.GetById(model.Id);
                if (entity == null)
                {
                    errors.Add(Resource.Disable);
                    return(false);
                }
                entity.Id                  = model.Id;
                entity.Name                = model.Name;
                entity.Code                = model.Code;
                entity.IsDefault           = model.IsDefault;
                entity.ContactPerson       = model.ContactPerson;
                entity.ContactPhone        = model.ContactPhone;
                entity.Address             = model.Address;
                entity.Remark              = model.Remark;
                entity.Enable              = model.Enable;
                entity.CreateTime          = model.CreateTime;
                entity.WarehouseCategoryId = model.WarehouseCategoryId;



                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 JsonResult Edit(Spl_WarehouseModel model)
 {
     if (model != null && ModelState.IsValid)
     {
         if (m_BLL.Edit(ref errors, model))
         {
             LogHandler.WriteServiceLog(GetUserId(), "Id" + model.Id + ",Name" + model.Name, "成功", "修改", "Spl_Warehouse");
             return(Json(JsonHandler.CreateMessage(1, Resource.EditSucceed)));
         }
         else
         {
             string ErrorCol = errors.Error;
             LogHandler.WriteServiceLog(GetUserId(), "Id" + model.Id + ",Name" + model.Name + "," + ErrorCol, "失败", "修改", "Spl_Warehouse");
             return(Json(JsonHandler.CreateMessage(0, Resource.EditFail + ErrorCol)));
         }
     }
     else
     {
         return(Json(JsonHandler.CreateMessage(0, Resource.EditFail)));
     }
 }
 public JsonResult Create(Spl_WarehouseModel 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 + ",Name" + model.Name, "成功", "创建", "Spl_Warehouse");
             return(Json(JsonHandler.CreateMessage(1, Resource.InsertSucceed)));
         }
         else
         {
             string ErrorCol = errors.Error;
             LogHandler.WriteServiceLog(GetUserId(), "Id" + model.Id + ",Name" + model.Name + "," + ErrorCol, "失败", "创建", "Spl_Warehouse");
             return(Json(JsonHandler.CreateMessage(0, Resource.InsertFail + ErrorCol)));
         }
     }
     else
     {
         return(Json(JsonHandler.CreateMessage(0, Resource.InsertFail)));
     }
 }
Exemplo n.º 7
0
        /// <summary>
        /// 校验Excel数据,这个方法一般用于重写校验逻辑
        /// </summary>
        public virtual bool CheckImportData(string fileName, List <Spl_WarehouseModel> list, ref ValidationErrors errors)
        {
            var targetFile = new FileInfo(fileName);

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

            var excelFile = new ExcelQueryFactory(fileName);

            //对应列头
            excelFile.AddMapping <Spl_WarehouseModel>(x => x.Name, "Name");
            excelFile.AddMapping <Spl_WarehouseModel>(x => x.Code, "Code");
            excelFile.AddMapping <Spl_WarehouseModel>(x => x.IsDefault, "IsDefault");
            excelFile.AddMapping <Spl_WarehouseModel>(x => x.ContactPerson, "ContactPerson");
            excelFile.AddMapping <Spl_WarehouseModel>(x => x.ContactPhone, "ContactPhone");
            excelFile.AddMapping <Spl_WarehouseModel>(x => x.Address, "Address");
            excelFile.AddMapping <Spl_WarehouseModel>(x => x.Remark, "Remark");
            excelFile.AddMapping <Spl_WarehouseModel>(x => x.Enable, "Enable");
            excelFile.AddMapping <Spl_WarehouseModel>(x => x.CreateTime, "CreateTime");
            excelFile.AddMapping <Spl_WarehouseModel>(x => x.WarehouseCategoryId, "WarehouseCategoryId");

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

            //检查数据正确性
            foreach (var row in excelContent)
            {
                var errorMessage = new StringBuilder();
                var entity       = new Spl_WarehouseModel();
                entity.Id                  = row.Id;
                entity.Name                = row.Name;
                entity.Code                = row.Code;
                entity.IsDefault           = row.IsDefault;
                entity.ContactPerson       = row.ContactPerson;
                entity.ContactPhone        = row.ContactPhone;
                entity.Address             = row.Address;
                entity.Remark              = row.Remark;
                entity.Enable              = row.Enable;
                entity.CreateTime          = row.CreateTime;
                entity.WarehouseCategoryId = row.WarehouseCategoryId;

                //=============================================================================
                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 ActionResult Details(string id)
        {
            Spl_WarehouseModel entity = m_BLL.GetById(id);

            return(View(entity));
        }