mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(Invoice Ninja Node): Fix line items not being correctly set for quotes and invoices (#5304)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user