Example #1
0
        public async Task <ActionResult> Edit(EditOrderProductMaterialViewModel model)
        {
            if (!ModelState.IsValid)
            {
                model.AvailableSuppliers = GetAvailableSuppliers(model.SupplierId);

                return(View(model));
            }

            OrderProductMaterial orderProductMaterial = await context.OrderProductMaterials
                                                        .FindAsync(model.OrderProduct.Order.Id,
                                                                   model.OrderProduct.Product.Id,
                                                                   model.Material.Id);

            if (orderProductMaterial == null)
            {
                return(HttpNotFound());
            }

            orderProductMaterial.SupplierId   = model.SupplierId;
            orderProductMaterial.Quantity     = model.Quantity;
            orderProductMaterial.DeliveryDate = model.DeliveryDate;
            orderProductMaterial.Price        = model.Price;
            orderProductMaterial.Rate         = model.Rate;

            context.Entry(orderProductMaterial).State = EntityState.Modified;

            try
            {
                await context.SaveChangesAsync();
            }
            catch (Exception ex)
            {
                string errorMessage = ex.Message;

                while (ex != null)
                {
                    errorMessage = ex.Message;
                    ex           = ex.InnerException;
                }

                ModelState.AddModelError("", errorMessage);

                return(View(model));
            }

            return(RedirectToAction(nameof(Details),
                                    new
            {
                orderId = orderProductMaterial.OrderId,
                productId = orderProductMaterial.ProductId,
                materialId = orderProductMaterial.MaterialId
            }));
        }
Example #2
0
        public async Task <ActionResult> Edit(int?orderId, int?productId, int?materialId)
        {
            if (orderId == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }

            if (productId == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }

            if (materialId == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }

            OrderProductMaterial orderProductMaterial = await context.OrderProductMaterials
                                                        .Include(opm => opm.OrderProduct.Order)
                                                        .Include(opm => opm.OrderProduct.Product)
                                                        .Include(opm => opm.Material)
                                                        .Include(opm => opm.Supplier)
                                                        .FirstOrDefaultAsync(opa => opa.OrderId == orderId &&
                                                                             opa.ProductId == productId &&
                                                                             opa.MaterialId == materialId);

            if (orderProductMaterial == null)
            {
                return(HttpNotFound());
            }

            EditOrderProductMaterialViewModel model = new EditOrderProductMaterialViewModel();

            model.OrderProduct       = new OrderProductViewModel(orderProductMaterial.OrderProduct);
            model.Material           = new MaterialViewModel(orderProductMaterial.Material);
            model.SupplierId         = orderProductMaterial.SupplierId;
            model.Quantity           = orderProductMaterial.Quantity;
            model.DeliveryDate       = orderProductMaterial.DeliveryDate;
            model.Price              = orderProductMaterial.Price;
            model.Rate               = orderProductMaterial.Rate;
            model.AvailableSuppliers = GetAvailableSuppliers();

            return(View(model));
        }