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 quoteOperations : 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 : {
resource : [
'quote' ,
] ,
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a quote' ,
2022-07-10 13:50:51 -07:00
action : 'Create a quote' ,
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 quote' ,
2021-07-02 14:34:12 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a quote' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a quote' ,
2021-07-02 14:34:12 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get a quote' ,
2022-07-10 13:50:51 -07:00
action : 'Get a quote' ,
2021-07-02 14:34:12 -07:00
} ,
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Get all quotes' ,
2022-07-10 13:50:51 -07:00
action : 'Get all quotes' ,
2021-07-02 14:34:12 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a quote' ,
2022-07-10 13:50:51 -07:00
action : 'Update a quote' ,
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 quoteFields : INodeProperties [ ] = [
2021-07-02 14:34:12 -07:00
// ----------------------------------------
// quote: create
// ----------------------------------------
{
displayName : 'Subject' ,
name : 'subject' ,
2022-05-06 14:01:25 -07:00
description : 'Subject or title of the quote' ,
2021-07-02 14:34:12 -07:00
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'quote' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
// ----------------------------------------
// quote: upsert
// ----------------------------------------
{
displayName : 'Subject' ,
name : 'subject' ,
description : 'Subject or title of the quote. 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 : [
'quote' ,
] ,
operation : [
'upsert' ,
] ,
} ,
} ,
} ,
// ----------------------------------------
// quote: create + upsert
// ----------------------------------------
{
displayName : 'Products' ,
name : 'Product_Details' ,
type : 'collection' ,
typeOptions : {
multipleValues : true ,
multipleValueButtonText : 'Add Product' ,
} ,
default : { } ,
placeholder : 'Add Field' ,
options : productDetailsOptions ,
displayOptions : {
show : {
resource : [
'quote' ,
] ,
operation : [
'create' ,
'upsert' ,
] ,
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
resource : [
'quote' ,
] ,
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 : '' ,
} ,
{
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 ( 'quote' ) ,
{
displayName : 'Description' ,
name : 'Description' ,
type : 'string' ,
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
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Quote Stage Name or ID' ,
2021-07-02 14:34:12 -07:00
name : 'Quote_Stage' ,
type : 'options' ,
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getQuoteStage' ,
} ,
2022-07-14 13:05:11 -07:00
description : 'Stage of the quote. 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
} ,
shippingAddress ,
{
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 : 'Total amount as the sum of sales tax and value-added tax' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Team' ,
name : 'Team' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Team for whom the quote is created' ,
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 quote' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Valid Till' ,
name : 'Valid_Till' ,
type : 'dateTime' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Date until when the quote is valid' ,
2021-07-02 14:34:12 -07:00
} ,
] ,
} ,
// ----------------------------------------
// quote: delete
// ----------------------------------------
{
displayName : 'Quote ID' ,
name : 'quoteId' ,
2022-05-06 14:01:25 -07:00
description : 'ID of the quote to delete' ,
2021-07-02 14:34:12 -07:00
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'quote' ,
] ,
operation : [
'delete' ,
] ,
} ,
} ,
} ,
// ----------------------------------------
// quote: get
// ----------------------------------------
{
displayName : 'Quote ID' ,
name : 'quoteId' ,
2022-05-06 14:01:25 -07:00
description : 'ID of the quote to retrieve' ,
2021-07-02 14:34:12 -07:00
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'quote' ,
] ,
operation : [
'get' ,
] ,
} ,
} ,
} ,
// ----------------------------------------
// quote: getAll
// ----------------------------------------
. . . makeGetAllFields ( 'quote' ) ,
// ----------------------------------------
// quote: update
// ----------------------------------------
{
displayName : 'Quote ID' ,
name : 'quoteId' ,
2022-05-06 14:01:25 -07:00
description : 'ID of the quote to update' ,
2021-07-02 14:34:12 -07:00
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'quote' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
resource : [
'quote' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
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 : '' ,
} ,
{
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 ( 'quote' ) ,
{
displayName : 'Description' ,
name : 'Description' ,
type : 'string' ,
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
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Quote Stage Name or ID' ,
2021-07-02 14:34:12 -07:00
name : 'Quote_Stage' ,
type : 'options' ,
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getQuoteStage' ,
} ,
2022-07-14 13:05:11 -07:00
description : 'Stage of the quote. 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
} ,
shippingAddress ,
{
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 quote' ,
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 : 'Team' ,
name : 'Team' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Team for whom the quote is created' ,
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 quote' ,
2021-07-02 14:34:12 -07:00
} ,
{
displayName : 'Valid Till' ,
name : 'Valid_Till' ,
type : 'dateTime' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Date until when the quote is valid' ,
2021-07-02 14:34:12 -07:00
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;