コード例 #1
0
        public ActionResult EditProduct(Guid? productID, [Bind(Exclude = "ID")] tblProduct tblproduct)
        {
            tblproduct.Description = HttpUtility.HtmlEncode(tblproduct.Description);
            #region delete
            if (Request["Delete"] != null)
            {
                if (productID.HasValue && !productID.Equals(Guid.Empty))
                {
                    Service.DeleteProduct((Guid)productID);
                    return RedirectToAction("IndexForProduct");
                }
            }
            #endregion
            if (tblproduct != null && !string.IsNullOrEmpty(tblproduct.Description))
            {
                ViewData["Description"] = tblproduct.Description;
            }
            if (tblproduct == null)
            {
                tblproduct = new tblProduct();
            }
            List<SelectListItem> categories = new List<SelectListItem>();
            List<tblCategory> listCategory = new List<tblCategory>();
            if (Request.Cookies["Culture"] != null && Request.Cookies["Culture"].Value == "en-US")
            {
                tblproduct.Language = Languages.EN;
                listCategory = Service.GetAllCategory(Languages.EN);
            }
            else
            {
                tblproduct.Language = Languages.VN;
                listCategory = Service.GetAllCategory(Languages.VN);
            }

            foreach (tblCategory cat in listCategory)
            {
                categories.Add(new SelectListItem { Text = cat.CategoryName, Value = cat.ID.ToString() });
            }
            ViewData["Categories"] = categories;

            if (String.IsNullOrEmpty(tblproduct.ProductName))
            {
                if (tblproduct.Language.HasValue && tblproduct.Language.Value.Equals(Languages.EN))
                {
                    ModelState.AddModelError("ProductName", "Product name field is required");
                }
                else
                {
                    ModelState.AddModelError("ProductName", "Cần nhập tên sản phẩm");
                }
            }
            else if (tblproduct.ProductName.Length >= 100)
            {
                if (tblproduct.Language.HasValue && tblproduct.Language.Value.Equals(Languages.EN))
                {
                    ModelState.AddModelError("ProductName", "Input no more than 100 characters");
                }
                else
                {
                    ModelState.AddModelError("ProductName", "Không nhập quá 100 ký tự");
                }
            }

            if (String.IsNullOrEmpty(tblproduct.Property))
            {
                if (tblproduct.Language.HasValue && tblproduct.Language.Value.Equals(Languages.EN))
                {
                    ModelState.AddModelError("Property", "Property field is required");
                }
                else
                {
                    ModelState.AddModelError("Property", "Cần mô tả ngắn gọn");
                }

            }
            else if (tblproduct.Property.Length > 250)
            {
                if (tblproduct.Language.HasValue && tblproduct.Language.Value.Equals(Languages.EN))
                {
                    ModelState.AddModelError("Property", "Input no more than 250 characters");
                }
                else
                {
                    ModelState.AddModelError("Property", "Không nhập quá 250 ký tự");
                }
            }
            if (String.IsNullOrEmpty(tblproduct.Description))
            {
                if (tblproduct.Language.HasValue && tblproduct.Language.Value.Equals(Languages.EN))
                {
                    ModelState.AddModelError("Description", "Description field is required");
                }
                else
                {
                    ModelState.AddModelError("Description", "Cần nhập chi tiết ");
                }
            }
            else if (tblproduct.Description.Length > 16000)
            {
                if (tblproduct.Language.HasValue && tblproduct.Language.Value.Equals(Languages.EN))
                {
                    ModelState.AddModelError("Description", "Input no more than 16000 characters");
                }
                else
                {
                    ModelState.AddModelError("Description", "Không nhập quá 16000 ký tự");
                }
            }



            string pathFolder = Server.MapPath(ConfigurationManager.AppSettings["ImagesNews"]);
            string pathFolderThumb = Server.MapPath(ConfigurationManager.AppSettings["ThumbImagesNews"]);
            string pathFolderThumbSmallest = Server.MapPath(ConfigurationManager.AppSettings["ThumbImagesNewsSmallest"]);
            bool isUpdate = false;
            if (productID.HasValue && productID.Value != Guid.Empty)
            {
                isUpdate = true;
            }
            if (!Directory.Exists(pathFolder)) Directory.CreateDirectory(pathFolder);
            if (!Directory.Exists(pathFolderThumb)) Directory.CreateDirectory(pathFolderThumb);
            if (!Directory.Exists(pathFolderThumbSmallest)) Directory.CreateDirectory(pathFolderThumbSmallest);
            if (ModelState.IsValid)
            {
                if (Request.Files.Count < 1 && (!productID.HasValue || productID.Value.Equals(Guid.Empty)))
                {
                    if (tblproduct.Language.HasValue && tblproduct.Language.Value.Equals(Languages.EN))
                    {
                        ModelState.AddModelError("Image", "This image is not support or  haven't pick up");
                    }
                    else
                    {
                        ModelState.AddModelError("Image", "Định dạng hình ảnh này không trợ giúp hoặc chưa chọn");
                    }
                }
                else
                {
                    foreach (string inputTagName in Request.Files)
                    {
                        HttpPostedFileBase file = Request.Files[inputTagName];
                        
                        if (productID != null && !productID.Value.Equals(Guid.Empty))
                        {
                            tblproduct.ID = (Guid)productID;
                            string pathImage;
                            string pathImageThumb;
                            string pathImageThumbSmallest;
                            if (file != null && file.ContentLength > 0 && !String.IsNullOrEmpty(file.FileName)  && Utility.File.File.SaveFile(file, out pathImage, out pathImageThumb, out pathImageThumbSmallest, (Guid)productID, pathFolder, Request.PhysicalApplicationPath))
                            {
                                tblproduct.Image = pathImageThumb;

                            }
                            else
                            {
                                if (String.IsNullOrEmpty(tblproduct.Image))
                                {
                                    if (tblproduct.Language.HasValue && tblproduct.Language.Value.Equals(Languages.EN))
                                    {
                                        ModelState.AddModelError("Image", "This image is not support or  haven't pick up");
                                    }
                                    else
                                    {
                                        ModelState.AddModelError("Image", "Định dạng hình ảnh này không trợ giúp hoặc chưa chọn");
                                    }
                                }
                                else if (file != null && file.ContentLength > 0 && !String.IsNullOrEmpty(file.FileName))
                                {
                                    if (tblproduct.Language.HasValue && tblproduct.Language.Value.Equals(Languages.EN))
                                    {
                                        ModelState.AddModelError("Image", "This image is not support or  haven't pick up");
                                    }
                                    else
                                    {
                                        ModelState.AddModelError("Image", "Định dạng hình ảnh này không trợ giúp hoặc chưa chọn");
                                    }
                                }
                            }


                        }
                        else if ((productID == null || productID.Value.Equals(Guid.Empty)))
                        {
                            tblproduct.ID = Guid.NewGuid();
                            productID = tblproduct.ID;
                            string pathImage;
                            string pathImageThumb;
                            string pathImageThumbSmallest;
                            if (file != null && Utility.File.File.SaveFile(file, out pathImage, out pathImageThumb, out pathImageThumbSmallest, (Guid)productID, pathFolder, Request.PhysicalApplicationPath))
                            {
                                tblproduct.Image = pathImageThumb;

                            }
                            else
                            {
                                if (tblproduct.Language.HasValue && tblproduct.Language.Value.Equals(Languages.EN))
                                {
                                    ModelState.AddModelError("Image", "This image is not support or  haven't pick up");
                                }
                                else
                                {
                                    ModelState.AddModelError("Image", "Định dạng hình ảnh này không trợ giúp hoặc chưa chọn");
                                }
                            }


                        }

                    }
                }
            }
            if (ModelState.IsValid)
            {
                if (isUpdate)
                {
                    Service.UpdateProduct(tblproduct);
                }
                else
                {
                    Service.InsertProduct(tblproduct);
                }
                return RedirectToAction("AdminProduct");
                //return new JavaScriptResult { Script = "<script language='javascript' type='text/javascript'> $(document).ready(function() {alert('hehheh222');}) </script>" };
               // return JavaScript("<script language='javascript' type='text/javascript'> $(document).ready(function() {alert('hehheh222');}) </script>");
                //return new EmptyResult();
            }
            if (!isUpdate)
            {
                tblproduct.ID = Guid.Empty;
            }
            ViewData["Description"] = (String.IsNullOrEmpty(tblproduct.Description) ? "" : tblproduct.Description);
            ViewData["Categories"] = categories;
            return JavaScript("<script>alert('heheh');</script>");
            
            //return Json(new { success = "true" });
            //return View("Admin/EditProduct", tblproduct);
        }
