scheduler-node-models 1.0.35 → 1.0.36
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
@@ -49,6 +49,7 @@ class ChargeStatusReport extends general_1.Report {
|
|
49
49
|
employees.push(emp);
|
50
50
|
});
|
51
51
|
employees.sort((a, b) => a.compareTo(b));
|
52
|
+
console.log(employees.length);
|
52
53
|
this.createStyles();
|
53
54
|
// create the statistics sheet first, so the other sheets can feed it data
|
54
55
|
const stats = this.createStatisticsSheet(workbook);
|
@@ -223,7 +224,7 @@ class ChargeStatusReport extends general_1.Report {
|
|
223
224
|
this.setCell(sheet, "K4", "K4", style, "Cost Center");
|
224
225
|
this.setCell(sheet, "L4", "L4", style, "Comments/Remarks");
|
225
226
|
// set headers for periods and sub-periods
|
226
|
-
columns =
|
227
|
+
columns = 11;
|
227
228
|
report.periods.forEach(period => {
|
228
229
|
columns++;
|
229
230
|
style = {
|