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
@@ -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;
|