diff --git a/MP.SPEC/Components/ListPODL.razor b/MP.SPEC/Components/ListPODL.razor index d5105750..2eae6201 100644 --- a/MP.SPEC/Components/ListPODL.razor +++ b/MP.SPEC/Components/ListPODL.razor @@ -1,4 +1,5 @@ @using MP.SPEC.Components +@using MP.SPEC.Components.ProdKit @using MP.SPEC.Data @if (ListRecords == null || isLoading) @@ -15,7 +16,7 @@ else
@if (showKitDetail) { - + } diff --git a/MP.SPEC/Components/ProdKit/KitDetailModal.razor b/MP.SPEC/Components/ProdKit/KitDetailModal.razor index 6fc6486b..25fc0836 100644 --- a/MP.SPEC/Components/ProdKit/KitDetailModal.razor +++ b/MP.SPEC/Components/ProdKit/KitDetailModal.razor @@ -16,7 +16,7 @@ } else if (numIstKit == 0) { -
+
Nessun record trovato
} @@ -62,7 +62,7 @@
diff --git a/MP.SPEC/Components/ProdKit/KitVerify.razor.cs b/MP.SPEC/Components/ProdKit/KitVerify.razor.cs index 0382797d..13868a07 100644 --- a/MP.SPEC/Components/ProdKit/KitVerify.razor.cs +++ b/MP.SPEC/Components/ProdKit/KitVerify.razor.cs @@ -24,6 +24,9 @@ namespace MP.SPEC.Components.ProdKit [Parameter] public string KeyFilt { get; set; } = ""; + [Parameter] + public List PodlRecords { get; set; } = new List(); + #endregion Public Properties #region Protected Properties @@ -45,6 +48,11 @@ namespace MP.SPEC.Components.ProdKit { ListKitTemplate = MDService.TemplateKitFilt(CodArtParent, ""); totalKitCount = ListKitTemplate.Count; + ListRecKitPODL = PodlRecords + .Where(x => !string.IsNullOrEmpty(x.KeyRichiesta) + && x.KeyRichiesta.StartsWith("KIT") + && x.CodArticolo==CodArtParent) + .ToList(); } else { @@ -67,6 +75,7 @@ namespace MP.SPEC.Components.ProdKit private bool doShowDetail = false; private List? ListKitTemplate = null; private List ListRecPODL = new List(); + private List ListRecKitPODL = new List(); private List ListRecScore = new List(); /// @@ -102,6 +111,7 @@ namespace MP.SPEC.Components.ProdKit { ListRecScore = AllRecTSM.ToList(); ListRecPODL = AllRecPODL.ToList(); + numRecWsm = AllRecWSM.Count(); } diff --git a/MP.SPEC/Components/ProdKit/Manager.razor b/MP.SPEC/Components/ProdKit/Manager.razor index 5e8538e2..68957397 100644 --- a/MP.SPEC/Components/ProdKit/Manager.razor +++ b/MP.SPEC/Components/ProdKit/Manager.razor @@ -16,7 +16,7 @@
- +
}
diff --git a/MP.SPEC/MP.SPEC.csproj b/MP.SPEC/MP.SPEC.csproj index 431a7a34..a0a35c56 100644 --- a/MP.SPEC/MP.SPEC.csproj +++ b/MP.SPEC/MP.SPEC.csproj @@ -5,7 +5,7 @@ enable enable MP.SPEC - 6.16.2505.1516 + 6.16.2506.917 1800a78a-6ff1-40f9-b490-87fb8bfc1394 en diff --git a/MP.SPEC/Resources/ChangeLog.html b/MP.SPEC/Resources/ChangeLog.html index 33947680..ae37f28c 100644 --- a/MP.SPEC/Resources/ChangeLog.html +++ b/MP.SPEC/Resources/ChangeLog.html @@ -1,6 +1,6 @@ Modulo MAPOSPEC -

Versione: 6.16.2505.1516

+

Versione: 6.16.2506.917


Note di rilascio:
  • diff --git a/MP.SPEC/Resources/VersNum.txt b/MP.SPEC/Resources/VersNum.txt index 89e71bf5..57efca0a 100644 --- a/MP.SPEC/Resources/VersNum.txt +++ b/MP.SPEC/Resources/VersNum.txt @@ -1 +1 @@ -6.16.2505.1516 +6.16.2506.917 diff --git a/MP.SPEC/Resources/manifest.xml b/MP.SPEC/Resources/manifest.xml index 50de2d49..1dff2086 100644 --- a/MP.SPEC/Resources/manifest.xml +++ b/MP.SPEC/Resources/manifest.xml @@ -1,6 +1,6 @@ - 6.16.2505.1516 + 6.16.2506.917 https://nexus.steamware.net/repository/SWS/MP-SPEC/stable/LAST/MP.SPEC.zip https://nexus.steamware.net/repository/SWS/MP-SPEC/stable/LAST/ChangeLog.html false diff --git a/MP.TaskMan/Models/TaskListModel.cs b/MP.TaskMan/Models/TaskListModel.cs index 25303571..292b5ea6 100644 --- a/MP.TaskMan/Models/TaskListModel.cs +++ b/MP.TaskMan/Models/TaskListModel.cs @@ -68,8 +68,9 @@ namespace MP.TaskMan.Models /// DataOra ultima esecuzione ///
public DateTime DtLastExec { get; set; } = DateTime.Today.AddYears(-10); + /// - /// DataOra ultima esecuzione + /// DataOra prossima esecuzione (prevista) /// public DateTime DtNextExec { get; set; } = DateTime.Today.AddYears(-9);