feat: add discount to sale and purchase transactions

This commit is contained in:
Ahmed Bouhuolia
2024-11-28 10:12:48 +02:00
parent 09b98664c5
commit aa4aaeb612
3 changed files with 37 additions and 0 deletions

View File

@@ -102,6 +102,13 @@ export interface ISaleInvoiceDTO {
isInclusiveTax?: boolean;
attachments?: AttachmentLinkDTO[];
// # Discount
discount?: number;
discountType?: string;
// # Adjustments
adjustments?: string;
}
export interface ISaleInvoiceCreateDTO extends ISaleInvoiceDTO {