mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
⚡ Adjust param types
This commit is contained in:
parent
662ea2467c
commit
75a7bbef34
|
@ -130,15 +130,25 @@ const adjustMailingAddressFields = adjustLocationFields('Mailing_Address');
|
|||
const adjustShippingAddressFields = adjustLocationFields('Shipping_Address');
|
||||
const adjustOtherAddressFields = adjustLocationFields('Other_Address');
|
||||
|
||||
const adjustDateOfBirth = (allFields: { Date_of_Birth: string }) => {
|
||||
if (!allFields.Date_of_Birth) return allFields;
|
||||
allFields.Date_of_Birth = allFields.Date_of_Birth.split('T')[0];
|
||||
/**
|
||||
* Remove a date field's timestamp.
|
||||
*/
|
||||
const adjustDateField = (dateType: DateType) => (allFields: DateField) => {
|
||||
const dateField = allFields[dateType];
|
||||
|
||||
if (!dateField) return allFields;
|
||||
|
||||
allFields[dateType] = dateField.split('T')[0];
|
||||
|
||||
return allFields;
|
||||
};
|
||||
|
||||
const adjustDateOfBirthField = adjustDateField('Date_of_Birth');
|
||||
const adjustClosingDateField = adjustDateField('Closing_Date');
|
||||
|
||||
export const adjustAccountFields = flow(adjustBillingAddressFields, adjustShippingAddressFields);
|
||||
export const adjustContactFields = flow(adjustMailingAddressFields, adjustOtherAddressFields, adjustDateOfBirth);
|
||||
export const adjustContactFields = flow(adjustMailingAddressFields, adjustOtherAddressFields, adjustDateOfBirthField);
|
||||
export const adjustDealFields = adjustClosingDateField;
|
||||
export const adjustInvoiceFields = flow(adjustBillingAddressFields, adjustShippingAddressFields); // TODO: product details
|
||||
export const adjustLeadFields = adjustAddressFields;
|
||||
export const adjustPurchaseOrderFields = adjustInvoiceFields;
|
||||
|
@ -165,3 +175,7 @@ type LocationType = 'Address' | 'Billing_Address' | 'Mailing_Address' | 'Shippin
|
|||
type LocationField = {
|
||||
address_fields: { [key in LocationType]: string };
|
||||
};
|
||||
|
||||
type DateType = 'Date_of_Birth' | 'Closing_Date';
|
||||
|
||||
type DateField = { Date_of_Birth?: string; Closing_Date?: string; };
|
||||
|
|
|
@ -12,6 +12,7 @@ import {
|
|||
import {
|
||||
adjustAccountFields,
|
||||
adjustContactFields,
|
||||
adjustDealFields,
|
||||
adjustInvoiceFields,
|
||||
adjustLeadFields,
|
||||
adjustPurchaseOrderFields,
|
||||
|
@ -305,14 +306,14 @@ export class ZohoCrm implements INodeType {
|
|||
// ----------------------------------------
|
||||
|
||||
const body: IDataObject = {
|
||||
Deal_Name: this.getNodeParameter('Deal_Name', i),
|
||||
Stage: this.getNodeParameter('Stage', i),
|
||||
Deal_Name: this.getNodeParameter('dealName', i),
|
||||
Stage: this.getNodeParameter('stage', i),
|
||||
};
|
||||
|
||||
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
||||
|
||||
if (Object.keys(additionalFields).length) {
|
||||
Object.assign(body, additionalFields);
|
||||
Object.assign(body, adjustDealFields(additionalFields));
|
||||
}
|
||||
|
||||
responseData = await zohoApiRequest.call(this, 'POST', '/deals', body);
|
||||
|
@ -355,7 +356,7 @@ export class ZohoCrm implements INodeType {
|
|||
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
||||
|
||||
if (Object.keys(updateFields).length) {
|
||||
Object.assign(body, updateFields);
|
||||
Object.assign(body, adjustDealFields(updateFields));
|
||||
}
|
||||
|
||||
const dealId = this.getNodeParameter('dealId', i);
|
||||
|
|
|
@ -107,7 +107,7 @@ export const accountFields = [
|
|||
{
|
||||
displayName: 'Annual Revenue',
|
||||
name: 'Annual_Revenue',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
default: '',
|
||||
},
|
||||
billingAddress,
|
||||
|
@ -140,7 +140,7 @@ export const accountFields = [
|
|||
{
|
||||
displayName: 'Exchange Rate',
|
||||
name: 'Exchange_Rate',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'Exchange rate of the default currency to the home currency.',
|
||||
},
|
||||
|
@ -293,7 +293,7 @@ export const accountFields = [
|
|||
{
|
||||
displayName: 'Annual Revenue',
|
||||
name: 'Annual_Revenue',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
default: '',
|
||||
},
|
||||
billingAddress,
|
||||
|
@ -326,7 +326,7 @@ export const accountFields = [
|
|||
{
|
||||
displayName: 'Exchange Rate',
|
||||
name: 'Exchange_Rate',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'Exchange rate of the default currency to the home currency.',
|
||||
},
|
||||
|
|
|
@ -110,7 +110,7 @@ export const dealFields = [
|
|||
{
|
||||
displayName: 'Closing Date',
|
||||
name: 'Closing_Date',
|
||||
type: 'string',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -150,9 +150,13 @@ export const dealFields = [
|
|||
{
|
||||
displayName: 'Probability',
|
||||
name: 'Probability',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
typeOptions: {
|
||||
minValue: 0,
|
||||
maxValue: 100,
|
||||
},
|
||||
default: '',
|
||||
description: 'Probability of deal closure.',
|
||||
description: 'Probability of deal closure as a percentage.',
|
||||
},
|
||||
{
|
||||
displayName: 'Sales Cycle Duration',
|
||||
|
@ -261,7 +265,7 @@ export const dealFields = [
|
|||
{
|
||||
displayName: 'Closing Date',
|
||||
name: 'Closing_Date',
|
||||
type: 'string',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -307,9 +311,13 @@ export const dealFields = [
|
|||
{
|
||||
displayName: 'Probability',
|
||||
name: 'Probability',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
typeOptions: {
|
||||
minValue: 0,
|
||||
maxValue: 100,
|
||||
},
|
||||
default: '',
|
||||
description: 'Probability of deal closure.',
|
||||
description: 'Probability of deal closure as a percentage.',
|
||||
},
|
||||
{
|
||||
displayName: 'Sales Cycle Duration',
|
||||
|
|
|
@ -155,7 +155,7 @@ export const invoiceFields = [
|
|||
{
|
||||
displayName: 'Exchange Rate',
|
||||
name: 'Exchange_Rate',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'Exchange rate of the default currency to the home currency.',
|
||||
},
|
||||
|
@ -354,7 +354,7 @@ export const invoiceFields = [
|
|||
{
|
||||
displayName: 'Exchange Rate',
|
||||
name: 'Exchange_Rate',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'Exchange rate of the default currency to the home currency.',
|
||||
},
|
||||
|
|
|
@ -191,7 +191,7 @@ export const purchaseOrderFields = [
|
|||
{
|
||||
displayName: 'Exchange Rate',
|
||||
name: 'Exchange_Rate',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'Exchange rate of the default currency to the home currency.',
|
||||
},
|
||||
|
@ -392,7 +392,7 @@ export const purchaseOrderFields = [
|
|||
{
|
||||
displayName: 'Exchange Rate',
|
||||
name: 'Exchange_Rate',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'Exchange rate of the default currency to the home currency.',
|
||||
},
|
||||
|
|
|
@ -134,7 +134,7 @@ export const quoteFields = [
|
|||
{
|
||||
displayName: 'Exchange Rate',
|
||||
name: 'Exchange_Rate',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'Exchange rate of the default currency to the home currency.',
|
||||
},
|
||||
|
@ -307,7 +307,7 @@ export const quoteFields = [
|
|||
{
|
||||
displayName: 'Exchange Rate',
|
||||
name: 'Exchange_Rate',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'Exchange rate of the default currency to the home currency.',
|
||||
},
|
||||
|
|
|
@ -201,7 +201,7 @@ export const salesOrderFields = [
|
|||
{
|
||||
displayName: 'Exchange Rate',
|
||||
name: 'Exchange_Rate',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'Exchange rate of the default currency to the home currency.',
|
||||
},
|
||||
|
@ -476,7 +476,7 @@ export const salesOrderFields = [
|
|||
{
|
||||
displayName: 'Exchange Rate',
|
||||
name: 'Exchange_Rate',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'Exchange rate of the default currency to the home currency.',
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue