public ActionResult Create([Bind(Include = "ID,设备号,业务员,收货网点,始发城市,责任人")] Idde idde) { if (ModelState.IsValid) { if (!string.IsNullOrEmpty(idde.设备号) && !string.IsNullOrWhiteSpace(idde.设备号)) { idde.设备号 = idde.设备号.ToString().Trim(); } if (!string.IsNullOrEmpty(idde.始发城市) && !string.IsNullOrWhiteSpace(idde.始发城市)) { idde.始发城市 = idde.始发城市.ToString().Trim(); } if (!string.IsNullOrEmpty(idde.收货网点) && !string.IsNullOrWhiteSpace(idde.收货网点)) { idde.收货网点 = idde.收货网点.ToString().Trim(); } if (!string.IsNullOrEmpty(idde.业务员) && !string.IsNullOrWhiteSpace(idde.业务员)) { idde.业务员 = idde.业务员.ToString().Trim(); } if (!string.IsNullOrEmpty(idde.责任人) && !string.IsNullOrWhiteSpace(idde.责任人)) { idde.责任人 = idde.责任人.ToString().Trim(); } idde.完成度 = "2"; db.Iddes.Add(idde); db.SaveChanges(); return(RedirectToAction("Index")); } return(View(idde)); }
public ActionResult DeleteConfirmed(int id) { Idde idde = db.Iddes.Find(id); db.Iddes.Remove(idde); db.SaveChanges(); return(RedirectToAction("Index")); }
// GET: Setting/iPad/Edit/5 public ActionResult Edit(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } Idde idde = db.Iddes.Find(id); if (idde == null) { return(HttpNotFound()); } return(View(idde)); }