mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
This commit is contained in:
@@ -242,30 +242,34 @@ export class Odoo implements INodeType {
|
||||
const credentials = credential.data;
|
||||
|
||||
try {
|
||||
const body = {
|
||||
jsonrpc: '2.0',
|
||||
method: 'call',
|
||||
params: {
|
||||
service: 'common',
|
||||
method: 'login',
|
||||
args: [odooGetDBName(credentials?.db as string, credentials?.url as string), credentials?.username, credentials?.password],
|
||||
},
|
||||
id: Math.floor(Math.random() * 100),
|
||||
};
|
||||
const body = {
|
||||
jsonrpc: '2.0',
|
||||
method: 'call',
|
||||
params: {
|
||||
service: 'common',
|
||||
method: 'login',
|
||||
args: [
|
||||
odooGetDBName(credentials?.db as string, credentials?.url as string),
|
||||
credentials?.username,
|
||||
credentials?.password,
|
||||
],
|
||||
},
|
||||
id: Math.floor(Math.random() * 100),
|
||||
};
|
||||
|
||||
const options: OptionsWithUri = {
|
||||
headers: {
|
||||
'User-Agent': 'n8n',
|
||||
Connection: 'keep-alive',
|
||||
Accept: '*/*',
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
method: 'POST',
|
||||
body,
|
||||
uri: `${(credentials?.url as string).replace(/\/$/, '')}/jsonrpc`,
|
||||
json: true,
|
||||
};
|
||||
const result = await this.helpers.request!(options);
|
||||
const options: OptionsWithUri = {
|
||||
headers: {
|
||||
'User-Agent': 'n8n',
|
||||
Connection: 'keep-alive',
|
||||
Accept: '*/*',
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
method: 'POST',
|
||||
body,
|
||||
uri: `${(credentials?.url as string).replace(/\/$/, '')}/jsonrpc`,
|
||||
json: true,
|
||||
};
|
||||
const result = await this.helpers.request!(options);
|
||||
if (result.error || !result.result) {
|
||||
return {
|
||||
status: 'Error',
|
||||
@@ -362,7 +366,7 @@ export class Odoo implements INodeType {
|
||||
if (operation === 'get') {
|
||||
const contactId = this.getNodeParameter('contactId', i) as string;
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
const fields = options.fieldsList as IDataObject[] || [];
|
||||
const fields = (options.fieldsList as IDataObject[]) || [];
|
||||
responseData = await odooGet.call(
|
||||
this,
|
||||
db,
|
||||
@@ -379,7 +383,7 @@ export class Odoo implements INodeType {
|
||||
if (operation === 'getAll') {
|
||||
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
const fields = options.fieldsList as IDataObject[] || [];
|
||||
const fields = (options.fieldsList as IDataObject[]) || [];
|
||||
if (returnAll) {
|
||||
responseData = await odooGetAll.call(
|
||||
this,
|
||||
@@ -471,7 +475,7 @@ export class Odoo implements INodeType {
|
||||
if (operation === 'get') {
|
||||
const customResourceId = this.getNodeParameter('customResourceId', i) as string;
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
const fields = options.fieldsList as IDataObject[] || [];
|
||||
const fields = (options.fieldsList as IDataObject[]) || [];
|
||||
responseData = await odooGet.call(
|
||||
this,
|
||||
db,
|
||||
@@ -488,7 +492,7 @@ export class Odoo implements INodeType {
|
||||
if (operation === 'getAll') {
|
||||
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
const fields = options.fieldsList as IDataObject[] || [];
|
||||
const fields = (options.fieldsList as IDataObject[]) || [];
|
||||
const filter = this.getNodeParameter('filterRequest', i) as IOdooFilterOperations;
|
||||
if (returnAll) {
|
||||
responseData = await odooGetAll.call(
|
||||
@@ -573,7 +577,7 @@ export class Odoo implements INodeType {
|
||||
if (operation === 'get') {
|
||||
const noteId = this.getNodeParameter('noteId', i) as string;
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
const fields = options.fieldsList as IDataObject[] || [];
|
||||
const fields = (options.fieldsList as IDataObject[]) || [];
|
||||
responseData = await odooGet.call(
|
||||
this,
|
||||
db,
|
||||
@@ -590,7 +594,7 @@ export class Odoo implements INodeType {
|
||||
if (operation === 'getAll') {
|
||||
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
const fields = options.fieldsList as IDataObject[] || [];
|
||||
const fields = (options.fieldsList as IDataObject[]) || [];
|
||||
if (returnAll) {
|
||||
responseData = await odooGetAll.call(
|
||||
this,
|
||||
@@ -678,7 +682,7 @@ export class Odoo implements INodeType {
|
||||
if (operation === 'get') {
|
||||
const opportunityId = this.getNodeParameter('opportunityId', i) as string;
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
const fields = options.fieldsList as IDataObject[] || [];
|
||||
const fields = (options.fieldsList as IDataObject[]) || [];
|
||||
responseData = await odooGet.call(
|
||||
this,
|
||||
db,
|
||||
@@ -695,7 +699,7 @@ export class Odoo implements INodeType {
|
||||
if (operation === 'getAll') {
|
||||
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
const fields = options.fieldsList as IDataObject[] || [];
|
||||
const fields = (options.fieldsList as IDataObject[]) || [];
|
||||
if (returnAll) {
|
||||
responseData = await odooGetAll.call(
|
||||
this,
|
||||
|
||||
Reference in New Issue
Block a user