public ActionResult EditDigitalSheet(DigitalSheet c, string returnUrl, string returnCodTypeOfTask) { if (ModelState.IsValid) { try { /* controllare le lastre CustomerSupplier[] customerSuppliers = customerSupplierRepository.GetAll().ToArray(); var filteredItems = customerSuppliers.Where( item => !(String.IsNullOrEmpty(item.BusinessName)) && item.BusinessName.IndexOf(c.SupplierMaker, StringComparison.InvariantCultureIgnoreCase) >= 0); if (filteredItems.Count() == 0) throw new Exception(); c.Article.CodSupplierMaker = filteredItems.Single().CodCustomerSupplier; */ taskExecutorRepository.Edit(c); taskExecutorRepository.Save(); return Json(new { redirectUrl = Url.Action(returnUrl, new { codTypeOfTask = returnCodTypeOfTask }) }); } catch (Exception ex) { ModelState.AddModelError(string.Empty, "Something went wrong. Message: " + ex.Message); } } //If we come here, something went wrong. Return it back. //return url ViewBag.ReturnUrl = returnUrl; ViewBag.ReturnCodTypeOfTask = returnCodTypeOfTask; //multi submit ViewBag.ActionMethod = "EditDigitalSheet"; return PartialView("_EditAndCreateDigitalSheet", c); }
public ActionResult CreateDigitalSheet(DigitalSheet c, string returnUrl, string returnCodTypeOfTask) { if (ModelState.IsValid) { try { //if code is empty then sistem has to assign one // if (c.Article.CodArticle == null) { c.CodTaskExecutor = taskExecutorRepository.GetNewCode(c); } c.TimeStampTable = DateTime.Now; taskExecutorRepository.Add(c); taskExecutorRepository.Save(); //hooray it passed - go back to index //hooray it passed - go back to index return Json(new { redirectUrl = Url.Action(returnUrl, new { codTypeOfTask = returnCodTypeOfTask }) }); } catch (Exception ex) { ModelState.AddModelError(string.Empty, "Something went wrong. Message: " + ex.Message); } } ViewBag.ReturnUrl = returnUrl; ViewBag.ReturnCodTypeOfTask = returnCodTypeOfTask; //added //Load each type of base ViewBag.TypeOfTaskList = typeOfTaskRepository.GetAll(); //view name is needed for reach right view because to using more than one submit we have to use "Action" in action method name ViewBag.ActionMethod = "CreateDigitalSheet"; return PartialView("_EditAndCreateDigitalSheet", c); }
public ActionResult EditDigitalSheet(string id, string returnUrl) { ViewBag.ReturnUrl = returnUrl; ViewBag.ReturnCodTypeOfTask = "INPIANO"; DigitalSheet tskEx = new DigitalSheet(); tskEx = (DigitalSheet)taskExecutorRepository.GetSingle(id); if (tskEx == null) return HttpNotFound(); //Load each type of base ViewBag.TypeOfTaskList = typeOfTaskRepository.GetAll().Where(y => y.CodCategoryOfTask == "STAMPA"); //is used to know where we are from and go ViewBag.ActionMethod = "EditDigitalSheet"; return View(tskEx); }
public ActionResult CreateDigitalSheet(string returnUrl) { ViewBag.ReturnUrl = returnUrl; ViewBag.ReturnCodTypeOfTask = "INPIANO"; //Load each type of base ViewBag.TypeOfTaskList = typeOfTaskRepository.GetAll().Where(y => y.CodCategoryOfTask == "STAMPA"); var x = new DigitalSheet(); x.CodTypeOfTask = "STAMPAOFFeDIGITALE"; //this feature is needed when in the view there are more than one input (submit button) form //Action Method speci ViewBag.ActionMethod = "CreateDigitalSheet"; return View(x); }