mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +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
@@ -44,7 +44,7 @@ export const transactionFields: INodeProperties[] = [
|
||||
// transaction: getReport
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Simplify',
|
||||
displayName: 'Simplify Response',
|
||||
name: 'simple',
|
||||
type: 'boolean',
|
||||
displayOptions: {
|
||||
@@ -264,13 +264,6 @@ export const transactionFields: INodeProperties[] = [
|
||||
description: 'Predefined account modifiction date range to filter results by',
|
||||
options: PREDEFINED_DATE_RANGES.map(toOptions),
|
||||
},
|
||||
{
|
||||
displayName: 'Document Number',
|
||||
name: 'docnum',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Transaction document number to filter results by',
|
||||
},
|
||||
{
|
||||
displayName: 'Department',
|
||||
name: 'department',
|
||||
@@ -281,6 +274,13 @@ export const transactionFields: INodeProperties[] = [
|
||||
loadOptionsMethod: 'getDepartments',
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Document Number',
|
||||
name: 'docnum',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Transaction document number to filter results by',
|
||||
},
|
||||
{
|
||||
displayName: 'Group By',
|
||||
name: 'group_by',
|
||||
@@ -346,6 +346,14 @@ export const transactionFields: INodeProperties[] = [
|
||||
default: 'Ascend',
|
||||
options: ['Ascend', 'Descend'].map(toOptions),
|
||||
},
|
||||
{
|
||||
displayName: 'Source Account Type',
|
||||
name: 'source_account_type',
|
||||
default: 'Bank',
|
||||
type: 'options',
|
||||
description: 'Account type to filter results by',
|
||||
options: SOURCE_ACCOUNT_TYPES.map(toOptions).map(toDisplayName),
|
||||
},
|
||||
{
|
||||
displayName: 'Term',
|
||||
name: 'term',
|
||||
@@ -374,15 +382,6 @@ export const transactionFields: INodeProperties[] = [
|
||||
description: 'Transaction type to filter results by',
|
||||
options: TRANSACTION_TYPES.map(toOptions).map(toDisplayName),
|
||||
},
|
||||
|
||||
{
|
||||
displayName: 'Source Account Type',
|
||||
name: 'source_account_type',
|
||||
default: 'Bank',
|
||||
type: 'options',
|
||||
description: 'Account type to filter results by',
|
||||
options: SOURCE_ACCOUNT_TYPES.map(toOptions).map(toDisplayName),
|
||||
},
|
||||
{
|
||||
displayName: 'Vendor',
|
||||
name: 'vendor',
|
||||
|
||||
Reference in New Issue
Block a user