Aggiunta migrazione e modello dati raw da deserializzare

This commit is contained in:
2026-01-09 12:21:36 +01:00
parent 8f05eae707
commit 9c19bd147c
15 changed files with 4367 additions and 118 deletions
@@ -3323,7 +3323,7 @@ namespace EgwCoreLib.Lux.Data.Controllers
.Where(p => p.OrderRowID == OrderRowId && p.ProdLabel == entry.Key)
.ExecuteUpdateAsync(setters => setters
.SetProperty(p => p.ProdAssignID, ProdAssignId)
.SetProperty(p => p.EstimTime, entry.Value)
.SetProperty(p => p.Time, entry.Value)
);
totalUpdated += rowsAffected;
@@ -3383,7 +3383,7 @@ namespace EgwCoreLib.Lux.Data.Controllers
.Where(p => p.OrderRowID == orderRowID)
.ExecuteUpdateAsync(setters => setters
.SetProperty(p => p.ProdAssignID, (int?)null)
.SetProperty(p => p.EstimTime, 0)
.SetProperty(p => p.Time, 0)
);
}
catch (Exception exc)