diff --git a/MP.IOC/Data/MpDataService.cs b/MP.IOC/Data/MpDataService.cs
index 92f2b3e9..24a42a1e 100644
--- a/MP.IOC/Data/MpDataService.cs
+++ b/MP.IOC/Data/MpDataService.cs
@@ -249,7 +249,7 @@ namespace MP.IOC.Data
///
///
///
- public async Task ArticoliDeleteRecord(AnagArticoli currRec)
+ public async Task ArticoliDeleteRecord(AnagArticoliModel currRec)
{
bool fatto = await SpecDbController.ArticoliDeleteRecord(currRec);
await resetCacheArticoli();
@@ -262,9 +262,9 @@ namespace MP.IOC.Data
///
///
///
- public async Task> ArticoliGetSearch(int numRecord, string azienda, string searchVal)
+ public async Task> ArticoliGetSearch(int numRecord, string azienda, string searchVal)
{
- List? result = new List();
+ List? result = new List();
Stopwatch stopWatch = new Stopwatch();
stopWatch.Start();
string readType = "DB";
@@ -274,7 +274,7 @@ namespace MP.IOC.Data
RedisValue rawData = redisDb.StringGet(currKey);
if (rawData.HasValue)
{
- result = JsonConvert.DeserializeObject>($"{rawData}");
+ result = JsonConvert.DeserializeObject>($"{rawData}");
readType = "REDIS";
}
else
@@ -286,7 +286,7 @@ namespace MP.IOC.Data
}
if (result == null)
{
- result = new List();
+ result = new List();
}
stopWatch.Stop();
TimeSpan ts = stopWatch.Elapsed;
@@ -299,7 +299,7 @@ namespace MP.IOC.Data
///
///
///
- public async Task ArticoliUpdateRecord(AnagArticoli currRec)
+ public async Task ArticoliUpdateRecord(AnagArticoliModel currRec)
{
bool fatto = await SpecDbController.ArticoliUpdateRecord(currRec);
await resetCacheArticoli();
diff --git a/MP.IOC/Resources/ChangeLog.html b/MP.IOC/Resources/ChangeLog.html
index 549ab8d2..c9947dad 100644
--- a/MP.IOC/Resources/ChangeLog.html
+++ b/MP.IOC/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo MP-IOC
- Versione: 6.16.2503.1418
+ Versione: 6.16.2504.418
Note di rilascio:
-
diff --git a/MP.IOC/Resources/VersNum.txt b/MP.IOC/Resources/VersNum.txt
index 7d5437b1..bb79cee9 100644
--- a/MP.IOC/Resources/VersNum.txt
+++ b/MP.IOC/Resources/VersNum.txt
@@ -1 +1 @@
-6.16.2503.1418
+6.16.2504.418
diff --git a/MP.IOC/Resources/manifest.xml b/MP.IOC/Resources/manifest.xml
index 0366b656..4af9397c 100644
--- a/MP.IOC/Resources/manifest.xml
+++ b/MP.IOC/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 6.16.2503.1418
+ 6.16.2504.418
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.SPEC/Components/ListDossiers.razor.cs b/MP.SPEC/Components/ListDossiers.razor.cs
index 9802503a..6ad467b0 100644
--- a/MP.SPEC/Components/ListDossiers.razor.cs
+++ b/MP.SPEC/Components/ListDossiers.razor.cs
@@ -314,7 +314,7 @@ namespace MP.SPEC.Components
private DossierModel? currRecordClone = null;
- private List? ListArticoli;
+ private List? ListArticoli;
private List? ListGruppiFase;
private List? ListMacchine;
diff --git a/MP.SPEC/Data/MpDataService.cs b/MP.SPEC/Data/MpDataService.cs
index 042f1c2f..b2ad89a7 100644
--- a/MP.SPEC/Data/MpDataService.cs
+++ b/MP.SPEC/Data/MpDataService.cs
@@ -270,7 +270,7 @@ namespace MP.SPEC.Data
///
///
///
- public async Task ArticoliDeleteRecord(AnagArticoli currRec)
+ public async Task ArticoliDeleteRecord(AnagArticoliModel currRec)
{
bool fatto = await dbController.ArticoliDeleteRecord(currRec);
await resetCacheArticoli();
@@ -283,9 +283,9 @@ namespace MP.SPEC.Data
///
///
///
- public async Task
> ArticoliGetSearch(int numRecord, string azienda, string searchVal)
+ public async Task> ArticoliGetSearch(int numRecord, string azienda, string searchVal)
{
- List? result = new List();
+ List? result = new List();
Stopwatch stopWatch = new Stopwatch();
stopWatch.Start();
string readType = "DB";
@@ -295,7 +295,7 @@ namespace MP.SPEC.Data
RedisValue rawData = redisDb.StringGet(currKey);
if (rawData.HasValue)
{
- result = JsonConvert.DeserializeObject>($"{rawData}");
+ result = JsonConvert.DeserializeObject>($"{rawData}");
readType = "REDIS";
}
else
@@ -307,7 +307,7 @@ namespace MP.SPEC.Data
}
if (result == null)
{
- result = new List();
+ result = new List();
}
stopWatch.Stop();
TimeSpan ts = stopWatch.Elapsed;
@@ -320,7 +320,7 @@ namespace MP.SPEC.Data
///
///
///
- public async Task ArticoliUpdateRecord(AnagArticoli currRec)
+ public async Task ArticoliUpdateRecord(AnagArticoliModel currRec)
{
bool fatto = await dbController.ArticoliUpdateRecord(currRec);
await resetCacheArticoli();
diff --git a/MP.SPEC/MP.SPEC.csproj b/MP.SPEC/MP.SPEC.csproj
index 9d8fbe50..fc6b91fe 100644
--- a/MP.SPEC/MP.SPEC.csproj
+++ b/MP.SPEC/MP.SPEC.csproj
@@ -5,7 +5,7 @@
enable
enable
MP.SPEC
- 6.16.2503.2116
+ 6.16.2504.418
1800a78a-6ff1-40f9-b490-87fb8bfc1394
en
diff --git a/MP.SPEC/Pages/Articoli.razor.cs b/MP.SPEC/Pages/Articoli.razor.cs
index 9e0c29cd..6ee46a79 100644
--- a/MP.SPEC/Pages/Articoli.razor.cs
+++ b/MP.SPEC/Pages/Articoli.razor.cs
@@ -82,7 +82,7 @@ namespace MP.SPEC.Pages
///
protected async Task addNew()
{
- currRecord = new AnagArticoli()
+ currRecord = new AnagArticoliModel()
{
CodArticolo = $"_NEW_{DateTime.Now:yyyyMMdd.HHmmss}",
DescArticolo = "Nuovo articolo",
@@ -140,7 +140,7 @@ namespace MP.SPEC.Pages
///
///
///
- protected async Task deleteRecord(AnagArticoli selRec)
+ protected async Task deleteRecord(AnagArticoliModel selRec)
{
if (!await JSRuntime.InvokeAsync("confirm", "Eliminazione Articolo: sei sicuro di voler procedere?"))
return;
@@ -193,15 +193,15 @@ namespace MP.SPEC.Pages
await Task.Delay(1);
}
- protected async Task selRecord(AnagArticoli selRec)
+ protected async Task selRecord(AnagArticoliModel selRec)
{
currRecord = selRec;
await Task.Delay(1);
}
- protected async Task cloneRecord(AnagArticoli selRec)
+ protected async Task cloneRecord(AnagArticoliModel selRec)
{
// creo record duplicato...
- AnagArticoli newRec = new AnagArticoli()
+ AnagArticoliModel newRec = new AnagArticoliModel()
{
Azienda = selRec.Azienda,
CodArticolo = selRec.CodArticolo,
@@ -214,7 +214,7 @@ namespace MP.SPEC.Pages
}
- protected async Task update(AnagArticoli selRec)
+ protected async Task update(AnagArticoliModel selRec)
{
if (!await JSRuntime.InvokeAsync("confirm", "Confermi di voler salvare le modifiche?"))
return;
@@ -236,11 +236,11 @@ namespace MP.SPEC.Pages
#region Private Fields
private string _selAzienda = "*";
- private AnagArticoli? currRecord = null;
+ private AnagArticoliModel? currRecord = null;
private List? ListAziende;
- private List? ListRecords;
+ private List? ListRecords;
private List? ListTipoArt;
- private List? SearchRecords;
+ private List? SearchRecords;
#endregion Private Fields
diff --git a/MP.SPEC/Pages/PODL.razor.cs b/MP.SPEC/Pages/PODL.razor.cs
index 4f03c80f..cac859f8 100644
--- a/MP.SPEC/Pages/PODL.razor.cs
+++ b/MP.SPEC/Pages/PODL.razor.cs
@@ -294,7 +294,7 @@ namespace MP.SPEC.Pages
private PODLExpModel? _currRecord = null;
private AnagGruppi currGruppoSel = new AnagGruppi();
private PODLExpModel currRecordControlli = new PODLExpModel();
- private List? ListArticoli;
+ private List? ListArticoli;
private List? ListAziende;
private List? ListGruppiFase;
private List? ListMacchine;
diff --git a/MP.SPEC/Resources/ChangeLog.html b/MP.SPEC/Resources/ChangeLog.html
index 96293aa4..ac873c83 100644
--- a/MP.SPEC/Resources/ChangeLog.html
+++ b/MP.SPEC/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo MAPOSPEC
- Versione: 6.16.2503.2116
+ Versione: 6.16.2504.418
Note di rilascio:
-
diff --git a/MP.SPEC/Resources/VersNum.txt b/MP.SPEC/Resources/VersNum.txt
index dc602e48..bb79cee9 100644
--- a/MP.SPEC/Resources/VersNum.txt
+++ b/MP.SPEC/Resources/VersNum.txt
@@ -1 +1 @@
-6.16.2503.2116
+6.16.2504.418
diff --git a/MP.SPEC/Resources/manifest.xml b/MP.SPEC/Resources/manifest.xml
index ea1de521..058e1b19 100644
--- a/MP.SPEC/Resources/manifest.xml
+++ b/MP.SPEC/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 6.16.2503.2116
+ 6.16.2504.418
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