Exemplo n.º 1
0
        /// <summary>
        /// Thêm mới quyền cho nhân viên
        /// </summary>
        /// <param name="lstMember"></param>
        /// <returns></returns>
        public bool Insert(List <MemberModel> lstMember, int userID)
        {
            try
            {
                db = new THN_WebApplicationEntities();


                if (lstMember != null && lstMember.Count > 0)
                {
                    foreach (var item in lstMember)
                    {
                        Member model = new Member();
                        model.UserID     = item.UserID;
                        model.FuncID     = item.FuncID;
                        model.CreateBy   = ConfigHelper.User.Username;
                        model.CreateDate = DateTime.Now;
                        db.Members.Add(model);
                    }
                    if (db.SaveChanges() > 0)
                    {
                        return(true);
                    }
                }
                return(false);
            }catch (Exception ex)
            {
                WriteLogs.WriteToLogFile(ex);
                return(false);
            }
        }
Exemplo n.º 2
0
 /// <summary>
 /// Update
 /// </summary>
 /// <param name="update"></param>
 /// <returns></returns>
 public int update(CategoryModel update)
 {
     try
     {
         var model = db.Categories.Find(update.Id);
         if (model != null)
         {
             model.Name            = update.Name;
             model.Slug            = !string.IsNullOrEmpty(update.Slug) ? update.Slug : Utility.GetAlias(update.Name);
             model.Parent          = update.Parent;
             model.OrderBy         = update.OrderBy;
             model.Visible         = update.Visibled;
             model.MetaTitle       = update.MetaTitle;
             model.MetaKeyword     = update.MetaKeyWord;
             model.MetaDescription = update.MetaDescription;
             if (db.SaveChanges() > 0)
             {
                 return(1);
             }
             return(0);
         }
     }
     catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
     }
     return(-1);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Insert new category
 /// </summary>
 /// <param name="add"></param>
 /// <returns></returns>
 public int insert(CategoryModel add)
 {
     try
     {
         Category model = new Category();
         model.Name            = add.Name;
         model.Slug            = !string.IsNullOrEmpty(add.Slug) ? add.Slug : Utility.GetAlias(add.Name);
         model.Parent          = add.Parent;
         model.Visible         = add.Visibled;
         model.OrderBy         = add.OrderBy;
         model.MetaTitle       = add.MetaTitle;
         model.MetaKeyword     = add.MetaKeyWord;
         model.MetaDescription = add.MetaDescription;
         db.Categories.Add(model);
         if (db.SaveChanges() > 0)
         {
             return(1);
         }
     }
     catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(-1);
     }
     return(0);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Get Product by product name
 /// </summary>
 /// <param name="name"></param>
 /// <returns></returns>
 public List <Product> GetByName(string name)
 {
     try
     {
         db = new THN_WebApplicationEntities();
         return(db.Products.Where(p => p.Name.Contains(name)).OrderBy(p => p.OrderBy).ToList());
     }
     catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(null);
     }
 }
Exemplo n.º 5
0
 /// <summary>
 /// Get Product by category id
 /// </summary>
 /// <param name="categoryId"></param>
 /// <returns></returns>
 public List <Product> GetByCategoryID(int categoryId)
 {
     try
     {
         db = new THN_WebApplicationEntities();
         return(db.Products.Where(p => p.CategoryID == categoryId).OrderBy(p => p.OrderBy).ToList());
     }
     catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(null);
     }
 }
Exemplo n.º 6
0
 public List <Member> GetList(int userID)
 {
     try
     {
         db = new THN_WebApplicationEntities();
         var lst = db.Members.Where(m => m.UserID == userID).ToList();
         return(lst != null ? lst : null);
     }catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(null);
     }
 }
Exemplo n.º 7
0
 public static AppSetting GetSingle()
 {
     try
     {
         THN_WebApplicationEntities db = new THN_WebApplicationEntities();
         var model = db.AppSettings.Take(1).FirstOrDefault();
         return(model);
     }catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(null);
     }
 }
