mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
feat: add local adjustment and discount properties to SaleInvoice and SaleReceipt interfaces.
This commit is contained in:
@@ -82,9 +82,11 @@ export interface ISaleInvoice {
|
||||
paymentMethods?: Array<PaymentIntegrationTransactionLink>;
|
||||
|
||||
adjustment?: number;
|
||||
adjustmentLocal?: number | null;
|
||||
|
||||
discount?: number;
|
||||
discountAmount?: number;
|
||||
discountAmountLocal?: number | null;
|
||||
}
|
||||
|
||||
export enum DiscountType {
|
||||
|
||||
@@ -39,6 +39,9 @@ export interface ISaleReceipt {
|
||||
discountPercentage?: number | null;
|
||||
|
||||
adjustment?: number;
|
||||
adjustmentLocal?: number | null;
|
||||
|
||||
discountAmountLocal?: number | null;
|
||||
}
|
||||
|
||||
export interface ISalesReceiptsFilter {
|
||||
|
||||
Reference in New Issue
Block a user