scheduler-node-models 1.2.40 → 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
|
@@ -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 (r >
|
|
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();
|