diff --git a/Lux.API/Lux.API.csproj b/Lux.API/Lux.API.csproj index 276e6395..85c186ac 100644 --- a/Lux.API/Lux.API.csproj +++ b/Lux.API/Lux.API.csproj @@ -4,7 +4,7 @@ net8.0 enable enable - 1.1.2605.2109 + 1.1.2605.2814 diff --git a/Lux.UI/Components/Compo/Config/GlassMan.razor b/Lux.UI/Components/Compo/Config/GlassMan.razor index b7db6495..9a70762e 100644 --- a/Lux.UI/Components/Compo/Config/GlassMan.razor +++ b/Lux.UI/Components/Compo/Config/GlassMan.razor @@ -1,8 +1,8 @@ 
-
+
-
Conf. Vetro
+
Tipologie di Vetro
@@ -10,12 +10,15 @@
- +
+
+ NB: le configurazioni sono modificabili +
@if (isLoading || ListRecords == null) @@ -31,14 +34,14 @@ - @* *@ - - - - + + + @@ -50,8 +53,8 @@ - - + +
+ IDCod.DescrizioneSize mm + Cod.DescrizioneSize mm
@item.GlassID @item.Code@item.Description@($"{item.Thickness:N2}")@item.Description@($"{item.Thickness:N2}") @if (false) { diff --git a/Lux.UI/Components/Compo/Config/GlassMan.razor.cs b/Lux.UI/Components/Compo/Config/GlassMan.razor.cs index f23e2a3f..cd687411 100644 --- a/Lux.UI/Components/Compo/Config/GlassMan.razor.cs +++ b/Lux.UI/Components/Compo/Config/GlassMan.razor.cs @@ -115,7 +115,7 @@ namespace Lux.UI.Components.Compo.Config private GlassModel? EditRecord = null; private bool isLoading = false; private List ListRecords = new(); - private int numRecord = 5; + private int numRecord = 10; private GlassModel? SelRecord = null; private int totalCount = 0; @@ -195,6 +195,11 @@ namespace Lux.UI.Components.Compo.Config isLoading = false; } + private string btnResetCss + { + get => string.IsNullOrEmpty(searchVal) ? "btn-outline-light" : "btn-primary"; + } + #endregion Private Methods } } \ No newline at end of file diff --git a/Lux.UI/Components/Compo/Config/HardwareMan.razor b/Lux.UI/Components/Compo/Config/HardwareMan.razor index d31717cd..3188e368 100644 --- a/Lux.UI/Components/Compo/Config/HardwareMan.razor +++ b/Lux.UI/Components/Compo/Config/HardwareMan.razor @@ -3,7 +3,7 @@
-
Conf. Hardware
+
Tipologie di Hardware
@@ -21,6 +21,9 @@
+
+ NB: le configurazioni sono ricevute dal sistema CAD/CAM di calcolo +
@if (isLoading || ListRecords == null) diff --git a/Lux.UI/Components/Compo/Config/HardwareMan.razor.cs b/Lux.UI/Components/Compo/Config/HardwareMan.razor.cs index 2465f24b..70f4b469 100644 --- a/Lux.UI/Components/Compo/Config/HardwareMan.razor.cs +++ b/Lux.UI/Components/Compo/Config/HardwareMan.razor.cs @@ -57,7 +57,7 @@ namespace Lux.UI.Components.Compo.Config private List ListRecords = new(); - private int numRecord = 5; + private int numRecord = 10; private int totalCount = 0; diff --git a/Lux.UI/Components/Compo/Config/ProfThreshDetail.razor b/Lux.UI/Components/Compo/Config/ProfThreshDetail.razor index 4ab796c5..7093a7e1 100644 --- a/Lux.UI/Components/Compo/Config/ProfThreshDetail.razor +++ b/Lux.UI/Components/Compo/Config/ProfThreshDetail.razor @@ -1,4 +1,55 @@ - *@ diff --git a/Lux.UI/Components/Compo/Config/ProfThreshDetail.razor.cs b/Lux.UI/Components/Compo/Config/ProfThreshDetail.razor.cs index 2cf458ac..2b47ae31 100644 --- a/Lux.UI/Components/Compo/Config/ProfThreshDetail.razor.cs +++ b/Lux.UI/Components/Compo/Config/ProfThreshDetail.razor.cs @@ -54,5 +54,6 @@ namespace Lux.UI.Components.Compo.Config { await EC_ReqClose.InvokeAsync(true); } + } } \ No newline at end of file diff --git a/Lux.UI/Components/Compo/Config/ProfileMan.razor b/Lux.UI/Components/Compo/Config/ProfileMan.razor index ce2e3c86..33924331 100644 --- a/Lux.UI/Components/Compo/Config/ProfileMan.razor +++ b/Lux.UI/Components/Compo/Config/ProfileMan.razor @@ -3,7 +3,7 @@
-
Conf. Profilo
+
Tipi di Profili
@@ -24,6 +24,9 @@
+
+ NB: le configurazioni sono ricevute dal sistema CAD/CAM di calcolo +
@if (isLoading || ListRecords == null) diff --git a/Lux.UI/Components/Compo/Config/WoodMan.razor b/Lux.UI/Components/Compo/Config/WoodMan.razor index f176f85b..dd3d77c5 100644 --- a/Lux.UI/Components/Compo/Config/WoodMan.razor +++ b/Lux.UI/Components/Compo/Config/WoodMan.razor @@ -1,8 +1,8 @@ 
-
+
-
Conf. Legno
+
Tipologie di Legno
@@ -10,12 +10,15 @@
- +
+
+ NB: le configurazioni sono modificabili +
@if (isLoading || ListRecords == null) @@ -31,14 +34,14 @@ - @* *@ - - - - + + + @@ -50,8 +53,8 @@ - - + +
+ IDCod.DescrizioneTipo + Cod.DescrizioneTipo
@item.WoodID @item.Code@item.Description@item.Type@item.Description@item.Type @if (false) { diff --git a/Lux.UI/Components/Compo/Config/WoodMan.razor.cs b/Lux.UI/Components/Compo/Config/WoodMan.razor.cs index 14d81c4a..ced5ccfe 100644 --- a/Lux.UI/Components/Compo/Config/WoodMan.razor.cs +++ b/Lux.UI/Components/Compo/Config/WoodMan.razor.cs @@ -199,6 +199,11 @@ namespace Lux.UI.Components.Compo.Config isLoading = false; } + private string btnResetCss + { + get => string.IsNullOrEmpty(searchVal) ? "btn-outline-light" : "btn-primary"; + } + #endregion Private Methods } } \ No newline at end of file diff --git a/Lux.UI/Components/Compo/Offer/AddFromTemplate.razor b/Lux.UI/Components/Compo/Offer/AddFromTemplate.razor index d69481f9..cd2812a6 100644 --- a/Lux.UI/Components/Compo/Offer/AddFromTemplate.razor +++ b/Lux.UI/Components/Compo/Offer/AddFromTemplate.razor @@ -35,8 +35,10 @@
@* *@ -
-
@item.TemplateRowUID
+
+
+ @item.TemplateRowUID +
@item.Name
diff --git a/Lux.UI/Components/Layout/NavMenu.razor b/Lux.UI/Components/Layout/NavMenu.razor index 2ef8bf36..545032da 100644 --- a/Lux.UI/Components/Layout/NavMenu.razor +++ b/Lux.UI/Components/Layout/NavMenu.razor @@ -77,6 +77,11 @@ Configurazioni
+