diff --git a/Lux.API/Lux.API.csproj b/Lux.API/Lux.API.csproj index 76694d86..4f73438f 100644 --- a/Lux.API/Lux.API.csproj +++ b/Lux.API/Lux.API.csproj @@ -4,7 +4,7 @@ net8.0 enable enable - 1.1.2606.0311 + 1.1.2606.0317 diff --git a/Lux.UI/Components/Compo/Contatti/CustomerEdit.razor b/Lux.UI/Components/Compo/Contatti/CustomerEdit.razor index 42dd8c65..a6baddad 100644 --- a/Lux.UI/Components/Compo/Contatti/CustomerEdit.razor +++ b/Lux.UI/Components/Compo/Contatti/CustomerEdit.razor @@ -1,4 +1,6 @@ -
+@inherits BaseComp + +
@if (CurrRecord != null) {
# @(CurrRecord?.CustomerID)
@@ -6,34 +8,34 @@
- +
- +
- +
- +
- +
- +
diff --git a/Lux.UI/Components/Compo/Contatti/CustomerMan.razor b/Lux.UI/Components/Compo/Contatti/CustomerMan.razor index 559bda65..e41accf1 100644 --- a/Lux.UI/Components/Compo/Contatti/CustomerMan.razor +++ b/Lux.UI/Components/Compo/Contatti/CustomerMan.razor @@ -1,10 +1,12 @@ -@if (isLoading || ListRecords == null) +@inherits BaseComp + +@if (isLoading || ListRecords == null) { } else if (totalCount == 0) { -
Nessun record trovato
+
@Traduci("noRecord")
} else { @@ -14,12 +16,12 @@ else - Nome - Cognome - Nome azienda - Codice fiscale/P.Iva - N° Offerte - N° Ordini + @Traduci("nome") + @Traduci("contatti_cognome") + @Traduci("contatti_nomeAzienda") + @Traduci("contatti_cf") + @Traduci("contatti_nOfferte") + @Traduci("contatti_nOrdini") diff --git a/Lux.UI/Components/Compo/Contatti/DealerEdit.razor b/Lux.UI/Components/Compo/Contatti/DealerEdit.razor index 24fd601f..23d2a81c 100644 --- a/Lux.UI/Components/Compo/Contatti/DealerEdit.razor +++ b/Lux.UI/Components/Compo/Contatti/DealerEdit.razor @@ -1,4 +1,6 @@ -
+@inherits BaseComp + +
@if (CurrRecord != null) {
# @(CurrRecord?.DealerID)
@@ -6,34 +8,34 @@
- +
- +
- +
- +
- +
- +
diff --git a/Lux.UI/Components/Compo/Contatti/DealerMan.razor b/Lux.UI/Components/Compo/Contatti/DealerMan.razor index 4df16e1d..5aaaa4e6 100644 --- a/Lux.UI/Components/Compo/Contatti/DealerMan.razor +++ b/Lux.UI/Components/Compo/Contatti/DealerMan.razor @@ -1,10 +1,12 @@ -@if (isLoading || ListRecords == null) +@inherits BaseComp + +@if (isLoading || ListRecords == null) { } else if (totalCount == 0) { -
Nessun record trovato
+
@Traduci("noRecord")
} else { @@ -14,12 +16,12 @@ else - Nome - Cognome - Nome azienda - Codice fiscale/P.Iva - N° Offerte - N° Ordini + @Traduci("nome") + @Traduci("contatti_cognome") + @Traduci("contatti_nomeAzienda") + @Traduci("contatti_cf") + @Traduci("contatti_nOfferte") + @Traduci("contatti_nOrdini") diff --git a/Lux.UI/Components/Compo/Item/DataFilter.razor b/Lux.UI/Components/Compo/Item/DataFilter.razor index 0b20a801..379dd9b6 100644 --- a/Lux.UI/Components/Compo/Item/DataFilter.razor +++ b/Lux.UI/Components/Compo/Item/DataFilter.razor @@ -1,15 +1,17 @@ -
+@inherits BaseComp + +
@if (AddEnabled()) { - + }
@if (ShowItemsBuy) { - Gruppo + @Traduci("articoli_gruppo") - Tipo + @Traduci("articoli_tipo") @foreach (var item in Enum.GetValues(typeof(EgwMultiEngineManager.Data.Constants.EXECENVIRONMENTS)) diff --git a/Lux.UI/Components/Compo/Item/ItemEdit.razor b/Lux.UI/Components/Compo/Item/ItemEdit.razor index 5455bc18..59d20152 100644 --- a/Lux.UI/Components/Compo/Item/ItemEdit.razor +++ b/Lux.UI/Components/Compo/Item/ItemEdit.razor @@ -1,4 +1,6 @@ -
+@inherits BaseComp + +
@if (CurrRecord != null) {
# @(CurrRecord?.ItemID) | Codice @CurrRecord.ItemCode
@@ -11,7 +13,7 @@ } - +
@@ -22,7 +24,7 @@ } - +
@@ -31,66 +33,66 @@
- +
- +
- +
@* *@ - +
@* *@ - +
- +
- +
- +
- +
- +
- +
diff --git a/Lux.UI/Components/Compo/Item/ItemMan.razor b/Lux.UI/Components/Compo/Item/ItemMan.razor index 254fcc4f..6dfdfa0e 100644 --- a/Lux.UI/Components/Compo/Item/ItemMan.razor +++ b/Lux.UI/Components/Compo/Item/ItemMan.razor @@ -1,10 +1,12 @@ -@if (isLoading || ListRecords == null) +@inherits BaseComp + +@if (isLoading || ListRecords == null) { } else if (totalCount == 0) { -
Nessun record trovato
+
@Traduci("noRecord")
} else { @@ -14,18 +16,18 @@ else - ID - Gruppo - Tipo - Serv - Codice - ItemCode - Suppl.Code - Descrizione - Costo - Margine - Qty Range - UM + @Traduci("id") + @Traduci("articoli_gruppo") + @Traduci("articoli_tipo") + @Traduci("articoli_servizio") + @Traduci("articoli_codice") + @Traduci("articoli_itemCode") + @Traduci("articoli_supplCode") + @Traduci("descrizione") + @Traduci("articoli_costo") + @Traduci("margine") + @Traduci("articoli_qtyRange") + @Traduci("unitaMisura") diff --git a/Lux.UI/Components/Compo/Item/SellingItemEdit.razor b/Lux.UI/Components/Compo/Item/SellingItemEdit.razor index 959f5e75..fedb093a 100644 --- a/Lux.UI/Components/Compo/Item/SellingItemEdit.razor +++ b/Lux.UI/Components/Compo/Item/SellingItemEdit.razor @@ -1,7 +1,11 @@ -
+@inherits BaseComp + +
@if (CurrRecord != null) { -
# @(CurrRecord?.SellingItemID) | Codice @CurrRecord.ItemCode
+
+ # @(CurrRecord?.SellingItemID) | Codice @CurrRecord?.ItemCode +
@@ -12,7 +16,7 @@ } - +
@@ -22,102 +26,102 @@
- +
- -
+
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
-
-
-
-
- - -
-
-
-
- - -
-
-
-
-
- @if (CurrRecord.ImgType != Enums.ImageType.Calculated) +
+
+
+
+ +
- } +
+
+
+ + +
+
+
+
+ @if (CurrRecord.ImgType != Enums.ImageType.Calculated) + { +
+ + +
+ } +
+
+
+
+ +
+
+ +
+
+
+
+ } +
diff --git a/Lux.UI/Components/Compo/Item/SellingItemMan.razor b/Lux.UI/Components/Compo/Item/SellingItemMan.razor index 3253dcb5..856b06d3 100644 --- a/Lux.UI/Components/Compo/Item/SellingItemMan.razor +++ b/Lux.UI/Components/Compo/Item/SellingItemMan.razor @@ -1,10 +1,12 @@ -@if (isLoading || ListRecords == null) +@inherits BaseComp + +@if (isLoading || ListRecords == null) { } else if (totalCount == 0) { -
Nessun record trovato
+
@Traduci("noRecord")
} else { @@ -18,18 +20,18 @@ else - Envir - Preview - Source - Job ID - Serv - Codice - ItemCode - Suppl.Code - Descrizione - Costo - Margine - UM + @Traduci("ambiente") + @Traduci("preview") + @Traduci("articoli_sorgente") + @Traduci("articoli_jobId") + @Traduci("articoli_servizio") + @Traduci("articoli_codice") + @Traduci("articoli_itemCode") + @Traduci("articoli_supplCode") + @Traduci("descrizione") + @Traduci("articoli_costo") + @Traduci("margine") + @Traduci("unitaMisura") diff --git a/Lux.UI/Components/Compo/Offer/AddFromTemplate.razor b/Lux.UI/Components/Compo/Offer/AddFromTemplate.razor index cd2812a6..f76aaf7c 100644 --- a/Lux.UI/Components/Compo/Offer/AddFromTemplate.razor +++ b/Lux.UI/Components/Compo/Offer/AddFromTemplate.razor @@ -1,10 +1,12 @@ - @if (ForceMode && !string.IsNullOrEmpty(@SelColor)) {
- +
}
@@ -86,10 +88,10 @@
- +
- +
} } diff --git a/Lux.UI/Components/Compo/Offer/OfferMan.razor b/Lux.UI/Components/Compo/Offer/OfferMan.razor index 1f7aea5d..fbdb3685 100644 --- a/Lux.UI/Components/Compo/Offer/OfferMan.razor +++ b/Lux.UI/Components/Compo/Offer/OfferMan.razor @@ -1,4 +1,5 @@ @using EgwCoreLib.Lux.Core +@inherits BaseComp
@@ -13,7 +14,7 @@ } - +
@@ -28,7 +29,7 @@ } - +
@@ -39,25 +40,25 @@ } - +
- +
- +
- +
@if (HasChanged() && IsValid()) @@ -65,10 +66,10 @@
- +
- +
} \ No newline at end of file diff --git a/Lux.UI/Components/Compo/Offer/OfferRowMan.razor b/Lux.UI/Components/Compo/Offer/OfferRowMan.razor index e1278d34..91f3a3af 100644 --- a/Lux.UI/Components/Compo/Offer/OfferRowMan.razor +++ b/Lux.UI/Components/Compo/Offer/OfferRowMan.razor @@ -1,4 +1,5 @@ @using static EgwCoreLib.Lux.Core.Enums +@inherits BaseComp @if (addFromTemplate) { @@ -47,10 +48,10 @@ else {
- +
- +
} @@ -64,13 +65,13 @@ else else if (DisplayMode == DisplayMode.Edit) {
- +
- +
- +
} @@ -89,7 +90,7 @@ else } else if (totalCount == 0) { -
Nessun record trovato
+
@Traduci("noRecord")
} else { @@ -101,24 +102,24 @@ else - Preview + @Traduci("anteprima") } else { - Preview + @Traduci("anteprima") } - Codice - Descrizione - Qty - Importo + @Traduci("codice") + @Traduci("descrizione") + @Traduci("quantita") + @Traduci("importo") @if (DisplayMode == DisplayMode.Edit) { Mat. Lav. } - Totale - Marg. + @Traduci("totale") + @Traduci("margine") @if (DisplayMode == DisplayMode.Edit) { @@ -416,7 +417,7 @@ else