diff --git a/MP.SPEC/Components/ListGiacenze.razor b/MP.SPEC/Components/ListGiacenze.razor index ca1d90f0..64bb5423 100644 --- a/MP.SPEC/Components/ListGiacenze.razor +++ b/MP.SPEC/Components/ListGiacenze.razor @@ -2,13 +2,18 @@
| # | - Lotto @if (!string.IsNullOrEmpty(BatchSel)) { } + else + { + # + } + | ++ Lotto | Prodotto | Tipo | diff --git a/MP.SPEC/Components/ListODL.razor.cs b/MP.SPEC/Components/ListODL.razor.cs index 35159bb7..a339bc42 100644 --- a/MP.SPEC/Components/ListODL.razor.cs +++ b/MP.SPEC/Components/ListODL.razor.cs @@ -1,7 +1,9 @@ using Microsoft.AspNetCore.Components; +using Microsoft.AspNetCore.WebUtilities; using Microsoft.JSInterop; using MP.Data.DatabaseModels; using MP.SPEC.Data; +using MP.SPEC.Pages; using MP.SPEC.Services; using NLog; @@ -72,10 +74,15 @@ namespace MP.SPEC.Components [Inject] protected IOApiService MpIoApiCall { get; set; } = null!; + [Inject] + protected NavigationManager NavManager { get; set; } = null!; + #endregion Protected Properties #region Protected Methods + protected int odlCercato = 0; + ///
|---|