From 54b8fedb5b6e4bda3480ba605371685b57c820b4 Mon Sep 17 00:00:00 2001 From: Jeremy-Z Date: Tue, 23 Jun 2026 13:54:56 -0400 Subject: [PATCH] Added savedsessionid to the load session call. This is a required field for this call. --- src/store/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index 978dc68a..4688ec74 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1618,11 +1618,12 @@ export const useMainStore = defineStore({ }); }, async loadSession(duplicate) { - const { order } = this; + const { applicationUser, order } = this; const response = await globalMethods.callHttpClient({ method: endpoints.LoadSession.method, endpoint: endpoints.LoadSession.url, payload: { + savedSessionId: applicationUser.savedSessionId, referralNumber: duplicate.referralNumber, referralDate: duplicate.referralDate, parentAccountNumber: order.parentAccountNumber,