2023-01-27 03:22:44 -08:00
import type { INodeProperties } from 'n8n-workflow' ;
2021-02-13 08:27:08 -08:00
2022-08-17 08:50:24 -07:00
import { billAdditionalFieldsOptions } from './BillAdditionalFieldsOptions' ;
2021-02-13 08:27:08 -08:00
2021-12-03 00:44:16 -08:00
export const billOperations : 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' ,
2022-07-10 13:50:51 -07:00
action : 'Create a bill' ,
2021-02-13 08:27:08 -08:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a bill' ,
2021-02-13 08:27:08 -08:00
} ,
{
name : 'Get' ,
value : 'get' ,
2022-07-10 13:50:51 -07:00
action : 'Get a bill' ,
2021-02-13 08:27:08 -08:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2021-02-13 08:27:08 -08:00
value : 'getAll' ,
2022-09-08 08:10:13 -07:00
action : 'Get many bills' ,
2021-02-13 08:27:08 -08:00
} ,
{
name : 'Update' ,
value : 'update' ,
2022-07-10 13:50:51 -07:00
action : 'Update a bill' ,
2021-02-13 08:27:08 -08:00
} ,
] ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'bill' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
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 billFields : INodeProperties [ ] = [
2021-02-13 08:27:08 -08:00
// ----------------------------------
// bill: create
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'For Vendor Name or ID' ,
2021-02-13 08:27:08 -08:00
name : 'VendorRef' ,
type : 'options' ,
required : true ,
2022-08-17 08:50:24 -07:00
description :
'The ID of the vendor who the bill is for. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-13 08:27:08 -08:00
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getVendors' ,
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'bill' ] ,
operation : [ 'create' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
{
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'bill' ] ,
operation : [ 'create' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
options : [
2022-06-03 11:35:24 -07:00
{
displayName : 'Account ID' ,
name : 'accountId' ,
type : 'string' ,
default : '' ,
} ,
{
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 : '' ,
} ,
2021-02-13 08:27:08 -08:00
{
displayName : 'Detail Type' ,
name : 'DetailType' ,
type : 'options' ,
default : 'ItemBasedExpenseLineDetail' ,
options : [
{
name : 'Account-Based Expense Line Detail' ,
value : 'AccountBasedExpenseLineDetail' ,
} ,
{
name : 'Item-Based Expense Line Detail' ,
value : 'ItemBasedExpenseLineDetail' ,
} ,
] ,
} ,
{
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-08-17 08:50:24 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/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 ,
} ,
] ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'bill' ] ,
operation : [ 'create' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
options : billAdditionalFieldsOptions ,
} ,
// ----------------------------------
// bill: delete
// ----------------------------------
{
displayName : 'Bill ID' ,
name : 'billId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the bill to delete' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'bill' ] ,
operation : [ 'delete' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
// ----------------------------------
// bill: get
// ----------------------------------
{
displayName : 'Bill ID' ,
name : 'billId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the bill to retrieve' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'bill' ] ,
operation : [ 'get' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
// ----------------------------------
// bill: 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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'bill' ] ,
operation : [ 'getAll' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
{
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'bill' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
{
displayName : 'Filters' ,
name : 'filters' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
options : [
{
displayName : 'Query' ,
name : 'query' ,
type : 'string' ,
default : '' ,
2022-08-17 08:50:24 -07:00
placeholder : "WHERE Metadata.LastUpdatedTime > '2021-01-01'" ,
description :
'The condition for selecting bills. 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
} ,
] ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'bill' ] ,
operation : [ 'getAll' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
// ----------------------------------
// bill: update
// ----------------------------------
{
displayName : 'Bill ID' ,
name : 'billId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the bill to update' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'bill' ] ,
operation : [ 'update' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'bill' ] ,
operation : [ 'update' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
// filter out fields that cannot be updated
2022-08-17 08:50:24 -07:00
options : billAdditionalFieldsOptions.filter (
( property ) = > property . name !== 'TotalAmt' && property . name !== 'Balance' ,
) ,
2021-02-13 08:27:08 -08:00
} ,
2021-12-03 00:44:16 -08:00
] ;