scheduler-node-models 1.2.39 → 1.2.41

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.39",
3
+ "version": "1.2.41",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "files": [
@@ -56,7 +56,7 @@ class SAPIngest {
56
56
  // get the data from the worksheet
57
57
  worksheet.eachRow((row, r) => {
58
58
  let value = row.getCell(explanation);
59
- if (value && !value.toString().toLowerCase().includes('total')) {
59
+ if (r > 1 && value && !value.toString().toLowerCase().includes('total')) {
60
60
  // this row is pertainent data, so complete an excelrow object for the data
61
61
  // in the row
62
62
  const eRow = new excelRow_1.ExcelRow();