Const
export const quotesDetailNew = async ({ api, quoteAPI }) => {
// TODO: Add your code
return;
}
export const quotesDetailNew = async ({ quoteAPI }) => {
await quoteAPI.setHeaderValue('label', 'Interceptor experiment - rename quote');
};
export const quotesDetailNew = async ({ quoteAPI, api }) => {
const { crmManager, fetch } = api;
const payload = await crmManager.getPayload();
if (await crmManager.isAccountPage()) {
const customerId = payload[await crmManager.getAccountAssociationField()];
await quoteAPI.setHeaderInputValue('Customer', customerId);
};
Method name for PRE
quotesDetailNewPre
and POSTquotesDetailNew
This event initiates when the New Quote button is pressed at
/#/qc/quotes
. The method is activated following the recalculation and backend saving of a new quote, redirecting the user to the quote detail page at/#/qc/quotes/<quoteId>
.