Files
StockMan/StockManMVC/Views/ItemFluxes/Delete.cshtml
T

121 lines
3.4 KiB
Plaintext

@model StockManMVC.Models.ItemFlux
@{
ViewBag.Title = "Delete";
}
<div class="panel panel-danger">
<div class="panel-heading">
<strong>Eliminazione record</strong>
</div>
<div class="panel-body">
<h4>Sicuro di voler eliminare questo record?</h4>
<div>
<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>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
<div class="form-actions no-color row">
<div class="col-sm-6">
<button type="submit" value="Delete" class="btn btn-danger form-control">Elimina <i class="glyphicon glyphicon-remove-circle"></i></button>
</div>
<div class="col-sm-6">
<a href="@Url.Action("Details", "Items", new { id=Model.ItemID, StockItemID= Model.ItemID })" class="btn btn-info form-control">Annulla <i class="glyphicon glyphicon-retweet"></i></a>
</div>
</div>
}
</div>
</div>
</div>