From cbd4a90d011c309f6af32de01b4aaf8da0e167e1 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Mon, 14 Apr 2025 18:25:00 +0200 Subject: [PATCH 1/2] DATA: - Correzione MSE i MSEModel x naming - fix e test vari su app CORE (IOC/SPEC/TAB3/MON) --- MP-TAB3/Components/AlarmsMan.razor.cs | 4 +-- MP-TAB3/Components/CheckControls.razor.cs | 2 +- MP-TAB3/Components/CommentEditor.razor.cs | 2 +- MP-TAB3/Components/ControlsMan.razor.cs | 2 +- MP-TAB3/Components/DeclarEditor.razor.cs | 2 +- MP-TAB3/Components/DeclarMan.razor.cs | 2 +- MP-TAB3/Components/InsManual.razor.cs | 4 +-- MP-TAB3/Components/MachSel.razor.cs | 2 +- MP-TAB3/Components/MachineBlock.razor.cs | 10 +++---- MP-TAB3/Components/NotesEditor.razor.cs | 2 +- MP-TAB3/Components/NotesMan.razor.cs | 2 +- MP-TAB3/Components/OdlMan.razor.cs | 8 +++--- MP-TAB3/Components/ParamsMan.razor.cs | 4 +-- MP-TAB3/Components/PrintMag.razor.cs | 2 +- MP-TAB3/Components/ProdConfirm.razor.cs | 10 +++---- MP-TAB3/Components/ProdPlanMan.razor.cs | 2 +- MP-TAB3/Components/ProdStat.razor.cs | 2 +- MP-TAB3/Components/ScrapEditor.razor.cs | 2 +- MP-TAB3/Components/ScrapMan.razor.cs | 2 +- MP-TAB3/Components/TechSheetMan.razor.cs | 4 +-- MP-TAB3/MP-TAB3.csproj | 2 +- MP-TAB3/Pages/BasePage.razor.cs | 6 ++--- MP-TAB3/Pages/StatusMap.razor.cs | 14 +++++----- MP-TAB3/Resources/ChangeLog.html | 2 +- MP-TAB3/Resources/VersNum.txt | 2 +- MP-TAB3/Resources/manifest.xml | 2 +- MP.Data/Controllers/MpIocController.cs | 6 ++--- MP.Data/Controllers/MpMonController.cs | 6 ++--- MP.Data/Controllers/MpSpecController.cs | 14 +++++----- MP.Data/Controllers/MpTabController.cs | 8 +++--- .../{ListValues.cs => ListValuesModel.cs} | 2 +- ...ppaStatoExpl.cs => MappaStatoExplModel.cs} | 6 ++--- MP.Data/MoonProContext.cs | 8 +++--- MP.Data/Services/MessageService.cs | 8 +++--- MP.Data/Services/StatusData.cs | 8 +++--- MP.Data/Services/TabDataService.cs | 16 ++++++------ MP.Data/Translate/DbDto.cs | 2 +- MP.IOC/Data/MpDataService.cs | 26 +++++++++---------- MP.IOC/Resources/ChangeLog.html | 2 +- MP.IOC/Resources/VersNum.txt | 2 +- MP.IOC/Resources/manifest.xml | 2 +- MP.MON/Components/Pages/Index.razor.cs | 8 +++--- MP.MON/MP.MON.csproj | 2 +- MP.MON/Resources/ChangeLog.html | 2 +- MP.MON/Resources/VersNum.txt | 2 +- MP.MON/Resources/manifest.xml | 2 +- 46 files changed, 115 insertions(+), 115 deletions(-) rename MP.Data/DbModels/{ListValues.cs => ListValuesModel.cs} (94%) rename MP.Data/DbModels/{MappaStatoExpl.cs => MappaStatoExplModel.cs} (98%) diff --git a/MP-TAB3/Components/AlarmsMan.razor.cs b/MP-TAB3/Components/AlarmsMan.razor.cs index 25c46a45..158526a4 100644 --- a/MP-TAB3/Components/AlarmsMan.razor.cs +++ b/MP-TAB3/Components/AlarmsMan.razor.cs @@ -15,7 +15,7 @@ namespace MP_TAB3.Components #region Public Properties [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; #endregion Public Properties @@ -223,7 +223,7 @@ namespace MP_TAB3.Components private Periodo CurrPeriodo { get; set; } = new Periodo(); private string IdxMaccSel { get; set; } = ""; - private MappaStatoExpl? lastRecMSE { get; set; } = null; + private MappaStatoExplModel? lastRecMSE { get; set; } = null; #endregion Private Properties } diff --git a/MP-TAB3/Components/CheckControls.razor.cs b/MP-TAB3/Components/CheckControls.razor.cs index 9852fa03..fa7e7e64 100644 --- a/MP-TAB3/Components/CheckControls.razor.cs +++ b/MP-TAB3/Components/CheckControls.razor.cs @@ -10,7 +10,7 @@ namespace MP_TAB3.Components #region Public Properties [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; #endregion Public Properties diff --git a/MP-TAB3/Components/CommentEditor.razor.cs b/MP-TAB3/Components/CommentEditor.razor.cs index face5513..c8682f42 100644 --- a/MP-TAB3/Components/CommentEditor.razor.cs +++ b/MP-TAB3/Components/CommentEditor.razor.cs @@ -19,7 +19,7 @@ namespace MP_TAB3.Components public EventCallback E_DateSel { get; set; } [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; [Parameter] public string Title { get; set; } = "NA"; diff --git a/MP-TAB3/Components/ControlsMan.razor.cs b/MP-TAB3/Components/ControlsMan.razor.cs index 0035f2aa..fc59d458 100644 --- a/MP-TAB3/Components/ControlsMan.razor.cs +++ b/MP-TAB3/Components/ControlsMan.razor.cs @@ -17,7 +17,7 @@ namespace MP_TAB3.Components public EventCallback E_Updated { get; set; } [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; #endregion Public Properties diff --git a/MP-TAB3/Components/DeclarEditor.razor.cs b/MP-TAB3/Components/DeclarEditor.razor.cs index d2e690a9..8f6f16b8 100644 --- a/MP-TAB3/Components/DeclarEditor.razor.cs +++ b/MP-TAB3/Components/DeclarEditor.razor.cs @@ -28,7 +28,7 @@ namespace MP_TAB3.Components } [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; #endregion Public Properties diff --git a/MP-TAB3/Components/DeclarMan.razor.cs b/MP-TAB3/Components/DeclarMan.razor.cs index 590c2040..ebfd4bbe 100644 --- a/MP-TAB3/Components/DeclarMan.razor.cs +++ b/MP-TAB3/Components/DeclarMan.razor.cs @@ -15,7 +15,7 @@ namespace MP_TAB3.Components public EventCallback E_MachSel { get; set; } [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; #endregion Public Properties diff --git a/MP-TAB3/Components/InsManual.razor.cs b/MP-TAB3/Components/InsManual.razor.cs index 83f13dc0..f8c13374 100644 --- a/MP-TAB3/Components/InsManual.razor.cs +++ b/MP-TAB3/Components/InsManual.razor.cs @@ -16,7 +16,7 @@ namespace MP_TAB3.Components #region Public Properties [Parameter] - public MappaStatoExpl? RecMSE + public MappaStatoExplModel? RecMSE { get => currRecMSE; set @@ -310,7 +310,7 @@ namespace MP_TAB3.Components private bool confProdActive { get; set; } = false; - private MappaStatoExpl? currRecMSE { get; set; } = null; + private MappaStatoExplModel? currRecMSE { get; set; } = null; private List? ListDay { get; set; } = new List(); private List? ListDTO { get; set; } = new List(); diff --git a/MP-TAB3/Components/MachSel.razor.cs b/MP-TAB3/Components/MachSel.razor.cs index 32af8c0d..b0c857c4 100644 --- a/MP-TAB3/Components/MachSel.razor.cs +++ b/MP-TAB3/Components/MachSel.razor.cs @@ -16,7 +16,7 @@ namespace MP_TAB3.Components public EventCallback E_MachSel { get; set; } [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; #endregion Public Properties diff --git a/MP-TAB3/Components/MachineBlock.razor.cs b/MP-TAB3/Components/MachineBlock.razor.cs index 052049ce..44345f65 100644 --- a/MP-TAB3/Components/MachineBlock.razor.cs +++ b/MP-TAB3/Components/MachineBlock.razor.cs @@ -32,7 +32,7 @@ namespace MP_TAB3.Components public int KeepAliveMin { get; set; } = 5; [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; [Parameter] public bool ShowCard { get; set; } @@ -367,7 +367,7 @@ namespace MP_TAB3.Components private bool LastFullMode = true; private string LastIdxMacchSub = ""; private int LastKeepAliveMin = 5; - private MappaStatoExpl? LastRecMSE = null; + private MappaStatoExplModel? LastRecMSE = null; private bool LastShowCard = true; private bool showOdlDetail = false; private bool showPodl = false; @@ -380,11 +380,11 @@ namespace MP_TAB3.Components /// /// Info correnti secondo tipo selezione /// - private MappaStatoExpl? CRecMSE + private MappaStatoExplModel? CRecMSE { get { - MappaStatoExpl? answ = RecMSE; + MappaStatoExplModel? answ = RecMSE; if (!string.IsNullOrEmpty(IdxMacchSub)) { answ = RecMSESub; @@ -456,7 +456,7 @@ namespace MP_TAB3.Components /// private bool isMobile { get; set; } - private MappaStatoExpl? RecMSESub { get; set; } = null; + private MappaStatoExplModel? RecMSESub { get; set; } = null; private bool showDraw { get; set; } = false; diff --git a/MP-TAB3/Components/NotesEditor.razor.cs b/MP-TAB3/Components/NotesEditor.razor.cs index 800359a2..5e1e1ff9 100644 --- a/MP-TAB3/Components/NotesEditor.razor.cs +++ b/MP-TAB3/Components/NotesEditor.razor.cs @@ -55,7 +55,7 @@ namespace MP_TAB3.Components public EventCallback E_Updated { get; set; } [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; [Parameter] public string Title { get; set; } = "NA"; diff --git a/MP-TAB3/Components/NotesMan.razor.cs b/MP-TAB3/Components/NotesMan.razor.cs index 05a2ce93..8e883ffd 100644 --- a/MP-TAB3/Components/NotesMan.razor.cs +++ b/MP-TAB3/Components/NotesMan.razor.cs @@ -24,7 +24,7 @@ namespace MP_TAB3.Components #region Public Properties [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; #endregion Public Properties diff --git a/MP-TAB3/Components/OdlMan.razor.cs b/MP-TAB3/Components/OdlMan.razor.cs index ef48c020..aeae4c4a 100644 --- a/MP-TAB3/Components/OdlMan.razor.cs +++ b/MP-TAB3/Components/OdlMan.razor.cs @@ -21,10 +21,10 @@ namespace MP_TAB3.Components /// Post update restituisco nuova lista dati /// [Parameter] - public EventCallback> E_Updated { get; set; } + public EventCallback> E_Updated { get; set; } [Parameter] - public MappaStatoExpl? RecMSE + public MappaStatoExplModel? RecMSE { get => currRecMSE; set @@ -1315,7 +1315,7 @@ namespace MP_TAB3.Components private PODLExpModel currPodl { get; set; } = new PODLExpModel(); - private MappaStatoExpl? currRecMSE { get; set; } = null; + private MappaStatoExplModel? currRecMSE { get; set; } = null; /// /// Verifica se l'ALTRA macchina NON abbia ODL valido (== 0) @@ -1359,7 +1359,7 @@ namespace MP_TAB3.Components private bool isLoading { get; set; } = false; - private MappaStatoExpl? lastRecMSE { get; set; } = null; + private MappaStatoExplModel? lastRecMSE { get; set; } = null; private string lblWarnBody { diff --git a/MP-TAB3/Components/ParamsMan.razor.cs b/MP-TAB3/Components/ParamsMan.razor.cs index 43f0e463..7ec3beff 100644 --- a/MP-TAB3/Components/ParamsMan.razor.cs +++ b/MP-TAB3/Components/ParamsMan.razor.cs @@ -11,7 +11,7 @@ namespace MP_TAB3.Components #region Public Properties [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; #endregion Public Properties @@ -159,7 +159,7 @@ namespace MP_TAB3.Components private ObjItemDTO? currItem { get; set; } = null; private string IdxMaccSel { get; set; } = ""; - private MappaStatoExpl? lastRecMSE { get; set; } = null; + private MappaStatoExplModel? lastRecMSE { get; set; } = null; #endregion Private Properties diff --git a/MP-TAB3/Components/PrintMag.razor.cs b/MP-TAB3/Components/PrintMag.razor.cs index 7f3abc67..73c45540 100644 --- a/MP-TAB3/Components/PrintMag.razor.cs +++ b/MP-TAB3/Components/PrintMag.razor.cs @@ -9,7 +9,7 @@ namespace MP_TAB3.Components #region Public Properties [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; #endregion Public Properties diff --git a/MP-TAB3/Components/ProdConfirm.razor.cs b/MP-TAB3/Components/ProdConfirm.razor.cs index b2b58103..3156f064 100644 --- a/MP-TAB3/Components/ProdConfirm.razor.cs +++ b/MP-TAB3/Components/ProdConfirm.razor.cs @@ -29,10 +29,10 @@ namespace MP_TAB3.Components /// Post update restituisco nuova lista dati /// [Parameter] - public EventCallback> E_Updated { get; set; } + public EventCallback> E_Updated { get; set; } [Parameter] - public MappaStatoExpl? RecMSE + public MappaStatoExplModel? RecMSE { get => currRecMSE; set @@ -393,7 +393,7 @@ namespace MP_TAB3.Components private bool confProdActive { get; set; } = false; - private MappaStatoExpl? currRecMSE { get; set; } = null; + private MappaStatoExplModel? currRecMSE { get; set; } = null; private DateTime dtReqUpdate { get; set; } = DateTime.Now; @@ -401,7 +401,7 @@ namespace MP_TAB3.Components private bool isProcessing { get; set; } = false; - private MappaStatoExpl? lastRecMSE { get; set; } = null; + private MappaStatoExplModel? lastRecMSE { get; set; } = null; private int MatrOpr { @@ -444,7 +444,7 @@ namespace MP_TAB3.Components private async Task RefreshData() { - List ListMSE = await SDService.MseGetAll(true); + List ListMSE = await SDService.MseGetAll(true); await MsgServ.SaveMse(ListMSE); await E_Updated.InvokeAsync(ListMSE); } diff --git a/MP-TAB3/Components/ProdPlanMan.razor.cs b/MP-TAB3/Components/ProdPlanMan.razor.cs index 479aaf41..e2f77b13 100644 --- a/MP-TAB3/Components/ProdPlanMan.razor.cs +++ b/MP-TAB3/Components/ProdPlanMan.razor.cs @@ -9,7 +9,7 @@ namespace MP_TAB3.Components #region Public Properties [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; #endregion Public Properties diff --git a/MP-TAB3/Components/ProdStat.razor.cs b/MP-TAB3/Components/ProdStat.razor.cs index 6a9dd52d..66c36c2e 100644 --- a/MP-TAB3/Components/ProdStat.razor.cs +++ b/MP-TAB3/Components/ProdStat.razor.cs @@ -8,7 +8,7 @@ namespace MP_TAB3.Components #region Public Properties [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; #endregion Public Properties diff --git a/MP-TAB3/Components/ScrapEditor.razor.cs b/MP-TAB3/Components/ScrapEditor.razor.cs index 43ca3d55..144c43e3 100644 --- a/MP-TAB3/Components/ScrapEditor.razor.cs +++ b/MP-TAB3/Components/ScrapEditor.razor.cs @@ -13,7 +13,7 @@ namespace MP_TAB3.Components public EventCallback E_Updated { get; set; } [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; #endregion Public Properties diff --git a/MP-TAB3/Components/ScrapMan.razor.cs b/MP-TAB3/Components/ScrapMan.razor.cs index 563e7f0e..616f7c20 100644 --- a/MP-TAB3/Components/ScrapMan.razor.cs +++ b/MP-TAB3/Components/ScrapMan.razor.cs @@ -14,7 +14,7 @@ namespace MP_TAB3.Components public EventCallback E_MachSel { get; set; } [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; #endregion Public Properties diff --git a/MP-TAB3/Components/TechSheetMan.razor.cs b/MP-TAB3/Components/TechSheetMan.razor.cs index 513be5d8..40618e8f 100644 --- a/MP-TAB3/Components/TechSheetMan.razor.cs +++ b/MP-TAB3/Components/TechSheetMan.razor.cs @@ -10,7 +10,7 @@ namespace MP_TAB3.Components #region Public Properties [Parameter] - public MappaStatoExpl? RecMSE { get; set; } = null; + public MappaStatoExplModel? RecMSE { get; set; } = null; #endregion Public Properties @@ -74,7 +74,7 @@ namespace MP_TAB3.Components private string IdxMaccSel { get; set; } = ""; private int IdxOdl { get; set; } = 0; - private MappaStatoExpl? lastRecMSE { get; set; } = null; + private MappaStatoExplModel? lastRecMSE { get; set; } = null; #endregion Private Properties diff --git a/MP-TAB3/MP-TAB3.csproj b/MP-TAB3/MP-TAB3.csproj index e6c9d7d4..a6800413 100644 --- a/MP-TAB3/MP-TAB3.csproj +++ b/MP-TAB3/MP-TAB3.csproj @@ -3,7 +3,7 @@ net6.0 enable - 6.16.2504.918 + 6.16.2504.1418 enable MP_TAB3 diff --git a/MP-TAB3/Pages/BasePage.razor.cs b/MP-TAB3/Pages/BasePage.razor.cs index c9c3955a..f923b4b9 100644 --- a/MP-TAB3/Pages/BasePage.razor.cs +++ b/MP-TAB3/Pages/BasePage.razor.cs @@ -18,7 +18,7 @@ namespace MP_TAB3.Pages /// /// Dato di dettaglio MSE per macchina /// - public MappaStatoExpl? CurrMSE { get; set; } = null; + public MappaStatoExplModel? CurrMSE { get; set; } = null; [Inject] public MessageService MsgServ { get; set; } = null!; @@ -78,7 +78,7 @@ namespace MP_TAB3.Pages /// /// /// - protected async Task RefreshData(List ListMSE) + protected async Task RefreshData(List ListMSE) { // se vecchio salvo sul browser... if (DateTime.Now.Subtract(lastSave).TotalSeconds > 5) @@ -164,7 +164,7 @@ namespace MP_TAB3.Pages { try { - List? dataList = JsonConvert.DeserializeObject>(currArgs.newMessage); + List? dataList = JsonConvert.DeserializeObject>(currArgs.newMessage); if (dataList != null) { InvokeAsync(() => RefreshData(dataList)); diff --git a/MP-TAB3/Pages/StatusMap.razor.cs b/MP-TAB3/Pages/StatusMap.razor.cs index 6578bb47..bcf7ab2f 100644 --- a/MP-TAB3/Pages/StatusMap.razor.cs +++ b/MP-TAB3/Pages/StatusMap.razor.cs @@ -106,13 +106,13 @@ namespace MP_TAB3.Pages #region Private Properties - private List? AllDataMSE { get; set; } = null; + private List? AllDataMSE { get; set; } = null; private string baseLang { get; set; } = ""; private List? ListMachineEnabled { get; set; } = null; - private List? ListMSE { get; set; } = null; + private List? ListMSE { get; set; } = null; private int MatrOpr { @@ -200,9 +200,9 @@ namespace MP_TAB3.Pages /// /// Indice MSE richiesto /// - protected MappaStatoExpl? MseById(int mseIdx) + protected MappaStatoExplModel? MseById(int mseIdx) { - MappaStatoExpl? answ = null; + MappaStatoExplModel? answ = null; if (ListMSE != null && ListMSE.Count > mseIdx) { answ = ListMSE[mseIdx]; @@ -252,7 +252,7 @@ namespace MP_TAB3.Pages } } - protected async Task SaveData(List newList) + protected async Task SaveData(List newList) { // rileggo elenco macchine operatore... if (ListMachineEnabled == null || ListMachineEnabled.Count == 0) @@ -321,7 +321,7 @@ namespace MP_TAB3.Pages { try { - List? dataList = JsonConvert.DeserializeObject>(currArgs.newMessage); + List? dataList = JsonConvert.DeserializeObject>(currArgs.newMessage); if (dataList != null) { InvokeAsync(() => SaveData(dataList)); @@ -342,7 +342,7 @@ namespace MP_TAB3.Pages /// private void FiltOprMse() { - ListMSE = new List(); + ListMSE = new List(); if (AllDataMSE != null) { foreach (var item in AllDataMSE) diff --git a/MP-TAB3/Resources/ChangeLog.html b/MP-TAB3/Resources/ChangeLog.html index 7bc0bf0e..3a00bd95 100644 --- a/MP-TAB3/Resources/ChangeLog.html +++ b/MP-TAB3/Resources/ChangeLog.html @@ -1,6 +1,6 @@ Modulo MAPOSPEC -

