tango-app-api-infra 3.8.3 → 3.8.5
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/README.md +28 -28
- package/package.json +1 -1
- package/src/controllers/footfallDirectory.controllers.js +115 -27
- package/src/dtos/footfallDirectory.dtos.js +11 -0
- package/src/hbs/closeTicekt.hbs +288 -288
- package/src/hbs/createTicket.hbs +287 -287
- package/src/hbs/dailyInfraReport.hbs +680 -680
- package/src/hbs/invoice.hbs +1576 -1576
- package/src/hbs/refreshTicket.hbs +291 -291
|
@@ -1,681 +1,681 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
|
|
4
|
-
<head>
|
|
5
|
-
<meta charset="utf-8">
|
|
6
|
-
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
7
|
-
<meta name="x-apple-disable-message-reformatting">
|
|
8
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
9
|
-
<title>Account Addons</title>
|
|
10
|
-
<style type="text/css">
|
|
11
|
-
a {
|
|
12
|
-
text-decoration: none;
|
|
13
|
-
outline: none;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
@media (max-width: 649px) {
|
|
17
|
-
.o_col-full {
|
|
18
|
-
max-width: 100% !important;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.o_col-half {
|
|
22
|
-
max-width: 50% !important;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.o_hide-lg {
|
|
26
|
-
display: inline-block !important;
|
|
27
|
-
font-size: inherit !important;
|
|
28
|
-
max-height: none !important;
|
|
29
|
-
line-height: inherit !important;
|
|
30
|
-
overflow: visible !important;
|
|
31
|
-
width: auto !important;
|
|
32
|
-
visibility: visible !important;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.o_hide-xs,
|
|
36
|
-
.o_hide-xs.o_col_i {
|
|
37
|
-
display: none !important;
|
|
38
|
-
font-size: 0 !important;
|
|
39
|
-
max-height: 0 !important;
|
|
40
|
-
width: 0 !important;
|
|
41
|
-
line-height: 0 !important;
|
|
42
|
-
overflow: hidden !important;
|
|
43
|
-
visibility: hidden !important;
|
|
44
|
-
height: 0 !important;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.o_xs-center {
|
|
48
|
-
text-align: center !important;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.o_xs-left {
|
|
52
|
-
text-align: left !important;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.o_xs-right {
|
|
56
|
-
text-align: left !important;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
table.o_xs-left {
|
|
60
|
-
margin-left: 0 !important;
|
|
61
|
-
margin-right: auto !important;
|
|
62
|
-
float: none !important;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
table.o_xs-right {
|
|
66
|
-
margin-left: auto !important;
|
|
67
|
-
margin-right: 0 !important;
|
|
68
|
-
float: none !important;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
table.o_xs-center {
|
|
72
|
-
margin-left: auto !important;
|
|
73
|
-
margin-right: auto !important;
|
|
74
|
-
float: none !important;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
h1.o_heading {
|
|
78
|
-
font-size: 32px !important;
|
|
79
|
-
line-height: 41px !important;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
h2.o_heading {
|
|
83
|
-
font-size: 26px !important;
|
|
84
|
-
line-height: 37px !important;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
h3.o_heading {
|
|
88
|
-
font-size: 20px !important;
|
|
89
|
-
line-height: 30px !important;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.o_xs-py-md {
|
|
93
|
-
padding-top: 24px !important;
|
|
94
|
-
padding-bottom: 24px !important;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.o_xs-pt-xs {
|
|
98
|
-
padding-top: 8px !important;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.o_xs-pb-xs {
|
|
102
|
-
padding-bottom: 8px !important;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
@media screen {
|
|
107
|
-
@font-face {
|
|
108
|
-
font-family: 'Roboto';
|
|
109
|
-
font-style: normal;
|
|
110
|
-
font-weight: 400;
|
|
111
|
-
src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format("woff2");
|
|
112
|
-
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
@font-face {
|
|
116
|
-
font-family: 'Roboto';
|
|
117
|
-
font-style: normal;
|
|
118
|
-
font-weight: 400;
|
|
119
|
-
src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxK.woff2) format("woff2");
|
|
120
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
@font-face {
|
|
124
|
-
font-family: 'Roboto';
|
|
125
|
-
font-style: normal;
|
|
126
|
-
font-weight: 700;
|
|
127
|
-
src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2) format("woff2");
|
|
128
|
-
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
@font-face {
|
|
132
|
-
font-family: 'Roboto';
|
|
133
|
-
font-style: normal;
|
|
134
|
-
font-weight: 700;
|
|
135
|
-
src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format("woff2");
|
|
136
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.o_sans,
|
|
140
|
-
.o_heading {
|
|
141
|
-
font-family: "Roboto", sans-serif !important;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.o_heading,
|
|
145
|
-
strong,
|
|
146
|
-
b {
|
|
147
|
-
font-weight: 700 !important;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
a[x-apple-data-detectors] {
|
|
151
|
-
color: inherit !important;
|
|
152
|
-
text-decoration: none !important;
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
</style>
|
|
156
|
-
|
|
157
|
-
</head>
|
|
158
|
-
|
|
159
|
-
<body class="o_body o_bg-light"
|
|
160
|
-
style="width: 100%;margin: 0px;padding: 0px;-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;background-color: #dbe5ea;">
|
|
161
|
-
<!-- preview-text -->
|
|
162
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
163
|
-
<tbody>
|
|
164
|
-
<tr>
|
|
165
|
-
<td class="o_hide" align="center"
|
|
166
|
-
style="display: none;font-size: 0;max-height: 0;width: 0;line-height: 0;overflow: hidden;mso-hide: all;visibility: hidden;">
|
|
167
|
-
Email Summary (Hidden)</td>
|
|
168
|
-
</tr>
|
|
169
|
-
</tbody>
|
|
170
|
-
</table>
|
|
171
|
-
<!-- header-primary-button -->
|
|
172
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
173
|
-
<tbody>
|
|
174
|
-
<tr>
|
|
175
|
-
<td class="o_bg-light o_px-xs o_pt-lg o_xs-pt-xs" align="center"
|
|
176
|
-
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;padding-top: 32px;">
|
|
177
|
-
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
178
|
-
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
179
|
-
style="max-width: 800px;margin: 0 auto;">
|
|
180
|
-
<tbody>
|
|
181
|
-
<tr>
|
|
182
|
-
<td class="o_re o_bg-primary o_px o_pb-md o_br-t" align="center"
|
|
183
|
-
style="font-size: 0;vertical-align: top;background-color: #ffffff;border-radius: 4px 4px 0px 0px;padding-left: 16px;padding-right: 16px;padding-bottom: 24px;">
|
|
184
|
-
<!--[if mso]><table cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td width="200" align="left" valign="top" style="padding:0px 8px;"><![endif]-->
|
|
185
|
-
<div class="o_col o_col-2"
|
|
186
|
-
style="display: inline-block;vertical-align: top;width: 100%;max-width: 200px;">
|
|
187
|
-
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
188
|
-
<div class="o_px-xs o_sans o_text o_left o_xs-center"
|
|
189
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;text-align: left;padding-left: 8px;padding-right: 8px;">
|
|
190
|
-
<p style="margin-top: 0px;margin-bottom: 0px;"><a class="o_text-white" href="https://example.com/"
|
|
191
|
-
style="text-decoration: none;outline: none;color: #ffffff;">
|
|
192
|
-
<img
|
|
193
|
-
src="{{domain}}/logo.png">
|
|
194
|
-
</p>
|
|
195
|
-
</div>
|
|
196
|
-
</div>
|
|
197
|
-
<!--[if mso]></td><td width="400" align="right" valign="top" style="padding:0px 8px;"><![endif]-->
|
|
198
|
-
<div class="o_col o_col-4"
|
|
199
|
-
style="display: inline-block;vertical-align: top;width: 100%;max-width: 400px;">
|
|
200
|
-
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
201
|
-
<div class="o_px-xs" style="padding-left: 8px;padding-right: 8px;">
|
|
202
|
-
</div>
|
|
203
|
-
</div>
|
|
204
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
205
|
-
</td>
|
|
206
|
-
</tr>
|
|
207
|
-
</tbody>
|
|
208
|
-
</table>
|
|
209
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
210
|
-
</td>
|
|
211
|
-
</tr>
|
|
212
|
-
</tbody>
|
|
213
|
-
</table>
|
|
214
|
-
<!-- hero-primary -->
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
<!-- content-lg -->
|
|
218
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
219
|
-
<tbody>
|
|
220
|
-
<tr>
|
|
221
|
-
<td class="o_bg-light o_px-xs" align="center"
|
|
222
|
-
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
223
|
-
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
224
|
-
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
225
|
-
style="max-width: 800px;margin: 0 auto;">
|
|
226
|
-
<tbody>
|
|
227
|
-
<tr>
|
|
228
|
-
<td class="o_bg-white o_px-md o_py" align="center"
|
|
229
|
-
style="background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;">
|
|
230
|
-
<!--[if mso]><table width="584" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td align="center"><![endif]-->
|
|
231
|
-
<div class="o_col-6s o_sans o_text o_text-secondary o_center"
|
|
232
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: left;">
|
|
233
|
-
<h4 class="o_heading o_text-dark o_mb-xs"
|
|
234
|
-
style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 8px;color: #242b3d;font-size: 18px;line-height: 23px;">
|
|
235
|
-
Dear {{userName}},</h4>
|
|
236
|
-
<p style="margin-top: 0px;margin-bottom: 0px;">Take a look at your store tech infrastructure
|
|
237
|
-
downtime report.</p>
|
|
238
|
-
</div>
|
|
239
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
240
|
-
</td>
|
|
241
|
-
</tr>
|
|
242
|
-
</tbody>
|
|
243
|
-
</table>
|
|
244
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
245
|
-
</td>
|
|
246
|
-
</tr>
|
|
247
|
-
</tbody>
|
|
248
|
-
</table>
|
|
249
|
-
<!-- label-xs -->
|
|
250
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
251
|
-
<tbody>
|
|
252
|
-
<tr>
|
|
253
|
-
<td class="o_bg-light o_px-xs" align="center"
|
|
254
|
-
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
255
|
-
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
256
|
-
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
257
|
-
style="max-width: 800px;margin: 0 auto;">
|
|
258
|
-
<tbody>
|
|
259
|
-
<tr>
|
|
260
|
-
<td class="o_bg-white o_px-md o_py o_sans o_text-xs o_text-light" align="center"
|
|
261
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ffffff;color: #82899a;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;">
|
|
262
|
-
<p class="o_mb" style="margin-top: 0px;margin-bottom: 16px;"><strong>Report Name</strong></p>
|
|
263
|
-
<table role="presentation" cellspacing="0" cellpadding="0" border="0">
|
|
264
|
-
<tbody>
|
|
265
|
-
<tr>
|
|
266
|
-
<td width="284" class="o_bg-ultra_light o_br o_text-xs o_sans o_px-xs o_py" align="center"
|
|
267
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 8px;padding-right: 8px;padding-top: 16px;padding-bottom: 16px;">
|
|
268
|
-
<p class="o_text-dark" style="color: #242b3d;margin-top: 0px;margin-bottom: 0px;">
|
|
269
|
-
<strong>Infra Downtime Report</strong></p>
|
|
270
|
-
</td>
|
|
271
|
-
</tr>
|
|
272
|
-
</tbody>
|
|
273
|
-
</table>
|
|
274
|
-
</td>
|
|
275
|
-
</tr>
|
|
276
|
-
</tbody>
|
|
277
|
-
</table>
|
|
278
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
279
|
-
</td>
|
|
280
|
-
</tr>
|
|
281
|
-
</tbody>
|
|
282
|
-
</table>
|
|
283
|
-
<!-- label-xs -->
|
|
284
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
285
|
-
<tbody>
|
|
286
|
-
<tr>
|
|
287
|
-
<td class="o_bg-light o_px-xs" align="center"
|
|
288
|
-
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
289
|
-
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
290
|
-
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
291
|
-
style="max-width: 800px;margin: 0 auto;">
|
|
292
|
-
<tbody>
|
|
293
|
-
<tr>
|
|
294
|
-
<td class="o_bg-white o_px-md o_py o_sans o_text-xs o_text-light" align="center"
|
|
295
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ffffff;color: #82899a;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;">
|
|
296
|
-
<p class="o_mb" style="margin-top: 0px;margin-bottom: 16px;"><strong>Report Date</strong></p>
|
|
297
|
-
<table role="presentation" cellspacing="0" cellpadding="0" border="0">
|
|
298
|
-
<tbody>
|
|
299
|
-
<tr>
|
|
300
|
-
<td width="284" class="o_bg-ultra_light o_br o_text-xs o_sans o_px-xs o_py" align="center"
|
|
301
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 8px;padding-right: 8px;padding-top: 16px;padding-bottom: 16px;">
|
|
302
|
-
<p class="o_text-dark" style="color: #242b3d;margin-top: 0px;margin-bottom: 0px;">
|
|
303
|
-
<strong>{{reportdate}}</strong></p>
|
|
304
|
-
</td>
|
|
305
|
-
</tr>
|
|
306
|
-
</tbody>
|
|
307
|
-
</table>
|
|
308
|
-
</td>
|
|
309
|
-
</tr>
|
|
310
|
-
</tbody>
|
|
311
|
-
</table>
|
|
312
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
313
|
-
</td>
|
|
314
|
-
</tr>
|
|
315
|
-
</tbody>
|
|
316
|
-
</table>
|
|
317
|
-
<!-- spacer -->
|
|
318
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
319
|
-
<tbody>
|
|
320
|
-
<tr>
|
|
321
|
-
<td class="o_bg-light o_px-xs" align="center"
|
|
322
|
-
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
323
|
-
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
324
|
-
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
325
|
-
style="max-width: 800px;margin: 0 auto;">
|
|
326
|
-
<tbody>
|
|
327
|
-
<tr>
|
|
328
|
-
<td class="o_bg-white o_px-md o_py o_sans o_text-xs o_text-light" align="center"
|
|
329
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ffffff;color: #82899a;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;">
|
|
330
|
-
<p class="o_mb" style="margin-top: 0px;margin-bottom: 16px;"><strong>Avg Downtime</strong></p>
|
|
331
|
-
<table role="presentation" cellspacing="0" cellpadding="0" border="0">
|
|
332
|
-
<tbody>
|
|
333
|
-
<tr>
|
|
334
|
-
<td width="284" class="o_bg-ultra_light o_br o_text-xs o_sans o_px-xs o_py" align="center"
|
|
335
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 8px;padding-right: 8px;padding-top: 16px;padding-bottom: 16px;">
|
|
336
|
-
<p class="o_text-dark" style="color: #242b3d;margin-top: 0px;margin-bottom: 0px;">
|
|
337
|
-
<strong>{{avgDownTime}} Mins</strong></p>
|
|
338
|
-
</td>
|
|
339
|
-
</tr>
|
|
340
|
-
</tbody>
|
|
341
|
-
</table>
|
|
342
|
-
</td>
|
|
343
|
-
</tr>
|
|
344
|
-
</tbody>
|
|
345
|
-
</table>
|
|
346
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
347
|
-
</td>
|
|
348
|
-
</tr>
|
|
349
|
-
</tbody>
|
|
350
|
-
</table>
|
|
351
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
352
|
-
<tbody>
|
|
353
|
-
<tr>
|
|
354
|
-
<td class="o_bg-light o_px-xs" align="center"
|
|
355
|
-
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
356
|
-
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
357
|
-
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
358
|
-
style="max-width: 800px;margin: 0 auto;">
|
|
359
|
-
<tbody>
|
|
360
|
-
<tr>
|
|
361
|
-
<td class="o_bg-white"
|
|
362
|
-
style="font-size: 24px;line-height: 24px;height: 24px;background-color: #ffffff;"> </td>
|
|
363
|
-
</tr>
|
|
364
|
-
</tbody>
|
|
365
|
-
</table>
|
|
366
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
367
|
-
</td>
|
|
368
|
-
</tr>
|
|
369
|
-
</tbody>
|
|
370
|
-
</table>
|
|
371
|
-
<!-- order-summary -->
|
|
372
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
373
|
-
<tbody>
|
|
374
|
-
<tr>
|
|
375
|
-
<td class="o_bg-light o_px-xs" align="center"
|
|
376
|
-
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
377
|
-
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
378
|
-
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
379
|
-
style="max-width: 800px;margin: 0 auto;">
|
|
380
|
-
<tbody>
|
|
381
|
-
<tr>
|
|
382
|
-
<td class="o_re o_bg-white o_px o_pb-md" align="center"
|
|
383
|
-
style="font-size: 0;vertical-align: top;background-color: #ffffff;padding-left: 16px;padding-right: 16px;padding-bottom: 24px;">
|
|
384
|
-
<!--[if mso]><table cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td width="200" align="center" valign="top" style="padding: 0px 8px;"><![endif]-->
|
|
385
|
-
<div class="o_col o_col-2 o_col-full"
|
|
386
|
-
style="display: inline-block;vertical-align: top;width: 100%;max-width: 200px;">
|
|
387
|
-
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
388
|
-
<div class="o_px-xs" style="padding-left: 8px;padding-right: 8px;">
|
|
389
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
390
|
-
<tbody>
|
|
391
|
-
<tr>
|
|
392
|
-
<td class="o_bg-ultra_light o_br o_text-xs o_sans o_px o_py-md" align="center"
|
|
393
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 16px;padding-right: 16px;padding-top: 24px;padding-bottom: 24px;">
|
|
394
|
-
<h1 class="o_heading o_text-dark"
|
|
395
|
-
style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 0px;color: #242b3d;font-size: 26px;line-height: 47px;">
|
|
396
|
-
{{issueCount}} Stores</h1>
|
|
397
|
-
<p class="o_text-light" style="color: #82899a;margin-top: 0px;margin-bottom: 0px;">
|
|
398
|
-
Infra Store</p>
|
|
399
|
-
</td>
|
|
400
|
-
</tr>
|
|
401
|
-
</tbody>
|
|
402
|
-
</table>
|
|
403
|
-
</div>
|
|
404
|
-
</div>
|
|
405
|
-
<!--[if mso]></td><td width="200" align="center" valign="top" style="padding: 0px 8px;"><![endif]-->
|
|
406
|
-
<div class="o_col o_col-2 o_col-full"
|
|
407
|
-
style="display: inline-block;vertical-align: top;width: 100%;max-width: 200px;">
|
|
408
|
-
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
409
|
-
<div class="o_px-xs" style="padding-left: 8px;padding-right: 8px;">
|
|
410
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
411
|
-
<tbody>
|
|
412
|
-
<tr>
|
|
413
|
-
<td class="o_bg-ultra_light o_br o_text-xs o_sans o_px o_py-md" align="center"
|
|
414
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 16px;padding-right: 16px;padding-top: 24px;padding-bottom: 24px;">
|
|
415
|
-
<h1 class="o_heading o_text-dark"
|
|
416
|
-
style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 0px;color: #242b3d;font-size: 26px;line-height: 47px;">
|
|
417
|
-
{{content.cameraIssue}} Stores</h1>
|
|
418
|
-
<p class="o_text-light" style="color: #82899a;margin-top: 0px;margin-bottom: 0px;">
|
|
419
|
-
Camera Issue</p>
|
|
420
|
-
</td>
|
|
421
|
-
</tr>
|
|
422
|
-
</tbody>
|
|
423
|
-
</table>
|
|
424
|
-
</div>
|
|
425
|
-
</div>
|
|
426
|
-
<!--[if mso]></td><td width="200" align="center" valign="top" style="padding: 0px 8px;"><![endif]-->
|
|
427
|
-
<div class="o_col o_col-2 o_col-full"
|
|
428
|
-
style="display: inline-block;vertical-align: top;width: 100%;max-width: 200px;">
|
|
429
|
-
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
430
|
-
<div class="o_px-xs" style="padding-left: 8px;padding-right: 8px;">
|
|
431
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
432
|
-
<tbody>
|
|
433
|
-
<tr>
|
|
434
|
-
<td class="o_bg-ultra_light o_br o_text-xs o_sans o_px o_py-md" align="center"
|
|
435
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 16px;padding-right: 16px;padding-top: 24px;padding-bottom: 24px;">
|
|
436
|
-
<h1 class="o_heading o_text-dark"
|
|
437
|
-
style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 0px;color: #242b3d;font-size: 26px;line-height: 47px;">
|
|
438
|
-
{{content.storeoperationIssue}} Stores</h1>
|
|
439
|
-
<p class="o_text-light" style="color: #82899a;margin-top: 0px;margin-bottom: 0px;">
|
|
440
|
-
Operation Issue</p>
|
|
441
|
-
</td>
|
|
442
|
-
</tr>
|
|
443
|
-
</tbody>
|
|
444
|
-
</table>
|
|
445
|
-
</div>
|
|
446
|
-
</div>
|
|
447
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
448
|
-
</td>
|
|
449
|
-
</tr>
|
|
450
|
-
</tbody>
|
|
451
|
-
</table>
|
|
452
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
453
|
-
</td>
|
|
454
|
-
</tr>
|
|
455
|
-
</tbody>
|
|
456
|
-
</table>
|
|
457
|
-
<!-- addon-row -->
|
|
458
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
459
|
-
<tbody>
|
|
460
|
-
<tr>
|
|
461
|
-
<td class="o_bg-light o_px-xs" align="center"
|
|
462
|
-
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
463
|
-
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
464
|
-
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
465
|
-
style="max-width: 800px;margin: 0 auto;">
|
|
466
|
-
<tbody>
|
|
467
|
-
<tr>
|
|
468
|
-
<td class="o_re o_bg-white o_px o_pb-md" align="center"
|
|
469
|
-
style="font-size: 0;vertical-align: top;background-color: #ffffff;padding-left: 16px;padding-right: 16px;padding-bottom: 24px;">
|
|
470
|
-
<!--[if mso]><table cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td width="200" align="center" valign="top" style="padding: 0px 8px;"><![endif]-->
|
|
471
|
-
<div class="o_col o_col-2 o_col-full"
|
|
472
|
-
style="display: inline-block;vertical-align: top;width: 100%;max-width: 200px;">
|
|
473
|
-
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
474
|
-
<div class="o_px-xs" style="padding-left: 8px;padding-right: 8px;">
|
|
475
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
476
|
-
<tbody>
|
|
477
|
-
<tr>
|
|
478
|
-
<td class="o_bg-ultra_light o_br o_text-xs o_sans o_px o_py-md" align="center"
|
|
479
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 16px;padding-right: 16px;padding-top: 24px;padding-bottom: 24px;">
|
|
480
|
-
<h1 class="o_heading o_text-dark"
|
|
481
|
-
style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 0px;color: #242b3d;font-size: 26px;line-height: 47px;">
|
|
482
|
-
{{content.internetIssue}} Stores</h1>
|
|
483
|
-
<p class="o_text-light" style="color: #82899a;margin-top: 0px;margin-bottom: 0px;">
|
|
484
|
-
Internet Issue</p>
|
|
485
|
-
</td>
|
|
486
|
-
</tr>
|
|
487
|
-
</tbody>
|
|
488
|
-
</table>
|
|
489
|
-
</div>
|
|
490
|
-
</div>
|
|
491
|
-
<!--[if mso]></td><td width="200" align="center" valign="top" style="padding: 0px 8px;"><![endif]-->
|
|
492
|
-
<div class="o_col o_col-2 o_col-full"
|
|
493
|
-
style="display: inline-block;vertical-align: top;width: 100%;max-width: 200px;">
|
|
494
|
-
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
495
|
-
<div class="o_px-xs" style="padding-left: 8px;padding-right: 8px;">
|
|
496
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
497
|
-
<tbody>
|
|
498
|
-
<tr>
|
|
499
|
-
<td class="o_bg-ultra_light o_br o_text-xs o_sans o_px o_py-md" align="center"
|
|
500
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 16px;padding-right: 16px;padding-top: 24px;padding-bottom: 24px;">
|
|
501
|
-
<h1 class="o_heading o_text-dark"
|
|
502
|
-
style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 0px;color: #242b3d;font-size: 26px;line-height: 47px;">
|
|
503
|
-
{{content.applicationIssue}} Stores</h1>
|
|
504
|
-
<p class="o_text-light" style="color: #82899a;margin-top: 0px;margin-bottom: 0px;">
|
|
505
|
-
Application Issue</p>
|
|
506
|
-
</td>
|
|
507
|
-
</tr>
|
|
508
|
-
</tbody>
|
|
509
|
-
</table>
|
|
510
|
-
</div>
|
|
511
|
-
</div>
|
|
512
|
-
<!--[if mso]></td><td width="200" align="center" valign="top" style="padding: 0px 8px;"><![endif]-->
|
|
513
|
-
<div class="o_col o_col-2 o_col-full"
|
|
514
|
-
style="display: inline-block;vertical-align: top;width: 100%;max-width: 200px;">
|
|
515
|
-
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
516
|
-
<div class="o_px-xs" style="padding-left: 8px;padding-right: 8px;">
|
|
517
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
518
|
-
<tbody>
|
|
519
|
-
<tr>
|
|
520
|
-
<td class="o_bg-ultra_light o_br o_text-xs o_sans o_px o_py-md" align="center"
|
|
521
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 16px;padding-right: 16px;padding-top: 24px;padding-bottom: 24px;">
|
|
522
|
-
<h1 class="o_heading o_text-dark"
|
|
523
|
-
style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 0px;color: #242b3d;font-size: 26px;line-height: 47px;">
|
|
524
|
-
{{content.systemIssue}} Stores</h1>
|
|
525
|
-
<p class="o_text-light" style="color: #82899a;margin-top: 0px;margin-bottom: 0px;">
|
|
526
|
-
System Issue</p>
|
|
527
|
-
</td>
|
|
528
|
-
</tr>
|
|
529
|
-
</tbody>
|
|
530
|
-
</table>
|
|
531
|
-
</div>
|
|
532
|
-
</div>
|
|
533
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
534
|
-
</td>
|
|
535
|
-
</tr>
|
|
536
|
-
</tbody>
|
|
537
|
-
</table>
|
|
538
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
539
|
-
</td>
|
|
540
|
-
</tr>
|
|
541
|
-
</tbody>
|
|
542
|
-
</table>
|
|
543
|
-
|
|
544
|
-
<!-- spacer -->
|
|
545
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
546
|
-
<tbody>
|
|
547
|
-
<tr>
|
|
548
|
-
<td class="o_bg-light o_px-xs" align="center"
|
|
549
|
-
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
550
|
-
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
551
|
-
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
552
|
-
style="max-width: 800px;margin: 0 auto;">
|
|
553
|
-
<tbody>
|
|
554
|
-
<tr>
|
|
555
|
-
<td class="o_bg-white"
|
|
556
|
-
style="font-size: 24px;line-height: 24px;height: 24px;background-color: #ffffff;"> </td>
|
|
557
|
-
</tr>
|
|
558
|
-
</tbody>
|
|
559
|
-
</table>
|
|
560
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
561
|
-
</td>
|
|
562
|
-
</tr>
|
|
563
|
-
</tbody>
|
|
564
|
-
</table>
|
|
565
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
566
|
-
<tbody>
|
|
567
|
-
<tr>
|
|
568
|
-
<td class="o_bg-light o_px-xs" align="center" style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
569
|
-
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
570
|
-
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation" style="max-width: 800px;margin: 0 auto;">
|
|
571
|
-
<tbody>
|
|
572
|
-
<tr>
|
|
573
|
-
<td class="o_bg-white o_px-md o_py-xs" align="center" style="background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 8px;padding-bottom: 8px;">
|
|
574
|
-
<table align="center" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
575
|
-
<tbody>
|
|
576
|
-
<tr>
|
|
577
|
-
<td width="300" class="o_btn o_bg-primary o_br o_heading o_text" align="center" style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #00A3FF;border-radius: 4px;">
|
|
578
|
-
<a class="o_text-white" href="{{Uidomain}}" style="text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;">Check Detailed report</a>
|
|
579
|
-
</td>
|
|
580
|
-
</tr>
|
|
581
|
-
</tbody>
|
|
582
|
-
</table>
|
|
583
|
-
</td>
|
|
584
|
-
</tr>
|
|
585
|
-
</tbody>
|
|
586
|
-
</table>
|
|
587
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
588
|
-
</td>
|
|
589
|
-
</tr>
|
|
590
|
-
</tbody>
|
|
591
|
-
</table>
|
|
592
|
-
<!-- content -->
|
|
593
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
594
|
-
<tbody>
|
|
595
|
-
<tr>
|
|
596
|
-
<td class="o_bg-light o_px-xs" align="center"
|
|
597
|
-
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
598
|
-
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
599
|
-
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
600
|
-
style="max-width: 800px;margin: 0 auto;">
|
|
601
|
-
<tbody>
|
|
602
|
-
<tr>
|
|
603
|
-
<td class="o_bg-white o_px-md o_py" align="center"
|
|
604
|
-
style="background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;">
|
|
605
|
-
<!--[if mso]><table width="584" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td align="center"><![endif]-->
|
|
606
|
-
<div class="o_col-6s o_sans o_text o_text-secondary o_center"
|
|
607
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: left;">
|
|
608
|
-
<p style="margin-top: 0px;margin-bottom: 0px;">You're receiving this alert because your email is
|
|
609
|
-
configured for store infrastructure. To stop notifications, ask your admin to remove your email or
|
|
610
|
-
write to email {{csmEmail}} to opt out.</p>
|
|
611
|
-
<p>Regards,</p>
|
|
612
|
-
<p>Team Tango</p>
|
|
613
|
-
</div>
|
|
614
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
615
|
-
</td>
|
|
616
|
-
</tr>
|
|
617
|
-
</tbody>
|
|
618
|
-
</table>
|
|
619
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
620
|
-
</td>
|
|
621
|
-
</tr>
|
|
622
|
-
</tbody>
|
|
623
|
-
</table>
|
|
624
|
-
<!-- spacer-lg -->
|
|
625
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
626
|
-
<tbody>
|
|
627
|
-
<tr>
|
|
628
|
-
<td class="o_bg-light o_px-xs" align="center"
|
|
629
|
-
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
630
|
-
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
631
|
-
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
632
|
-
style="max-width: 800px;margin: 0 auto;">
|
|
633
|
-
<tbody>
|
|
634
|
-
<tr>
|
|
635
|
-
<td class="o_bg-white"
|
|
636
|
-
style="font-size: 48px;line-height: 48px;height: 48px;background-color: #ffffff;"> </td>
|
|
637
|
-
</tr>
|
|
638
|
-
</tbody>
|
|
639
|
-
</table>
|
|
640
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
641
|
-
</td>
|
|
642
|
-
</tr>
|
|
643
|
-
</tbody>
|
|
644
|
-
</table>
|
|
645
|
-
<!-- footer -->
|
|
646
|
-
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
647
|
-
<tbody>
|
|
648
|
-
<tr>
|
|
649
|
-
<td class="o_bg-light o_px-xs o_pb-lg o_xs-pb-xs" align="center"
|
|
650
|
-
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;padding-bottom: 32px;">
|
|
651
|
-
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
652
|
-
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
653
|
-
style="max-width: 800px;margin: 0 auto;">
|
|
654
|
-
<tbody>
|
|
655
|
-
<tr>
|
|
656
|
-
<td class="o_bg-dark o_px-md o_py-lg o_br-b" align="center"
|
|
657
|
-
style="background-color: #00A3FF;border-radius: 0px 0px 4px 4px;padding-left: 24px;padding-right: 24px;padding-top: 32px;padding-bottom: 32px;">
|
|
658
|
-
<!--[if mso]><table width="584" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td align="center"><![endif]-->
|
|
659
|
-
<div class="o_col-6s o_sans o_text-xs o_text-dark_light"
|
|
660
|
-
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;max-width: 584px;color: #ffffff;">
|
|
661
|
-
<p class="o_mb" style="margin-top: 0px;margin-bottom: 16px;"><a class="o_text-dark_light"
|
|
662
|
-
href="{{Uidomain}}" style="text-decoration: none;outline: none;color: #ffffff;"></a>
|
|
663
|
-
</p>
|
|
664
|
-
<p class="o_mb" style="margin-top: 0px;margin-bottom: 16px;">2024 © Tango Eye . All rights reserved.</p>
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
</div>
|
|
668
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
669
|
-
</td>
|
|
670
|
-
</tr>
|
|
671
|
-
</tbody>
|
|
672
|
-
</table>
|
|
673
|
-
<!--[if mso]></td></tr></table><![endif]-->
|
|
674
|
-
<div class="o_hide-xs" style="font-size: 64px; line-height: 64px; height: 64px;"> </div>
|
|
675
|
-
</td>
|
|
676
|
-
</tr>
|
|
677
|
-
</tbody>
|
|
678
|
-
</table>
|
|
679
|
-
</body>
|
|
680
|
-
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
7
|
+
<meta name="x-apple-disable-message-reformatting">
|
|
8
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
9
|
+
<title>Account Addons</title>
|
|
10
|
+
<style type="text/css">
|
|
11
|
+
a {
|
|
12
|
+
text-decoration: none;
|
|
13
|
+
outline: none;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@media (max-width: 649px) {
|
|
17
|
+
.o_col-full {
|
|
18
|
+
max-width: 100% !important;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.o_col-half {
|
|
22
|
+
max-width: 50% !important;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.o_hide-lg {
|
|
26
|
+
display: inline-block !important;
|
|
27
|
+
font-size: inherit !important;
|
|
28
|
+
max-height: none !important;
|
|
29
|
+
line-height: inherit !important;
|
|
30
|
+
overflow: visible !important;
|
|
31
|
+
width: auto !important;
|
|
32
|
+
visibility: visible !important;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.o_hide-xs,
|
|
36
|
+
.o_hide-xs.o_col_i {
|
|
37
|
+
display: none !important;
|
|
38
|
+
font-size: 0 !important;
|
|
39
|
+
max-height: 0 !important;
|
|
40
|
+
width: 0 !important;
|
|
41
|
+
line-height: 0 !important;
|
|
42
|
+
overflow: hidden !important;
|
|
43
|
+
visibility: hidden !important;
|
|
44
|
+
height: 0 !important;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.o_xs-center {
|
|
48
|
+
text-align: center !important;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.o_xs-left {
|
|
52
|
+
text-align: left !important;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.o_xs-right {
|
|
56
|
+
text-align: left !important;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
table.o_xs-left {
|
|
60
|
+
margin-left: 0 !important;
|
|
61
|
+
margin-right: auto !important;
|
|
62
|
+
float: none !important;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
table.o_xs-right {
|
|
66
|
+
margin-left: auto !important;
|
|
67
|
+
margin-right: 0 !important;
|
|
68
|
+
float: none !important;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
table.o_xs-center {
|
|
72
|
+
margin-left: auto !important;
|
|
73
|
+
margin-right: auto !important;
|
|
74
|
+
float: none !important;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
h1.o_heading {
|
|
78
|
+
font-size: 32px !important;
|
|
79
|
+
line-height: 41px !important;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
h2.o_heading {
|
|
83
|
+
font-size: 26px !important;
|
|
84
|
+
line-height: 37px !important;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
h3.o_heading {
|
|
88
|
+
font-size: 20px !important;
|
|
89
|
+
line-height: 30px !important;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.o_xs-py-md {
|
|
93
|
+
padding-top: 24px !important;
|
|
94
|
+
padding-bottom: 24px !important;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.o_xs-pt-xs {
|
|
98
|
+
padding-top: 8px !important;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.o_xs-pb-xs {
|
|
102
|
+
padding-bottom: 8px !important;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
@media screen {
|
|
107
|
+
@font-face {
|
|
108
|
+
font-family: 'Roboto';
|
|
109
|
+
font-style: normal;
|
|
110
|
+
font-weight: 400;
|
|
111
|
+
src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format("woff2");
|
|
112
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
@font-face {
|
|
116
|
+
font-family: 'Roboto';
|
|
117
|
+
font-style: normal;
|
|
118
|
+
font-weight: 400;
|
|
119
|
+
src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxK.woff2) format("woff2");
|
|
120
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
@font-face {
|
|
124
|
+
font-family: 'Roboto';
|
|
125
|
+
font-style: normal;
|
|
126
|
+
font-weight: 700;
|
|
127
|
+
src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2) format("woff2");
|
|
128
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
@font-face {
|
|
132
|
+
font-family: 'Roboto';
|
|
133
|
+
font-style: normal;
|
|
134
|
+
font-weight: 700;
|
|
135
|
+
src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format("woff2");
|
|
136
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.o_sans,
|
|
140
|
+
.o_heading {
|
|
141
|
+
font-family: "Roboto", sans-serif !important;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.o_heading,
|
|
145
|
+
strong,
|
|
146
|
+
b {
|
|
147
|
+
font-weight: 700 !important;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
a[x-apple-data-detectors] {
|
|
151
|
+
color: inherit !important;
|
|
152
|
+
text-decoration: none !important;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
</style>
|
|
156
|
+
|
|
157
|
+
</head>
|
|
158
|
+
|
|
159
|
+
<body class="o_body o_bg-light"
|
|
160
|
+
style="width: 100%;margin: 0px;padding: 0px;-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;background-color: #dbe5ea;">
|
|
161
|
+
<!-- preview-text -->
|
|
162
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
163
|
+
<tbody>
|
|
164
|
+
<tr>
|
|
165
|
+
<td class="o_hide" align="center"
|
|
166
|
+
style="display: none;font-size: 0;max-height: 0;width: 0;line-height: 0;overflow: hidden;mso-hide: all;visibility: hidden;">
|
|
167
|
+
Email Summary (Hidden)</td>
|
|
168
|
+
</tr>
|
|
169
|
+
</tbody>
|
|
170
|
+
</table>
|
|
171
|
+
<!-- header-primary-button -->
|
|
172
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
173
|
+
<tbody>
|
|
174
|
+
<tr>
|
|
175
|
+
<td class="o_bg-light o_px-xs o_pt-lg o_xs-pt-xs" align="center"
|
|
176
|
+
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;padding-top: 32px;">
|
|
177
|
+
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
178
|
+
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
179
|
+
style="max-width: 800px;margin: 0 auto;">
|
|
180
|
+
<tbody>
|
|
181
|
+
<tr>
|
|
182
|
+
<td class="o_re o_bg-primary o_px o_pb-md o_br-t" align="center"
|
|
183
|
+
style="font-size: 0;vertical-align: top;background-color: #ffffff;border-radius: 4px 4px 0px 0px;padding-left: 16px;padding-right: 16px;padding-bottom: 24px;">
|
|
184
|
+
<!--[if mso]><table cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td width="200" align="left" valign="top" style="padding:0px 8px;"><![endif]-->
|
|
185
|
+
<div class="o_col o_col-2"
|
|
186
|
+
style="display: inline-block;vertical-align: top;width: 100%;max-width: 200px;">
|
|
187
|
+
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
188
|
+
<div class="o_px-xs o_sans o_text o_left o_xs-center"
|
|
189
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;text-align: left;padding-left: 8px;padding-right: 8px;">
|
|
190
|
+
<p style="margin-top: 0px;margin-bottom: 0px;"><a class="o_text-white" href="https://example.com/"
|
|
191
|
+
style="text-decoration: none;outline: none;color: #ffffff;">
|
|
192
|
+
<img
|
|
193
|
+
src="{{domain}}/logo.png">
|
|
194
|
+
</p>
|
|
195
|
+
</div>
|
|
196
|
+
</div>
|
|
197
|
+
<!--[if mso]></td><td width="400" align="right" valign="top" style="padding:0px 8px;"><![endif]-->
|
|
198
|
+
<div class="o_col o_col-4"
|
|
199
|
+
style="display: inline-block;vertical-align: top;width: 100%;max-width: 400px;">
|
|
200
|
+
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
201
|
+
<div class="o_px-xs" style="padding-left: 8px;padding-right: 8px;">
|
|
202
|
+
</div>
|
|
203
|
+
</div>
|
|
204
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
205
|
+
</td>
|
|
206
|
+
</tr>
|
|
207
|
+
</tbody>
|
|
208
|
+
</table>
|
|
209
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
210
|
+
</td>
|
|
211
|
+
</tr>
|
|
212
|
+
</tbody>
|
|
213
|
+
</table>
|
|
214
|
+
<!-- hero-primary -->
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
<!-- content-lg -->
|
|
218
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
219
|
+
<tbody>
|
|
220
|
+
<tr>
|
|
221
|
+
<td class="o_bg-light o_px-xs" align="center"
|
|
222
|
+
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
223
|
+
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
224
|
+
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
225
|
+
style="max-width: 800px;margin: 0 auto;">
|
|
226
|
+
<tbody>
|
|
227
|
+
<tr>
|
|
228
|
+
<td class="o_bg-white o_px-md o_py" align="center"
|
|
229
|
+
style="background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;">
|
|
230
|
+
<!--[if mso]><table width="584" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td align="center"><![endif]-->
|
|
231
|
+
<div class="o_col-6s o_sans o_text o_text-secondary o_center"
|
|
232
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: left;">
|
|
233
|
+
<h4 class="o_heading o_text-dark o_mb-xs"
|
|
234
|
+
style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 8px;color: #242b3d;font-size: 18px;line-height: 23px;">
|
|
235
|
+
Dear {{userName}},</h4>
|
|
236
|
+
<p style="margin-top: 0px;margin-bottom: 0px;">Take a look at your store tech infrastructure
|
|
237
|
+
downtime report.</p>
|
|
238
|
+
</div>
|
|
239
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
240
|
+
</td>
|
|
241
|
+
</tr>
|
|
242
|
+
</tbody>
|
|
243
|
+
</table>
|
|
244
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
245
|
+
</td>
|
|
246
|
+
</tr>
|
|
247
|
+
</tbody>
|
|
248
|
+
</table>
|
|
249
|
+
<!-- label-xs -->
|
|
250
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
251
|
+
<tbody>
|
|
252
|
+
<tr>
|
|
253
|
+
<td class="o_bg-light o_px-xs" align="center"
|
|
254
|
+
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
255
|
+
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
256
|
+
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
257
|
+
style="max-width: 800px;margin: 0 auto;">
|
|
258
|
+
<tbody>
|
|
259
|
+
<tr>
|
|
260
|
+
<td class="o_bg-white o_px-md o_py o_sans o_text-xs o_text-light" align="center"
|
|
261
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ffffff;color: #82899a;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;">
|
|
262
|
+
<p class="o_mb" style="margin-top: 0px;margin-bottom: 16px;"><strong>Report Name</strong></p>
|
|
263
|
+
<table role="presentation" cellspacing="0" cellpadding="0" border="0">
|
|
264
|
+
<tbody>
|
|
265
|
+
<tr>
|
|
266
|
+
<td width="284" class="o_bg-ultra_light o_br o_text-xs o_sans o_px-xs o_py" align="center"
|
|
267
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 8px;padding-right: 8px;padding-top: 16px;padding-bottom: 16px;">
|
|
268
|
+
<p class="o_text-dark" style="color: #242b3d;margin-top: 0px;margin-bottom: 0px;">
|
|
269
|
+
<strong>Infra Downtime Report</strong></p>
|
|
270
|
+
</td>
|
|
271
|
+
</tr>
|
|
272
|
+
</tbody>
|
|
273
|
+
</table>
|
|
274
|
+
</td>
|
|
275
|
+
</tr>
|
|
276
|
+
</tbody>
|
|
277
|
+
</table>
|
|
278
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
279
|
+
</td>
|
|
280
|
+
</tr>
|
|
281
|
+
</tbody>
|
|
282
|
+
</table>
|
|
283
|
+
<!-- label-xs -->
|
|
284
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
285
|
+
<tbody>
|
|
286
|
+
<tr>
|
|
287
|
+
<td class="o_bg-light o_px-xs" align="center"
|
|
288
|
+
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
289
|
+
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
290
|
+
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
291
|
+
style="max-width: 800px;margin: 0 auto;">
|
|
292
|
+
<tbody>
|
|
293
|
+
<tr>
|
|
294
|
+
<td class="o_bg-white o_px-md o_py o_sans o_text-xs o_text-light" align="center"
|
|
295
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ffffff;color: #82899a;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;">
|
|
296
|
+
<p class="o_mb" style="margin-top: 0px;margin-bottom: 16px;"><strong>Report Date</strong></p>
|
|
297
|
+
<table role="presentation" cellspacing="0" cellpadding="0" border="0">
|
|
298
|
+
<tbody>
|
|
299
|
+
<tr>
|
|
300
|
+
<td width="284" class="o_bg-ultra_light o_br o_text-xs o_sans o_px-xs o_py" align="center"
|
|
301
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 8px;padding-right: 8px;padding-top: 16px;padding-bottom: 16px;">
|
|
302
|
+
<p class="o_text-dark" style="color: #242b3d;margin-top: 0px;margin-bottom: 0px;">
|
|
303
|
+
<strong>{{reportdate}}</strong></p>
|
|
304
|
+
</td>
|
|
305
|
+
</tr>
|
|
306
|
+
</tbody>
|
|
307
|
+
</table>
|
|
308
|
+
</td>
|
|
309
|
+
</tr>
|
|
310
|
+
</tbody>
|
|
311
|
+
</table>
|
|
312
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
313
|
+
</td>
|
|
314
|
+
</tr>
|
|
315
|
+
</tbody>
|
|
316
|
+
</table>
|
|
317
|
+
<!-- spacer -->
|
|
318
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
319
|
+
<tbody>
|
|
320
|
+
<tr>
|
|
321
|
+
<td class="o_bg-light o_px-xs" align="center"
|
|
322
|
+
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
323
|
+
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
324
|
+
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
325
|
+
style="max-width: 800px;margin: 0 auto;">
|
|
326
|
+
<tbody>
|
|
327
|
+
<tr>
|
|
328
|
+
<td class="o_bg-white o_px-md o_py o_sans o_text-xs o_text-light" align="center"
|
|
329
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ffffff;color: #82899a;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;">
|
|
330
|
+
<p class="o_mb" style="margin-top: 0px;margin-bottom: 16px;"><strong>Avg Downtime</strong></p>
|
|
331
|
+
<table role="presentation" cellspacing="0" cellpadding="0" border="0">
|
|
332
|
+
<tbody>
|
|
333
|
+
<tr>
|
|
334
|
+
<td width="284" class="o_bg-ultra_light o_br o_text-xs o_sans o_px-xs o_py" align="center"
|
|
335
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 8px;padding-right: 8px;padding-top: 16px;padding-bottom: 16px;">
|
|
336
|
+
<p class="o_text-dark" style="color: #242b3d;margin-top: 0px;margin-bottom: 0px;">
|
|
337
|
+
<strong>{{avgDownTime}} Mins</strong></p>
|
|
338
|
+
</td>
|
|
339
|
+
</tr>
|
|
340
|
+
</tbody>
|
|
341
|
+
</table>
|
|
342
|
+
</td>
|
|
343
|
+
</tr>
|
|
344
|
+
</tbody>
|
|
345
|
+
</table>
|
|
346
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
347
|
+
</td>
|
|
348
|
+
</tr>
|
|
349
|
+
</tbody>
|
|
350
|
+
</table>
|
|
351
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
352
|
+
<tbody>
|
|
353
|
+
<tr>
|
|
354
|
+
<td class="o_bg-light o_px-xs" align="center"
|
|
355
|
+
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
356
|
+
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
357
|
+
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
358
|
+
style="max-width: 800px;margin: 0 auto;">
|
|
359
|
+
<tbody>
|
|
360
|
+
<tr>
|
|
361
|
+
<td class="o_bg-white"
|
|
362
|
+
style="font-size: 24px;line-height: 24px;height: 24px;background-color: #ffffff;"> </td>
|
|
363
|
+
</tr>
|
|
364
|
+
</tbody>
|
|
365
|
+
</table>
|
|
366
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
367
|
+
</td>
|
|
368
|
+
</tr>
|
|
369
|
+
</tbody>
|
|
370
|
+
</table>
|
|
371
|
+
<!-- order-summary -->
|
|
372
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
373
|
+
<tbody>
|
|
374
|
+
<tr>
|
|
375
|
+
<td class="o_bg-light o_px-xs" align="center"
|
|
376
|
+
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
377
|
+
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
378
|
+
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
379
|
+
style="max-width: 800px;margin: 0 auto;">
|
|
380
|
+
<tbody>
|
|
381
|
+
<tr>
|
|
382
|
+
<td class="o_re o_bg-white o_px o_pb-md" align="center"
|
|
383
|
+
style="font-size: 0;vertical-align: top;background-color: #ffffff;padding-left: 16px;padding-right: 16px;padding-bottom: 24px;">
|
|
384
|
+
<!--[if mso]><table cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td width="200" align="center" valign="top" style="padding: 0px 8px;"><![endif]-->
|
|
385
|
+
<div class="o_col o_col-2 o_col-full"
|
|
386
|
+
style="display: inline-block;vertical-align: top;width: 100%;max-width: 200px;">
|
|
387
|
+
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
388
|
+
<div class="o_px-xs" style="padding-left: 8px;padding-right: 8px;">
|
|
389
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
390
|
+
<tbody>
|
|
391
|
+
<tr>
|
|
392
|
+
<td class="o_bg-ultra_light o_br o_text-xs o_sans o_px o_py-md" align="center"
|
|
393
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 16px;padding-right: 16px;padding-top: 24px;padding-bottom: 24px;">
|
|
394
|
+
<h1 class="o_heading o_text-dark"
|
|
395
|
+
style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 0px;color: #242b3d;font-size: 26px;line-height: 47px;">
|
|
396
|
+
{{issueCount}} Stores</h1>
|
|
397
|
+
<p class="o_text-light" style="color: #82899a;margin-top: 0px;margin-bottom: 0px;">
|
|
398
|
+
Infra Store</p>
|
|
399
|
+
</td>
|
|
400
|
+
</tr>
|
|
401
|
+
</tbody>
|
|
402
|
+
</table>
|
|
403
|
+
</div>
|
|
404
|
+
</div>
|
|
405
|
+
<!--[if mso]></td><td width="200" align="center" valign="top" style="padding: 0px 8px;"><![endif]-->
|
|
406
|
+
<div class="o_col o_col-2 o_col-full"
|
|
407
|
+
style="display: inline-block;vertical-align: top;width: 100%;max-width: 200px;">
|
|
408
|
+
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
409
|
+
<div class="o_px-xs" style="padding-left: 8px;padding-right: 8px;">
|
|
410
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
411
|
+
<tbody>
|
|
412
|
+
<tr>
|
|
413
|
+
<td class="o_bg-ultra_light o_br o_text-xs o_sans o_px o_py-md" align="center"
|
|
414
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 16px;padding-right: 16px;padding-top: 24px;padding-bottom: 24px;">
|
|
415
|
+
<h1 class="o_heading o_text-dark"
|
|
416
|
+
style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 0px;color: #242b3d;font-size: 26px;line-height: 47px;">
|
|
417
|
+
{{content.cameraIssue}} Stores</h1>
|
|
418
|
+
<p class="o_text-light" style="color: #82899a;margin-top: 0px;margin-bottom: 0px;">
|
|
419
|
+
Camera Issue</p>
|
|
420
|
+
</td>
|
|
421
|
+
</tr>
|
|
422
|
+
</tbody>
|
|
423
|
+
</table>
|
|
424
|
+
</div>
|
|
425
|
+
</div>
|
|
426
|
+
<!--[if mso]></td><td width="200" align="center" valign="top" style="padding: 0px 8px;"><![endif]-->
|
|
427
|
+
<div class="o_col o_col-2 o_col-full"
|
|
428
|
+
style="display: inline-block;vertical-align: top;width: 100%;max-width: 200px;">
|
|
429
|
+
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
430
|
+
<div class="o_px-xs" style="padding-left: 8px;padding-right: 8px;">
|
|
431
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
432
|
+
<tbody>
|
|
433
|
+
<tr>
|
|
434
|
+
<td class="o_bg-ultra_light o_br o_text-xs o_sans o_px o_py-md" align="center"
|
|
435
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 16px;padding-right: 16px;padding-top: 24px;padding-bottom: 24px;">
|
|
436
|
+
<h1 class="o_heading o_text-dark"
|
|
437
|
+
style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 0px;color: #242b3d;font-size: 26px;line-height: 47px;">
|
|
438
|
+
{{content.storeoperationIssue}} Stores</h1>
|
|
439
|
+
<p class="o_text-light" style="color: #82899a;margin-top: 0px;margin-bottom: 0px;">
|
|
440
|
+
Operation Issue</p>
|
|
441
|
+
</td>
|
|
442
|
+
</tr>
|
|
443
|
+
</tbody>
|
|
444
|
+
</table>
|
|
445
|
+
</div>
|
|
446
|
+
</div>
|
|
447
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
448
|
+
</td>
|
|
449
|
+
</tr>
|
|
450
|
+
</tbody>
|
|
451
|
+
</table>
|
|
452
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
453
|
+
</td>
|
|
454
|
+
</tr>
|
|
455
|
+
</tbody>
|
|
456
|
+
</table>
|
|
457
|
+
<!-- addon-row -->
|
|
458
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
459
|
+
<tbody>
|
|
460
|
+
<tr>
|
|
461
|
+
<td class="o_bg-light o_px-xs" align="center"
|
|
462
|
+
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
463
|
+
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
464
|
+
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
465
|
+
style="max-width: 800px;margin: 0 auto;">
|
|
466
|
+
<tbody>
|
|
467
|
+
<tr>
|
|
468
|
+
<td class="o_re o_bg-white o_px o_pb-md" align="center"
|
|
469
|
+
style="font-size: 0;vertical-align: top;background-color: #ffffff;padding-left: 16px;padding-right: 16px;padding-bottom: 24px;">
|
|
470
|
+
<!--[if mso]><table cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td width="200" align="center" valign="top" style="padding: 0px 8px;"><![endif]-->
|
|
471
|
+
<div class="o_col o_col-2 o_col-full"
|
|
472
|
+
style="display: inline-block;vertical-align: top;width: 100%;max-width: 200px;">
|
|
473
|
+
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
474
|
+
<div class="o_px-xs" style="padding-left: 8px;padding-right: 8px;">
|
|
475
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
476
|
+
<tbody>
|
|
477
|
+
<tr>
|
|
478
|
+
<td class="o_bg-ultra_light o_br o_text-xs o_sans o_px o_py-md" align="center"
|
|
479
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 16px;padding-right: 16px;padding-top: 24px;padding-bottom: 24px;">
|
|
480
|
+
<h1 class="o_heading o_text-dark"
|
|
481
|
+
style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 0px;color: #242b3d;font-size: 26px;line-height: 47px;">
|
|
482
|
+
{{content.internetIssue}} Stores</h1>
|
|
483
|
+
<p class="o_text-light" style="color: #82899a;margin-top: 0px;margin-bottom: 0px;">
|
|
484
|
+
Internet Issue</p>
|
|
485
|
+
</td>
|
|
486
|
+
</tr>
|
|
487
|
+
</tbody>
|
|
488
|
+
</table>
|
|
489
|
+
</div>
|
|
490
|
+
</div>
|
|
491
|
+
<!--[if mso]></td><td width="200" align="center" valign="top" style="padding: 0px 8px;"><![endif]-->
|
|
492
|
+
<div class="o_col o_col-2 o_col-full"
|
|
493
|
+
style="display: inline-block;vertical-align: top;width: 100%;max-width: 200px;">
|
|
494
|
+
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
495
|
+
<div class="o_px-xs" style="padding-left: 8px;padding-right: 8px;">
|
|
496
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
497
|
+
<tbody>
|
|
498
|
+
<tr>
|
|
499
|
+
<td class="o_bg-ultra_light o_br o_text-xs o_sans o_px o_py-md" align="center"
|
|
500
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 16px;padding-right: 16px;padding-top: 24px;padding-bottom: 24px;">
|
|
501
|
+
<h1 class="o_heading o_text-dark"
|
|
502
|
+
style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 0px;color: #242b3d;font-size: 26px;line-height: 47px;">
|
|
503
|
+
{{content.applicationIssue}} Stores</h1>
|
|
504
|
+
<p class="o_text-light" style="color: #82899a;margin-top: 0px;margin-bottom: 0px;">
|
|
505
|
+
Application Issue</p>
|
|
506
|
+
</td>
|
|
507
|
+
</tr>
|
|
508
|
+
</tbody>
|
|
509
|
+
</table>
|
|
510
|
+
</div>
|
|
511
|
+
</div>
|
|
512
|
+
<!--[if mso]></td><td width="200" align="center" valign="top" style="padding: 0px 8px;"><![endif]-->
|
|
513
|
+
<div class="o_col o_col-2 o_col-full"
|
|
514
|
+
style="display: inline-block;vertical-align: top;width: 100%;max-width: 200px;">
|
|
515
|
+
<div style="font-size: 24px; line-height: 24px; height: 24px;"> </div>
|
|
516
|
+
<div class="o_px-xs" style="padding-left: 8px;padding-right: 8px;">
|
|
517
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
518
|
+
<tbody>
|
|
519
|
+
<tr>
|
|
520
|
+
<td class="o_bg-ultra_light o_br o_text-xs o_sans o_px o_py-md" align="center"
|
|
521
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;background-color: #ebf5fa;border-radius: 4px;padding-left: 16px;padding-right: 16px;padding-top: 24px;padding-bottom: 24px;">
|
|
522
|
+
<h1 class="o_heading o_text-dark"
|
|
523
|
+
style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 0px;color: #242b3d;font-size: 26px;line-height: 47px;">
|
|
524
|
+
{{content.systemIssue}} Stores</h1>
|
|
525
|
+
<p class="o_text-light" style="color: #82899a;margin-top: 0px;margin-bottom: 0px;">
|
|
526
|
+
System Issue</p>
|
|
527
|
+
</td>
|
|
528
|
+
</tr>
|
|
529
|
+
</tbody>
|
|
530
|
+
</table>
|
|
531
|
+
</div>
|
|
532
|
+
</div>
|
|
533
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
534
|
+
</td>
|
|
535
|
+
</tr>
|
|
536
|
+
</tbody>
|
|
537
|
+
</table>
|
|
538
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
539
|
+
</td>
|
|
540
|
+
</tr>
|
|
541
|
+
</tbody>
|
|
542
|
+
</table>
|
|
543
|
+
|
|
544
|
+
<!-- spacer -->
|
|
545
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
546
|
+
<tbody>
|
|
547
|
+
<tr>
|
|
548
|
+
<td class="o_bg-light o_px-xs" align="center"
|
|
549
|
+
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
550
|
+
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
551
|
+
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
552
|
+
style="max-width: 800px;margin: 0 auto;">
|
|
553
|
+
<tbody>
|
|
554
|
+
<tr>
|
|
555
|
+
<td class="o_bg-white"
|
|
556
|
+
style="font-size: 24px;line-height: 24px;height: 24px;background-color: #ffffff;"> </td>
|
|
557
|
+
</tr>
|
|
558
|
+
</tbody>
|
|
559
|
+
</table>
|
|
560
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
561
|
+
</td>
|
|
562
|
+
</tr>
|
|
563
|
+
</tbody>
|
|
564
|
+
</table>
|
|
565
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
566
|
+
<tbody>
|
|
567
|
+
<tr>
|
|
568
|
+
<td class="o_bg-light o_px-xs" align="center" style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
569
|
+
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
570
|
+
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation" style="max-width: 800px;margin: 0 auto;">
|
|
571
|
+
<tbody>
|
|
572
|
+
<tr>
|
|
573
|
+
<td class="o_bg-white o_px-md o_py-xs" align="center" style="background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 8px;padding-bottom: 8px;">
|
|
574
|
+
<table align="center" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
575
|
+
<tbody>
|
|
576
|
+
<tr>
|
|
577
|
+
<td width="300" class="o_btn o_bg-primary o_br o_heading o_text" align="center" style="font-family: Helvetica, Arial, sans-serif;font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #00A3FF;border-radius: 4px;">
|
|
578
|
+
<a class="o_text-white" href="{{Uidomain}}" style="text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;">Check Detailed report</a>
|
|
579
|
+
</td>
|
|
580
|
+
</tr>
|
|
581
|
+
</tbody>
|
|
582
|
+
</table>
|
|
583
|
+
</td>
|
|
584
|
+
</tr>
|
|
585
|
+
</tbody>
|
|
586
|
+
</table>
|
|
587
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
588
|
+
</td>
|
|
589
|
+
</tr>
|
|
590
|
+
</tbody>
|
|
591
|
+
</table>
|
|
592
|
+
<!-- content -->
|
|
593
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
594
|
+
<tbody>
|
|
595
|
+
<tr>
|
|
596
|
+
<td class="o_bg-light o_px-xs" align="center"
|
|
597
|
+
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
598
|
+
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
599
|
+
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
600
|
+
style="max-width: 800px;margin: 0 auto;">
|
|
601
|
+
<tbody>
|
|
602
|
+
<tr>
|
|
603
|
+
<td class="o_bg-white o_px-md o_py" align="center"
|
|
604
|
+
style="background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;">
|
|
605
|
+
<!--[if mso]><table width="584" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td align="center"><![endif]-->
|
|
606
|
+
<div class="o_col-6s o_sans o_text o_text-secondary o_center"
|
|
607
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: left;">
|
|
608
|
+
<p style="margin-top: 0px;margin-bottom: 0px;">You're receiving this alert because your email is
|
|
609
|
+
configured for store infrastructure. To stop notifications, ask your admin to remove your email or
|
|
610
|
+
write to email {{csmEmail}} to opt out.</p>
|
|
611
|
+
<p>Regards,</p>
|
|
612
|
+
<p>Team Tango</p>
|
|
613
|
+
</div>
|
|
614
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
615
|
+
</td>
|
|
616
|
+
</tr>
|
|
617
|
+
</tbody>
|
|
618
|
+
</table>
|
|
619
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
620
|
+
</td>
|
|
621
|
+
</tr>
|
|
622
|
+
</tbody>
|
|
623
|
+
</table>
|
|
624
|
+
<!-- spacer-lg -->
|
|
625
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
626
|
+
<tbody>
|
|
627
|
+
<tr>
|
|
628
|
+
<td class="o_bg-light o_px-xs" align="center"
|
|
629
|
+
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;">
|
|
630
|
+
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
631
|
+
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
632
|
+
style="max-width: 800px;margin: 0 auto;">
|
|
633
|
+
<tbody>
|
|
634
|
+
<tr>
|
|
635
|
+
<td class="o_bg-white"
|
|
636
|
+
style="font-size: 48px;line-height: 48px;height: 48px;background-color: #ffffff;"> </td>
|
|
637
|
+
</tr>
|
|
638
|
+
</tbody>
|
|
639
|
+
</table>
|
|
640
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
641
|
+
</td>
|
|
642
|
+
</tr>
|
|
643
|
+
</tbody>
|
|
644
|
+
</table>
|
|
645
|
+
<!-- footer -->
|
|
646
|
+
<table width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation">
|
|
647
|
+
<tbody>
|
|
648
|
+
<tr>
|
|
649
|
+
<td class="o_bg-light o_px-xs o_pb-lg o_xs-pb-xs" align="center"
|
|
650
|
+
style="background-color: #dbe5ea;padding-left: 8px;padding-right: 8px;padding-bottom: 32px;">
|
|
651
|
+
<!--[if mso]><table width="800" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td><![endif]-->
|
|
652
|
+
<table class="o_block-lg" width="100%" cellspacing="0" cellpadding="0" border="0" role="presentation"
|
|
653
|
+
style="max-width: 800px;margin: 0 auto;">
|
|
654
|
+
<tbody>
|
|
655
|
+
<tr>
|
|
656
|
+
<td class="o_bg-dark o_px-md o_py-lg o_br-b" align="center"
|
|
657
|
+
style="background-color: #00A3FF;border-radius: 0px 0px 4px 4px;padding-left: 24px;padding-right: 24px;padding-top: 32px;padding-bottom: 32px;">
|
|
658
|
+
<!--[if mso]><table width="584" cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td align="center"><![endif]-->
|
|
659
|
+
<div class="o_col-6s o_sans o_text-xs o_text-dark_light"
|
|
660
|
+
style="font-family: Helvetica, Arial, sans-serif;margin-top: 0px;margin-bottom: 0px;font-size: 14px;line-height: 21px;max-width: 584px;color: #ffffff;">
|
|
661
|
+
<p class="o_mb" style="margin-top: 0px;margin-bottom: 16px;"><a class="o_text-dark_light"
|
|
662
|
+
href="{{Uidomain}}" style="text-decoration: none;outline: none;color: #ffffff;"></a>
|
|
663
|
+
</p>
|
|
664
|
+
<p class="o_mb" style="margin-top: 0px;margin-bottom: 16px;">2024 © Tango Eye . All rights reserved.</p>
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
</div>
|
|
668
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
669
|
+
</td>
|
|
670
|
+
</tr>
|
|
671
|
+
</tbody>
|
|
672
|
+
</table>
|
|
673
|
+
<!--[if mso]></td></tr></table><![endif]-->
|
|
674
|
+
<div class="o_hide-xs" style="font-size: 64px; line-height: 64px; height: 64px;"> </div>
|
|
675
|
+
</td>
|
|
676
|
+
</tr>
|
|
677
|
+
</tbody>
|
|
678
|
+
</table>
|
|
679
|
+
</body>
|
|
680
|
+
|
|
681
681
|
</html>
|