diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs b/Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs index d4fcf7f41..1596c4b22 100644 --- a/Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs +++ b/Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs @@ -232,6 +232,38 @@ namespace Tango.Integration.JobRuns var lightYellow = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.LightYellow); run.LightYellowQuantity = lightYellow != null ? lightYellow.Quantity : 0; + //Blue + var blue = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Blue); + run.BlueQuantity = blue != null ? blue.Quantity : 0; + + //Light Blue + var lightBlue = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.LightBlue); + run.LightBlueQuantity = lightBlue != null ? lightBlue.Quantity : 0; + + //Orange + var orange = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Orange); + run.OrangeQuantity = orange != null ? orange.Quantity : 0; + + //Light Orange + var lightOrange = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.LightOrange); + run.LightOrangeQuantity = lightOrange != null ? lightOrange.Quantity : 0; + + //Rubine + var rubine = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Rubine); + run.RubineQuantity = rubine != null ? rubine.Quantity : 0; + + //Light Rubine + var lightRubine = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.LightRubine); + run.LightRubineQuantity = lightRubine != null ? lightRubine.Quantity : 0; + + //Navy + var navy = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Navy); + run.NavyQuantity = navy != null ? navy.Quantity : 0; + + //Violet + var violet = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Violet); + run.VioletQuantity = violet != null ? violet.Quantity : 0; + if (exception != null) { run.FailedMessage = exception.FlattenMessage(); |
