Updated the service call to pull account number from new parent account number field.

This commit is contained in:
Jeremy-Z 2023-09-29 13:46:12 -04:00
parent 189250f70f
commit d923437c9b

View file

@ -98,7 +98,7 @@ export default {
async populateISSConfigValues(data) {
this.mainStore.issConfig.clientName = data.accountName;
this.mainStore.issConfig.clientDisplayName = data.accountName; // Defaults to use the client name.
this.mainStore.issConfig.accountNumber = data.accountNumber;
this.mainStore.issConfig.accountNumber = data.parentAccountNumber;
this.mainStore.issConfig.styleSheet = data.styleSheet;
this.mainStore.issConfig.isCoverageEnabled = data.coverageEnabled;