mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(QuickBooks Node): Add optional Tax item field (#3404)
* Added tax refs * Nodelinter fixes
This commit is contained in:
committed by
GitHub
parent
f02421b5f3
commit
c341b45396
@@ -180,6 +180,10 @@ export class QuickBooks implements INodeType {
|
||||
return await loadResource.call(this, 'purchase');
|
||||
},
|
||||
|
||||
async getTaxCodeRefs(this: ILoadOptionsFunctions) {
|
||||
return await loadResource.call(this, 'TaxCode');
|
||||
},
|
||||
|
||||
async getTerms(this: ILoadOptionsFunctions) {
|
||||
return await loadResource.call(this, 'Term');
|
||||
},
|
||||
@@ -503,7 +507,6 @@ export class QuickBooks implements INodeType {
|
||||
} as IDataObject;
|
||||
|
||||
body.Line = processLines.call(this, body, lines, resource);
|
||||
|
||||
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
||||
|
||||
body = populateFields.call(this, body, additionalFields, resource);
|
||||
|
||||
Reference in New Issue
Block a user