Updated scanner and table names.
All checks were successful
ci / build-test (push) Successful in 2m38s
ci / publish-image (push) Has been skipped

This commit is contained in:
2026-03-05 20:56:57 -05:00
parent 79bece9e1c
commit 61f2e64972
12 changed files with 79 additions and 17 deletions

View File

@@ -28,6 +28,9 @@ public class VoiceWorkUpdater(AppDbContext dbContext, ITimeProvider timeProvider
}
result.Status = Upsert(ingest, upsertContext);
VoiceWork voiceWork = upsertContext.VoiceWorks[ingest.ProductId];
result.UpdateStatus = (VoiceWorkStatus)voiceWork.Status;
}
await dbContext.SaveChangesAsync(cancellationToken);
@@ -125,7 +128,7 @@ public class VoiceWorkUpdater(AppDbContext dbContext, ITimeProvider timeProvider
if (voiceWork.SalesDate is not null && ingest.SalesDate is null)
{
string message = $"Voice work has a sales date of {voiceWork.SalesDate.Value.ToShortDateString()}, but ingest does not";
string message = $"Voice work has a sales date of {voiceWork.SalesDate.Value:d}, but ingest does not";
result.Issues.Add(new(message, VoiceWorkUpsertIssueSeverity.Error));
}
}