scheduler-node-models 1.0.127 → 1.0.128

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scheduler-node-models",
3
- "version": "1.0.127",
3
+ "version": "1.0.128",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "files": [
@@ -234,7 +234,6 @@ class ChargeStatusReport extends general_1.Report {
234
234
  columns = 11;
235
235
  report.periods.forEach(period => {
236
236
  columns++;
237
- sheet.getColumn(columns).outlineLevel = 0;
238
237
  style = {
239
238
  fill: this.fills.get('white'),
240
239
  font: this.fonts.get('bold14'),
@@ -273,7 +272,6 @@ class ChargeStatusReport extends general_1.Report {
273
272
  this.setCell(sheet, cellID, cellID, dtStyle, dFormat.format(prd));
274
273
  cellID = this.getCellID(columns + p + 1, 4);
275
274
  this.setCell(sheet, cellID, cellID, wkStyle, `Week ${p + 1}`);
276
- sheet.getColumn(columns + p + 1).outlineLevel = 1;
277
275
  });
278
276
  columns += period.periods.length;
279
277
  });