コード例 #2
0
        public ActionResult ViewProduct(Guid? productID)
        {
            if (productID != null && !productID.Equals(Guid.Empty))
            {
                tblProduct tblproduct = Service.GetProductByID((Guid)productID);
                return View(tblproduct);
            }
            else if (TempData["ProductID"] != null)
            {

                tblProduct tblproduct = Service.GetProductByID((Guid)TempData["ProductID"]);
                return View(tblproduct);

            }
            tblProduct tblpro = new tblProduct();
            return View(tblpro);
        }
コード例 #3
0
 public void UpdateProduct(tblProduct tblproduct)
 {
   _da.UpdateProduct(tblproduct);
 }
コード例 #4
0
        public ActionResult EditProduct(Guid? productID)
        {
            List<SelectListItem> categories = new List<SelectListItem>();
            List<tblCategory> listCategory = new List<tblCategory>();
            if (Request.Cookies["Culture"] != null && Request.Cookies["Culture"].Value == "en-US")
            {
                listCategory = Service.GetAllCategory(Languages.EN);
            }
            else
            {
                listCategory = Service.GetAllCategory(Languages.VN);
            }
            foreach (tblCategory cat in listCategory)
            {
                categories.Add(new SelectListItem { Text = cat.CategoryName, Value = cat.ID.ToString() });
            }

            ViewData["Categories"] = categories;
            if (productID != null)
            {
                tblProduct tblproduct = new tblProduct();

                tblproduct = Service.GetProductByID((Guid)productID);
                if (tblproduct != null && !string.IsNullOrEmpty(tblproduct.Description))
                {
                    ViewData["Description"] = tblproduct.Description;
                }

                return View("Admin/EditProduct", tblproduct);
            }
            else
            {

                ViewData["AddProduct"] = true;
                tblProduct tblproduct = new tblProduct();
                return View("Admin/EditProduct", tblproduct);
            }
        }
