mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
fix(Agile CRM Node): Fix issue with company address not working (#6997)
This commit is contained in:
@@ -298,12 +298,16 @@ export class AgileCrm implements INodeType {
|
||||
} as IDataObject);
|
||||
}
|
||||
|
||||
if (additionalFields.address) {
|
||||
properties.push({
|
||||
type: 'SYSTEM',
|
||||
name: 'address',
|
||||
value: additionalFields.address as string,
|
||||
} as IDataObject);
|
||||
if (additionalFields.addressOptions) {
|
||||
//@ts-ignore
|
||||
additionalFields.addressOptions.addressProperties.map((property) => {
|
||||
properties.push({
|
||||
type: 'SYSTEM',
|
||||
subtype: property.subtype as string,
|
||||
name: 'address',
|
||||
value: property.address as string,
|
||||
} as IDataObject);
|
||||
});
|
||||
}
|
||||
|
||||
if (additionalFields.phone) {
|
||||
@@ -313,6 +317,14 @@ export class AgileCrm implements INodeType {
|
||||
value: additionalFields.phone as string,
|
||||
} as IDataObject);
|
||||
}
|
||||
|
||||
if (additionalFields.name) {
|
||||
properties.push({
|
||||
type: 'SYSTEM',
|
||||
name: 'name',
|
||||
value: additionalFields.name as string,
|
||||
} as IDataObject);
|
||||
}
|
||||
}
|
||||
|
||||
if (additionalFields.websiteOptions) {
|
||||
@@ -321,7 +333,7 @@ export class AgileCrm implements INodeType {
|
||||
properties.push({
|
||||
type: 'SYSTEM',
|
||||
subtype: property.subtype as string,
|
||||
name: 'webiste',
|
||||
name: 'website',
|
||||
value: property.url as string,
|
||||
} as IDataObject);
|
||||
});
|
||||
@@ -450,12 +462,16 @@ export class AgileCrm implements INodeType {
|
||||
} as IDataObject);
|
||||
}
|
||||
|
||||
if (additionalFields.address) {
|
||||
properties.push({
|
||||
type: 'SYSTEM',
|
||||
name: 'address',
|
||||
value: additionalFields.address as string,
|
||||
} as IDataObject);
|
||||
if (additionalFields.addressOptions) {
|
||||
//@ts-ignore
|
||||
additionalFields.addressOptions.addressProperties.map((property) => {
|
||||
properties.push({
|
||||
type: 'SYSTEM',
|
||||
subtype: property.subtype as string,
|
||||
name: 'address',
|
||||
value: property.address as string,
|
||||
} as IDataObject);
|
||||
});
|
||||
}
|
||||
|
||||
if (additionalFields.phone) {
|
||||
@@ -473,11 +489,18 @@ export class AgileCrm implements INodeType {
|
||||
properties.push({
|
||||
type: 'SYSTEM',
|
||||
subtype: property.subtype as string,
|
||||
name: 'webiste',
|
||||
name: 'website',
|
||||
value: property.url as string,
|
||||
} as IDataObject);
|
||||
});
|
||||
}
|
||||
if (additionalFields.name) {
|
||||
properties.push({
|
||||
type: 'SYSTEM',
|
||||
name: 'name',
|
||||
value: additionalFields.name as string,
|
||||
} as IDataObject);
|
||||
}
|
||||
if (additionalFields.customProperties) {
|
||||
//@ts-ignore
|
||||
additionalFields.customProperties.customProperty.map((property) => {
|
||||
|
||||
@@ -379,11 +379,47 @@ export const companyFields: INodeProperties[] = [
|
||||
options: [
|
||||
{
|
||||
displayName: 'Address',
|
||||
name: 'email',
|
||||
type: 'string',
|
||||
placeholder: 'name@email.com',
|
||||
default: '',
|
||||
name: 'addressOptions',
|
||||
type: 'fixedCollection',
|
||||
default: {},
|
||||
description: 'Company address',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Address Properties',
|
||||
name: 'addressProperties',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Type',
|
||||
name: 'subtype',
|
||||
type: 'options',
|
||||
required: true,
|
||||
default: '',
|
||||
description: 'Type of address',
|
||||
options: [
|
||||
{
|
||||
name: 'Postal',
|
||||
value: 'postal',
|
||||
},
|
||||
{
|
||||
name: 'Office',
|
||||
value: 'office',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Address',
|
||||
name: 'address',
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: '',
|
||||
description: 'Full address',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Email',
|
||||
@@ -655,11 +691,47 @@ export const companyFields: INodeProperties[] = [
|
||||
options: [
|
||||
{
|
||||
displayName: 'Address',
|
||||
name: 'email',
|
||||
type: 'string',
|
||||
placeholder: 'name@email.com',
|
||||
default: '',
|
||||
name: 'addressOptions',
|
||||
type: 'fixedCollection',
|
||||
default: {},
|
||||
description: 'Company address',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Address Properties',
|
||||
name: 'addressProperties',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Type',
|
||||
name: 'subtype',
|
||||
type: 'options',
|
||||
required: true,
|
||||
default: '',
|
||||
description: 'Type of address',
|
||||
options: [
|
||||
{
|
||||
name: 'Postal',
|
||||
value: 'postal',
|
||||
},
|
||||
{
|
||||
name: 'Office',
|
||||
value: 'office',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Address',
|
||||
name: 'address',
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: '',
|
||||
description: 'Full address',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Email',
|
||||
|
||||
Reference in New Issue
Block a user