mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
fix(isa-app-customer): Fixed selection of other addresses in customer area
Ref: #5522
This commit is contained in:
@@ -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,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user