scheduler-node-models 1.0.74 → 1.0.75

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.74",
3
+ "version": "1.0.75",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "files": [
@@ -471,11 +471,12 @@ class ChargeStatusReport extends general_1.Report {
471
471
  this.setCell(sheet, this.getCellID(7, row), this.getCellID(7, row), style, (emp.companyinfo.rank) ? emp.companyinfo.rank : '');
472
472
  this.setCell(sheet, this.getCellID(8, row), this.getCellID(8, row), style, emp.companyinfo.employeeid);
473
473
  this.setCell(sheet, this.getCellID(9, row), this.getCellID(9, row), style, (emp.companyinfo.alternateid) ? emp.companyinfo.alternateid : '');
474
+ this.setCell(sheet, this.getCellID(10, row), this.getCellID(10, row), style, (emp.companyinfo.costcenter) ? emp.companyinfo.costcenter : '');
474
475
  // This section steps though the forecast report periods to provide the hours worked/
475
476
  // or forecasted to work, in the period. Each period corresponds to an accounting
476
477
  // month and its weekly periods. These are determined by the contract administrator
477
478
  // and put in the forecast report object.
478
- let column = 10;
479
+ let column = 11;
479
480
  const sumlist = []; // used to provide a total hours from the monthly values
480
481
  report.periods.forEach(period => {
481
482
  column++;