Versione: 6.16.2504.918

+

Versione: 6.16.2504.1418


Note di rilascio:
  • diff --git a/MP-TAB3/Resources/VersNum.txt b/MP-TAB3/Resources/VersNum.txt index 7edde268..97c8814a 100644 --- a/MP-TAB3/Resources/VersNum.txt +++ b/MP-TAB3/Resources/VersNum.txt @@ -1 +1 @@ -6.16.2504.918 +6.16.2504.1418 diff --git a/MP-TAB3/Resources/manifest.xml b/MP-TAB3/Resources/manifest.xml index d8ef96d2..de5caebc 100644 --- a/MP-TAB3/Resources/manifest.xml +++ b/MP-TAB3/Resources/manifest.xml @@ -1,6 +1,6 @@ - 6.16.2504.918 + 6.16.2504.1418 https://nexus.steamware.net/repository/SWS/MP-TAB3/stable/LAST/MP-TAB3.zip https://nexus.steamware.net/repository/SWS/MP-TAB3/stable/LAST/ChangeLog.html false diff --git a/MP.Data/Controllers/MpIocController.cs b/MP.Data/Controllers/MpIocController.cs index d50e3353..08a2e66e 100644 --- a/MP.Data/Controllers/MpIocController.cs +++ b/MP.Data/Controllers/MpIocController.cs @@ -255,12 +255,12 @@ namespace MP.Data.Controllers } /// - /// Elenco da tabella MappaStatoExpl + /// Elenco da tabella MappaStatoExplModel /// /// - public List MseGetAll(int maxAge = 2000) + public List MseGetAll(int maxAge = 2000) { - List dbResult = new List(); + List dbResult = new List(); using (var dbCtx = new MoonProContext(_configuration)) { var maxAgeSec = new SqlParameter("@maxAgeSec", maxAge); diff --git a/MP.Data/Controllers/MpMonController.cs b/MP.Data/Controllers/MpMonController.cs index 1d4c2d4d..5dc6758a 100644 --- a/MP.Data/Controllers/MpMonController.cs +++ b/MP.Data/Controllers/MpMonController.cs @@ -133,12 +133,12 @@ namespace MP.Data.Controllers } /// - /// Elenco da tabella MappaStatoExpl + /// Elenco da tabella MappaStatoExplModel /// /// - public List MseGetAll(int maxAge = 2000) + public List MseGetAll(int maxAge = 2000) { - List dbResult = new List(); + List dbResult = new List(); using (var dbCtx = new MoonProContext(_configuration)) { var maxAgeSec = new SqlParameter("@maxAgeSec", maxAge); diff --git a/MP.Data/Controllers/MpSpecController.cs b/MP.Data/Controllers/MpSpecController.cs index 613a5fd7..c4a20cad 100644 --- a/MP.Data/Controllers/MpSpecController.cs +++ b/MP.Data/Controllers/MpSpecController.cs @@ -152,7 +152,7 @@ namespace MP.Data.Controllers /// Elenco valori ammessi x Stati commessa (es Yacht Baglietto) /// /// - public List AnagStatiComm() + public List AnagStatiComm() { return ListValuesFilt("PODL", "StatoComm"); } @@ -161,7 +161,7 @@ namespace MP.Data.Controllers /// Elenco valori ammessi x Tipo articoli /// /// - public List AnagTipoArtLV() + public List AnagTipoArtLV() { return ListValuesFilt("AnagArticoli", "Tipo"); } @@ -1071,9 +1071,9 @@ namespace MP.Data.Controllers /// /// /// - public List ListValuesFilt(string tabName, string fieldName) + public List ListValuesFilt(string tabName, string fieldName) { - List dbResult = new List(); + List dbResult = new List(); using (var dbCtx = new MoonProContext(_configuration)) { dbResult = dbCtx @@ -1202,12 +1202,12 @@ namespace MP.Data.Controllers } /// - /// Elenco da tabella MappaStatoExpl + /// Elenco da tabella MappaStatoExplModel /// /// - public List MseGetAll(int maxAge = 2000) + public List MseGetAll(int maxAge = 2000) { - List dbResult = new List(); + List dbResult = new List(); using (var dbCtx = new MoonProContext(_configuration)) { var maxAgeSec = new SqlParameter("@maxAgeSec", maxAge); diff --git a/MP.Data/Controllers/MpTabController.cs b/MP.Data/Controllers/MpTabController.cs index a3e62c7d..7a919562 100644 --- a/MP.Data/Controllers/MpTabController.cs +++ b/MP.Data/Controllers/MpTabController.cs @@ -832,9 +832,9 @@ namespace MP.Data.Controllers /// /// /// - public List ListValuesFilt(string tabName, string fieldName) + public List ListValuesFilt(string tabName, string fieldName) { - List dbResult = new List(); + List dbResult = new List(); using (var dbCtx = new MoonProContext(_configuration)) { dbResult = dbCtx @@ -1017,9 +1017,9 @@ namespace MP.Data.Controllers /// /// /// - public List MseGetSub(string idxMacc, string idxMacchSub) + public List MseGetSub(string idxMacc, string idxMacchSub) { - List dbResult = new List(); + List dbResult = new List(); using (var dbCtx = new MoonProContext(_configuration)) { try diff --git a/MP.Data/DbModels/ListValues.cs b/MP.Data/DbModels/ListValuesModel.cs similarity index 94% rename from MP.Data/DbModels/ListValues.cs rename to MP.Data/DbModels/ListValuesModel.cs index 7bdd09ee..2cd31b5d 100644 --- a/MP.Data/DbModels/ListValues.cs +++ b/MP.Data/DbModels/ListValuesModel.cs @@ -9,7 +9,7 @@ using System.ComponentModel.DataAnnotations.Schema; namespace MP.Data.DbModels { [Table("ListValues")] - public partial class ListValues + public partial class ListValuesModel { #region Public Properties diff --git a/MP.Data/DbModels/MappaStatoExpl.cs b/MP.Data/DbModels/MappaStatoExplModel.cs similarity index 98% rename from MP.Data/DbModels/MappaStatoExpl.cs rename to MP.Data/DbModels/MappaStatoExplModel.cs index 1b9d435b..3adea883 100644 --- a/MP.Data/DbModels/MappaStatoExpl.cs +++ b/MP.Data/DbModels/MappaStatoExplModel.cs @@ -9,7 +9,7 @@ using System.Data; // namespace MP.Data.DbModels { - public partial class MappaStatoExpl + public partial class MappaStatoExplModel { public int RowNum { get; set; } public DateTime? LastUpdate { get; set; } @@ -163,7 +163,7 @@ namespace MP.Data.DbModels public override bool Equals(object obj) { - if (!(obj is MappaStatoExpl item)) + if (!(obj is MappaStatoExplModel item)) return false; if (RowNum != item.RowNum) @@ -256,7 +256,7 @@ namespace MP.Data.DbModels public bool MostlyEquals(object obj) { - if (!(obj is MappaStatoExpl item)) + if (!(obj is MappaStatoExplModel item)) return false; if (RowNum != item.RowNum) diff --git a/MP.Data/MoonProContext.cs b/MP.Data/MoonProContext.cs index 8c099fe1..13bbab60 100644 --- a/MP.Data/MoonProContext.cs +++ b/MP.Data/MoonProContext.cs @@ -49,9 +49,9 @@ namespace MP.Data public virtual DbSet DbSetArticoli { get; set; } public virtual DbSet DbSetConfig { get; set; } public virtual DbSet DbSetLinkMenu { get; set; } - public virtual DbSet DbSetListValues { get; set; } + public virtual DbSet DbSetListValues { get; set; } public virtual DbSet DbSetMacchine { get; set; } - public virtual DbSet DbSetMSE { get; set; } + public virtual DbSet DbSetMSE { get; set; } public virtual DbSet DbSetODL { get; set; } public virtual DbSet DbSetODLExp { get; set; } public virtual DbSet DbSetPODL { get; set; } @@ -207,7 +207,7 @@ namespace MP.Data entity.Property(e => e.Nome).HasMaxLength(50); }); - modelBuilder.Entity(entity => + modelBuilder.Entity(entity => { entity.HasKey(e => e.RowNum); @@ -346,7 +346,7 @@ namespace MP.Data .HasColumnName("SelEnabled"); }); - modelBuilder.Entity(entity => + modelBuilder.Entity(entity => { entity.HasKey(e => new { e.TableName, e.FieldName, e.value }); diff --git a/MP.Data/Services/MessageService.cs b/MP.Data/Services/MessageService.cs index ed5f11d3..70a616cd 100644 --- a/MP.Data/Services/MessageService.cs +++ b/MP.Data/Services/MessageService.cs @@ -495,13 +495,13 @@ namespace MP.Data.Services /// /// /// - public async Task GetMachineMse(string idxMacchina) + public async Task GetMachineMse(string idxMacchina) { - MappaStatoExpl answ = null; + MappaStatoExplModel answ = null; var rawData = await localStorage.GetItemAsync(machineMse(idxMacchina)); if (!string.IsNullOrEmpty(rawData)) { - answ = JsonConvert.DeserializeObject(rawData); + answ = JsonConvert.DeserializeObject(rawData); } return answ; } @@ -544,7 +544,7 @@ namespace MP.Data.Services /// /// /// - public async Task SaveMse(List currListMSE) + public async Task SaveMse(List currListMSE) { // procedo SOLO SE non sono in reloading... if (!IsReloading) diff --git a/MP.Data/Services/StatusData.cs b/MP.Data/Services/StatusData.cs index 17e79513..9d2e5142 100644 --- a/MP.Data/Services/StatusData.cs +++ b/MP.Data/Services/StatusData.cs @@ -317,17 +317,17 @@ namespace MP.Data.Services return answ; } - public async Task> MseGetAll(bool forceDb = false) + public async Task> MseGetAll(bool forceDb = false) { Stopwatch sw = new Stopwatch(); string source = "DB"; sw.Start(); - List? result = new List(); + List? result = new List(); // cerco in redis... RedisValue rawData = redisDb.StringGet(Constants.redisMseKey); if (rawData.HasValue && !forceDb) { - result = JsonConvert.DeserializeObject>($"{rawData}"); + result = JsonConvert.DeserializeObject>($"{rawData}"); source = "REDIS"; } else @@ -339,7 +339,7 @@ namespace MP.Data.Services } if (result == null) { - result = new List(); + result = new List(); } sw.Stop(); Log.Debug($"MseGetAll | {source} | {sw.Elapsed.TotalMilliseconds}ms"); diff --git a/MP.Data/Services/TabDataService.cs b/MP.Data/Services/TabDataService.cs index 5eeff5bd..22a943d7 100644 --- a/MP.Data/Services/TabDataService.cs +++ b/MP.Data/Services/TabDataService.cs @@ -1275,18 +1275,18 @@ namespace MP.Data.Services /// Elenco parametri validi tab/campo /// /// - public List ListValuesFilt(string tabName, string fieldName) + public List ListValuesFilt(string tabName, string fieldName) { string source = "DB"; Stopwatch sw = new Stopwatch(); sw.Start(); - List? result = new List(); + List? result = new List(); // cerco in redis... string currKey = $"{redisBaseKey}:ListVal:{tabName}:{fieldName}"; RedisValue rawData = redisDb.StringGet(currKey); if (rawData.HasValue) { - result = JsonConvert.DeserializeObject>($"{rawData}"); + result = JsonConvert.DeserializeObject>($"{rawData}"); source = "REDIS"; } else @@ -1298,7 +1298,7 @@ namespace MP.Data.Services } if (result == null) { - result = new List(); + result = new List(); } sw.Stop(); Log.Debug($"ListValuesFilt | {source} | {sw.Elapsed.TotalMilliseconds}ms"); @@ -1621,17 +1621,17 @@ namespace MP.Data.Services /// /// /// - public MappaStatoExpl MseGetSub(string idxMacc, string idxMacchSub, bool forceDb) + public MappaStatoExplModel MseGetSub(string idxMacc, string idxMacchSub, bool forceDb) { Stopwatch stopWatch = new Stopwatch(); stopWatch.Start(); - MappaStatoExpl result = new MappaStatoExpl(); + MappaStatoExplModel result = new MappaStatoExplModel(); // cerco in redis... string currKey = $"{Constants.redisMseKeySingle}:{idxMacchSub}"; RedisValue rawData = redisDb.StringGet(currKey); if (rawData.HasValue && !forceDb) { - result = JsonConvert.DeserializeObject($"{rawData}"); + result = JsonConvert.DeserializeObject($"{rawData}"); stopWatch.Stop(); TimeSpan ts = stopWatch.Elapsed; Log.Debug($"Read from REDIS: {ts.TotalMilliseconds}ms"); @@ -1652,7 +1652,7 @@ namespace MP.Data.Services } if (result == null) { - result = new MappaStatoExpl(); + result = new MappaStatoExplModel(); } return result; } diff --git a/MP.Data/Translate/DbDto.cs b/MP.Data/Translate/DbDto.cs index e20c1c20..ea112cd9 100644 --- a/MP.Data/Translate/DbDto.cs +++ b/MP.Data/Translate/DbDto.cs @@ -10,7 +10,7 @@ namespace MP.Data.Translate /// /// /// - public static MappaStatoExplDTO Mse2DTO(MappaStatoExpl? origRec) + public static MappaStatoExplDTO Mse2DTO(MappaStatoExplModel? origRec) { MappaStatoExplDTO result = new MappaStatoExplDTO(); if (origRec != null) diff --git a/MP.IOC/Data/MpDataService.cs b/MP.IOC/Data/MpDataService.cs index 24a42a1e..e4ff8047 100644 --- a/MP.IOC/Data/MpDataService.cs +++ b/MP.IOC/Data/MpDataService.cs @@ -148,16 +148,16 @@ namespace MP.IOC.Data return answ; } - public async Task> AnagStatiComm() + public async Task> AnagStatiComm() { Stopwatch stopWatch = new Stopwatch(); stopWatch.Start(); - List? result = new List(); + List? result = new List(); // cerco in redis... RedisValue rawData = await redisDb.StringGetAsync(Utils.redisStatoCom); if (!string.IsNullOrEmpty($"{rawData}")) { - result = JsonConvert.DeserializeObject>($"{rawData}"); + result = JsonConvert.DeserializeObject>($"{rawData}"); stopWatch.Stop(); TimeSpan ts = stopWatch.Elapsed; Log.Debug($"AnagStatiComm Read from REDIS: {ts.TotalMilliseconds}ms"); @@ -174,22 +174,22 @@ namespace MP.IOC.Data } if (result == null) { - result = new List(); + result = new List(); } return result; } - public async Task> AnagTipoArtLV() + public async Task> AnagTipoArtLV() { Stopwatch stopWatch = new Stopwatch(); stopWatch.Start(); string source = "DB"; - List? result = new List(); + List? result = new List(); // cerco in redis... RedisValue rawData = await redisDb.StringGetAsync(Utils.redisTipoArt); if (!string.IsNullOrEmpty($"{rawData}")) { - result = JsonConvert.DeserializeObject>($"{rawData}"); + result = JsonConvert.DeserializeObject>($"{rawData}"); source = "REDIS"; } else @@ -204,7 +204,7 @@ namespace MP.IOC.Data Log.Debug($"AnagTipoArtLV Read from {source}: {ts.TotalMilliseconds}ms"); if (result == null) { - result = new List(); + result = new List(); } return result; } @@ -583,7 +583,7 @@ namespace MP.IOC.Data /// Restitusice elenco aziende /// /// - public Task> ElencoAziende() + public Task> ElencoAziende() { return Task.FromResult(SpecDbController.AnagGruppiAziende()); } @@ -592,9 +592,9 @@ namespace MP.IOC.Data /// Restitusice elenco fasi /// /// - public Task> ElencoGruppiFase() + public Task> ElencoGruppiFase() { - List result = new List(); + List result = new List(); Stopwatch stopWatch = new Stopwatch(); stopWatch.Start(); string readType = "DB"; @@ -603,7 +603,7 @@ namespace MP.IOC.Data RedisValue rawData = redisDb.StringGet(currKey); if (rawData.HasValue) { - var rawResult = JsonConvert.DeserializeObject>($"{rawData}"); + var rawResult = JsonConvert.DeserializeObject>($"{rawData}"); if (rawResult != null) { result = rawResult; @@ -619,7 +619,7 @@ namespace MP.IOC.Data } if (result == null) { - result = new List(); + result = new List(); } stopWatch.Stop(); TimeSpan ts = stopWatch.Elapsed; diff --git a/MP.IOC/Resources/ChangeLog.html b/MP.IOC/Resources/ChangeLog.html index c9947dad..a114ba2b 100644 --- a/MP.IOC/Resources/ChangeLog.html +++ b/MP.IOC/Resources/ChangeLog.html @@ -1,6 +1,6 @@ Modulo MP-IOC -

    Versione: 6.16.2504.418

    +

    Versione: 6.16.2504.1418


    Note di rilascio:
    • diff --git a/MP.IOC/Resources/VersNum.txt b/MP.IOC/Resources/VersNum.txt index bb79cee9..97c8814a 100644 --- a/MP.IOC/Resources/VersNum.txt +++ b/MP.IOC/Resources/VersNum.txt @@ -1 +1 @@ -6.16.2504.418 +6.16.2504.1418 diff --git a/MP.IOC/Resources/manifest.xml b/MP.IOC/Resources/manifest.xml index 4af9397c..bddc4d5b 100644 --- a/MP.IOC/Resources/manifest.xml +++ b/MP.IOC/Resources/manifest.xml @@ -1,6 +1,6 @@ - 6.16.2504.418 + 6.16.2504.1418 https://nexus.steamware.net/repository/SWS/MP-IOC/stable/LAST/MP.IOC.zip https://nexus.steamware.net/repository/SWS/MP-IOC/stable/LAST/ChangeLog.html false diff --git a/MP.MON/Components/Pages/Index.razor.cs b/MP.MON/Components/Pages/Index.razor.cs index d5da8235..0cd82f38 100644 --- a/MP.MON/Components/Pages/Index.razor.cs +++ b/MP.MON/Components/Pages/Index.razor.cs @@ -219,7 +219,7 @@ namespace MP.MON.Components.Pages private List listMacchine = new List(); - private List? ListMSE = null; + private List? ListMSE = null; /// /// num max caratteri prima di abilitare scrolling testo @@ -291,13 +291,13 @@ namespace MP.MON.Components.Pages { try { - List? dataList = JsonConvert.DeserializeObject>(currArgs.newMessage); + List? dataList = JsonConvert.DeserializeObject>(currArgs.newMessage); if (dataList != null) { // se ho filtro macchine --> tengo solo quelle che mi tornano... if (listMacchine != null && listMacchine.Count > 0) { - List listaFilt = new List(); + List listaFilt = new List(); foreach (var item in listMacchine) { var rigaFilt = dataList.FirstOrDefault(x => x.IdxMacchina == item.IdxMacchina); @@ -312,7 +312,7 @@ namespace MP.MON.Components.Pages #if DEBUG // hack: legge 3 volte i dati x stressare sistema var singleData = dataList; - ListMSE = new List(); + ListMSE = new List(); for (int i = 0; i < 3; i++) { ListMSE.AddRange(singleData); diff --git a/MP.MON/MP.MON.csproj b/MP.MON/MP.MON.csproj index 26d6abf7..3867db9f 100644 --- a/MP.MON/MP.MON.csproj +++ b/MP.MON/MP.MON.csproj @@ -6,7 +6,7 @@ enable MP.MON $(AssemblyName.Replace(' ', '_')) - 6.16.2503.2116 + 6.16.2504.1418 diff --git a/MP.MON/Resources/ChangeLog.html b/MP.MON/Resources/ChangeLog.html index 96293aa4..3a00bd95 100644 --- a/MP.MON/Resources/ChangeLog.html +++ b/MP.MON/Resources/ChangeLog.html @@ -1,6 +1,6 @@ Modulo MAPOSPEC -

      Versione: 6.16.2503.2116

      +

      Versione: 6.16.2504.1418


      Note di rilascio:
      • diff --git a/MP.MON/Resources/VersNum.txt b/MP.MON/Resources/VersNum.txt index dc602e48..97c8814a 100644 --- a/MP.MON/Resources/VersNum.txt +++ b/MP.MON/Resources/VersNum.txt @@ -1 +1 @@ -6.16.2503.2116 +6.16.2504.1418 diff --git a/MP.MON/Resources/manifest.xml b/MP.MON/Resources/manifest.xml index aef761a9..85eb84f3 100644 --- a/MP.MON/Resources/manifest.xml +++ b/MP.MON/Resources/manifest.xml @@ -1,6 +1,6 @@ - 6.16.2503.2116 + 6.16.2504.1418 https://nexus.steamware.net/repository/SWS/MP-MON/stable/LAST/MP.MON.zip https://nexus.steamware.net/repository/SWS/MP-MON/stable/LAST/ChangeLog.html false From e83ae513a8e11b466e3ca37aacda5a30749cc626 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Mon, 14 Apr 2025 18:25:13 +0200 Subject: [PATCH 2/2] Update SPEC x modelli dati --- MP.SPEC/Components/ListDossiers.razor.cs | 2 +- MP.SPEC/Components/ListODL.razor.cs | 2 +- MP.SPEC/Components/ListPODL.razor.cs | 2 +- MP.SPEC/Components/SelFilterXDL.razor.cs | 2 +- MP.SPEC/Components/StatsOdl.razor.cs | 2 +- MP.SPEC/Data/MpDataService.cs | 16 ++++++++-------- MP.SPEC/Pages/Articoli.razor.cs | 2 +- MP.SPEC/Pages/ODL.razor.cs | 2 +- MP.SPEC/Pages/PODL.razor.cs | 2 +- MP.SPEC/Pages/Podl2Kit.razor.cs | 2 +- 10 files changed, 17 insertions(+), 17 deletions(-) diff --git a/MP.SPEC/Components/ListDossiers.razor.cs b/MP.SPEC/Components/ListDossiers.razor.cs index 91065bbf..639db8b9 100644 --- a/MP.SPEC/Components/ListDossiers.razor.cs +++ b/MP.SPEC/Components/ListDossiers.razor.cs @@ -320,7 +320,7 @@ namespace MP.SPEC.Components private List? ListMacchine; private List? ListRecords; - private List? ListStati; + private List? ListStati; private List? SearchRecords; diff --git a/MP.SPEC/Components/ListODL.razor.cs b/MP.SPEC/Components/ListODL.razor.cs index 42040ed5..3cadc9a6 100644 --- a/MP.SPEC/Components/ListODL.razor.cs +++ b/MP.SPEC/Components/ListODL.razor.cs @@ -271,7 +271,7 @@ namespace MP.SPEC.Components private List? ListRecords; - private List? ListStati; + private List? ListStati; private List? SearchRecords; diff --git a/MP.SPEC/Components/ListPODL.razor.cs b/MP.SPEC/Components/ListPODL.razor.cs index 1bc9c190..ceb788d8 100644 --- a/MP.SPEC/Components/ListPODL.razor.cs +++ b/MP.SPEC/Components/ListPODL.razor.cs @@ -311,7 +311,7 @@ namespace MP.SPEC.Components private List? ListRecords; - private List? ListStati; + private List? ListStati; private bool MachineWithRecipe = false; diff --git a/MP.SPEC/Components/SelFilterXDL.razor.cs b/MP.SPEC/Components/SelFilterXDL.razor.cs index 3f3d8e51..9e34621b 100644 --- a/MP.SPEC/Components/SelFilterXDL.razor.cs +++ b/MP.SPEC/Components/SelFilterXDL.razor.cs @@ -22,7 +22,7 @@ namespace MP.SPEC.Components public List? ListMacchine { get; set; } = null; [Parameter] - public List? ListStati { get; set; } = null; + public List? ListStati { get; set; } = null; #endregion Public Properties diff --git a/MP.SPEC/Components/StatsOdl.razor.cs b/MP.SPEC/Components/StatsOdl.razor.cs index a1586fda..ed18400d 100644 --- a/MP.SPEC/Components/StatsOdl.razor.cs +++ b/MP.SPEC/Components/StatsOdl.razor.cs @@ -17,7 +17,7 @@ namespace MP.SPEC.Components } [Parameter] - public List? ListStati { get; set; } + public List? ListStati { get; set; } [Parameter] public ODLExpModel statRecord { get; set; } = null!; diff --git a/MP.SPEC/Data/MpDataService.cs b/MP.SPEC/Data/MpDataService.cs index 1107d75a..29dada56 100644 --- a/MP.SPEC/Data/MpDataService.cs +++ b/MP.SPEC/Data/MpDataService.cs @@ -189,16 +189,16 @@ namespace MP.SPEC.Data return result; } - public async Task> AnagStatiComm() + public async Task> AnagStatiComm() { Stopwatch stopWatch = new Stopwatch(); stopWatch.Start(); - List? result = new List(); + List? result = new List(); // cerco in redis... RedisValue rawData = await redisDb.StringGetAsync(Utils.redisStatoCom); if (!string.IsNullOrEmpty($"{rawData}")) { - result = JsonConvert.DeserializeObject>($"{rawData}"); + result = JsonConvert.DeserializeObject>($"{rawData}"); stopWatch.Stop(); TimeSpan ts = stopWatch.Elapsed; Log.Debug($"AnagStatiComm Read from REDIS: {ts.TotalMilliseconds}ms"); @@ -215,22 +215,22 @@ namespace MP.SPEC.Data } if (result == null) { - result = new List(); + result = new List(); } return result; } - public async Task> AnagTipoArtLV() + public async Task> AnagTipoArtLV() { Stopwatch stopWatch = new Stopwatch(); stopWatch.Start(); string source = "DB"; - List? result = new List(); + List? result = new List(); // cerco in redis... RedisValue rawData = await redisDb.StringGetAsync(Utils.redisTipoArt); if (!string.IsNullOrEmpty($"{rawData}")) { - result = JsonConvert.DeserializeObject>($"{rawData}"); + result = JsonConvert.DeserializeObject>($"{rawData}"); source = "REDIS"; } else @@ -245,7 +245,7 @@ namespace MP.SPEC.Data Log.Debug($"AnagTipoArtLV Read from {source}: {ts.TotalMilliseconds}ms"); if (result == null) { - result = new List(); + result = new List(); } return result; } diff --git a/MP.SPEC/Pages/Articoli.razor.cs b/MP.SPEC/Pages/Articoli.razor.cs index 8cf3d271..de9c7c91 100644 --- a/MP.SPEC/Pages/Articoli.razor.cs +++ b/MP.SPEC/Pages/Articoli.razor.cs @@ -239,7 +239,7 @@ namespace MP.SPEC.Pages private AnagArticoliModel? currRecord = null; private List? ListAziende; private List? ListRecords; - private List? ListTipoArt; + private List? ListTipoArt; private List? SearchRecords; #endregion Private Fields diff --git a/MP.SPEC/Pages/ODL.razor.cs b/MP.SPEC/Pages/ODL.razor.cs index 627c977b..9f39fbea 100644 --- a/MP.SPEC/Pages/ODL.razor.cs +++ b/MP.SPEC/Pages/ODL.razor.cs @@ -161,7 +161,7 @@ namespace MP.SPEC.Pages #region Private Fields private List? ListMacchine; - private List? ListStati; + private List? ListStati; #endregion Private Fields diff --git a/MP.SPEC/Pages/PODL.razor.cs b/MP.SPEC/Pages/PODL.razor.cs index 877c981f..0628c891 100644 --- a/MP.SPEC/Pages/PODL.razor.cs +++ b/MP.SPEC/Pages/PODL.razor.cs @@ -299,7 +299,7 @@ namespace MP.SPEC.Pages private List? ListAziende; private List? ListGruppiFase; private List? ListMacchine; - private List? ListStati; + private List? ListStati; private int nArtSearch = 5; #endregion Private Fields diff --git a/MP.SPEC/Pages/Podl2Kit.razor.cs b/MP.SPEC/Pages/Podl2Kit.razor.cs index 1fe4e55d..51d1cee7 100644 --- a/MP.SPEC/Pages/Podl2Kit.razor.cs +++ b/MP.SPEC/Pages/Podl2Kit.razor.cs @@ -250,7 +250,7 @@ namespace MP.SPEC.Pages private List? ListRecords; - private List? ListStati; + private List? ListStati; private int minChar = 2;