fix(Invoice Ninja Node): Fix line items not being correctly set for quotes and invoices (#5304)

This commit is contained in:
Paras Daryanani
2023-02-02 12:26:56 +00:00
committed by GitHub
parent 04c058a34e
commit 3b5e1d127f
3 changed files with 28 additions and 4 deletions

View File

@@ -3,6 +3,7 @@ export interface IItem {
notes?: string;
product_key?: string;
qty?: number;
quantity?: number;
tax_rate1?: number;
tax_rate2?: number;
tax_name1?: string;
@@ -20,6 +21,7 @@ export interface IInvoice {
due_date?: string;
invoice_date?: string;
invoice_items?: IItem[];
line_items?: IItem[];
invoice_number?: string;
invoice_status_id?: number;
is_amount_discount?: boolean;