Save CSV like PDSF ready to test

This commit is contained in:
2025-01-14 09:13:43 -07:00
parent ccedba10b5
commit e37d9757ec
9 changed files with 396 additions and 106 deletions

View File

@ -114,10 +114,10 @@ public class FileRead : Shared.FileRead, IFileRead
else
{
ReadOnlyDictionary<string, string> pages = Convert.PDF(_Logistics, _GhostPCLFileName, results.Item4);
Complete? complete = Complete.Get(_Logistics, results.Item4, pages);
if (complete is null)
Run? run = Run.Get(_Logistics, results.Item4, pages);
if (run is null)
throw new Exception(string.Concat("A) No Data - ", dateTime.Ticks));
IProcessData iProcessData = new ProcessData(this, _Logistics, results.Item4, pages, complete);
IProcessData iProcessData = new ProcessData(this, _Logistics, results.Item4, pages, run);
if (iProcessData is not ProcessData processData)
throw new Exception(string.Concat("B) No Data - ", dateTime.Ticks));
string mid;