scheduler-node-models 1.0.74 → 1.0.78

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,17 +1,14 @@
1
1
  {
2
2
  "name": "scheduler-node-models",
3
- "version": "1.0.74",
4
- "main": "./index.js",
5
- "types": "./index.d.ts",
3
+ "version": "1.0.78",
4
+ "main": "index.js",
5
+ "types": "index.d.ts",
6
6
  "files": [
7
- "./"
7
+ "/"
8
8
  ],
9
- "dependencies": {
10
- "adm-zip": "^0.5.16",
11
- "bcrypt": "^6.0.0",
12
- "exceljs": "^4.4.0",
13
- "mongodb": "^6.18.0",
14
- "nodemailer": "^7.0.5",
15
- "scheduler-node-models": "^1.0.32"
16
- }
9
+ "scripts": {},
10
+ "keywords": [],
11
+ "author": "",
12
+ "license": "MIT",
13
+ "description": ""
17
14
  }
@@ -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++;
@@ -529,7 +530,7 @@ class ChargeStatusReport extends general_1.Report {
529
530
  // this sets an excel conditional formatting relationship for if the resultant
530
531
  // value is equal to zero (0), changes fill color and displays a dash.
531
532
  sheet.addConditionalFormatting({
532
- ref: `${cellID}`,
533
+ ref: `${cellID}:${cellID}`,
533
534
  rules: [
534
535
  {
535
536
  type: 'cellIs',
package/.npmignore DELETED
@@ -1 +0,0 @@
1
- src/**/*