Files
StockMan/StockManMVC/Views/MagStatus/Index.cshtml
T
2016-09-27 10:59:42 +02:00

53 lines
1.8 KiB
Plaintext

@model IEnumerable<StockManMVC.Models.vLocationVal>
@{
ViewBag.Title = "Valorizzazione Stock Giacenze";
}
<div class="row" style="margin-top: 0.5em;">
<div class="col-sm-10 col-sm-offset-1">
<div class="panel panel-default">
<div class="panel-heading">
<strong>Valorizzazione Stock Giacenze</strong>
</div>
<div class="panel-body">
<table class="table table-condensed table-responsive table-striped">
<tr>
<th>
@Html.DisplayNameFor(model => model.Location.Descr)
</th>
<th>
@Html.DisplayNameFor(model => model.TotCurr)
</th>
<th>
@Html.DisplayNameFor(model => model.TotPend)
</th>
<th>
@Html.DisplayNameFor(model => model.TotVal)
</th>
</tr>
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.Location.Descr)
</td>
<td>
@Html.DisplayFor(modelItem => item.TotCurr)
</td>
<td>
@Html.DisplayFor(modelItem => item.TotPend)
</td>
<td>
@Html.DisplayFor(modelItem => item.TotVal)
</td>
</tr>
}
</table>
</div>
</div>
</div>
</div>