66 lines
2.4 KiB
Plaintext
66 lines
2.4 KiB
Plaintext
@* @model IEnumerable<SoftwayWeb.Models.Destinazioni_Out.ConsegnaFatta> *@
|
|
@model SoftwayWeb.Models.Destinazioni_Out.ConsegnaFatta
|
|
@{
|
|
ViewData["Title"] = "Index";
|
|
Layout = "~/Views/Shared/_LayoutAreaRis.cshtml";
|
|
}
|
|
@* <a asp-action="Index" asp-controller="Destinazioni" value="Torna alla lista" class="btn btn-primary">Torna alla lista</a> *@
|
|
<br />
|
|
<br />
|
|
<div class="card">
|
|
<h5 class="card-header">Dettaglio consegna</h5>
|
|
<div class="table-responsive text-nowrap">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Seriale consegna</th>
|
|
<th>Riga</th>
|
|
<th>Bancali caricati</th>
|
|
<th>Bancali scaricati</th>
|
|
<th>Automezzo</th>
|
|
<th>Autista</th>
|
|
<th>Importo</th>
|
|
<th>Note 1</th>
|
|
<th>Note 2</th>
|
|
<th>Consegato</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => modelItem.consFattaSerial)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => modelItem.consFattaRow)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => modelItem.consFattaBanCar)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => modelItem.consFattaBanSca)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => modelItem.consFattaMezzo)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => modelItem.consFattaAut)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => modelItem.consFattaImpor)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => modelItem.consFattaNotImp)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => modelItem.consFattaNotBan)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => modelItem.consFattaFlagCons)
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|