@measurequick/measurequick-report-generator 1.5.62 → 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
|
@@ -103,10 +103,10 @@ export async function getReport(payload) {
|
|
|
103
103
|
formPg1.getTextField('Block4-Row'+ row +'-Col2').setText(payload.equipment.equipment_age.toString());
|
|
104
104
|
row++;
|
|
105
105
|
}
|
|
106
|
-
if (payload.project.franklin_stable_15_minutes
|
|
106
|
+
if (payload.project.franklin_stable_15_minutes){
|
|
107
107
|
formPg1.getTextField('Block4-Row'+ row +'-Col1').setText('Stable/Operational for 15 Mins:');
|
|
108
108
|
//Block4-Row8-Col2: value
|
|
109
|
-
formPg1.getTextField('Block4-Row'+ row +'-Col2').setText(payload.project.franklin_stable_15_minutes
|
|
109
|
+
formPg1.getTextField('Block4-Row'+ row +'-Col2').setText(payload.project.franklin_stable_15_minutes);
|
|
110
110
|
row++;
|
|
111
111
|
}
|
|
112
112
|
else if (payload.tests&&payload.tests[0]&&payload.tests[0].testInfo&&payload.tests[0].testInfo.diagnostics.system_wide.stability===0){
|
|
@@ -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
|
}
|