scheduler-node-models 1.0.147 → 1.0.149

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.147",
3
+ "version": "1.0.149",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "files": [
@@ -211,8 +211,10 @@ class LeaveReport extends general_1.Report {
211
211
  employeePTOHolidaySection(sheet, emp, row, year, showHoliday) {
212
212
  let annual = 0.0;
213
213
  let carry = 0.0;
214
- console.log(year);
215
214
  emp.balance.forEach(bal => {
215
+ if (emp.name.lastname.toLowerCase() === 'erne') {
216
+ console.log(JSON.stringify(bal));
217
+ }
216
218
  if (bal.year === year) {
217
219
  annual = bal.annual;
218
220
  carry = bal.carryover;