2023-01-27 03:22:44 -08:00
import type { INodeProperties } from 'n8n-workflow' ;
2021-07-02 14:34:12 -07:00
import {
billingAddress ,
currencies ,
makeCustomFieldsFixedCollection ,
makeGetAllFields ,
productDetailsOptions ,
shippingAddress ,
} from './SharedFields' ;
2021-12-03 00:44:16 -08:00
export const purchaseOrderOperations : INodeProperties [ ] = [
2021-07-02 14:34:12 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-07-02 14:34:12 -07:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'purchaseOrder' ] ,
2021-07-02 14:34:12 -07:00
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a purchase order' ,
2022-07-10 13:50:51 -07:00
action : 'Create a purchase order' ,
2021-07-02 14:34:12 -07:00
} ,
{
name : 'Create or Update' ,
value : 'upsert' ,
description : 'Create a new record, or update the current one if it already exists (upsert)' ,
2022-07-10 13:50:51 -07:00
action : 'Create or update a purchase order' ,
2021-07-02 14:34:12 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a purchase order' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a purchase order' ,
2021-07-02 14:34:12 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get a purchase order' ,
2022-07-10 13:50:51 -07:00
action : 'Get a purchase order' ,
2021-07-02 14:34:12 -07:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2021-07-02 14:34:12 -07:00
value : 'getAll' ,
2022-09-13 03:36:36 -07:00
description : 'Get many purchase orders' ,
2022-09-08 08:10:13 -07:00
action : 'Get many purchase orders' ,
2021-07-02 14:34:12 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a purchase order' ,
2022-07-10 13:50:51 -07:00
action : 'Update a purchase order' ,
2021-07-02 14:34:12 -07:00
} ,
] ,
default : 'create' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-07-02 14:34:12 -07:00
2021-12-03 00:44:16 -08:00
export const purchaseOrderFields : INodeProperties [ ] = [
2021-07-02 14:34:12 -07:00
// ----------------------------------------
// purchaseOrder: create
// ----------------------------------------
{
displayName : 'Subject' ,
name : 'subject' ,
2022-05-06 14:01:25 -07:00
description : 'Subject or title of the purchase order' ,
2021-07-02 14:34:12 -07:00
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'purchaseOrder' ] ,
operation : [ 'create' ] ,
2021-07-02 14:34:12 -07:00
} ,
} ,
} ,
// ----------------------------------------
// purchaseOrder: upsert
// ----------------------------------------
{
displayName : 'Subject' ,
name : 'subject' ,
2022-08-17 08:50:24 -07:00
description :
'Subject or title of the purchase order. If a record with this subject exists it will be updated, otherwise a new one will be created.' ,
2021-07-02 14:34:12 -07:00
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'purchaseOrder' ] ,
operation : [ 'upsert' ] ,
2021-07-02 14:34:12 -07:00
} ,
} ,
} ,
// ----------------------------------------
// purchaseOrder: create + upsert
// ----------------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Vendor Name or ID' ,
2021-07-02 14:34:12 -07:00
name : 'vendorId' ,
type : 'options' ,
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getVendors' ,
} ,
2022-08-17 08:50:24 -07:00
description :
'ID of the vendor associated with the purchase order. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-02 14:34:12 -07:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'purchaseOrder' ] ,
operation : [ 'create' , 'upsert' ] ,
2021-07-02 14:34:12 -07:00
} ,
} ,
} ,
{
displayName : 'Products' ,
name : 'Product_Details' ,
type : 'collection' ,
typeOptions : {
multipleValues : true ,
multipleValueButtonText : 'Add Product' ,
} ,
default : { } ,
placeholder : 'Add Field' ,
options : productDetailsOptions ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'purchaseOrder' ] ,
operation : [ 'create' , 'upsert' ] ,
2021-07-02 14:34:12 -07:00
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'purchaseOrder' ] ,
operation : [ 'create' , 'upsert' ] ,
2021-07-02 14:34:12 -07:00
} ,
} ,
options : [
{
displayName : 'Adjustment' ,
name : 'Adjustment' ,
type : 'number' ,
default : 0 ,
typeOptions : {
minValue : 0 ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Adjustment in the grand total, if any' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Billing Address' ,
name : 'Billing_Address' ,
type : 'fixedCollection' ,
default : { } ,
placeholder : 'Add Billing Address Field' ,
options : [
{
displayName : 'Billing Address Fields' ,
name : 'billing_address_fields' ,
values : [
{
displayName : 'Billing City' ,
name : 'Billing_City' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Billing Code' ,
name : 'Billing_Code' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Billing Country' ,
name : 'Billing_Country' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Billing State' ,
name : 'Billing_State' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Billing Street' ,
name : 'Billing_Street' ,
type : 'string' ,
default : '' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Carrier' ,
name : 'Carrier' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Name of the carrier' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Currency' ,
name : 'Currency' ,
type : 'options' ,
default : 'USD' ,
2022-05-06 14:01:25 -07:00
description : 'Symbol of the currency in which revenue is generated' ,
2021-07-02 14:34:12 -07:00
options : currencies ,
} ,
makeCustomFieldsFixedCollection ( 'purchaseOrder' ) ,
{
displayName : 'Description' ,
name : 'Description' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Discount' ,
name : 'Discount' ,
type : 'number' ,
description : 'Discount applied to the purchase order. For example, enter 12 for 12%.' ,
default : 0 ,
typeOptions : {
minValue : 0 ,
} ,
} ,
{
displayName : 'Due Date' ,
name : 'Due_Date' ,
type : 'dateTime' ,
default : '' ,
} ,
{
displayName : 'Exchange Rate' ,
name : 'Exchange_Rate' ,
type : 'number' ,
default : 0 ,
typeOptions : {
minValue : 0 ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Exchange rate of the default currency to the home currency' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Grand Total' ,
name : 'Grand_Total' ,
type : 'number' ,
default : 0 ,
typeOptions : {
minValue : 0 ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Total amount for the product after deducting tax and discounts' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'PO Date' ,
name : 'PO_Date' ,
type : 'dateTime' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Date on which the purchase order was issued' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'PO Number' ,
name : 'PO_Number' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'ID of the purchase order after creating a case' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Sales Commission' ,
name : 'Sales_Commission' ,
type : 'number' ,
default : 0 ,
typeOptions : {
minValue : 0 ,
} ,
2022-08-17 08:50:24 -07:00
description :
'Commission of sales person on deal closure as a percentage. For example, enter 12 for 12%.' ,
2021-07-02 14:34:12 -07:00
} ,
shippingAddress ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Status Name or ID' ,
2021-07-02 14:34:12 -07:00
name : 'Status' ,
type : 'options' ,
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getPurchaseOrderStatus' ,
} ,
2022-08-17 08:50:24 -07:00
description :
'Status of the purchase order. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Sub Total' ,
name : 'Sub_Total' ,
type : 'number' ,
default : 0 ,
typeOptions : {
minValue : 0 ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Total amount for the product excluding tax' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Tax' ,
name : 'Tax' ,
type : 'number' ,
default : 0 ,
typeOptions : {
minValue : 0 ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Tax amount as the sum of sales tax and value-added tax' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Terms and Conditions' ,
name : 'Terms_and_Conditions' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Terms and conditions associated with the purchase order' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Tracking Number' ,
name : 'Tracking_Number' ,
type : 'string' ,
default : '' ,
} ,
] ,
} ,
// ----------------------------------------
// purchaseOrder: delete
// ----------------------------------------
{
displayName : 'Purchase Order ID' ,
name : 'purchaseOrderId' ,
2022-05-06 14:01:25 -07:00
description : 'ID of the purchase order to delete' ,
2021-07-02 14:34:12 -07:00
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'purchaseOrder' ] ,
operation : [ 'delete' ] ,
2021-07-02 14:34:12 -07:00
} ,
} ,
} ,
// ----------------------------------------
// purchaseOrder: get
// ----------------------------------------
{
displayName : 'Purchase Order ID' ,
name : 'purchaseOrderId' ,
2022-05-06 14:01:25 -07:00
description : 'ID of the purchase order to retrieve' ,
2021-07-02 14:34:12 -07:00
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'purchaseOrder' ] ,
operation : [ 'get' ] ,
2021-07-02 14:34:12 -07:00
} ,
} ,
} ,
// ----------------------------------------
// purchaseOrder: getAll
// ----------------------------------------
. . . makeGetAllFields ( 'purchaseOrder' ) ,
// ----------------------------------------
// purchaseOrder: update
// ----------------------------------------
{
displayName : 'Purchase Order ID' ,
name : 'purchaseOrderId' ,
2022-05-06 14:01:25 -07:00
description : 'ID of the purchase order to update' ,
2021-07-02 14:34:12 -07:00
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'purchaseOrder' ] ,
operation : [ 'update' ] ,
2021-07-02 14:34:12 -07:00
} ,
} ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'purchaseOrder' ] ,
operation : [ 'update' ] ,
2021-07-02 14:34:12 -07:00
} ,
} ,
options : [
{
displayName : 'Adjustment' ,
name : 'Adjustment' ,
type : 'number' ,
default : 0 ,
typeOptions : {
minValue : 0 ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Adjustment in the grand total, if any' ,
2021-07-02 14:34:12 -07:00
} ,
billingAddress ,
{
displayName : 'Carrier' ,
name : 'Carrier' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Name of the carrier' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Currency' ,
name : 'Currency' ,
type : 'options' ,
default : 'USD' ,
2022-05-06 14:01:25 -07:00
description : 'Symbol of the currency in which revenue is generated' ,
2021-07-02 14:34:12 -07:00
options : currencies ,
} ,
makeCustomFieldsFixedCollection ( 'purchaseOrder' ) ,
{
displayName : 'Description' ,
name : 'Description' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Discount' ,
name : 'Discount' ,
type : 'number' ,
default : 0 ,
typeOptions : {
minValue : 0 ,
} ,
} ,
{
displayName : 'Due Date' ,
name : 'Due_Date' ,
type : 'dateTime' ,
default : '' ,
} ,
{
displayName : 'Exchange Rate' ,
name : 'Exchange_Rate' ,
type : 'number' ,
default : 0 ,
typeOptions : {
minValue : 0 ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Exchange rate of the default currency to the home currency' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Grand Total' ,
name : 'Grand_Total' ,
type : 'number' ,
default : 0 ,
typeOptions : {
minValue : 0 ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Total amount for the product after deducting tax and discounts' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'PO Date' ,
name : 'PO_Date' ,
type : 'dateTime' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Date on which the purchase order was issued' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'PO Number' ,
name : 'PO_Number' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'ID of the purchase order after creating a case' ,
2021-07-02 14:34:12 -07:00
} ,
// productDetails('purchaseOrder', 'update'),
{
displayName : 'Sales Commission' ,
name : 'Sales_Commission' ,
type : 'number' ,
default : 0 ,
typeOptions : {
minValue : 0 ,
} ,
2022-08-17 08:50:24 -07:00
description :
'Commission of sales person on deal closure as a percentage. For example, enter 12 for 12%.' ,
2021-07-02 14:34:12 -07:00
} ,
shippingAddress ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Status Name or ID' ,
2021-07-02 14:34:12 -07:00
name : 'Status' ,
type : 'options' ,
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getPurchaseOrderStatus' ,
} ,
2022-08-17 08:50:24 -07:00
description :
'Status of the purchase order. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Sub Total' ,
name : 'Sub_Total' ,
type : 'number' ,
default : 0 ,
typeOptions : {
minValue : 0 ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Total amount for the product excluding tax' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Subject' ,
name : 'Subject' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Subject or title of the purchase order' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Tax' ,
name : 'Tax' ,
type : 'number' ,
default : 0 ,
typeOptions : {
minValue : 0 ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Tax amount as the sum of sales tax and value-added tax' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Terms and Conditions' ,
name : 'Terms_and_Conditions' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Terms and conditions associated with the purchase order' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Tracking Number' ,
name : 'Tracking_Number' ,
type : 'string' ,
default : '' ,
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;