+
diff --git a/StockMan.CORE/Components/ItemList.razor b/StockMan.CORE/Components/ItemList.razor
index 5ac10d9..92d8ca5 100644
--- a/StockMan.CORE/Components/ItemList.razor
+++ b/StockMan.CORE/Components/ItemList.razor
@@ -1,162 +1,166 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- @*
*@
-
-@if (isLoading)
+@if (isLoading)
{
}
-@if (ListRecord == null || ListRecord.Count == 0)
+else if (ListRecord == null || ListRecord.Count == 0)
{
nessun record
}
else
{
-
-
-
-
- |
- |
-
-
-
- orderByCodInt()">
- COD. ARTICOLO
- @if (orderType == orderTypeEnum.codIntAscending)
+
+
+
+
+
+
+ |
+ |
+
+
+
+ orderByCodInt()">
+ COD. ARTICOLO
+ @if (orderType == orderTypeEnum.codIntAscending)
+ {
+
+ }
+ else if (orderType == orderTypeEnum.codIntDescending)
+ {
+
+ }
+ else
+ {
+
+ }
+
+
+
+ orderByCodForn()">
+ COD. FORNITORE
+ @if (orderType == orderTypeEnum.codExtAscending)
+ {
+
+ }
+ else if (orderType == orderTypeEnum.codExtDescending)
+ {
+
+ }
+ else
+ {
+
+ }
+
+
+ |
+
+
+
+ |
+ orderByStock()" class="col-1">
+ STOCK
+ @if (orderType == orderTypeEnum.stockAscending)
{
-
+
+ }
+ else if (orderType == orderTypeEnum.stockDescending)
+ {
+
}
else
{
-
+
}
-
-
-
- orderByCodForn()">
- COD. FORNITORE
- @if (orderType == orderTypeEnum.codExtAscending)
- {
-
- }
- else if (orderType == orderTypeEnum.codExtDescending)
- {
-
- }
- else
- {
-
- }
-
-
- |
-
-
-
- |
- orderByStock()"class="col-1">
- STOCK
- @if (orderType == orderTypeEnum.stockAscending)
+ |
+
+ VALORE UNIT.
+ |
+
+ VALORE TOT.
+ |
+
+ |
+
+
+
+ @foreach (var item in ListRecord)
{
-
+
+ |
+
+ |
+
+ @item.CodInt
+
+ @item.CodExt
+
+ |
+
+
+
+ @item.Descr
+
+
+
+
+ @item.DescrExt
+
+
+ |
+
+
+ @item.QtaBatch
+
+ |
+
+ @($"{item.CurrValue:C2}")
+ |
+
+ @($"{(item.CurrValue * item.QtaBatch):C2}")
+ |
+
+
+ |
+
}
- else if (orderType == orderTypeEnum.stockDescending)
- {
-
- }
- else
- {
-
- }
-
-
- VALORE UNIT.
- |
-
- VALORE TOT.
- |
-
- |
-
-
-
- @foreach (var item in ListRecord)
- {
-
- |
-
- |
-
- @item.CodInt
-
- @item.CodExt
-
- |
-
-
-
- @item.Descr
-
-
-
-
- @item.DescrExt
-
-
- |
-
-
- @item.QtaBatch
-
- |
-
- @($"{item.CurrValue:C2}")
- |
-
- @($"{(item.CurrValue * item.QtaBatch):C2}")
- |
-
-
- |
-
- }
-
-
-
+
+ |
+