scheduler-node-models 1.0.53 → 1.0.54
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
@@ -368,7 +368,7 @@ class ChargeStatusReport extends general_1.Report {
|
|
368
368
|
style.fill = this.fills.get('ltblue');
|
369
369
|
}
|
370
370
|
style.numFmt = this.numformats.get('sum');
|
371
|
-
this.setCell(stats, this.getCellID(3, statsRow), this.getCellID(3, statsRow), style,
|
371
|
+
this.setCell(stats, this.getCellID(3, statsRow), this.getCellID(3, statsRow), style, totalHours);
|
372
372
|
let formula = `SUMIF(${sheetLabel}!${this.getCellID(5, 5)}:`
|
373
373
|
+ `${this.getCellID(5, row)}, "*${codeText}*", ${sheetLabel}!`
|
374
374
|
+ `${this.getCellID(column, 5)}:${this.getCellID(column, row)})`;
|
@@ -423,7 +423,7 @@ class ChargeStatusReport extends general_1.Report {
|
|
423
423
|
style.numFmt = this.numformats.get('pct');
|
424
424
|
const oformula = new general_1.Formula(`IFERROR(${this.getCellID(5, row)}/`
|
425
425
|
+ `${this.getCellID(3, row)},"N/A")`);
|
426
|
-
this.setCell(sheet, this.getCellID(
|
426
|
+
this.setCell(sheet, this.getCellID(10, row), this.getCellID(10, row), style, oformula);
|
427
427
|
}
|
428
428
|
}
|
429
429
|
}
|