From 44fa0592ed53c06a0036387169c93297d70b5594 Mon Sep 17 00:00:00 2001 From: Allan Carr Date: Wed, 16 Oct 2024 13:51:02 -0700 Subject: [PATCH] IO-2983 Add LA3 Rate at same time as LAA for Mitchell --- BodyshopUploader/Utils/Decoder/EstimateDecoder.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/BodyshopUploader/Utils/Decoder/EstimateDecoder.cs b/BodyshopUploader/Utils/Decoder/EstimateDecoder.cs index d74f96e..4798b1d 100644 --- a/BodyshopUploader/Utils/Decoder/EstimateDecoder.cs +++ b/BodyshopUploader/Utils/Decoder/EstimateDecoder.cs @@ -700,7 +700,10 @@ namespace BodyshopPartner.Utils.Decoder break; case "LA3": if (system == "M") - { j.rate_laa = readValues[2]; } + { + j.rate_laa = readValues[2]; + j.rate_la3 = readValues[2]; + } else { j.rate_la3 = readValues[2]; } break;