Ejemplo n.º 1
0
        public IActionResult SaveItem(string Id = null)
        {
            USUsersModel data           = new USUsersModel();
            string       ControllerName = this.ControllerContext.RouteData.Values["controller"].ToString();
            int          IdDC           = Int32.Parse(MyModels.Decode(Id, API.Models.Settings.SecretId + ControllerName).ToString());

            data.SearchData = new SearchUSUsers()
            {
                CurrentPage = 0, ItemsPerPage = 10, Keyword = ""
            };
            data.ListItemsGroups = USGroupsService.GetListSelectItems();
            data.ListItemsStatus = USUsersService.GetStatusSelectItems();
            data.ListDMCoQuan    = DMCoQuanService.GetListByLoaiCoQuan(0, 1);
            data.ListDMChucVu    = DMChucVuService.GetListSelectItems();
            if (IdDC == 0)
            {
                data.Item = new USUsers();
            }
            else
            {
                data.Item = USUsersService.GetItem(IdDC, API.Models.Settings.SecretId + ControllerName);
            }


            return(View(data));
        }
Ejemplo n.º 2
0
        public IActionResult SaveItem(string Id = null, int CatId = 0, int IdCoQuan = 1)
        {
            BannersModel data           = new BannersModel();
            string       ControllerName = this.ControllerContext.RouteData.Values["controller"].ToString();
            int          IdDC           = Int32.Parse(MyModels.Decode(Id, API.Models.Settings.SecretId + ControllerName).ToString());

            data.SearchData = new SearchBanners()
            {
                CurrentPage = 0, ItemsPerPage = 10, Keyword = "", CatId = CatId, IdCoQuan = IdCoQuan
            };
            data.ListItemsCategories = BannersCategoriesService.GetListSelectItems();
            data.ListDMCoQuan        = DMCoQuanService.GetListByLoaiCoQuan(0, 1);
            if (IdDC == 0)
            {
                data.Item = new Banners()
                {
                    CatId = CatId, Status = true
                };
            }
            else
            {
                data.Item = BannersService.GetItem(IdDC, API.Models.Settings.SecretId + ControllerName);
            }


            return(View(data));
        }
Ejemplo n.º 3
0
        public ActionResult SaveItem(Banners model)
        {
            string       ControllerName = this.ControllerContext.RouteData.Values["controller"].ToString();
            int          IdDC           = Int32.Parse(MyModels.Decode(model.Ids, API.Models.Settings.SecretId + ControllerName).ToString());
            BannersModel data           = new BannersModel()
            {
                Item = model
            };

            if (ModelState.IsValid)
            {
                if (model.Id == IdDC)
                {
                    model.CreatedBy  = int.Parse(HttpContext.Request.Headers["Id"]);
                    model.ModifiedBy = int.Parse(HttpContext.Request.Headers["Id"]);
                    BannersService.SaveItem(model);
                    if (model.Id > 0)
                    {
                        TempData["MessageSuccess"] = "Cập nhật thành công";
                    }
                    else
                    {
                        TempData["MessageSuccess"] = "Thêm mới thành công";
                    }
                    return(RedirectToAction("Index", new { CatId = model.CatId, IdCoQuan = model.IdCoQuan }));
                }
            }
            else
            {
                data.ListItemsCategories = BannersCategoriesService.GetListSelectItems();
                data.ListDMCoQuan        = DMCoQuanService.GetListByLoaiCoQuan(0, 1);
            }
            return(View(data));
        }
Ejemplo n.º 4
0
        public IActionResult SaveItem(string Id = null, int CategoryId = 0, int ParentId = 0)
        {
            DMCoQuanModel data = new DMCoQuanModel();

            data.ListItemsCoQuan     = DMCoQuanService.GetListByLoaiCoQuan(CategoryId);
            data.ListItemsLayout     = DMCoQuanService.GetListLayout();
            data.ListItemsLoaiCoQuan = DMLoaiCoQuanService.GetListSelectItems();
            int    IdDC           = Int32.Parse(MyModels.Decode(Id, API.Models.Settings.SecretId + "DMCoQuan").ToString());
            string ControllerName = this.ControllerContext.RouteData.Values["controller"].ToString();

            data.SearchData = new SearchDMCoQuan()
            {
                CurrentPage = 0, ItemsPerPage = 10, Keyword = ""
            };
            if (IdDC == 0)
            {
                data.Item            = new DMCoQuan();
                data.Item.CategoryId = CategoryId;
                data.Item.ParentId   = ParentId;
            }
            else
            {
                data.Item = DMCoQuanService.GetItem(IdDC, API.Models.Settings.SecretId + "DMCoQuan".ToString());
            }


            return(View(data));
        }
