using Adaptation.FileHandlers.RsM;

This commit is contained in:
2025-02-17 12:04:53 -07:00
parent 483e5a3610
commit da4888ef8f
3 changed files with 52 additions and 28 deletions

View File

@ -9,6 +9,8 @@ internal class Row
public Row(Run run, int i)
{
Index = i;
//
Title = run.Line1.Title;
//
FileName = run.Line2.FileName;
@ -103,7 +105,9 @@ internal class Row
MeritGOF = run.Points[i].MeritGOF;
DataIntegrity = run.Points[i].DataIntegrity;
}
public int Index { get; }
//
public string Title { get; }
//
public string FileName { get; }

View File

@ -75,7 +75,7 @@ internal class Run
int columns = 0;
StringBuilder stringBuilder = new();
results.Add($"\"Count\",{jsonElements?.Length}");
results.Add($"\"{nameof(logistics.Sequence)}\",{logistics.Sequence}");
results.Add($"\"{nameof(logistics.Sequence)}\",\"{logistics.Sequence}\"");
results.Add($"\"{nameof(logistics.MesEntity)}\",\"{logistics.MesEntity}\"");
string dateTimeFromSequence = logistics.DateTimeFromSequence.ToString("MM/dd/yyyy hh:mm:ss tt");
for (int i = 0; i < jsonElements?.Length;)