Merge branch 'release/FixUpdatePipe_02'

This commit is contained in:
Samuele Locatelli
2025-12-03 12:16:29 +01:00
2 changed files with 8 additions and 7 deletions
@@ -488,6 +488,7 @@ namespace LiMan.UI.Components
default:
SearchRecord = SearchRecord
.OrderByDescending(x => x.VersNumInstall)
.ThenBy(x=>x.CodInst)
.ThenBy(x => x.PcInst)
.ToList();
break;
+7 -7
View File
@@ -39,11 +39,11 @@
</th>
@if (CurrRecord == null)
{
<th>
<th class="text-end">
# Copie
<Sorter ParamName="NumInst" IsAsc="@sortAsc" CurrParam="@sortField" sortReq="SortRequested"></Sorter>
</th>
<th>
<th class="text-end">
# Licenze
<Sorter ParamName="NumImp" IsAsc="@sortAsc" CurrParam="@sortField" sortReq="SortRequested"></Sorter>
</th>
@@ -51,7 +51,7 @@
Versione
<Sorter ParamName="VersNumCurrent" IsAsc="@sortAsc" CurrParam="@sortField" sortReq="SortRequested"></Sorter>
</th>
<th class="text-end">
<th class="text-end ms-1">
Stato
<Sorter ParamName="UpdateScore" IsAsc="@sortAsc" CurrParam="@sortField" sortReq="SortRequested"></Sorter>
</th>
@@ -68,10 +68,10 @@
<td>@record.CodApp</td>
@if (CurrRecord == null)
{
<td>@record.NumInst</td>
<td>@record.NumImp</td>
<td>@record.VersNumCurrent</td>
<td>
<td class="text-end">@record.NumInst</td>
<td class="text-end">@record.NumImp</td>
<td class="text-end">@record.VersNumCurrent</td>
<td class="ms-1">
<InstUp2DateDispl CurrRecord="record"></InstUp2DateDispl>
</td>
}