69 lines
2.5 KiB
Plaintext
69 lines
2.5 KiB
Plaintext
@model IEnumerable<StockManMVC.Models.ItemStock>
|
|
|
|
<div class="panel panel-info">
|
|
<div class="panel-heading">
|
|
<div class="row">
|
|
<div class="col-sm-8">
|
|
<strong>@Html.DisplayNameFor(model => model.Location.Descr)</strong>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<a href="@Url.Action("", "MagStatus")" class="btn btn-info btn-sm">reset <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.Item.CodInt)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.Item.Descr)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.QtyConf)
|
|
</th>
|
|
<th class="text-right">
|
|
@Html.DisplayNameFor(model => model.Item.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.Item.CodInt)
|
|
</div>
|
|
<div class="small tNote">
|
|
(@Html.DisplayFor(modelItem => item.Item.CodExt))
|
|
</div>
|
|
|
|
</td>
|
|
<td>
|
|
<div>
|
|
@Html.DisplayFor(modelItem => item.Item.Descr)
|
|
</div>
|
|
<div class="small tNote">
|
|
(@Html.DisplayFor(modelItem => item.Item.DescrExt))
|
|
</div>
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.QtyConf)
|
|
</td>
|
|
<td class="text-right">
|
|
@Html.DisplayFor(modelItem => item.Item.CurrValue)
|
|
</td>
|
|
</tr>
|
|
}
|
|
|
|
</table>
|
|
</div>
|
|
</div>
|