aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2024-12-05 02:38:10 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2024-12-05 02:38:10 +0200
commitb77fbb01ed5b63b65f6e755fef9ca49c3e58ea50 (patch)
tree40013e359a230404d0bf4fd4e6fbfb7bdd862432 /Software/Visual_Studio/Tango.Integration
parentec3b8fd0d0b4d980a5d93c5fa11b4717cbd0c875 (diff)
downloadTango-b77fbb01ed5b63b65f6e755fef9ca49c3e58ea50.tar.gz
Tango-b77fbb01ed5b63b65f6e755fef9ca49c3e58ea50.zip
Last say on extra inks branch
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration')
-rw-r--r--Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs32
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();