Files
StockMan/StockManMVC/Views/ItemFluxes/Details.cshtml
T
2016-09-30 10:55:20 +02:00

107 lines
2.1 KiB
Plaintext

@model StockManMVC.Models.ItemFlux
@{
ViewBag.Title = "Details";
}
<h3>Dettaglio Movimento</h3>
<div>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.dtMov)
</dt>
<dd>
@Html.DisplayFor(model => model.dtMov)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Qta)
</dt>
<dd>
@Html.DisplayFor(model => model.Qta)
</dd>
<dt>
@Html.DisplayNameFor(model => model.TotValue)
</dt>
<dd>
@Html.DisplayFor(model => model.TotValue)
</dd>
<dt>
@Html.DisplayNameFor(model => model.UnitVal)
</dt>
<dd>
@Html.DisplayFor(model => model.UnitVal)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Note)
</dt>
<dd>
@Html.DisplayFor(model => model.Note)
</dd>
<dt>
@Html.DisplayNameFor(model => model.dtExport)
</dt>
<dd>
@Html.DisplayFor(model => model.dtExport)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Location.Descr)
</dt>
<dd>
@Html.DisplayFor(model => model.Location.Descr)
</dd>
<dt>
@Html.DisplayNameFor(model => model.MovType.Descr)
</dt>
<dd>
@Html.DisplayFor(model => model.MovType.Descr)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Item.Descr)
</dt>
<dd>
@Html.DisplayFor(model => model.Item.Descr)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Operator.CodExt)
</dt>
<dd>
@Html.DisplayFor(model => model.Operator.CodExt)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Location1.Descr)
</dt>
<dd>
@Html.DisplayFor(model => model.Location1.Descr)
</dd>
</dl>
</div>
<p>
@Html.ActionLink("Edit", "Edit", new { id = Model.ID }) |
@Html.ActionLink("Back to List", "Index")
</p>