Example #1
0
 public void ActionSaveNew(ModProduct_Info_AreaInNationalModel model)
 {
     if (ValidSave(model))
     {
         SaveNewRedirect(model.RecordID, item.ID);
     }
 }
Example #2
0
 public void ActionSave(ModProduct_Info_AreaInNationalModel model)
 {
     if (ValidSave(model))
     {
         SaveRedirect();
     }
 }
Example #3
0
        public void ActionIndex(ModProduct_Info_AreaInNationalModel model)
        {
            // sap xep tu dong
            string orderBy = AutoSort(model.Sort);

            // tao danh sach
            var dbQuery = ModProduct_Info_AreaInNationalService.Instance.CreateQuery()
                          .Take(model.PageSize)
                          .OrderBy(orderBy)
                          .Skip(model.PageIndex * model.PageSize);

            ViewBag.Data      = dbQuery.ToList();
            model.TotalRecord = dbQuery.TotalRecord;
            ViewBag.Model     = model;
        }
Example #4
0
        public void ActionAdd(ModProduct_Info_AreaInNationalModel model)
        {
            if (model.RecordID > 0)
            {
                item = ModProduct_Info_AreaInNationalService.Instance.GetByID(model.RecordID);

                // khoi tao gia tri mac dinh khi update
            }
            else
            {
                item = new ModProduct_Info_AreaInNationalEntity();

                // khoi tao gia tri mac dinh khi insert
            }

            ViewBag.Data  = item;
            ViewBag.Model = model;
        }
Example #5
0
        private bool ValidSave(ModProduct_Info_AreaInNationalModel model)
        {
            TryUpdateModel(item);

            //chong hack
            item.ID = model.RecordID;

            ViewBag.Data  = item;
            ViewBag.Model = model;

            CPViewPage.Message.MessageType = Message.MessageTypeEnum.Error;

            //kiem tra quyen han
            if ((model.RecordID < 1 && !CPViewPage.UserPermissions.Add) || (model.RecordID > 0 && !CPViewPage.UserPermissions.Edit))
            {
                CPViewPage.Message.ListMessage.Add("Quyền hạn chế.");
            }

            if (CPViewPage.Message.ListMessage.Count == 0)
            {
                try
                {
                    //save
                    ModProduct_Info_AreaInNationalService.Instance.Save(item);
                }
                catch (Exception ex)
                {
                    Global.Error.Write(ex);
                    CPViewPage.Message.ListMessage.Add(ex.Message);
                    return(false);
                }

                return(true);
            }

            return(false);
        }