2021-02-13 08:27:08 -08:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
import {
invoiceAdditionalFieldsOptions
} from './InvoiceAdditionalFieldsOptions' ;
2021-12-03 00:44:16 -08:00
export const invoiceOperations : INodeProperties [ ] = [
2021-02-13 08:27:08 -08:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-02-13 08:27:08 -08:00
default : 'get' ,
options : [
{
name : 'Create' ,
value : 'create' ,
} ,
{
name : 'Delete' ,
value : 'delete' ,
} ,
{
name : 'Get' ,
value : 'get' ,
} ,
{
name : 'Get All' ,
value : 'getAll' ,
} ,
{
name : 'Send' ,
value : 'send' ,
} ,
{
name : 'Update' ,
value : 'update' ,
} ,
{
name : 'Void' ,
value : 'void' ,
} ,
] ,
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
} ,
} ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-02-13 08:27:08 -08:00
2021-12-03 00:44:16 -08:00
export const invoiceFields : INodeProperties [ ] = [
2021-02-13 08:27:08 -08:00
// ----------------------------------
// invoice: create
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'For Customer Name or ID' ,
2021-02-13 08:27:08 -08:00
name : 'CustomerRef' ,
type : 'options' ,
required : true ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the customer who the invoice is for. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2021-02-13 08:27:08 -08:00
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getCustomers' ,
} ,
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
{
displayName : 'Line' ,
name : 'Line' ,
type : 'collection' ,
placeholder : 'Add Line Item Property' ,
2022-05-06 14:01:25 -07:00
description : 'Individual line item of a transaction' ,
2021-02-13 08:27:08 -08:00
typeOptions : {
multipleValues : true ,
} ,
default : { } ,
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
options : [
2022-06-03 11:35:24 -07:00
{
displayName : 'Amount' ,
name : 'Amount' ,
description : 'Monetary amount of the line item' ,
type : 'number' ,
default : 0 ,
} ,
{
displayName : 'Description' ,
name : 'Description' ,
description : 'Textual description of the line item' ,
type : 'string' ,
default : '' ,
typeOptions : {
alwaysOpenEditWindow : true ,
} ,
} ,
2021-02-13 08:27:08 -08:00
{
displayName : 'Detail Type' ,
name : 'DetailType' ,
type : 'options' ,
default : 'SalesItemLineDetail' ,
options : [
{
name : 'Sales Item Line Detail' ,
value : 'SalesItemLineDetail' ,
} ,
] ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Item Name or ID' ,
2021-02-13 08:27:08 -08:00
name : 'itemId' ,
type : 'options' ,
2022-06-20 07:54:01 -07:00
description : 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>' ,
2021-02-13 08:27:08 -08:00
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getItems' ,
} ,
} ,
{
displayName : 'Position' ,
name : 'LineNum' ,
2022-05-06 14:01:25 -07:00
description : 'Position of the line item relative to others' ,
2021-02-13 08:27:08 -08:00
type : 'number' ,
default : 1 ,
} ,
2022-06-03 11:35:24 -07:00
{
2022-06-20 07:54:01 -07:00
displayName : 'Tax Code Ref Name or ID' ,
2022-06-03 11:35:24 -07:00
name : 'TaxCodeRef' ,
type : 'options' ,
2022-06-20 07:54:01 -07:00
description : 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>' ,
2022-06-03 11:35:24 -07:00
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getTaxCodeRefs' ,
} ,
} ,
2021-02-13 08:27:08 -08:00
] ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
options : invoiceAdditionalFieldsOptions ,
} ,
// ----------------------------------
// invoice: delete
// ----------------------------------
{
displayName : 'Invoice ID' ,
name : 'invoiceId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the invoice to delete' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'delete' ,
] ,
} ,
} ,
} ,
// ----------------------------------
// invoice: get
// ----------------------------------
{
displayName : 'Invoice ID' ,
name : 'invoiceId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the invoice to retrieve' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'get' ,
] ,
} ,
} ,
} ,
{
displayName : 'Download' ,
name : 'download' ,
type : 'boolean' ,
required : true ,
default : false ,
2022-06-03 11:35:24 -07:00
description : 'Whether to download the invoice as a PDF file' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'get' ,
] ,
} ,
} ,
} ,
{
displayName : 'Binary Property' ,
name : 'binaryProperty' ,
type : 'string' ,
required : true ,
default : 'data' ,
2022-05-06 14:01:25 -07:00
description : 'Name of the binary property to which to write to' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'get' ,
] ,
download : [
true ,
] ,
} ,
} ,
} ,
{
displayName : 'File Name' ,
name : 'fileName' ,
type : 'string' ,
required : true ,
default : '' ,
placeholder : 'data.pdf' ,
2022-05-06 14:01:25 -07:00
description : 'Name of the file that will be downloaded' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'get' ,
] ,
download : [
true ,
] ,
} ,
} ,
} ,
// ----------------------------------
// invoice: getAll
// ----------------------------------
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
default : false ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
2022-06-03 11:35:24 -07:00
default : 50 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2021-02-13 08:27:08 -08:00
typeOptions : {
minValue : 1 ,
maxValue : 1000 ,
} ,
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'getAll' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
} ,
{
displayName : 'Filters' ,
name : 'filters' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
options : [
{
displayName : 'Query' ,
name : 'query' ,
type : 'string' ,
default : '' ,
placeholder : 'WHERE Metadata.LastUpdatedTime > \'2021-01-01\'' ,
2021-08-26 10:42:38 -07:00
description : 'The condition for selecting invoices. See the <a href="https://developer.intuit.com/app/developer/qbo/docs/develop/explore-the-quickbooks-online-api/data-queries">guide</a> for supported syntax.' ,
2021-02-13 08:27:08 -08:00
typeOptions : {
alwaysOpenEditWindow : true ,
} ,
} ,
] ,
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
} ,
// ----------------------------------
// invoice: send
// ----------------------------------
{
displayName : 'Invoice ID' ,
name : 'invoiceId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the invoice to send' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'send' ,
] ,
} ,
} ,
} ,
{
displayName : 'Email' ,
name : 'email' ,
type : 'string' ,
2022-06-20 07:54:01 -07:00
placeholder : 'name@email.com' ,
2021-02-13 08:27:08 -08:00
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The email of the recipient of the invoice' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'send' ,
] ,
} ,
} ,
} ,
// ----------------------------------
// invoice: void
// ----------------------------------
{
displayName : 'Invoice ID' ,
name : 'invoiceId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the invoice to void' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'void' ,
] ,
} ,
} ,
} ,
// ----------------------------------
// invoice: update
// ----------------------------------
{
displayName : 'Invoice ID' ,
name : 'invoiceId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the invoice to update' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
required : true ,
displayOptions : {
show : {
resource : [
'invoice' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
// filter out fields that cannot be updated
options : invoiceAdditionalFieldsOptions.filter ( property = > property . name !== 'TotalAmt' && property . name !== 'Balance' ) ,
} ,
2021-12-03 00:44:16 -08:00
] ;