scheduler-node-models 1.2.88 → 1.2.89
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
|
@@ -138,7 +138,7 @@ class ExcelRowIngest {
|
|
|
138
138
|
// create the excel row with the employee's standard workday.
|
|
139
139
|
this.team.workcodes.forEach(wc => {
|
|
140
140
|
if (wc.isLeave && wc.altcode
|
|
141
|
-
&& sValue.toLowerCase() === wc.altcode) {
|
|
141
|
+
&& sValue.toLowerCase() === wc.altcode.toLowerCase()) {
|
|
142
142
|
const eRow = new excelRow_1.ExcelRow();
|
|
143
143
|
eRow.date = new Date(colDate);
|
|
144
144
|
eRow.employee = emp.companyinfo.employeeid;
|