scheduler-node-models 1.0.126 → 1.0.127
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
@@ -234,6 +234,7 @@ 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;
|
237
238
|
style = {
|
238
239
|
fill: this.fills.get('white'),
|
239
240
|
font: this.fonts.get('bold14'),
|
@@ -272,6 +273,7 @@ class ChargeStatusReport extends general_1.Report {
|
|
272
273
|
this.setCell(sheet, cellID, cellID, dtStyle, dFormat.format(prd));
|
273
274
|
cellID = this.getCellID(columns + p + 1, 4);
|
274
275
|
this.setCell(sheet, cellID, cellID, wkStyle, `Week ${p + 1}`);
|
276
|
+
sheet.getColumn(columns + p + 1).outlineLevel = 1;
|
275
277
|
});
|
276
278
|
columns += period.periods.length;
|
277
279
|
});
|