69 lines
2.5 KiB
Plaintext
69 lines
2.5 KiB
Plaintext
@model IEnumerable<StockManMVC.Models.Item>
|
|
|
|
<div class="panel panel-info">
|
|
<div class="panel-heading">
|
|
<div class="row">
|
|
<div class="col-sm-8">
|
|
<strong>@Html.DisplayNameFor(model => model.ItemFamily.Descr)</strong>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<a href="@Url.Action("", "ItemFamilies")" class="btn btn-info btn-sm form-control">Annulla <i class="glyphicon glyphicon-retweet"></i></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="panel-body small">
|
|
<table class="table table-condensed table-responsive table-striped table-hover table-bordered table">
|
|
<tr>
|
|
<th></th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.CodInt)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.Descr)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.QtaPend)
|
|
</th>
|
|
<th class="text-right">
|
|
@Html.DisplayNameFor(model => model.CurrValue)
|
|
</th>
|
|
</tr>
|
|
|
|
@foreach (var item in Model)
|
|
{
|
|
<tr>
|
|
<td>
|
|
<a href="@Url.Action("Details", "Items", new { id = item.ID, StockItemID = item.ID })" class="btn btn-sm btn-info">
|
|
<i class="glyphicon glyphicon-search" aria-hidden="true"></i>
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<div class="tNoWrap">
|
|
@Html.DisplayFor(modelItem => item.CodInt)
|
|
</div>
|
|
<div class="small tNote">
|
|
(@Html.DisplayFor(modelItem => item.CodExt))
|
|
</div>
|
|
|
|
</td>
|
|
<td>
|
|
<div>
|
|
@Html.DisplayFor(modelItem => item.Descr)
|
|
</div>
|
|
<div class="small tNote">
|
|
(@Html.DisplayFor(modelItem => item.DescrExt))
|
|
</div>
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.QtaPend)
|
|
</td>
|
|
<td class="text-right">
|
|
@Html.DisplayFor(modelItem => item.CurrValue)
|
|
</td>
|
|
</tr>
|
|
}
|
|
|
|
</table>
|
|
</div>
|
|
</div>
|