mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
88dea330b9
* ⚡ Update `lintfix` script * ⚡ Run baseline `lintfix` * 🔥 Remove unneeded exceptions (#3538) * 🔥 Remove exceptions for `node-param-default-wrong-for-simplify` * 🔥 Remove exceptions for `node-param-placeholder-miscased-id` * ⚡ Update version * 👕 Apply `node-param-placeholder-missing` (#3542) * 👕 Apply `filesystem-wrong-cred-filename` (#3543) * 👕 Apply `node-param-description-missing-from-dynamic-options` (#3545) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-class-description-empty-string` (#3546) * 👕 Apply `node-class-description-icon-not-svg` (#3548) * 👕 Apply `filesystem-wrong-node-filename` (#3549) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Expand lintings to credentials (#3550) * 👕 Apply `node-param-multi-options-type-unsorted-items` (#3552) * ⚡ fix * ⚡ Minor fixes Co-authored-by: Michael Kret <michael.k@radency.com> * 👕 Apply `node-param-description-wrong-for-dynamic-multi-options` (#3541) * ⚡ Add new lint rule, node-param-description-wrong-for-dynamic-multi-options * ⚡ Fix with updated linting rules * ⚡ Minor fixes Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-boolean-without-whether` (#3553) * ⚡ fix * Update packages/nodes-base/nodes/Clockify/ProjectDescription.ts Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-display-name-wrong-for-dynamic-multi-options (#3537) * 👕 Add exceptions * 👕 Add exception * ✏️ Alphabetize rules * ⚡ Restore `lintfix` command Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: brianinoa <54530642+brianinoa@users.noreply.github.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
180 lines
4.6 KiB
TypeScript
180 lines
4.6 KiB
TypeScript
import {
|
|
IExecuteFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
INodeExecutionData,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
convertNETDates,
|
|
unleashedApiRequest,
|
|
unleashedApiRequestAllItems,
|
|
} from './GenericFunctions';
|
|
|
|
import {
|
|
salesOrderFields,
|
|
salesOrderOperations,
|
|
} from './SalesOrderDescription';
|
|
|
|
import {
|
|
stockOnHandFields,
|
|
stockOnHandOperations,
|
|
} from './StockOnHandDescription';
|
|
|
|
import moment from 'moment';
|
|
|
|
export class UnleashedSoftware implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Unleashed Software',
|
|
name: 'unleashedSoftware',
|
|
group: ['transform'],
|
|
subtitle: '={{$parameter["operation"] + ":" + $parameter["resource"]}}',
|
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
|
icon: 'file:unleashedSoftware.png',
|
|
version: 1,
|
|
description: 'Consume Unleashed Software API',
|
|
defaults: {
|
|
name: 'Unleashed Software',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'unleashedSoftwareApi',
|
|
required: true,
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Sales Order',
|
|
value: 'salesOrder',
|
|
},
|
|
{
|
|
name: 'Stock On Hand',
|
|
value: 'stockOnHand',
|
|
},
|
|
],
|
|
default: 'salesOrder',
|
|
},
|
|
...salesOrderOperations,
|
|
...salesOrderFields,
|
|
|
|
...stockOnHandOperations,
|
|
...stockOnHandFields,
|
|
],
|
|
};
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
|
|
const items = this.getInputData();
|
|
const returnData: IDataObject[] = [];
|
|
const length = items.length;
|
|
const qs: IDataObject = {};
|
|
let responseData;
|
|
|
|
for (let i = 0; i < length; i++) {
|
|
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
|
|
//https://apidocs.unleashedsoftware.com/SalesOrders
|
|
if (resource === 'salesOrder') {
|
|
|
|
if (operation === 'getAll') {
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
const filters = this.getNodeParameter('filters', i) as IDataObject;
|
|
|
|
if (filters.startDate) {
|
|
filters.startDate = moment(filters.startDate as string).format('YYYY-MM-DD');
|
|
}
|
|
|
|
if (filters.endDate) {
|
|
filters.endDate = moment(filters.endDate as string).format('YYYY-MM-DD');
|
|
}
|
|
|
|
if (filters.modifiedSince) {
|
|
filters.modifiedSince = moment(filters.modifiedSince as string).format('YYYY-MM-DD');
|
|
}
|
|
|
|
if (filters.orderStatus) {
|
|
filters.orderStatus = (filters.orderStatus as string[]).join(',');
|
|
}
|
|
|
|
Object.assign(qs, filters);
|
|
|
|
if (returnAll) {
|
|
responseData = await unleashedApiRequestAllItems.call(this, 'Items', 'GET', '/SalesOrders', {}, qs);
|
|
} else {
|
|
const limit = this.getNodeParameter('limit', i) as number;
|
|
qs.pageSize = limit;
|
|
responseData = await unleashedApiRequest.call(this, 'GET', `/SalesOrders`, {}, qs, 1);
|
|
responseData = responseData.Items;
|
|
}
|
|
|
|
convertNETDates(responseData);
|
|
}
|
|
}
|
|
|
|
//https://apidocs.unleashedsoftware.com/StockOnHand
|
|
if (resource === 'stockOnHand') {
|
|
|
|
if (operation === 'getAll') {
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
|
|
const filters = this.getNodeParameter('filters', i) as IDataObject;
|
|
|
|
if (filters.asAtDate) {
|
|
filters.asAtDate = moment(filters.asAtDate as string).format('YYYY-MM-DD');
|
|
}
|
|
|
|
if (filters.modifiedSince) {
|
|
filters.modifiedSince = moment(filters.modifiedSince as string).format('YYYY-MM-DD');
|
|
}
|
|
|
|
if (filters.orderBy) {
|
|
filters.orderBy = (filters.orderBy as string).trim();
|
|
}
|
|
|
|
Object.assign(qs, filters);
|
|
|
|
if (returnAll) {
|
|
responseData = await unleashedApiRequestAllItems.call(this, 'Items', 'GET', '/StockOnHand', {}, qs);
|
|
} else {
|
|
const limit = this.getNodeParameter('limit', i) as number;
|
|
qs.pageSize = limit;
|
|
responseData = await unleashedApiRequest.call(this, 'GET', `/StockOnHand`, {}, qs, 1);
|
|
responseData = responseData.Items;
|
|
}
|
|
|
|
convertNETDates(responseData);
|
|
}
|
|
|
|
if (operation === 'get') {
|
|
const productId = this.getNodeParameter('productId', i) as string;
|
|
responseData = await unleashedApiRequest.call(this, 'GET', `/StockOnHand/${productId}`);
|
|
convertNETDates(responseData);
|
|
}
|
|
}
|
|
|
|
if (Array.isArray(responseData)) {
|
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
|
} else {
|
|
returnData.push(responseData as IDataObject);
|
|
}
|
|
}
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
}
|
|
}
|