Esempio n. 1
0
        public PartialViewResult _ChiTiet(string productId = "")
        {
            int height = (int)(Request.Browser.ScreenPixelsHeight * 0.85);

            TB_PRODUCTS s = Products_Service.GetById(productId);

            ViewBag.Product = s;

            List <TB_SUPPLIERS> list = Suppliers_Service.GetAll()
                                       .Where(x => x.SupplierState == "A").ToList();

            ViewBag.SupplierList = list;

            List <TB_CATEGORIES> list2 = Categories_Service.GetAll()
                                         .Where(x => x.CategoryState == "A").ToList();

            ViewBag.CategoryList = list2;

            try
            {
                ViewBag.Images = Files_Service.GetByRefecense("" + s.ProductCode).Where(x => x.FileType == "PRODUCT").ToList();
            }
            catch (Exception ex)
            {
                CORE.Helpers.IOHelper.WriteLog(StartUpPath, IpAddress, "Blogs/_List :", ex.Message, ex.ToString());
            }

            return(PartialView(height));
        }
Esempio n. 2
0
        public ActionResult Detail(string Id = "")
        {
            TB_PRODUCTS d = Products_Service.GetById(Id);

            List <TB_FILES> file = Files_Service.GetByRefecense(Id).Where(x => x.FileType == "PRODUCT").ToList();

            ViewBag.Files = file;

            return(View(d));
        }
Esempio n. 3
0
        public ActionResult Index()
        {
            List <TB_PRODUCTS> list = Products_Service.GetAll();

            List <TB_FILES> file = Files_Service.GetAll().Where(x => x.FileType == "PRODUCT").ToList();

            ViewBag.Files = file;

            return(View(list));
        }
Esempio n. 4
0
        public JsonResult InsertProduct(string product_code, string product_name, decimal product_price, string product_state, string product_supplierCode, string product_categoryCode)
        {
            AjaxResultModel Result = new AjaxResultModel();

            try
            {
                if (Products_Service.Insert(new TB_PRODUCTS
                {
                    ProductCode = product_code,
                    ProductName = product_name,
                    ProductPrice = product_price,
                    ProductState = product_state,
                    ProductSupplierCode = product_supplierCode,
                    ProductCategoryCode = product_categoryCode
                }))
                {
                    if (Request.Files.Count > 0)
                    {
                        for (int i = 0; i < Request.Files.Count; i++)
                        {
                            HttpPostedFileBase file     = Request.Files[i];
                            string             fileName = Path.GetFileName(file.FileName);
                            string             filePath = SaveFile(file);
                            Files_Service.Insert(new TB_FILES
                            {
                                FileOrg         = fileName,
                                FilePath        = filePath,
                                FileData        = "",
                                FileStatus      = "A",
                                FileType        = "PRODUCT",
                                FileReferenceId = product_code
                            });
                        }
                    }

                    Result.Code   = 000;
                    Result.Result = "Thành công";
                }
                else
                {
                    Result.Code   = 001;
                    Result.Result = "Không thành công";
                }
            }
            catch (Exception Ex)
            {
                Result.Code   = 2000;
                Result.Result = "Có lỗi xảy ra. Vui lòng thử lại sau hoặc liên hệ với người quản trị.";
                CORE.Helpers.IOHelper.WriteLog(StartUpPath, IpAddress, "UpdatePassword :", Ex.Message, Ex.ToString());
            }

            return(Json(Result));
        }
Esempio n. 5
0
        public JsonResult AddToCart(string productCode, int number)
        {
            AjaxResultModel Result = new AjaxResultModel();

            try
            {
                List <CartModel> list = new List <CartModel>();
                if (Session[AppSession.AppSessionKeys.USER_CART] != null)
                {
                    list = (List <CartModel>)Session[AppSession.AppSessionKeys.USER_CART];
                }

                if (list.Exists(x => x.ProductCode == productCode))
                {
                    foreach (CartModel item in list)
                    {
                        if (item.ProductCode == productCode)
                        {
                            item.Quantity += number;
                        }
                    }
                }
                else
                {
                    TB_PRODUCTS p = Products_Service.GetById(productCode);
                    list.Add(new CartModel
                    {
                        ProductCode = productCode,
                        ProductName = p.ProductName,
                        Quantity    = number,
                        Price       = p.ProductPrice
                    });
                }

                Session[AppSession.AppSessionKeys.USER_CART] = list;

                Result.Code   = 000;
                Result.Result = list.Count;
            }
            catch (Exception Ex)
            {
                Result.Code   = 2000;
                Result.Result = "Có lỗi xảy ra. Vui lòng thử lại sau hoặc liên hệ với người quản trị.";
                CORE.Helpers.IOHelper.WriteLog(StartUpPath, IpAddress, "UpdatePassword :", Ex.Message, Ex.ToString());
            }

            return(Json(Result));
        }
Esempio n. 6
0
        public ActionResult Search(string group = "", string key = "")
        {
            List <TB_CATEGORIES> catList = Categories_Service.GetAll();

            ViewBag.CatList = catList;
            ViewBag.Group   = group;

            List <TB_PRODUCTS> productList = Products_Service.GetAll().Where(x => x.ProductName.IndexOf(key) > -1).ToList();

            ViewBag.ProductList = productList;

            List <TB_FILES> file = Files_Service.GetAll().Where(x => x.FileType == "PRODUCT").ToList();

            if (file == null)
            {
                file = new List <TB_FILES>();
            }
            ViewBag.Files = file;

            return(View());
        }
Esempio n. 7
0
        public PartialViewResult _DanhSach(string keyText = "", int pageNumber = 1, int pageSize = 10)
        {
            List <TB_PRODUCTS> list = new List <TB_PRODUCTS>();

            int count = 0;

            try
            {
                keyText = keyText.Trim();
                list    = Products_Service.GetAll()
                          .Where(x => string.IsNullOrEmpty(keyText) || x.ProductCode.IndexOf(keyText) >= 0 || x.ProductName.IndexOf(keyText) >= 0)
                          .ToList();
                count = list.Count;
                list  = list
                        .Skip((pageNumber - 1) * pageSize).Take(pageSize)
                        .ToList();
            }
            catch (Exception ex)
            {
                CORE.Helpers.IOHelper.WriteLog(StartUpPath, IpAddress, "Services/_List :", ex.Message, ex.ToString());
            }

            ViewBag.maxNumber  = Math.Ceiling((double)count / pageSize);
            ViewBag.pageNumber = pageNumber;
            ViewBag.pageSize   = pageSize;

            try
            {
                ViewBag.SupList = Suppliers_Service.GetAll();
                ViewBag.CatList = Categories_Service.GetAll();
            }
            catch (Exception ex)
            {
                CORE.Helpers.IOHelper.WriteLog(StartUpPath, IpAddress, "Services/_List :", ex.Message, ex.ToString());
            }

            return(PartialView(list));
        }