@measurequick/measurequick-report-generator 1.0.26 → 1.0.27
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/assets/request.js +1 -19
- package/index.js +1 -1
- package/package.json +1 -1
package/assets/request.js
CHANGED
|
@@ -5,25 +5,7 @@ export const body = {
|
|
|
5
5
|
"reportTheme": "dark",
|
|
6
6
|
"techName": "David Zucco",
|
|
7
7
|
"profilePicturePlacement": "header",
|
|
8
|
-
"companyLogoPlacement": "header"
|
|
9
|
-
"customerFirstName": "David",
|
|
10
|
-
"customerLastName": "Zucco",
|
|
11
|
-
"customerAddressLine1": "1234 Test Street",
|
|
12
|
-
"customerAddressLine2": "Apt. 5",
|
|
13
|
-
"customerCity": "Columbus",
|
|
14
|
-
"customerState": "OH",
|
|
15
|
-
"customerZip": "44147",
|
|
16
|
-
"customerEmail": "test@email.com",
|
|
17
|
-
"customerPhone": "(123)-456-7899",
|
|
18
|
-
"systemNumber": "1234325657456",
|
|
19
|
-
"systenName": "Test System",
|
|
20
|
-
"systemId": "Test ID",
|
|
21
|
-
"systemLat": "43.436363",
|
|
22
|
-
"systemLng": "77.56436",
|
|
23
|
-
"systemType": "Split",
|
|
24
|
-
"systemMake": "Goodman",
|
|
25
|
-
"systemModel": "Model 3",
|
|
26
|
-
"systemSerial": "4958w9sgjdigjs9fadn"
|
|
8
|
+
"companyLogoPlacement": "header"
|
|
27
9
|
},
|
|
28
10
|
"units": {
|
|
29
11
|
"temperature": "F",
|
package/index.js
CHANGED
|
@@ -144,7 +144,7 @@ function printFooterData(techName, profilePicture, companyLogo) {
|
|
|
144
144
|
var y = 7;
|
|
145
145
|
var key;
|
|
146
146
|
for (let key in reportData.footerData) {
|
|
147
|
-
doc.text(`${reportData.footerData[key]}`, x, y);
|
|
147
|
+
//doc.text(`${reportData.footerData[key]}`, x, y);
|
|
148
148
|
y += s;
|
|
149
149
|
});
|
|
150
150
|
}
|