templates/Os/header-os-completa-pdf.html.twig line 1

Open in your IDE?
  1. {% set title = 'Proposta LTEC' %}
  2. <!doctype html>
  3. <head>
  4.     <title>{{ title }}</title>
  5.     <meta charset="UTF-8">
  6.     <style type="text/css" media="screen,print">
  7.         body {
  8.             font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  9.         }
  10.         .box-title {
  11.             font-size: 18px;
  12.             font-weight: bold;
  13.             text-transform: uppercase;
  14.         }
  15.         .box-title{
  16.             padding: 0;
  17.             margin: 0;
  18.             padding-bottom: 5px;
  19.         }
  20.         .nostrong{
  21.             font-weight: lighter !important;
  22.         }
  23.         .align-left{
  24.             text-align: left;
  25.         }
  26.         .alight-right{
  27.             text-align: right;
  28.         }
  29.         .box-subtitle {
  30.             text-align: center;
  31.         }
  32.         table { width: 100%; border: 0px; }
  33.         .logo {
  34.             position: relative;
  35.             /*top: 20mm;*/
  36.             /*left: 20px;*/
  37.         }
  38.     </style>
  39. </head>
  40. <body>
  41. <header>
  42.     <table cellspacing="0" cellpadding="0" id="headerLtecFull" class="headerLtecFull" border="0">
  43.         <tr>
  44.             <td colspan="5">
  45.                 
  46.                 <p style="text-align:left;"">
  47.                     <img src="{{ basedir ~ asset(franquia_model.getLogo()) }}" width="280" class="logo" alt="" style="padding-bottom: 5px;"/>
  48.                 </p>
  49.                 
  50.                 <div style="text-align:right;font-size:12px;position:absolute; top:10px; right:0px;">
  51.                     <b>FOR 7.1.02 - Ordem de Serviço</b><br/>
  52.                     DATA DE EMISSÃO: {{ os.proposta.updatedAt|date('d/m/Y') }}<br/>
  53.                     DATA DE ATUALIZAÇÃO: 18/03/2024<br/>
  54.                     VERSÃ0: 01<br/>
  55.                     VIGÊNCIA: 18/03/2026
  56.                 </div>
  57.                 
  58.             </td>
  59.         </tr>
  60.         <tr>
  61.             <td>
  62.                 <p class="box-title alight-left">
  63.                     CONTATO<br/>
  64.                     <span class="nostrong" style="font-size:14px;">{{ os.proposta.destinatarioNome }}</span><br/>
  65.                 </p>
  66.             </td>
  67.             <td>
  68.                 <p class="box-title alight-left">
  69.                     EMAIL<br/>
  70.                     <span class="nostrong" style="font-size:14px;">{{ os.proposta.destinatarioEmail }}</span><br/>
  71.                 </p>
  72.             </td>
  73.             <td>
  74.                 <p class="box-title alight-left">
  75.                     TELEFONE<br/>
  76.                     <span class="nostrong" style="font-size:14px;">{{ os.proposta.destinatarioTelefone }}</span><br/>
  77.                 </p>
  78.             </td>
  79.             <td>
  80.                 <p class="box-title alight-left">
  81.                     OS<br/>
  82.                     <span class="nostrong" style="font-size:14px;">
  83.                     {{ os.proposta.numero|strpad(4,'0') ~ '/' ~  os.proposta.anoProposta }}
  84.                     {% if os.proposta.numRevisao > 0 %}
  85.                         (V{{ os.proposta.numRevisao }})
  86.                     {% endif %}
  87.                     </span><br/>
  88.                 </p>
  89.             </td>
  90.             <td>
  91.                 <p class="box-title alight-left">
  92.                     DATA<br/>
  93.                     <span class="nostrong" style="font-size:14px;">{{ os.proposta.updatedAt|date('d/m/Y') }}</span>
  94.                 </p>
  95.             </td>
  96.         </tr>
  97.         <tr><td colspan="5"><hr style="padding-top: 0;margin-top: 0;"></td></tr>
  98.     </table>
  99. </header>
  100. </body>