Ejemplo n.º 5
0
        public IActionResult Index([FromQuery] SearchBanners dto)
        {
            int TotalItems = 0;

            if (dto.IdCoQuan == 0)
            {
                dto.IdCoQuan = 1;
            }
            string       ControllerName = this.ControllerContext.RouteData.Values["controller"].ToString();
            BannersModel data           = new BannersModel()
            {
                SearchData = dto
            };

            data.ListItems = BannersService.GetListPagination(data.SearchData, API.Models.Settings.SecretId + ControllerName);
            if (data.ListItems != null && data.ListItems.Count() > 0)
            {
                TotalItems = data.ListItems[0].TotalRows;
            }
            data.ListDMCoQuan = DMCoQuanService.GetListByLoaiCoQuan(0, 1);
            data.Pagination   = new Models.Partial.PartialPagination()
            {
                CurrentPage = data.SearchData.CurrentPage, ItemsPerPage = data.SearchData.ItemsPerPage, TotalItems = TotalItems, QueryString = Request.QueryString.ToString()
            };
            data.ListItemsCategories = BannersCategoriesService.GetListSelectItems();
            return(View(data));
        }
Ejemplo n.º 6
0
        public ActionResult UpdateStatus([FromQuery] string Ids, Boolean Status)
        {
            string   ControllerName = this.ControllerContext.RouteData.Values["controller"].ToString();
            DMCoQuan item           = new DMCoQuan()
            {
                Id = Int32.Parse(MyModels.Decode(Ids, API.Models.Settings.SecretId + ControllerName).ToString()), Status = Status
            };

            try
            {
                if (item.Id > 0)
                {
                    item.ModifiedBy = int.Parse(HttpContext.Request.Headers["Id"]);
                    dynamic UpdateStatus = DMCoQuanService.UpdateStatus(item);
                    TempData["MessageSuccess"] = "Cập nhật Trạng Thái thành công";
                    return(Json(new MsgSuccess()));
                }
                else
                {
                    TempData["MessageError"] = "Cập nhật Trạng Thái Không thành công";
                    return(Json(new MsgError()));
                }
            }
            catch
            {
                TempData["MessageSuccess"] = "Cập nhật Trạng Thái không thành công";
                return(Json(new MsgError()));
            }
        }
Ejemplo n.º 7
0
        public IActionResult Index([FromQuery] SearchDMCoQuan dto)
        {
            int           TotalItems     = 0;
            string        ControllerName = this.ControllerContext.RouteData.Values["controller"].ToString();
            DMCoQuanModel data           = new DMCoQuanModel();

            data.SearchData          = dto;
            data.ListItemsLoaiCoQuan = DMLoaiCoQuanService.GetListSelectItems();
            data.ListItemsLayout     = DMCoQuanService.GetListLayout();
            if (dto.CategoryId == 0 && data.ListItemsLoaiCoQuan != null && data.ListItemsLoaiCoQuan.Count() > 0)
            {
                data.SearchData.CategoryId = Convert.ToInt32(data.ListItemsLoaiCoQuan[0].Value);
            }

            data.ListItems = DMCoQuanService.GetListPagination(data.SearchData, API.Models.Settings.SecretId + ControllerName);
            if (data.ListItems != null && data.ListItems.Count() > 0)
            {
                TotalItems = data.ListItems[0].TotalRows;
            }
            data.Pagination = new Models.Partial.PartialPagination()
            {
                CurrentPage = data.SearchData.CurrentPage, ItemsPerPage = data.SearchData.ItemsPerPage, TotalItems = TotalItems, QueryString = Request.QueryString.ToString()
            };

            return(View(data));
        }
