scheduler-node-models 1.0.148 → 1.0.150
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
@@ -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;
|