Add field AccountNumber to Salesforce Node (#2649)

This commit is contained in:
Laurens 2022-01-08 12:53:57 +01:00 committed by GitHub
parent c129252d2b
commit ac545b2573
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 0 deletions

View file

@ -145,6 +145,13 @@ export const accountFields: INodeProperties[] = [
},
},
options: [
{
displayName: 'Account Number',
name: 'accountNumber',
type: 'string',
default: '',
description: 'Account number assigned to this account (not the unique ID). Maximum size is 40 characters.',
},
{
displayName: 'Account Source',
name: 'accountSource',
@ -410,6 +417,13 @@ export const accountFields: INodeProperties[] = [
},
},
options: [
{
displayName: 'Account Number',
name: 'accountNumber',
type: 'string',
default: '',
description: 'Account number assigned to this account (not the unique ID). Maximum size is 40 characters.',
},
{
displayName: 'Account Source',
name: 'accountSource',

View file

@ -16,6 +16,7 @@ export interface IAccount {
BillingState?: string;
ShippingStreet?: string;
ShippingCity?: string;
AccountNumber?: string;
AccountSource?: string;
AnnualRevenue?: number;
BillingStreet?: string;

View file

@ -1956,6 +1956,9 @@ export class Salesforce implements INodeType {
if (additionalFields.shippingCity !== undefined) {
body.ShippingCity = additionalFields.shippingCity as string;
}
if (additionalFields.accountNumber !== undefined) {
body.AccountNumber = additionalFields.accountNumber as string;
}
if (additionalFields.accountSource !== undefined) {
body.AccountSource = additionalFields.accountSource as string;
}
@ -2064,6 +2067,9 @@ export class Salesforce implements INodeType {
if (updateFields.shippingCity !== undefined) {
body.ShippingCity = updateFields.shippingCity as string;
}
if (updateFields.accountNumber !== undefined) {
body.AccountNumber = updateFields.accountNumber as string;
}
if (updateFields.accountSource !== undefined) {
body.AccountSource = updateFields.accountSource as string;
}