Ejemplo n.º 8
0
        public ActionResult DeleteItem(string Id)
        {
            string        ControllerName = this.ControllerContext.RouteData.Values["controller"].ToString();
            DMCoQuanModel data           = new DMCoQuanModel();
            DMCoQuan      item           = new DMCoQuan()
            {
                Id = Int32.Parse(MyModels.Decode(Id, API.Models.Settings.SecretId + ControllerName).ToString())
            };

            try
            {
                if (item.Id > 0)
                {
                    item.ModifiedBy = int.Parse(HttpContext.Request.Headers["Id"]);
                    DMCoQuanService.DeleteItem(item);
                    TempData["MessageSuccess"] = "Xóa thành công";
                    return(Json(new MsgSuccess()));
                }
                else
                {
                    TempData["MessageError"] = "Xóa Không thành công";
                    return(Json(new MsgError()));
                }
            }
            catch
            {
                TempData["MessageSuccess"] = "Xóa không thành công";
                return(Json(new MsgError()));
            }
        }
Ejemplo n.º 9
0
        public IActionResult Index(string alias)
        {
            DMCoQuan      item = DMCoQuanService.GetItemByCode(alias);
            DMCoQuanModel data = new DMCoQuanModel()
            {
                Item = item
            };

            HttpContext.Session.SetString("IdLayoutSite", item.IdLayout.ToString());
            HttpContext.Session.SetString("IdCoQuan", item.Id.ToString());
            HttpContext.Session.SetString("Title_1", item.Title_1);
            HttpContext.Session.SetString("Title_2", item.Title_2);
            HttpContext.Session.SetString("Title_3", item.Title_3);
            return(View(data));
        }
Ejemplo n.º 10
0
        public ActionResult SaveItem(USUsers model)
        {
            string       ControllerName = this.ControllerContext.RouteData.Values["controller"].ToString();
            int          IdDC           = Int32.Parse(MyModels.Decode(model.Ids, API.Models.Settings.SecretId + ControllerName).ToString());
            USUsersModel data           = new USUsersModel()
            {
                Item = model
            };

            if (ModelState.IsValid)
            {
                if (model.Id == IdDC)
                {
                    if (model.Id == 0)
                    {
                        if (model.Password == null || model.Password == null)
                        {
                            model.Password = "******";
                        }
                        model.Password = USUsersService.GetMD5(model.Password);
                    }
                    dynamic DataSave = USUsersService.SaveItem(model);
                    if (model.Id > 0)
                    {
                        TempData["MessageSuccess"] = "Cập nhật thành công";
                    }
                    else
                    {
                        TempData["MessageSuccess"] = "Thêm mới thành công";
                    }
                    return(RedirectToAction("Index"));
                }
            }
            else
            {
                data.ListItemsGroups = USGroupsService.GetListSelectItems();
                data.ListItemsStatus = USUsersService.GetStatusSelectItems();
                data.ListDMCoQuan    = DMCoQuanService.GetListByLoaiCoQuan(0, 1);
                data.ListDMChucVu    = DMChucVuService.GetListSelectItems();
            }
            return(View(data));
        }
Ejemplo n.º 11
0
        public ActionResult SaveItem(DMCoQuan model)
        {
            string        ControllerName = this.ControllerContext.RouteData.Values["controller"].ToString();
            int           IdDC           = Int32.Parse(MyModels.Decode(model.Ids, API.Models.Settings.SecretId + ControllerName).ToString());
            DMCoQuanModel data           = new DMCoQuanModel();

            data.ListItemsLayout     = DMCoQuanService.GetListLayout();
            data.ListItemsLoaiCoQuan = DMLoaiCoQuanService.GetListSelectItems();
            data.Item = model;
            if (ModelState.IsValid)
            {
                if (model.Id == IdDC)
                {
                    model.CreatedBy = model.ModifiedBy = int.Parse(HttpContext.Request.Headers["Id"]);
                    var Obj = DMCoQuanService.SaveItem(model);
                    if (Obj.N == -1)
                    {
                        TempData["MessageError"] = "Mã cơ quan trùng";
                        data.ListItemsCoQuan     = DMCoQuanService.GetListByLoaiCoQuan(model.CategoryId);

                        return(View(data));
                    }
                    else if (Obj.N == -2)
                    {
                        TempData["MessageError"] = "Chọn Cơ quan cha không hợp lệ";
                        data.ListItemsCoQuan     = DMCoQuanService.GetListByLoaiCoQuan(model.CategoryId);

                        return(View(data));
                    }
                    else
                    {
                        TempData["MessageSuccess"] = "Cập nhật thành công";
                        return(RedirectToAction("Index", new { CategoryId = model.CategoryId }));
                    }
                }
            }
            else
            {
                data.ListItemsCoQuan = DMCoQuanService.GetListByLoaiCoQuan(model.CategoryId);
            }
            return(View(data));
        }