templates/conta_bancaria_movimentacao/impressao.html.twig line 1

  1. {% extends 'base_relatorio.html.twig' %}
  2. {% block title %}Gerenciar Diárias
  3. {% endblock %}
  4. {% block body %}
  5.     <!-- Main content -->
  6.     <section class="content">
  7.         <div class="card">
  8.             <div class="card-header">
  9.                 <div class="container-fluid text-center  ">
  10.                     <h1>ACESSO A INFORMAÇÃO</h1>
  11.                     <p>Em Atendimento a Lei Nº 12.527, de 18 de Novembro de 2011</p>
  12.                     <h2>MOVIMENTAÇÃO DA CONTA BANCÁRIA</h2>
  13.                 </div>
  14.             </div>
  15.                 <div class="card-body">
  16.                     
  17.                     <table class="table table-bordered table-striped table-hover table-sm">
  18.                         <thead>
  19.                             <tr>
  20.                                 <th>ANO</th>
  21.                                 <th>MÊS</th>
  22.                                 <th>AGÊNCIA</th>
  23.                                 <th>CONTA</th>
  24.                                 <th>ENTRADA</th>
  25.                                 <th>SAÍDA</th>
  26.                                 <th>SALDO INICIAL</th>
  27.                                 <th>SALDO FINAL</th>
  28.                                 <th>FINALIDADE</th>
  29.                             </tr>
  30.                         </thead>
  31.                         <tbody>
  32.                             <tr>
  33.                                 <td>{{ conta.ano }}</td>
  34.                                 <td>{{ conta.mes }}</td>
  35.                                 <td>{{ conta.agencia }}</td>
  36.                                 <td>{{ conta.conta }}</td>
  37.                                 <td>{{ conta.entrada }}</td>
  38.                                 <td>{{ conta.saida }}</td>
  39.                                 <td>{{ conta.saldoInicial }}</td>
  40.                                 <td>{{ conta.saldoFinal }}</td>
  41.                                 <td>{{ conta.descricao }}</td>
  42.                             </tr>
  43.                         </tbody>
  44.                     </table>    
  45.                                 <hr>
  46.                                 
  47.                                 
  48.                     <table class="table table-bordered table-striped table-hover table-sm">
  49.                         <thead>
  50.                             <tr>
  51.                                 <th>DATA</th>
  52.                                 <th>TIPO</th>
  53.                                 <th>VALOR</th>
  54.                                 <th>DESCRIÇÃO</th>
  55.                             </tr>
  56.                         </thead>
  57.                         <tbody>
  58.                             {% for item in contas %}
  59.                                 <tr>
  60.                                     <td>{{ item.data ? item.data|date('d/m/Y') : '' }}</td>
  61.                                     <td>{{ item.tipo }}  {{ item.tipoDescricao }}</td>
  62.                                     <td>{{ item.valor }}</td>
  63.                                     <td>{{ item.descricao }}</td>
  64.                                 </tr>
  65.                             {% else %}
  66.                                 <tr aria-hidden="true">
  67.                                     <td colspan="4">NENHUM REGISTRO ENCONTRADO</td>
  68.                                 </tr>
  69.                             {% endfor %}
  70.                         </tbody>
  71.                     </table>
  72.                 </div>
  73.         </div>
  74.     </section>
  75. {% endblock %}