Exemplo n.º 8
0
 /// <summary>
 /// Get Product by ID
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public Product GetByID(int id)
 {
     try
     {
         db = new THN_WebApplicationEntities();
         return(db.Products.Find(id));
     }
     catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(null);
     }
 }
Exemplo n.º 9
0
 /// <summary>
 /// Get All Product
 /// </summary>
 /// <returns></returns>
 public List <Product> GetAll()
 {
     try
     {
         db = new THN_WebApplicationEntities();
         var lst = db.Products.OrderBy(p => p.OrderBy).ToList();
         return(lst);
     }
     catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
     }
     return(null);
 }
Exemplo n.º 10
0
        protected override bool AuthorizeCore(HttpContextBase httpContext)
        {
            try
            {
                //string urlLogin = WebConfigurationManager.ConnectionStrings["webLogin"] != null ? WebConfigurationManager.ConnectionStrings["webLogin"].ConnectionString : "";
                string url = httpContext.Request.Url.ToString();
                //urlLogin = urlLogin + HttpUtility.UrlEncode(url);

                var    db             = new THN.Core.EntityFramework.THN_WebApplicationEntities();
                string actionName     = httpContext.Request.RequestContext.RouteData.Values["action"].ToString();
                string controllerName = httpContext.Request.RequestContext.RouteData.Values["controller"].ToString();

                FunctionSessionModel sessionModel = new FunctionSessionModel();
                sessionModel.Controller        = controllerName;
                sessionModel.Action            = actionName;
                httpContext.Session["THNMenu"] = sessionModel;


                //Kiểm tra Session Login
                AccountModel model = (AccountModel)httpContext.Session["THNLogin"];
                if (model == null || string.IsNullOrEmpty(model.Username))
                {
                    if (httpContext.Request.IsAjaxRequest())
                    {
                        httpContext.Response.Redirect("/Administrator/Error/JsonAccessFail");
                        return(false);
                    }
                    httpContext.Response.Redirect("/Administrator/Account/Login?ReturnUrl=" + HttpUtility.UrlEncode(url));
                    return(false);
                }

                ////Kiểm tra quyền truy cập
                //FunctionsDAL funcDAL = new FunctionsDAL();
                //bool access = funcDAL.GetAccess(controllerName, actionName, ConfigHelper.User.ID);
                //if (access == false)
                //    httpContext.Response.Redirect("/Administrator/Error/AccessFail");
                //return access;
                return(true);
            }
            catch (Exception ex)
            {
                WriteLogs.WriteToLogFile(ex);
                return(false);
            }
        }
Exemplo n.º 11
0
 /// <summary>
 /// Edit product by ID
 /// </summary>
 /// <param name="update"></param>
 /// <returns></returns>
 public int Update(ProductModel update)
 {
     try
     {
         db = new THN_WebApplicationEntities();
         Product model = db.Products.Find(update.Id);
         model.Name             = update.Name;
         model.Slug             = !string.IsNullOrEmpty(update.Slug) ? update.Slug : Utility.GetAlias(update.Name);
         model.ShortDescription = update.ShortDescription;
         model.Detail           = update.Detail;
         model.Visibled         = update.Visibled == true ? 1 : 0;
         model.IsNew            = update.IsNew;
         model.IsHome           = update.IsHome;
         model.IsHot            = update.IsHot;
         model.OrderBy          = update.OrderBy;
         model.CategoryID       = update.CategoryID;
         model.MenufactureID    = 1;
         model.MetaTitle        = update.MetaTitle;
         model.MetaKeyword      = update.MetaKeyword;
         model.MetaDescription  = update.MetaDescription;
         model.PriceOld         = update.PriceOld;
         model.PricceNew        = update.PriceNew;
         model.UpdatedDate      = DateTime.Now;
         model.UpdatedBy        = AccountLogin.User.Username;
         if (db.SaveChanges() > 0)
         {
             if (HttpContext.Current.Request.Files.Count > 0)
             {
                 string   oldImage   = model.Picture;
                 DateTime timeSave   = (DateTime)model.CreatedDate;
                 string   folderSave = "~/Images/product/" + timeSave.ToString("MMyyyy");
                 model.Picture = FileHelper.UploadImage(folderSave, model.Slug);
                 FileHelper.delete(folderSave, oldImage);
             }
             return(1);
         }
         return(0);
     }
     catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(-1);
     }
 }
