@measurequick/measurequick-report-generator 1.4.76 → 1.4.77
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
|
@@ -189,7 +189,7 @@ export async function getReport(payload, _test) {
|
|
|
189
189
|
let passFails = ["electrical_system_pass_fail", "air_distribution_system_pass_fail", "air_filtration_system_pass_fail", "condensate_drain_system_pass_fail", "refrigerant_charge_pass_fail", "outdoor_equipment_pass_fail", "indoor_equipment_pass_fail", "cooling_capacity_pass_fail", "cooling_electrical_efficiency_pass_fail"];
|
|
190
190
|
let pfLabels = ["Electrical system", "Air distribution system", "Air filtration system", "Condensate drain system", "Refrigerant charge", "Outdoor equipment", "Indoor equipment", "Cooling capacity", "Cooling electrical efficiency"];
|
|
191
191
|
for (let i = 1; i <= passFails.length; i++) {
|
|
192
|
-
if ((passFails[i - 1]=== 'electrical_system_pass_fail' || passFails[i - 1]=== 'cooling_electrical_efficiency_pass_fail')
|
|
192
|
+
if ((passFails[i - 1]=== 'electrical_system_pass_fail' || passFails[i - 1]=== 'cooling_electrical_efficiency_pass_fail') && util.projectIsGoettl(payload.project)){}
|
|
193
193
|
else {
|
|
194
194
|
let meas = t[passFails[i - 1]];
|
|
195
195
|
let icon = meas == "Pass" || meas == "High" || meas == "Mid" ? iconRangeGreen : iconRangeRed;
|