Type Alias: SetPriceType()
SetPriceType = (
priceType
) =>Promise
<void
>
Function
Changes the active price type used for calculations.
This method switches between different pricing strategies, such as retail (RRP), wholesale, or cost pricing. The available price types depend on the user's permissions and the customer's pricing configuration.
Different price types allow sales representatives to show appropriate pricing to different customer segments, or to compare margins across pricing strategies.
Parameters
priceType
The price type object to set as active
Returns
Promise
<void
>
Example
// Switch to wholesale pricing for a dealer customer
const wholesalePriceType = window.mimeeqApp.observers.pricing.priceOptions
.getValue().newValue.find(option => option.type === 'WHOLESALE');
if (wholesalePriceType) {
window.mimeeqApp.actions.setPriceType(wholesalePriceType);
}