Example #1
0
 public void ActionSaveNew(ModProduct_CityModel model)
 {
     if (ValidSave(model))
     {
         SaveNewRedirect(model.RecordID, item.ID);
     }
 }
Example #2
0
 public void ActionApply(ModProduct_CityModel model)
 {
     if (ValidSave(model))
     {
         ApplyRedirect(model.RecordID, item.ID);
     }
 }
Example #3
0
 public void ActionSave(ModProduct_CityModel model)
 {
     if (ValidSave(model))
     {
         SaveRedirect();
     }
 }
Example #4
0
        public void ActionAdd(ModProduct_CityModel model)
        {
            if (model.RecordID > 0)
            {
                item = ModProduct_CityService.Instance.GetByID(model.RecordID);

                // khoi tao gia tri mac dinh khi update

                // Lấy danh sách quốc gia
                model.DanhSachQuocGia = model.ShowQuocGia(item.ProductNationalId);
            }
            else
            {
                item = new ModProduct_CityEntity();

                // khoi tao gia tri mac dinh khi insert
                item.Activity = CPViewPage.UserPermissions.Approve;

                // Lấy danh sách quốc gia: Mặc định là 1
                model.DanhSachQuocGia = model.ShowQuocGia(1);
            }

            ViewBag.Data  = item;
            ViewBag.Model = model;
        }
Example #5
0
        private bool ValidSave(ModProduct_CityModel 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ế.");
            }

            //kiem tra ten
            if (item.Name.Trim() == string.Empty)
            {
                CPViewPage.Message.ListMessage.Add("Nhập tên.");
            }

            if (CPViewPage.Message.ListMessage.Count == 0)
            {
                //neu khong nhap code -> tu sinh
                if (item.Code.Trim() == string.Empty)
                {
                    item.Code = Data.GetCode(item.Name);
                }

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

                return(true);
            }

            return(false);
        }
Example #6
0
        public void ActionIndex(ModProduct_CityModel model)
        {
            // sap xep tu dong
            string orderBy = AutoSort(model.Sort);

            // tao danh sach
            var dbQuery = ModProduct_CityService.Instance.CreateQuery()
                          .Where(!string.IsNullOrEmpty(model.SearchText), o => o.Name.Contains(model.SearchText))
                          .Take(model.PageSize)
                          .OrderBy(orderBy)
                          .Skip(model.PageIndex * model.PageSize);

            ViewBag.Data      = dbQuery.ToList();
            model.TotalRecord = dbQuery.TotalRecord;
            ViewBag.Model     = model;
        }