104 lines
2.4 KiB
Plaintext
104 lines
2.4 KiB
Plaintext
@model StockManMVC.Models.Item
|
|
|
|
@{
|
|
ViewBag.Title = "Delete";
|
|
}
|
|
|
|
<h4>Sicuro di voler eliminare questo record?</h4>
|
|
|
|
<div>
|
|
<dl class="dl-horizontal">
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Descr)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Descr)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.CodInt)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.CodInt)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.CodExt)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.CodExt)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.DescrExt)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.DescrExt)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.QtaMin)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.QtaMin)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.QtaBatch)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.QtaBatch)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.CurrValue)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.CurrValue)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.UM)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.UM)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.ItemFamily.Descr)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.ItemFamily.Descr)
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
@using (Html.BeginForm()) {
|
|
@Html.AntiForgeryToken()
|
|
|
|
|
|
<div class="form-group no-color row">
|
|
<div class="col-sm-6">
|
|
<button type="submit" value="Delete" class="btn btn-sm btn-danger form-control">Elimina <i class="glyphicon glyphicon-ok-circle"></i></button>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<a href="@Url.Action("Details", "Items", new { id=Model.ID, StockItemID= Model.ID })" class="btn btn-sm btn-info form-control">Torna ad Articolo <i class="glyphicon glyphicon-retweet"></i></a>
|
|
</div>
|
|
</div>
|
|
|
|
@*<div class="form-actions no-color">
|
|
<input type="submit" value="Delete" class="btn btn-default" /> |
|
|
@Html.ActionLink("Back to List", "Index")
|
|
</div>*@
|
|
}
|
|
</div>
|