scheduler-node-models 1.0.15 → 1.0.16

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.15",
3
+ "version": "1.0.16",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "files": [
@@ -139,7 +139,6 @@ class ScheduleReport extends general_1.Report {
139
139
  iEmps.forEach(iEmp => {
140
140
  const emp = new employees_1.Employee(iEmp);
141
141
  if (emp.atSite(this.site.id, startDate, endDate)) {
142
- console.log(emp.name.lastname);
143
142
  let position = false;
144
143
  this.site.workcenters.forEach((wkctr, w) => {
145
144
  wkctr.positions?.forEach((pos, p) => {
@@ -167,6 +166,7 @@ class ScheduleReport extends general_1.Report {
167
166
  }
168
167
  });
169
168
  if (bShift) {
169
+ console.log(emp.name.lastname);
170
170
  shft.employees?.push(emp);
171
171
  wkctr.shifts[s] = shft;
172
172
  this.site.workcenters[w] = wkctr;