mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(QuickBooks Online Node): Add qty to quickbooks invoice line details (#13602)
This commit is contained in:
@@ -329,9 +329,14 @@ export function processLines(this: IExecuteFunctions, lines: IDataObject[], reso
|
||||
TaxCodeRef: {
|
||||
value: line.TaxCodeRef,
|
||||
},
|
||||
Qty: line.Qty,
|
||||
};
|
||||
if (line.Qty === undefined) {
|
||||
delete (line.SalesItemLineDetail as IDataObject).Qty;
|
||||
}
|
||||
delete line.itemId;
|
||||
delete line.TaxCodeRef;
|
||||
delete line.Qty;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user