cleanup + inizio formattazione tab lotti
This commit is contained in:
@@ -1,38 +1,57 @@
|
||||
<h3>Totale lotti</h3>
|
||||
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">Lotto</th>
|
||||
<th scope="col">Articolo</th>
|
||||
<th scope="col">Descrizione Art</th>
|
||||
<th scope="col">Tot colli</th>
|
||||
<th scope="col">Tot lotto</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@if (elencoTotLotto != null)
|
||||
{
|
||||
@foreach (var item in elencoTotLotto)
|
||||
{
|
||||
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<div class="d-flex justify-content-between">
|
||||
<div class="px-1">
|
||||
<b class="fs-4">Totale lotti</b>
|
||||
</div>
|
||||
<div class="px-1">
|
||||
<div class="input-group">
|
||||
<label class="input-group-text" for="txtSearch"><i class="fa-solid fa-magnifying-glass"></i></label>
|
||||
<input type="text" class="form-control" id="txtSearch" @bind="@searchVal">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-body p-1">
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<td>
|
||||
@item.Lotto
|
||||
</td>
|
||||
<td>
|
||||
@item.CodArticolo
|
||||
</td>
|
||||
<td class="small textCondensed">
|
||||
@item.DescrArt
|
||||
</td>
|
||||
<td>
|
||||
@item.NumColli
|
||||
</td>
|
||||
<td>
|
||||
@($"{item.TotLotto:N2}")
|
||||
</td>
|
||||
<th scope="col">Lotto</th>
|
||||
<th scope="col">Cod.Art.</th>
|
||||
<th scope="col">Descrizione Articolo</th>
|
||||
<th scope="col" class="text-end"># Colli</th>
|
||||
<th scope="col" class="text-end">Qty Tot</th>
|
||||
</tr>
|
||||
}
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</thead>
|
||||
<tbody>
|
||||
@if (elencoTotLotto != null)
|
||||
{
|
||||
@foreach (var item in elencoTotLotto)
|
||||
{
|
||||
<tr>
|
||||
<td>
|
||||
@item.Lotto
|
||||
</td>
|
||||
<td>
|
||||
@item.CodArticolo
|
||||
</td>
|
||||
<td class="small textCondensed">
|
||||
@item.DescrArt
|
||||
</td>
|
||||
<td class="text-end">
|
||||
@item.NumColli
|
||||
</td>
|
||||
<td class="text-end">
|
||||
@($"{item.TotLotto:N2}")
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="card-footer">
|
||||
<DataPager></DataPager>
|
||||
</div>
|
||||
</div>
|
||||
@@ -1,27 +1,5 @@
|
||||
@page "/Acquisizione"
|
||||
|
||||
@*<div class="d-flex justify-content-between">
|
||||
<h5 class="fw-bold py-1">MP.INVE</h5>
|
||||
<div class="fs-5 py-0">
|
||||
<span class="fw-bold badge bg-dark py-1 text-light">Acquisizione</span>
|
||||
</div>
|
||||
<div class="text-end">
|
||||
<button class="btn btn-sm btn-primary mb-2" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasRight" aria-controls="offcanvasRight"><i class="fa-solid fa-bars"></i></button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="offcanvas offcanvas-end" data-bs-scroll="true" data-bs-backdrop="false" tabindex="-1" id="offcanvasRight" aria-labelledby="offcanvasRightLabel">
|
||||
<div class="offcanvas-header">
|
||||
<h5 id="offcanvasRightLabel">Menu</h5>
|
||||
<button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="offcanvas-body text-center">
|
||||
|
||||
<a class="btn btn-sm btn-danger text-end mb-2" href="Cancellazione?idOpr=@idOpr&sessID=@sessionId">
|
||||
MODALITÀ CANCELLAZIONE
|
||||
</a>
|
||||
</div>
|
||||
</div>*@
|
||||
<div class="mb-2">
|
||||
<NavMenuTerm isScan="true" link="@link"></NavMenuTerm>
|
||||
</div>
|
||||
|
||||
@@ -110,13 +110,6 @@ else
|
||||
}
|
||||
}
|
||||
</div>
|
||||
|
||||
@*if (sessID != 0)
|
||||
{
|
||||
<div class="card-footer py-1">
|
||||
<DataPager PageSize="numRecord" currPage="currPage" numRecordChanged="ForceReload" numPageChanged="ForceReloadPage" totalCount="totalCount" showLoading="@isLoading" />
|
||||
</div>
|
||||
}*@
|
||||
</div>
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user