@measurequick/measurequick-report-generator 1.5.127 → 1.5.129
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
|
@@ -455,7 +455,7 @@ export async function getReport(payload, _test) {
|
|
|
455
455
|
.getTextField("OutdoorAmbientTemperature")
|
|
456
456
|
.setText(
|
|
457
457
|
test_data.temperature_outdoor_dry_bulb
|
|
458
|
-
? (+
|
|
458
|
+
? (+test_data.temperature_outdoor_dry_bulb).toFixed(1) + " \u00B0F"
|
|
459
459
|
: "N/A"
|
|
460
460
|
);
|
|
461
461
|
|
|
@@ -364,7 +364,7 @@ export async function getReport(payload, _test) {
|
|
|
364
364
|
.toString() + " inH2O"
|
|
365
365
|
);
|
|
366
366
|
} else {
|
|
367
|
-
form.getTextField("TESPEntering").setText("
|
|
367
|
+
form.getTextField("TESPEntering").setText("N/A");
|
|
368
368
|
}
|
|
369
369
|
if (test["ductScreeningTestPoint" + tesp_factors.exiting]) {
|
|
370
370
|
form
|
|
@@ -375,7 +375,7 @@ export async function getReport(payload, _test) {
|
|
|
375
375
|
.toString() + " inH2O"
|
|
376
376
|
);
|
|
377
377
|
} else {
|
|
378
|
-
form.getTextField("TESPExiting").setText("
|
|
378
|
+
form.getTextField("TESPExiting").setText("N/A");
|
|
379
379
|
}
|
|
380
380
|
|
|
381
381
|
if (test["ductScreeningPressureDrop" + filter_pressure_drop])
|