138 lines
4.2 KiB
Plaintext
138 lines
4.2 KiB
Plaintext
@model IEnumerable<SoftwayWeb.Models.Destinazioni_Out.ConsegnaFatta>
|
|
|
|
@{
|
|
ViewData["Title"] = "Index";
|
|
}
|
|
|
|
<h1>Index</h1>
|
|
|
|
<p>
|
|
<a asp-action="Create">Create New</a>
|
|
</p>
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.consFattaSerial)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.consFattaRow)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.consFattaBanCar)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.consFattaBanSca)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.consFattaMezzo)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.consFattaAut)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.consFattaImpor)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.consFattaNotImp)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.consFattaNotBan)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.consFattaFlagCons)
|
|
</th>
|
|
@* <th>
|
|
@Html.DisplayNameFor(model => model.IndirizzoSede)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.Cproword)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.Cprownum)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.Brmerce)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.Brnote)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.ImportoDaRitirare)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.ItemList)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.serialeGiro)
|
|
</th> *@
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var item in Model) {
|
|
<tr>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.consFattaSerial)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.consFattaRow)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.consFattaBanCar)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.consFattaBanSca)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.consFattaMezzo)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.consFattaAut)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.consFattaImpor)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.consFattaNotImp)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.consFattaNotBan)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.consFattaFlagCons)
|
|
</td>
|
|
@* <td>
|
|
@Html.DisplayFor(modelItem => item.IndirizzoSede)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.Cproword)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.Cprownum)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.Brmerce)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.Brnote)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.ImportoDaRitirare)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.ItemList)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.serialeGiro)
|
|
</td>
|
|
<td>
|
|
@Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) |
|
|
@Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
|
|
@Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
|
|
</td> *@
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|