Files
Samuele E. Locatelli (WEB DEV) 4506fda305 Aggiunto link x gestione famiglie articoli
+ completamento procedura registraione movimenti pending in gruppo (DB 2 update...)
2016-09-26 22:28:27 +02:00

68 lines
2.7 KiB
Plaintext

@model StockManMVC.Models.vItemFlux2Save
@{
ViewBag.Title = "Create";
}
<h2>Create</h2>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
<h4>vItemFlux2Save</h4>
<hr />
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
<div class="form-group">
@Html.LabelFor(model => model.ItemID, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.ItemID, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.ItemID, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(model => model.NumMov, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.NumMov, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.NumMov, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(model => model.TotQta, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.TotQta, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.TotQta, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(model => model.TotValCar, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.TotValCar, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.TotValCar, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(model => model.TotQtaCar, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.TotQtaCar, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.TotQtaCar, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</div>
</div>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>