aboutsummaryrefslogtreecommitdiffstats
path: root/Software
diff options
context:
space:
mode:
Diffstat (limited to 'Software')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Statistics/ViewModels/JobRunsViewVM.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Statistics/ViewModels/JobRunsViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Statistics/ViewModels/JobRunsViewVM.cs
index b9327c9aa..5f667bf01 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Statistics/ViewModels/JobRunsViewVM.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Statistics/ViewModels/JobRunsViewVM.cs
@@ -647,6 +647,7 @@ namespace Tango.MachineStudio.Statistics.ViewModels
Columns = new List<String>()
{
"ID",
+ "Gen",
"Machine",
"Source",
"Job Name",
@@ -685,7 +686,7 @@ namespace Tango.MachineStudio.Statistics.ViewModels
{
ExcelModel excel_model = new ExcelModel();
excel_model.ID = jobRunModel.JobRun.ID.ToString();
- excel_model.Gen = ((MachineTypes)jobRunModel.JobRun.MachineType).ToDescription();
+ excel_model.Gen = ((MachineTypes)jobRunModel.JobRun.MachineType).ToShortName();
excel_model.Machine = jobRunModel.Machine != null ? jobRunModel.Machine.SerialNumber : "";
excel_model.Source = jobRunModel.JobRun.Source.ToString();
excel_model.JobName = jobRunModel.JobRun.JobName;