scheduler-node-models 1.0.91 → 1.0.93

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.91",
3
+ "version": "1.0.93",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "files": [
@@ -773,6 +773,7 @@ class Employee {
773
773
  if (current.getTime() >= labor.startDate.getTime()
774
774
  && current.getTime() <= labor.endDate.getTime()) {
775
775
  const wd = this.getWorkday(current);
776
+ console.log(JSON.stringify(wd));
776
777
  if (wd && wd.code !== '') {
777
778
  codes.forEach(code => {
778
779
  if (code.id.toLowerCase() === wd.code.toLowerCase() && !code.isLeave) {