SoftwayWeb/Views/Destinazioni/Index.cshtml

187 lines
5.4 KiB
Plaintext

@* @model IEnumerable<SoftwayWeb.Models.Destinazioni_Out> *@
@* @model SoftwayWeb.Models.Destinazioni_Out *@
@model IPagedList<SoftwayWeb.Models.Destinazioni_Out>
@using X.PagedList;
@using X.PagedList.Mvc.Core;
@using X.PagedList;
@{
ViewData["Title"] = "Lista Destinazioni";
Layout = "~/Views/Shared/_LayoutAreaRis.cshtml";
}
<h1>Lista destinazioni</h1>
<p>
<b>Data giro: @ViewBag.dataGiro</b>
<br />
<b>Autista: @ViewBag.CodAutista - @ViewBag.Autista</b>
<br />
<b>Automezzo: @ViewBag.CodMezzo - @ViewBag.Automezzo</b>
</p>
<a asp-action="Index" asp-controller="Giri" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a>
@* <p>
<a asp-action="Create">Create New</a>
</p>
*@
<table class="table" style="width:100%">
<thead>
<tr>
<th>&nbsp;</th>
<th>Seq</th>
<th>Committente</th>
<th>Sede</th>
<th>Indirizzo sede</th>
<th>Casse</th>
<th>Trasf.</th>
<th>Colli</th>
<th>Nr.Cons.</th>
<th>Uova</th>
<th>Cist</th>
<th>Note</th>
<th>&nbsp;</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model) {
<tr>
@if (item.ConsFatta != null)
{
<td>
@Html.HiddenFor(modelItem => item.ConsFatta.consFattaFlagCons)
@if (item.ConsFatta.consFattaFlagCons.Contains("S"))
{
<img alt="cons" src="@Url.Content("~/images/Green.png")" style="width:24px;height:24px">
}
else
{
<img alt="nocons" src="@Url.Content("~/images/Red.png")" style="width:24px;height:24px;">
}
</td>
}
else
{
<td>
<img alt="notyet" src="@Url.Content("~/images/yellow.png")" style="width:24px;height:24px;">
</td>
}
<td>
@Html.DisplayFor(modelItem => item.Seq)
</td>
<td>
@Html.DisplayFor(modelItem => item.CodCommittente) - @Html.DisplayFor(modelItem => item.Committente)
</td>
<td>
@Html.DisplayFor(modelItem => item.CodSede) - @Html.DisplayFor(modelItem => item.Sede)
</td>
<td>
@Html.DisplayFor(modelItem => item.IndirizzoSede)
</td>
@if (item.Casse != null && item.Casse>0)
{
<td>
@Html.DisplayFor(modelItem => item.Casse)
</td>
}
else
{
<td>&nbsp;</td>
}
@if (item.Trasf != null && item.Trasf > 0)
{
<td>
@Html.DisplayFor(modelItem => item.Trasf)
</td>
}
else
{
<td>&nbsp;</td>
}
@if (item.Colli != null && item.Colli > 0)
{
<td>
@Html.DisplayFor(modelItem => item.Colli)
</td>
}
else
{
<td>&nbsp;</td>
}
@if (item.num_cons != null && item.num_cons > 0)
{
<td>
@Html.DisplayFor(modelItem => item.num_cons)
</td>
}
else
{
<td>&nbsp;</td>
}
@if (item.Uova != null && item.Uova > 0)
{
<td>
@Html.DisplayFor(modelItem => item.Uova)
</td>
}
else
{
<td>&nbsp;</td>
}
@if (item.Cist != null && item.Cist > 0)
{
<td>
@Html.DisplayFor(modelItem => item.Cist)
</td>
}
else
{
<td>&nbsp;</td>
}
<td>
@Html.DisplayFor(modelItem => item.Note)
</td>
@if (item.ConsFatta == null)
{
<td>
@if (!string.IsNullOrEmpty(item.Prog))
{
<img alt="nocons" src="@Url.Content("~/images/warning.png")" style="width:24px;height:24px;">
}
<a href="@Url.ActionLink("EliminaDestinazione", "Destinazioni", new { serial=item.Brserial })" title="Elimina Destinazione" class="links"><img alt="nocons" src="@Url.Content("~/images/icons8-rimuovere-24.png")" style="width:24px;height:24px;"></a>
</td>
<td>
<a href="@Url.ActionLink("ModificaDestinazione", "Destinazioni", new { serial=item.Brserial })" title="Modifica Destinazione" class="links"><img alt="nocons" src="@Url.Content("~/images/system.png")" style="width:24px;height:24px;"></a>
</td>
}
else
{
<td>&nbsp;</td>
<td>&nbsp;</td>
}
</tr>
}
</tbody>
</table>
<br />
<nav>
@Html.PagedListPager(Model, page => Url.Action("index", new { page = page, Model/* searchString = @ViewData["CurrentFilter"] */ }), new PagedListRenderOptions()
{
ActiveLiElementClass = "active",
PageClasses = new[] { "page-link" },
LiElementClasses = new[] { "page-item" },
UlElementClasses = new[] { "pagination", "justify-content-center", "mt-3" },
LinkToNextPageFormat = "Successiva",
LinkToPreviousPageFormat = "Precedente",
MaximumPageNumbersToDisplay = 5,
DisplayLinkToPreviousPage = PagedListDisplayMode.Always,
DisplayLinkToNextPage = PagedListDisplayMode.Always
})
</nav>