feat(server): convert invoice status after sending mail notification

This commit is contained in:
Ahmed Bouhuolia
2024-01-24 00:00:15 +02:00
parent 429159acf9
commit c8e7a2c7d9
8 changed files with 129 additions and 14 deletions

View File

@@ -131,7 +131,14 @@ export default {
onNotifiedSms: 'onSaleInvoiceNotifiedSms',
onNotifyMail: 'onSaleInvoiceNotifyMail',
onNotifyReminderMail: 'onSaleInvoiceNotifyReminderMail'
onNotifyReminderMail: 'onSaleInvoiceNotifyReminderMail',
onPreMailSend: 'onSaleInvoicePreMailSend',
onMailSend: 'onSaleInvoiceMailSend',
onMailSent: 'onSaleInvoiceMailSent',
onMailReminderSend: 'onSaleInvoiceMailReminderSend',
onMailReminderSent: 'onSaleInvoiceMailReminderSent',
},
/**
@@ -164,7 +171,7 @@ export default {
onRejecting: 'onSaleEstimateRejecting',
onRejected: 'onSaleEstimateRejected',
onNotifyMail: 'onSaleEstimateNotifyMail'
onNotifyMail: 'onSaleEstimateNotifyMail',
},
/**
@@ -580,6 +587,6 @@ export default {
onActivated: 'onTaxRateActivated',
onInactivating: 'onTaxRateInactivating',
onInactivated: 'onTaxRateInactivated'
onInactivated: 'onTaxRateInactivated',
},
};