From f28e1e0370722de81d82655b0a3edf298475f056 Mon Sep 17 00:00:00 2001 From: Dave Richer Date: Fri, 6 Sep 2024 13:45:17 -0400 Subject: [PATCH 1/2] Change DB string --- .gitignore | 3 +++ BodyshopUploader/Utils/AppMetaData.cs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b7e6124..c755df6 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,9 @@ ## ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore +.editorconfig +.vscode + # User-specific files *.rsuser *.suo diff --git a/BodyshopUploader/Utils/AppMetaData.cs b/BodyshopUploader/Utils/AppMetaData.cs index 69e1c94..bdc5a7c 100644 --- a/BodyshopUploader/Utils/AppMetaData.cs +++ b/BodyshopUploader/Utils/AppMetaData.cs @@ -33,7 +33,7 @@ namespace BodyshopPartner.Utils if (args.Length == 1) { #if DEBUG - graphQlEndpoint = "https://db.dev.bodyshop.app/v1/graphql"; + graphQlEndpoint = "https://db.dev.imex.online/v1/graphql"; RestClient = new RestClient("http://localhost:4000"); FirebaseAPIKey = "AIzaSyDPLT8GiDHDR1R4nI66Qi0BY1aYviDPioc"; From 44fa0592ed53c06a0036387169c93297d70b5594 Mon Sep 17 00:00:00 2001 From: Allan Carr Date: Wed, 16 Oct 2024 13:51:02 -0700 Subject: [PATCH 2/2] 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;