Type Alias: SetDealer()
SetDealer = (
dealerId
) =>Promise
<void
>
Function
Changes the active dealer for pricing calculations.
This method updates which dealer (company) is associated with the current pricing session. Different dealers may have different pricing agreements, discount structures, or pricing tiers, so changing the dealer can affect the calculated prices.
When the dealer changes, the method also adjusts the available price types to those permitted for the selected dealer, ensuring pricing compliance.
This functionality is primarily used by sales representatives ordering on behalf of different dealer accounts.
Parameters
dealerId
string
ID of the dealer company to use for pricing calculations
Returns
Promise
<void
>
Example
// Set the active dealer when selected from a dropdown
document.getElementById('dealer-select').addEventListener('change', (e) => {
window.mimeeqApp.actions.setDealer(e.target.value);
});