Exemplo n.º 12
0
 public bool Update(List <MemberModel> update, int UserID)
 {
     try
     {
         db = new THN_WebApplicationEntities();
         var lst = db.Members.Where(m => m.UserID == UserID).ToList();
         db.Members.RemoveRange(lst);
         if (db.SaveChanges() > 0)
         {
             bool rs = this.Insert(update, UserID);
             return(rs);
         }
         return(false);
     }catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(false);
     }
 }
Exemplo n.º 13
0
 /// <summary>
 /// Update OrderBy
 /// </summary>
 /// <param name="lst"></param>
 /// <returns></returns>
 public int changeOrderBy(List <CategoryChangeOrderByModel> lst)
 {
     try
     {
         foreach (var model in lst)
         {
             var category = db.Categories.Find(model.CateId);
             category.OrderBy         = model.OrderBy;
             db.Entry(category).State = System.Data.Entity.EntityState.Modified;
         }
         if (db.SaveChanges() > 0)
         {
             return(1);
         }
         return(0);
     }catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(-1);
     }
 }
Exemplo n.º 14
0
 /// <summary>
 /// Change Status Visibled
 /// </summary>
 /// <param name="cateId"></param>
 /// <param name="visibled"></param>
 /// <returns></returns>
 public int changeVisibled(int cateId, int visibled)
 {
     try
     {
         var model = db.Categories.Find(cateId);
         if (model != null)
         {
             model.Visible = visibled;
             if (db.SaveChanges() > 0)
             {
                 return(1);
             }
         }
     }
     catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(-1);
     }
     return(0);
 }
Exemplo n.º 15
0
 public int UploadImages(int ProductID, string[] listImageTitle, string[] listImageAlt, string[] lstOrderBy)
 {
     try
     {
         db = new THN_WebApplicationEntities();
         var product = GetByID(ProductID);
         if (product == null || product.ID <= 0)
         {
             return(0);
         }
         string        folder    = "~/Images/product/" + "P" + product.ID;
         List <string> lstImages = FileHelper.UploadImages(folder, product.Slug);
         ProductImage  pm;
         if (lstImages.Count > 0)
         {
             var i = 0;
             foreach (var str in lstImages)
             {
                 pm           = new ProductImage();
                 pm.Title     = !string.IsNullOrEmpty(listImageTitle[i]) ? listImageTitle[i] : product.Name;
                 pm.AltImages = !string.IsNullOrEmpty(listImageAlt[i]) ? listImageAlt[i] : product.MetaTitle;
                 pm.OrderBy   = !string.IsNullOrEmpty(lstOrderBy[i]) ? int.Parse(lstOrderBy[i]) : (i + 1);
                 pm.FileSave  = str;
                 pm.ProductID = product.ID;
                 db.ProductImages.Add(pm);
                 i = i + 1;
             }
         }
         if (db.SaveChanges() > 0)
         {
             return(1);
         }
         return(0);
     }
     catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(-1);
     }
 }
