Quotations
info
Configure the Quotation Module
- quotationNumberHashFn: 
(quotation: Quotation, index: number) => string | numberfunction to retrieve a unique generated quotationNumber, default is a hashids based function that generates an alphanumeric uppercase string with length 6. If the number has already been taken, the function gets iteratively called with an increasingindex 
Example custom configuration:
const options = {
  modules: {
    quotations: {
      quotationNumberHashFn: (quotation, index) => (quotation.sequence + 200000 + index)
    },
  }
};