From 8d588289e16a8fde1a6ad855649e620a7b37c56d Mon Sep 17 00:00:00 2001 From: Mike Phares Date: Thu, 13 Feb 2025 08:11:02 -0700 Subject: [PATCH] Sequence as a string --- Adaptation/FileHandlers/pcl/Row.cs | 1 + Adaptation/FileHandlers/pcl/Run.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Adaptation/FileHandlers/pcl/Row.cs b/Adaptation/FileHandlers/pcl/Row.cs index 4d995f4..0dd4cd4 100644 --- a/Adaptation/FileHandlers/pcl/Row.cs +++ b/Adaptation/FileHandlers/pcl/Row.cs @@ -10,6 +10,7 @@ internal class Row public Row(Run run, int i) { Index = i; + // Operator = run.Header.Operator; StartVoltage = run.Header.StartVoltage; Wafer = run.Header.Wafer; diff --git a/Adaptation/FileHandlers/pcl/Run.cs b/Adaptation/FileHandlers/pcl/Run.cs index 4ad20e7..2409dbf 100644 --- a/Adaptation/FileHandlers/pcl/Run.cs +++ b/Adaptation/FileHandlers/pcl/Run.cs @@ -55,7 +55,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;)