2021-07-02 14:34:12 -07:00
|
|
|
import {
|
|
|
|
INodeProperties,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import {
|
|
|
|
billingAddress,
|
|
|
|
currencies,
|
|
|
|
makeCustomFieldsFixedCollection,
|
|
|
|
makeGetAllFields,
|
|
|
|
productDetailsOptions,
|
|
|
|
shippingAddress,
|
|
|
|
} from './SharedFields';
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const salesOrderOperations: INodeProperties[] = [
|
2021-07-02 14:34:12 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'salesOrder',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a sales order',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Create or Update',
|
|
|
|
value: 'upsert',
|
|
|
|
description: 'Create a new record, or update the current one if it already exists (upsert)',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
|
|
|
description: 'Delete a sales order',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Get a sales order',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get All',
|
|
|
|
value: 'getAll',
|
|
|
|
description: 'Get all sales orders',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Update',
|
|
|
|
value: 'update',
|
|
|
|
description: 'Update a sales order',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
description: 'Operation to perform',
|
|
|
|
},
|
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 salesOrderFields: INodeProperties[] = [
|
2021-07-02 14:34:12 -07:00
|
|
|
// ----------------------------------------
|
|
|
|
// salesOrder: create + upsert
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Account ID',
|
|
|
|
name: 'accountId',
|
|
|
|
required: true,
|
|
|
|
type: 'options',
|
|
|
|
default: [],
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getAccounts',
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'salesOrder',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
'upsert',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// salesOrder: create
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Subject',
|
|
|
|
name: 'subject',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Subject or title of the sales order',
|
2021-07-02 14:34:12 -07:00
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'salesOrder',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// salesOrder: upsert
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Subject',
|
|
|
|
name: 'subject',
|
|
|
|
description: 'Subject or title of the sales order. If a record with this subject exists it will be updated, otherwise a new one will be created.',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'salesOrder',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'upsert',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// salesOrder: create + upsert
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Products',
|
|
|
|
name: 'Product_Details',
|
|
|
|
type: 'collection',
|
|
|
|
typeOptions: {
|
|
|
|
multipleValues: true,
|
|
|
|
multipleValueButtonText: 'Add Product',
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
options: productDetailsOptions,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'salesOrder',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
'upsert',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'salesOrder',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
'upsert',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
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: 'Contact ID',
|
|
|
|
name: 'contactId',
|
|
|
|
type: 'options',
|
|
|
|
default: [],
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getContacts',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
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('salesOrder'),
|
|
|
|
{
|
|
|
|
displayName: 'Deal ID',
|
|
|
|
name: 'dealId',
|
|
|
|
type: 'options',
|
|
|
|
default: [],
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getDeals',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Description',
|
|
|
|
name: 'Description',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Discount',
|
|
|
|
name: 'Discount',
|
|
|
|
type: 'number',
|
|
|
|
description: 'Discount applied to the sales 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: 'Sales Order Number',
|
|
|
|
name: 'SO_Number',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the sales 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,
|
|
|
|
},
|
|
|
|
description: 'Commission of sales person on deal closure as a percentage. For example, enter 12 for 12%.',
|
|
|
|
},
|
|
|
|
shippingAddress,
|
|
|
|
{
|
|
|
|
displayName: 'Status',
|
|
|
|
name: 'Status',
|
|
|
|
type: 'options',
|
|
|
|
default: [],
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getSalesOrderStatus',
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Status of the sales order',
|
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
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// salesOrder: delete
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Sales Order ID',
|
|
|
|
name: 'salesOrderId',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the sales order to delete',
|
2021-07-02 14:34:12 -07:00
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'salesOrder',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'delete',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// salesOrder: get
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Sales Order ID',
|
|
|
|
name: 'salesOrderId',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the sales order to retrieve',
|
2021-07-02 14:34:12 -07:00
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'salesOrder',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'get',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// salesOrder: getAll
|
|
|
|
// ----------------------------------------
|
|
|
|
...makeGetAllFields('salesOrder'),
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// salesOrder: update
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Sales Order ID',
|
|
|
|
name: 'salesOrderId',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the sales order to update',
|
2021-07-02 14:34:12 -07:00
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'salesOrder',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'update',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Update Fields',
|
|
|
|
name: 'updateFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'salesOrder',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'update',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Account ID',
|
|
|
|
name: 'accountId',
|
|
|
|
type: 'options',
|
|
|
|
default: [],
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getAccounts',
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the account associated with this invoice',
|
2021-07-02 14:34:12 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
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: 'Contact ID',
|
|
|
|
name: 'contactId',
|
|
|
|
type: 'options',
|
|
|
|
default: [],
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getContacts',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
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('salesOrder'),
|
|
|
|
{
|
|
|
|
displayName: 'Deal ID',
|
|
|
|
name: 'dealId',
|
|
|
|
type: 'options',
|
|
|
|
default: [],
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getDeals',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
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: 'Sales Order Number',
|
|
|
|
name: 'SO_Number',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the sales 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,
|
|
|
|
},
|
|
|
|
description: 'Commission of sales person on deal closure as a percentage. For example, enter 12 for 12%.',
|
|
|
|
},
|
|
|
|
shippingAddress,
|
|
|
|
{
|
|
|
|
displayName: 'Status',
|
|
|
|
name: 'Status',
|
|
|
|
type: 'options',
|
|
|
|
default: [],
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getSalesOrderStatus',
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Status of the sales order',
|
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 sales 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
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|