コード例 #5
0
        public void InsertProduct(tblProduct tblproduct)
        {
          if (tblproduct != null && tblproduct.ID != null && !tblproduct.ID.Equals(Guid.Empty))
          {

            tblproduct.CreatedDate = DateTime.Now;
            _dataContext.tblProducts.InsertOnSubmit(tblproduct);
            _dataContext.SubmitChanges();
          }
        }
コード例 #6
0
 public void InsertProduct(tblProduct tblProduct)
 {
   _da.InsertProduct(tblProduct);
 }
コード例 #7
0
 public void UpdateProduct(tblProduct tblproduct)
 {
   if (tblproduct != null && tblproduct.ID != null && !tblproduct.ID.Equals(Guid.Empty))
   {
     var query = _dataContext.tblProducts.Where(item=>item.ID.Equals(tblproduct.ID));
     if (query != null && query.ToList().Count > 0)
     {
       query.First().Price = tblproduct.Price;
       query.First().Price = tblproduct.Price;
       query.First().ProductName = tblproduct.ProductName;
       query.First().ProductName = tblproduct.ProductName;
       query.First().ProductNo = tblproduct.ProductNo;
       //query.First().tblCategory= tblproduct.tblCategory;
       query.First().UpdatedBy = tblproduct.UpdatedBy;
       query.First().UpdatedDate = DateTime.Now;
       query.First().CreatedBy = tblproduct.CreatedBy;
       query.First().CategoryID = tblproduct.CategoryID;
       query.First().Description = tblproduct.Description;
       query.First().Image = tblproduct.Image;
       query.First().Property = tblproduct.Property;
       _dataContext.SubmitChanges();
     }
   }
 }
コード例 #8
0
		private void detach_tblProducts(tblProduct entity)
		{
			this.SendPropertyChanging();
			entity.tblCategory = null;
		}
コード例 #9
0
 partial void DeletetblProduct(tblProduct instance);
コード例 #10
0
 partial void UpdatetblProduct(tblProduct instance);
コード例 #11
0
 partial void InserttblProduct(tblProduct instance);