Switched to xml for InfinityQS export

This commit is contained in:
2025-08-26 10:01:45 -07:00
parent 7007207ede
commit a71c0c3a5a
23 changed files with 1869 additions and 999 deletions

View File

@ -24,7 +24,7 @@ public class Description : IDescription, Shared.Properties.IDescription
public string MID { get; set; }
//
public string Date { get; set; }
public string Lot { get; set; }
public string RDS { get; set; }
public string Part { get; set; }
public string Process { get; set; }
public string Recipe { get; set; }
@ -65,7 +65,7 @@ public class Description : IDescription, Shared.Properties.IDescription
List<string> results = new()
{
nameof(Date),
nameof(Lot),
nameof(RDS),
nameof(Part),
nameof(Process),
nameof(Recipe)
@ -165,7 +165,7 @@ public class Description : IDescription, Shared.Properties.IDescription
MID = logistics.MID,
//
Date = detail.Date,
Lot = processData.MetaData.Date,
RDS = processData.MetaData.Date,
Part = $"{processData.MetaData.DeviceId}-{processData.MetaData.DeviceType}-{processData.MetaData.DeviceNumber}",
Process = $"{processData.MetaData.DescriptionName}",
Recipe = processData.MetaData.Frequency,
@ -204,7 +204,7 @@ public class Description : IDescription, Shared.Properties.IDescription
MID = logistics.MID,
//
Date = nameof(Date),
Lot = nameof(Lot),
RDS = nameof(RDS),
Part = nameof(Part),
Process = nameof(Process),
Recipe = nameof(Recipe),