Manual copy for now

This commit is contained in:
2023-06-09 16:33:40 -07:00
parent fb3c3ce699
commit 172f45aa67
6 changed files with 22 additions and 31 deletions

View File

@ -11,8 +11,6 @@ public class FIBacklogMesa
string assignedTo,
string secondResource,
string subject,
string epiLine,
string area,
string systemS,
string priority,
string status,
@ -44,8 +42,6 @@ public class FIBacklogMesa
AssignedTo = assignedTo;
SecondResource = secondResource;
Subject = subject;
EpiLine = epiLine;
Area = area;
SystemS = systemS;
Priority = priority;
Status = status;
@ -85,10 +81,6 @@ public class FIBacklogMesa
[JsonPropertyName("Subject - from Requestor")]
public string Subject { get; set; } // { init; get; }
[JsonPropertyName("Epi Line")]
public string EpiLine { get; set; } // { init; get; }
public string Area { get; set; } // { init; get; }
[JsonPropertyName("System(s)")]
public string SystemS { get; set; } // { init; get; }
@ -111,7 +103,7 @@ public class FIBacklogMesa
[JsonPropertyName("UAT as of")]
public string UATAsOf { get; set; } // { init; get; }
[JsonPropertyName("CMP _Date")]
[JsonPropertyName("CMP_Date")]
public string CMPDate { get; set; } // { init; get; }
public string F20 { get; set; } // { init; get; }
public string F21 { get; set; } // { init; get; }

View File

@ -121,6 +121,7 @@ public class FileRead : Shared.FileRead, IFileRead
}
if (_IsEAFHosted)
File.WriteAllText(fileName, json);
File.WriteAllText("D:/Web-sites/Backlog/json/data.json", json);
results = iProcessData.GetResults(this, _Logistics, results.Item4);
}
return results;