diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2025-07-13 21:23:02 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2025-07-13 21:23:02 +0300 |
| commit | 987fbcd3fffeff6ae95f4393211c821f2679be57 (patch) | |
| tree | 52f2faace1db2c21a9b28fd41937c4c1447a341d /Software/Visual_Studio/MachineStudio/Modules | |
| parent | c0ec4ba94d00b716d9ab659fd882df872800d342 (diff) | |
| download | Tango-987fbcd3fffeff6ae95f4393211c821f2679be57.tar.gz Tango-987fbcd3fffeff6ae95f4393211c821f2679be57.zip | |
redundant.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Statistics/ViewModels/JobRunsViewVM.cs | 3 |
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; |
