Fix display issue with AccountID before Operation & other small fixes

This commit is contained in:
Jan Oberhauser
2021-04-02 18:10:22 +02:00
parent 7995bd610d
commit b406d4b60b
11 changed files with 126 additions and 125 deletions

View File

@@ -214,20 +214,6 @@ export const contactFields = [
},
default: {},
options: [
{
displayName: 'Last Name',
name: 'last_name',
type: 'string',
default: '',
description: 'The last name of the contact.',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
description: 'The title of the contact.',
},
{
displayName: 'Email',
name: 'email',
@@ -236,11 +222,18 @@ export const contactFields = [
description: 'The contacts email address.',
},
{
displayName: 'Phone Office',
name: 'phone_office',
displayName: 'Fax',
name: 'fax',
type: 'string',
default: '',
description: 'The contacts office phone number.',
description: 'The contacts fax number.',
},
{
displayName: 'Last Name',
name: 'last_name',
type: 'string',
default: '',
description: 'The last name of the contact.',
},
{
displayName: 'Phone Mobile',
@@ -250,11 +243,19 @@ export const contactFields = [
description: 'The contacts mobile phone number.',
},
{
displayName: 'Fax',
name: 'fax',
displayName: 'Phone Office',
name: 'phone_office',
type: 'string',
default: '',
description: 'The contacts fax number.',
description: 'The contacts office phone number.',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
description: 'The title of the contact.',
},
],
},
@@ -300,6 +301,20 @@ export const contactFields = [
default: '',
description: 'The ID of the client associated with this contact.',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
description: 'The contacts email address.',
},
{
displayName: 'Fax',
name: 'fax',
type: 'string',
default: '',
description: 'The contacts fax number.',
},
{
displayName: 'First Name',
name: 'first_name',
@@ -315,18 +330,11 @@ export const contactFields = [
description: 'The last name of the contact.',
},
{
displayName: 'Title',
name: 'title',
displayName: 'Phone Mobile',
name: 'phone_mobile',
type: 'string',
default: '',
description: 'The title of the contact.',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
description: 'The contacts email address.',
description: 'The contacts mobile phone number.',
},
{
displayName: 'Phone Office',
@@ -336,18 +344,11 @@ export const contactFields = [
description: 'The contacts office phone number.',
},
{
displayName: 'Phone Mobile',
name: 'phone_mobile',
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
description: 'The contacts mobile phone number.',
},
{
displayName: 'Fax',
name: 'fax',
type: 'string',
default: '',
description: 'The contacts fax number.',
description: 'The title of the contact.',
},
],
},