@measurequick/measurequick-report-generator 1.5.63 → 1.5.64
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
|
@@ -133,8 +133,8 @@ export async function getReport(payload) {
|
|
|
133
133
|
//Block4-Row7-Col1: Age of System:
|
|
134
134
|
formPg1.getTextField('Block4-Row'+ row +'-Col1').setText('Cleaned Condenser / Evap:');
|
|
135
135
|
//Block4-Row7-Col2: value
|
|
136
|
-
let text = (payload.
|
|
137
|
-
(payload.
|
|
136
|
+
let text = (payload.project.franklin_indoor_coil_cleaned ? payload.equipment.franklin_indoor_coil_cleaned : "--") + " / " +
|
|
137
|
+
(payload.project.franklin_outdoor_coil_cleaned ? payload.equipment.franklin_outdoor_coil_cleaned : "--");
|
|
138
138
|
formPg1.getTextField('Block4-Row'+ row +'-Col2').setText(text);
|
|
139
139
|
row++;
|
|
140
140
|
}
|