quotesDetailAccountAssign: "quotesDetailAccountAssign" = 'quotesDetailAccountAssign'

Method name for PRE quotesDetailAccountAssignPre and POST quotesDetailAccountAssign

Triggered when a user selects an account from the dropdown menu after clicking the Assign Account button on the quote detail page, located at /#/qc/quotes/<quoteId>.

Notes: quoteCopyAPI is exclusively accessible within the quotesDetailCopy method. Attempting to access quoteCopyAPI within the quotesDetailCopyPre method will result in it being undefined.

Additional Properties:

  • accountId: Returns the id of the selected account from the dropdown.

Example: (Basic)

export const quotesDetailAccountAssign = async ({ api, quoteAPI, accountId }) => {
// TODO: Add your code
return;
}

Generated using TypeDoc