4506fda305
+ completamento procedura registraione movimenti pending in gruppo (DB 2 update...)
51 lines
982 B
Plaintext
51 lines
982 B
Plaintext
@model StockManMVC.Models.vItemFlux2Save
|
|
|
|
@{
|
|
ViewBag.Title = "Details";
|
|
}
|
|
|
|
<h2>Details</h2>
|
|
|
|
<div>
|
|
<h4>vItemFlux2Save</h4>
|
|
<hr />
|
|
<dl class="dl-horizontal">
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.NumMov)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.NumMov)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.TotQta)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.TotQta)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.TotValCar)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.TotValCar)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.TotQtaCar)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.TotQtaCar)
|
|
</dd>
|
|
|
|
</dl>
|
|
</div>
|
|
<p>
|
|
@Html.ActionLink("Edit", "Edit", new { id = Model.ItemID }) |
|
|
@Html.ActionLink("Back to List", "Index")
|
|
</p>
|