scheduler-node-models 1.0.9 → 1.0.11

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.9",
3
+ "version": "1.0.11",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "files": [
@@ -194,7 +194,6 @@ class ScheduleReport extends general_1.Report {
194
194
  // and days of the month at 4.0
195
195
  sheet.getColumn(1).width = 17.0;
196
196
  const endofMonth = (new Date(endDate.getTime() - (24 * 3600000))).getDate();
197
- console.log(endofMonth);
198
197
  for (let i = 0; i < endofMonth; i++) {
199
198
  sheet.getColumn(2 + i).width = 4.0;
200
199
  }
@@ -221,7 +220,6 @@ class ScheduleReport extends general_1.Report {
221
220
  cellID = this.getCellID(current.getDate(), 2);
222
221
  this.setCell(sheet, cellID, cellID, style, current.getDate());
223
222
  current = new Date(current.getTime() + (24 * 3600000));
224
- console.log(current);
225
223
  }
226
224
  // now add row for workcenter header, then the employees under that workcenter
227
225
  let row = 2;
@@ -283,6 +281,7 @@ class ScheduleReport extends general_1.Report {
283
281
  }
284
282
  }
285
283
  style = this.styles.get(stID);
284
+ console.log(stID);
286
285
  const cellID = this.getCellID(current.getDate(), row);
287
286
  this.setCell(sheet, cellID, cellID, style, code);
288
287
  current = new Date(current.getTime() + (24 * 3600000));