mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
5baa31b053
* Add OAuth2 credentials * Adjust credentials params * Add node to listing * Add initial node scaffolding * Remove unused credentials params * Add customer search with select statement * Add pagination to customer search * Add customer creation functionality * Add customer update functionality * Small formatting fix * Adjust property name casing for consistency * Adjust customer operations for consistency * Handle large QuickBooks listings * Add initial estimate resource description * Add estimate resource retrieval operations * Refactor customer billing address * Simplify customer billing address * Fix casing for customer additional fields * Adjust types to accommodate loadOptions functions * Add loadOptions for customers to estimate * Sort customer update fields alphabetically * Refactor estimate line into standalone file * Add stub for PDF retrieval operation * Add invoice resource description and execute branches * Implement estimate PDF download functionality * Place descriptions in their own dir * Add get and getAll for invoices * Add send functionality to invoices * Refactor handling of binary data * Add invoice voiding functionality * Add invoice deletion functionality * Refactor resources into subdirs and add interfaces * Add get and getAll for bill * Add payment description * Add get and getAll for payment * Make variables in endpoints consistent * Refactor interfaces for consistency * Add interface for item resource * Fill in fields for all resources * Minor fixes in defaults and descriptions * Refactor loader * Add all resources to execute function * Fix line property duplication * Add get and getAll for vendor * Optimize description imports * Add creation for customer and bill * Add update operation for bill * Refactor create and update for customer * Implement employee create and update * Implement create and update for estimate * Make address params more consistent * Add create and update to payment * Add item operations * Add create and delete operations for invoice * Refactor binary data handler * Refactor generic functions * Add create and update operations for vendor * Fix build * Fix total amount in bill:update * Fix balance in bill:update * Remove currency from bill:update * Implement reference retrieval in bill:update * Fix failing params in customer:update * Fix param in employee:update * Implement reference retrieval in estimate:update * Fix failing params in estimate:update * Fix failing params in invoice:update * Fix failing param in vendor:update * Implement reference retrieval in payment:update * Remove unused interfaces * Rename line property function * Remove hared directory * Refactor reference and sync token retrieval * Fix line structure in bill:create * Fix line structure in estimate:create * Flatten responses * Refactor line processing * Remove unused interfaces * Add endpoint documentation * Fix payment:void content type * Fix default for bill line item * Hide auth URI query parameters * Hide auth header parameter * Add switch for credentials environment * Adjust OAuth2 callback to accommodate realmId * Retrieve realmId from OAuth2 flow * ⚡ Improvements * Reposition dividers * Add IDs to display names of reference fields * Add estimate:delete and bill:delete * Load items in lines for bill, estimate and invoice * Add filename for binary property in PDF download * ⚡ Improvements * Adjust field description * Implement estimate:send * Adjust field description * Adjust custom field descriptions * Add missing period to description * ⚡ Minor improvements on QuickBooks-Node * Add descriptions for bill * Add descriptions for customer * Add descriptions for employee * Add descriptions for estimate * Add descriptions for invoice * Add descriptions for payment * Add descriptions for vendor Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
184 lines
3.4 KiB
TypeScript
184 lines
3.4 KiB
TypeScript
export const invoiceAdditionalFieldsOptions = [
|
|
{
|
|
displayName: 'Balance',
|
|
name: 'Balance',
|
|
description: 'The balance reflecting any payments made against the transaction.',
|
|
type: 'number',
|
|
default: 0,
|
|
},
|
|
{
|
|
displayName: 'Billing Address',
|
|
name: 'BillAddr',
|
|
placeholder: 'Add Billing Address Fields',
|
|
type: 'fixedCollection',
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Details',
|
|
name: 'details',
|
|
values: [
|
|
{
|
|
displayName: 'City',
|
|
name: 'City',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Line 1',
|
|
name: 'Line1',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Postal Code',
|
|
name: 'PostalCode',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Latitude',
|
|
name: 'Lat',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Longitude',
|
|
name: 'Long',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Country Subdivision Code',
|
|
name: 'CountrySubDivisionCode',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Billing Email',
|
|
name: 'BillEmail',
|
|
description: 'E-mail address to which the invoice will be sent.',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Customer Memo',
|
|
name: 'CustomerMemo',
|
|
description: 'User-entered message to the customer. This message is visible to end user on their transactions.',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Custom Fields',
|
|
name: 'CustomFields',
|
|
placeholder: 'Add Custom Fields',
|
|
type: 'fixedCollection',
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Field',
|
|
name: 'Field',
|
|
values: [
|
|
{
|
|
displayName: 'Field Definition ID',
|
|
name: 'DefinitionId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCustomFields',
|
|
},
|
|
default: '',
|
|
description: 'ID of the field to set.',
|
|
},
|
|
{
|
|
displayName: 'Field Value',
|
|
name: 'StringValue',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Value of the field to set.',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Document Number',
|
|
name: 'DocNumber',
|
|
description: 'Reference number for the transaction.',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Due Date',
|
|
name: 'DueDate',
|
|
description: 'Date when the payment of the transaction is due.',
|
|
type: 'dateTime',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Email Status',
|
|
name: 'EmailStatus',
|
|
type: 'options',
|
|
default: 'NotSet',
|
|
options: [
|
|
{
|
|
name: 'Not Set',
|
|
value: 'NotSet',
|
|
},
|
|
{
|
|
name: 'Need To Send',
|
|
value: 'NeedToSend',
|
|
},
|
|
{
|
|
name: 'Email Sent',
|
|
value: 'EmailSent',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Print Status',
|
|
name: 'PrintStatus',
|
|
type: 'options',
|
|
default: 'NotSet',
|
|
options: [
|
|
{
|
|
name: 'Not Set',
|
|
value: 'NotSet',
|
|
},
|
|
{
|
|
name: 'Need To Print',
|
|
value: 'NeedToPrint',
|
|
},
|
|
{
|
|
name: 'PrintComplete',
|
|
value: 'PrintComplete',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Shipping Address',
|
|
name: 'ShipAddr',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Total Amount',
|
|
name: 'TotalAmt',
|
|
description: 'Total amount of the transaction.',
|
|
type: 'number',
|
|
default: 0,
|
|
},
|
|
{
|
|
displayName: 'Transaction Date',
|
|
name: 'TxnDate',
|
|
description: 'Date when the transaction occurred.',
|
|
type: 'dateTime',
|
|
default: '',
|
|
},
|
|
];
|