Files
StockMan/StockManMVC/Controllers/ItemFluxesController.cs
T
Samuele E. Locatelli b83dff00a1 inizio aggiunta vista stock detail
da collegare x navigazione...
2016-09-21 18:22:16 +02:00

141 lines
4.9 KiB
C#

using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Entity;
using System.Linq;
using System.Net;
using System.Web;
using System.Web.Mvc;
using StockManMVC.Models;
namespace StockManMVC.Controllers
{
public class ItemFluxesController : Controller
{
private StockManEntities db = new StockManEntities();
// GET: ItemFluxes
public ActionResult Index()
{
var itemFlux = db.ItemFlux.Include(i => i.Item).Include(i => i.Location).Include(i => i.MovType);
return View(itemFlux.ToList());
}
// GET: ItemFluxes/Details/5
public ActionResult Details(int? id)
{
if (id == null)
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
ItemFlux itemFlux = db.ItemFlux.Find(id);
if (itemFlux == null)
{
return HttpNotFound();
}
return View(itemFlux);
}
// GET: ItemFluxes/Create
public ActionResult Create()
{
ViewBag.ItemID = new SelectList(db.Item, "ID", "Descr");
ViewBag.LocationID = new SelectList(db.Location, "ID", "Descr");
ViewBag.MovTypeID = new SelectList(db.MovType, "ID", "Descr");
return View();
}
// POST: ItemFluxes/Create
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create([Bind(Include = "ID,ItemID,LocationID,MovTypeID,ExtLocationID,dtMov,Qta,TotValue,UnitVal,Note,dtExport")] ItemFlux itemFlux)
{
if (ModelState.IsValid)
{
db.ItemFlux.Add(itemFlux);
db.SaveChanges();
return RedirectToAction("Index");
}
ViewBag.ItemID = new SelectList(db.Item, "ID", "Descr", itemFlux.ItemID);
ViewBag.LocationID = new SelectList(db.Location, "ID", "Descr", itemFlux.LocationID);
ViewBag.MovTypeID = new SelectList(db.MovType, "ID", "Descr", itemFlux.MovTypeID);
return View(itemFlux);
}
// GET: ItemFluxes/Edit/5
public ActionResult Edit(int? id)
{
if (id == null)
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
ItemFlux itemFlux = db.ItemFlux.Find(id);
if (itemFlux == null)
{
return HttpNotFound();
}
ViewBag.ItemID = new SelectList(db.Item, "ID", "Descr", itemFlux.ItemID);
ViewBag.LocationID = new SelectList(db.Location, "ID", "Descr", itemFlux.LocationID);
ViewBag.MovTypeID = new SelectList(db.MovType, "ID", "Descr", itemFlux.MovTypeID);
return View(itemFlux);
}
// POST: ItemFluxes/Edit/5
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Edit([Bind(Include = "ID,ItemID,LocationID,MovTypeID,ExtLocationID,dtMov,Qta,TotValue,UnitVal,Note,dtExport")] ItemFlux itemFlux)
{
if (ModelState.IsValid)
{
db.Entry(itemFlux).State = EntityState.Modified;
db.SaveChanges();
return RedirectToAction("Index");
}
ViewBag.ItemID = new SelectList(db.Item, "ID", "Descr", itemFlux.ItemID);
ViewBag.LocationID = new SelectList(db.Location, "ID", "Descr", itemFlux.LocationID);
ViewBag.MovTypeID = new SelectList(db.MovType, "ID", "Descr", itemFlux.MovTypeID);
return View(itemFlux);
}
// GET: ItemFluxes/Delete/5
public ActionResult Delete(int? id)
{
if (id == null)
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
ItemFlux itemFlux = db.ItemFlux.Find(id);
if (itemFlux == null)
{
return HttpNotFound();
}
return View(itemFlux);
}
// POST: ItemFluxes/Delete/5
[HttpPost, ActionName("Delete")]
[ValidateAntiForgeryToken]
public ActionResult DeleteConfirmed(int id)
{
ItemFlux itemFlux = db.ItemFlux.Find(id);
db.ItemFlux.Remove(itemFlux);
db.SaveChanges();
return RedirectToAction("Index");
}
protected override void Dispose(bool disposing)
{
if (disposing)
{
db.Dispose();
}
base.Dispose(disposing);
}
}
}