diff --git a/MP.SPEC/Data/SelectOdlParams.cs b/MP.SPEC/Data/SelectOdlParams.cs
index 8533639e..c2e9de0f 100644
--- a/MP.SPEC/Data/SelectOdlParams.cs
+++ b/MP.SPEC/Data/SelectOdlParams.cs
@@ -15,11 +15,12 @@ namespace MP.SPEC.Data
public string CodStato { get; set; } = "*";
public int CurrPage { get; set; } = 1;
-
+ public int NumRec { get; set; } = 10;
public DateTime DtEnd { get; set; } = Utils.InitDatetime(DateTime.Now, 5);
- public DateTime DtStart { get; set; } = Utils.InitDatetime(DateTime.Now.AddDays(-7), 5);
+ public DateTime DtStart { get; set; } = Utils.InitDatetime(DateTime.Now, 5).AddDays(-7);
public int MaxRecord { get; set; } = 100;
- public bool ShowClosed { get; set; } = false;
+ public bool IsActive { get; set; } = true;
+ public string SearchVal { get; set; } = "*";
#endregion Public Properties
@@ -30,7 +31,7 @@ namespace MP.SPEC.Data
if (!(obj is SelectOdlParams item))
return false;
- if (ShowClosed != item.ShowClosed)
+ if (IsActive != item.IsActive)
return false;
if (CodStato != item.CodStato)
@@ -39,6 +40,9 @@ namespace MP.SPEC.Data
if (MaxRecord != item.MaxRecord)
return false;
+ if (NumRec != item.NumRec)
+ return false;
+
if (DtStart != item.DtStart)
return false;
@@ -48,6 +52,9 @@ namespace MP.SPEC.Data
if (CurrPage != item.CurrPage)
return false;
+ if (SearchVal != item.SearchVal)
+ return false;
+
return true;
}
diff --git a/MP.SPEC/Pages/ODL.razor b/MP.SPEC/Pages/ODL.razor
index 82290fd4..c2c5eef2 100644
--- a/MP.SPEC/Pages/ODL.razor
+++ b/MP.SPEC/Pages/ODL.razor
@@ -9,7 +9,12 @@
ODL
-
+ @**@
+ Completati
+
+
+
+ In Corso
@@ -31,7 +36,7 @@
-
+