mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(SpreadsheetFile Node): Allow skipping headers when writing spreadsheets (#3234)
* ⚡ Allow skipping headers when writing spreadsheets
* Fix type on sheet options
This commit is contained in:
@@ -9,6 +9,7 @@ import {
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import {
|
||||
JSON2SheetOpts,
|
||||
read as xlsxRead,
|
||||
Sheet2JSONOpts,
|
||||
utils as xlsxUtils,
|
||||
@@ -216,6 +217,7 @@ export class SpreadsheetFile implements INodeType {
|
||||
show: {
|
||||
'/operation': [
|
||||
'fromFile',
|
||||
'toFile',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -437,7 +439,10 @@ export class SpreadsheetFile implements INodeType {
|
||||
const binaryPropertyName = this.getNodeParameter('binaryPropertyName', 0) as string;
|
||||
const fileFormat = this.getNodeParameter('fileFormat', 0) as string;
|
||||
const options = this.getNodeParameter('options', 0, {}) as IDataObject;
|
||||
|
||||
const sheetToJsonOptions: JSON2SheetOpts = {};
|
||||
if (options.headerRow === false) {
|
||||
sheetToJsonOptions.skipHeader = true;
|
||||
}
|
||||
// Get the json data of the items and flatten it
|
||||
let item: INodeExecutionData;
|
||||
const itemData: IDataObject[] = [];
|
||||
@@ -446,7 +451,7 @@ export class SpreadsheetFile implements INodeType {
|
||||
itemData.push(flattenObject(item.json));
|
||||
}
|
||||
|
||||
const ws = xlsxUtils.json_to_sheet(itemData);
|
||||
const ws = xlsxUtils.json_to_sheet(itemData, sheetToJsonOptions);
|
||||
|
||||
const wopts: WritingOptions = {
|
||||
bookSST: false,
|
||||
|
||||
Reference in New Issue
Block a user