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

@@ -201,3 +201,15 @@ export interface ISaleInvoiceNotifyPayload {
saleInvoiceId: number;
messageDTO: SendInvoiceMailDTO;
}
export interface ISaleInvoiceMailSend {
tenantId: number;
saleInvoiceId: number;
messageOptions: SendInvoiceMailDTO;
}
export interface ISaleInvoiceMailSent {
tenantId: number;
saleInvoiceId: number;
messageOptions: SendInvoiceMailDTO;
}