23 lines
946 B
Plaintext
23 lines
946 B
Plaintext
@model StockManMVC.Models.ItemStock
|
|
|
|
@using (Html.BeginForm())
|
|
{
|
|
@Html.AntiForgeryToken()
|
|
<div class="row well well-sm">
|
|
<div class="col-xs-6">
|
|
Converma spostamento di @Html.EditorFor(m => m.QtyConf, new { htmlAttributes = new { min = 0, max = Model.QtyConf } }) pz.
|
|
@Html.ValidationMessageFor(model => model.QtyConf, "", new { @class = "text-danger" })
|
|
</div>
|
|
<div class="col-xs-3">
|
|
<button type="submit" class="btn btn-success form-control">Sposta <i class="glyphicon glyphicon-ok-circle"></i></button>
|
|
</div>
|
|
<div class="col-xs-3">
|
|
<a href="@Url.Action("", "MagStatus", new { LocationID_SX = ViewBag.LocationId, LocationID_DX = ViewBag.LocationIdTo })" class="btn btn-danger form-control">Annulla <i class="glyphicon glyphicon-remove-circle"></i></a>
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
@section Scripts {
|
|
@Scripts.Render("~/bundles/jqueryval")
|
|
}
|