scheduler-node-models 1.2.65 → 1.2.67

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.2.65",
3
+ "version": "1.2.67",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "files": [
@@ -61,13 +61,12 @@ class ExcelRowIngest {
61
61
  if (this.site.employees) {
62
62
  let found = false;
63
63
  this.site.employees.forEach(emp => {
64
- console.log(`${emp.name.getLastFirst().toLowerCase()} === ${name.toLowerCase()}`);
65
64
  if (emp.name.getLastFirst().toLowerCase() === name.toLowerCase()) {
66
- console.log('matched');
67
65
  found = true;
68
66
  for (let c = 3; c < 34; c++) {
69
67
  async () => {
70
68
  const colDate = new Date(this.docDate.getTime() + (24 * 3600000 * (c - 3)));
69
+ console.log(colDate);
71
70
  // Step through the days of the month to create the excel rows to add
72
71
  // for this employee
73
72
  const sValue = row.getCell(c).toString().trim();