public async Task <ActionResult> SaveModify(SupplierToManufacturerViewModel model) { DateTime now = DateTime.Now; using (SupplierToManufacturerServiceClient client = new SupplierToManufacturerServiceClient()) { SupplierToManufacturerKey key = new SupplierToManufacturerKey() { MaterialCode = model.MaterialCode.ToString().Trim().ToUpper(), OrderNumber = model.OrderNumber.ToString().Trim().ToUpper(), SupplierCode = model.SupplierCode.ToString().Trim().ToUpper() }; MethodReturnResult <SupplierToManufacturer> result = await client.GetAsync(key); if (result.Code == 0) { result.Data.ManufacturerCode = model.ManufacturerCode; result.Data.EditTime = now; result.Data.Editor = User.Identity.Name; MethodReturnResult rst = await client.ModifyAsync(result.Data); if (rst.Code == 0) { rst.Message = string.Format("供应商转换生产厂商规则修改成功!"); } return(Json(rst)); } return(Json(result)); } }
// // GET: /ZPVM/SupplierToManufacturer/Detail public async Task <ActionResult> Detail(string materialCode, string orderNumber, string supplierCode) { using (SupplierToManufacturerServiceClient client = new SupplierToManufacturerServiceClient()) { SupplierToManufacturerKey key = new SupplierToManufacturerKey() { MaterialCode = materialCode, OrderNumber = orderNumber, SupplierCode = supplierCode }; MethodReturnResult <SupplierToManufacturer> result = await client.GetAsync(key); if (result.Code == 0) { SupplierToManufacturerViewModel viewModel = new SupplierToManufacturerViewModel() { MaterialCode = result.Data.Key.MaterialCode, OrderNumber = result.Data.Key.OrderNumber, SupplierCode = result.Data.Key.SupplierCode, ManufacturerCode = result.Data.ManufacturerCode, Creator = result.Data.Creator, CreateTime = result.Data.CreateTime, Editor = result.Data.Editor, EditTime = result.Data.EditTime }; return(PartialView("_InfoPartial", viewModel)); } else { ModelState.AddModelError("", result.Message); } } return(PartialView("_InfoPartial")); }
// // GET: /ZPVM/SupplierToManufacturer/Modify public async Task <ActionResult> Modify(string materialCode, string orderNumber, string supplierCode) { SupplierToManufacturerViewModel viewModel = new SupplierToManufacturerViewModel(); using (SupplierToManufacturerServiceClient client = new SupplierToManufacturerServiceClient()) { MethodReturnResult <SupplierToManufacturer> result = await client.GetAsync(new SupplierToManufacturerKey() { MaterialCode = materialCode, OrderNumber = orderNumber, SupplierCode = supplierCode }); if (result.Code == 0) { viewModel = new SupplierToManufacturerViewModel() { MaterialCode = result.Data.Key.MaterialCode, OrderNumber = result.Data.Key.OrderNumber, SupplierCode = result.Data.Key.SupplierCode, ManufacturerCode = result.Data.ManufacturerCode }; return(PartialView("_ModifyPartial", viewModel)); } else { ModelState.AddModelError("", result.Message); } } return(PartialView("_ModifyPartial")); }