Esempio n. 1
0
        public ActionResult _AddEditProductBrand(Int32?ProductBrandId)
        {
            var vm = new _AddEditProductBrandViewModel();

            vm.Fill(CargarDatosContext(), ProductBrandId);
            return(View(vm));
        }
Esempio n. 2
0
        public ActionResult _AddEditProductBrand(_AddEditProductBrandViewModel model)
        {
            try
            {
                var existe = context.ProductBrand.FirstOrDefault(x => x.ProductId == model.ProductId && x.BrandId == model.BrandId && x.Status == ConstantHelpers.ESTADO.ACTIVO);

                using (var ts = new TransactionScope())
                {
                    ProductBrand ProductBrand = new ProductBrand();
                    if (model.ProductBrandId.HasValue)
                    {
                        ProductBrand = context.ProductBrand.FirstOrDefault(x => x.ProductBrandId == model.ProductBrandId);
                    }
                    else
                    {
                        if (existe != null)
                        {
                            PostMessage(MessageType.Info, "Marca producto ya registrado");
                            return(RedirectToAction("ListProductBrand"));
                        }

                        context.ProductBrand.Add(ProductBrand);
                        ProductBrand.Status = ConstantHelpers.ESTADO.ACTIVO;
                    }

                    ProductBrand.BrandId   = model.BrandId;
                    ProductBrand.ProductId = model.ProductId;

                    context.SaveChanges();

                    //CREAR STOCK PRODUCTO

                    if (!model.ProductBrandId.HasValue)
                    {
                        StockProduct stockProduct = new StockProduct();
                        context.StockProduct.Add(stockProduct);
                        stockProduct.Amount         = 0;
                        stockProduct.ProductBrandId = ProductBrand.ProductBrandId;
                        stockProduct.Status         = ConstantHelpers.ESTADO.ACTIVO;
                        context.SaveChanges();
                    }

                    ts.Complete();
                }
                PostMessage(MessageType.Success, "Marca Producto Guardado");
                return(RedirectToAction("ListProductBrand"));
            }
            catch (Exception e)
            {
                return(View(model));
            }
        }