fix(isa-app-customer): Fixed selection of other addresses in customer area

Ref: #5522
This commit is contained in:
Nino
2025-12-18 17:51:44 +01:00
parent de3edaa0f9
commit d9b653073b
2 changed files with 10 additions and 0 deletions

View File

@@ -166,6 +166,11 @@ export class DetailsMainViewBillingAddressesComponent
customer as unknown as Customer, customer as unknown as Customer,
), ),
); );
// Clear the selected payer ID when using customer address
this.crmTabMetadataService.setSelectedPayerId(
this.tabId(),
undefined,
);
} }
}); });
} }

View File

@@ -191,6 +191,11 @@ export class DetailsMainViewDeliveryAddressesComponent
customer as unknown as Customer, customer as unknown as Customer,
), ),
); );
// Clear the selected shipping address ID when using customer address
this.crmTabMetadataService.setSelectedShippingAddressId(
this.tabId(),
undefined,
);
} }
}); });
} }