public async Task <IActionResult> Edit(DateTime id, [Bind("Date,HolidayName")] HolidayEntry holidayEntry) { if (id != holidayEntry.Date) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(holidayEntry); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!HolidayEntryExists(holidayEntry.Date)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(holidayEntry)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,SerialNumber,RegisteredDate,UserShipDate,VenReceiveDate,CalDate,CalResult,VenComment,PlanedShipDate,VenShipDate,UserReceiveDate,CcReceiveDate,CcUploadDate,Tat,Finished,Plant,StdTat,TatStatus")] CalInProcess calInProcess) { if (id != calInProcess.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(calInProcess); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CalInProcessExists(calInProcess.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(calInProcess)); }
public async Task <IActionResult> Edit(string id, [Bind("SerialNumber,Plant,StoreLocation,Material,Description,LatestCalDate,CalStatus,Comment,CalDue,SystemStatus,UserStatus,Room,SuperordEquip,SortField,Machine,ToolkitMachine,ToolkitSloc,LatestSafetyDate,SafetyDue,NeedCal,NeedSafety,RemovedDate,UpdatedDate,InCal,PSN")] ToolInventory toolInventory) { if (id != toolInventory.SerialNumber) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(toolInventory); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ToolInventoryExists(toolInventory.SerialNumber)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(toolInventory)); }
public async Task <IActionResult> Edit(string id, [Bind("Material,MaterialDescription,CalPlace,CalVendor,CalInterval,Instruction,AddRemove,ChangeDate,NeedCal,NeedSafety,SafetyInterval,PMaker,PName,PModel")] MaterialNeedCal materialNeedCal) { if (id != materialNeedCal.Material) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(materialNeedCal); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!MaterialNeedCalExists(materialNeedCal.Material)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(materialNeedCal)); }