Commit 8caa42d50ddf14083b20e7a31a13cf7878a44949
1 parent
5fb42a55
Exists in
master
and in
1 other branch
[Feat] Implantando HTML fornecido pela MBA
Showing
1 changed file
with
7 additions
and
6 deletions
Show diff stats
MdWsSeiRest.php
| @@ -314,15 +314,16 @@ class MdWsSeiRest extends SeiIntegracao | @@ -314,15 +314,16 @@ class MdWsSeiRest extends SeiIntegracao | ||
| 314 | $infraException->lancarValidacao('Não foi possível ler o arquivo do QRCode.'); | 314 | $infraException->lancarValidacao('Não foi possível ler o arquivo do QRCode.'); |
| 315 | } | 315 | } |
| 316 | 316 | ||
| 317 | - $htmlQrCode .= '<ul>'; | ||
| 318 | - $htmlQrCode .= '<li style="list-style:none">'; | ||
| 319 | - $htmlQrCode .= '<img style="margin: 0 53px" align="center" src="data:image/png;base64, ' | 317 | + $htmlQrCode .= '<div style="text-align: center;">'; |
| 318 | + $htmlQrCode .= '<div style="height: 12px; background-color: #01A5DA; border-bottom: 4px solid #AFCF2C;"></div>'; | ||
| 319 | + $htmlQrCode .= '<img style="margin: 20px auto 6px;" align="center" src="data:image/png;base64, ' | ||
| 320 | . base64_encode($binQrCode) . '" />'; | 320 | . base64_encode($binQrCode) . '" />'; |
| 321 | - $htmlQrCode .= '<p style="margin: 10px 57px 10px 0px; text-align: center; font-weight: bolder !important;">'; | 321 | + $htmlQrCode .= '<p>'; |
| 322 | + $htmlQrCode .= '<strong style="font-weight: bolder">'; | ||
| 322 | $htmlQrCode .= 'Faça a leitura do código acima para acessar o aplicativo do SEI no seu telefone.'; | 323 | $htmlQrCode .= 'Faça a leitura do código acima para acessar o aplicativo do SEI no seu telefone.'; |
| 324 | + $htmlQrCode .= '</strong>'; | ||
| 323 | $htmlQrCode .= '</p>'; | 325 | $htmlQrCode .= '</p>'; |
| 324 | - $htmlQrCode .= '</li>'; | ||
| 325 | - $htmlQrCode .= '</ul>'; | 326 | + $htmlQrCode .= '</div>'; |
| 326 | 327 | ||
| 327 | return $htmlQrCode; | 328 | return $htmlQrCode; |
| 328 | } | 329 | } |