Exemplo n.º 16
0
 /// <summary>
 /// Add new Product
 /// </summary>
 /// <param name="add"></param>
 /// <returns></returns>
 public int Insert(ProductModel add)
 {
     try
     {
         db = new THN_WebApplicationEntities();
         Product model = new Product();
         model.Name             = add.Name;
         model.Slug             = !string.IsNullOrEmpty(add.Slug) ? add.Slug : Utility.GetAlias(add.Name);
         model.ShortDescription = add.ShortDescription;
         model.Detail           = add.Detail;
         model.Visibled         = add.Visibled == true ? 1 : 0;
         model.IsNew            = add.IsNew;
         model.IsHome           = add.IsHome;
         model.IsHot            = add.IsHot;
         model.OrderBy          = add.OrderBy;
         model.CategoryID       = add.CategoryID;
         model.MenufactureID    = 1;
         model.MetaTitle        = add.MetaTitle;
         model.MetaKeyword      = add.MetaKeyword;
         model.MetaDescription  = add.MetaDescription;
         model.CreatedDate      = DateTime.Now;
         model.CreatedBy        = AccountLogin.User.Username;
         model.PriceOld         = add.PriceOld;
         model.PricceNew        = add.PriceNew;
         string folderSave = "~/Images/product/" + DateTime.Now.ToString("MMyyyy");
         model.Picture = FileHelper.UploadImages(folderSave, model.Slug)[0].ToString();
         db.Products.Add(model);
         if (db.SaveChanges() > 0)
         {
             return(1);
         }
         return(0);
     }
     catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(-1);
     }
 }
Exemplo n.º 17
0
 /// <summary>
 /// Delete
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public int delete(int id)
 {
     try
     {
         var model = db.Categories.Find(id);
         if (model == null)
         {
             return(0);
         }
         db.Categories.Remove(model);
         if (db.SaveChanges() > 0)
         {
             return(1);
         }
         return(0);
     }
     catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(-1);
     }
 }
Exemplo n.º 18
0
 /// <summary>
 /// Change display
 /// </summary>
 /// <param name="pId"></param>
 /// <param name="visibled"></param>
 /// <returns></returns>
 public int ChangeVisibled(int pId, int visibled)
 {
     try
     {
         db = new THN_WebApplicationEntities();
         var product = db.Products.Find(pId);
         if (product == null || product.ID <= 0)
         {
             return(0);
         }
         product.Visibled = visibled;
         if (db.SaveChanges() > 0)
         {
             return(1);
         }
         return(0);
     }
     catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(-1);
     }
 }
Exemplo n.º 19
0
 /// <summary>
 /// Change status home
 /// </summary>
 /// <param name="pId"></param>
 /// <param name="status"></param>
 /// <returns></returns>
 public int ChangeIsHome(int pId, int status)
 {
     try
     {
         db = new THN_WebApplicationEntities();
         var product = db.Products.Find(pId);
         if (product == null || product.ID <= 0)
         {
             return(0);
         }
         product.IsHome = status == 1 ? true : false;
         if (db.SaveChanges() > 0)
         {
             return(1);
         }
         return(0);
     }
     catch (Exception ex)
     {
         WriteLogs.WriteToLogFile(ex);
         return(-1);
     }
 }
Exemplo n.º 20
0
        /// <summary>
        /// Delete a Product
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        public int Delete(int id)
        {
            try
            {
                db = new THN_WebApplicationEntities();
                var produdct = db.Products.Find(id);
                if (produdct == null || produdct.ID <= 0)
                {
                    return(0);
                }
                var lstImages = db.ProductImages.Where(p => p.ProductID == produdct.ID).ToList();
                if (lstImages.Count > 0)
                {
                    string folder = "P" + id;
                    db.ProductImages.RemoveRange(lstImages);
                    foreach (var img in lstImages)
                    {
                        string path = "~/Images/product/" + folder + "/" + img.FileSave;
                        FileHelper.delete(path);
                    }
                }

                db.Products.Remove(produdct);
                if (db.SaveChanges() > 0)
                {
                    FileHelper.delete("~/Images/product/thump/" + produdct.Picture);
                    return(1);
                }
                return(0);
            }
            catch (Exception ex)
            {
                WriteLogs.WriteToLogFile(ex);
                return(-1);
            }
        }