Skip to content

Commit

Permalink
bug fix same icons and text not conforming to the action (#1670)
Browse files Browse the repository at this point in the history
bugfix same icons and text not conforming to the action in Charges
  • Loading branch information
willph committed Feb 25, 2022
1 parent 198fc92 commit f243afb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/views/cobrancas/cobrancas.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@
echo '<td>R$ ' . number_format($r->total / 100, 2, ',', '.') . '</td>';
echo '<td>';
if ($this->permission->checkPermission($this->session->userdata('permissao'), 'vCobranca')) {
echo '<a style="margin-right: 1%" href="#modal-cancelar" role="button" data-toggle="modal" cancela_id="' . $r->idCobranca . '" class="btn-nwe4" title="Cancelar cobrança"><i class="bx bx-x" ></i></a>';
echo '<a style="margin-right: 1%" href="' . base_url() . 'index.php/cobrancas/atualizar/' . $r->idCobranca . '" class="btn-nwe" title="Ver mais detalhes"><i class="bx bx-show"></i></a>';
echo '<a style="margin-right: 1%" href="#modal-cancelar" role="button" data-toggle="modal" cancela_id="' . $r->idCobranca . '" class="btn-nwe4" title="Cancelar Cobrança"><i class="bx bx-x" ></i></a>';
echo '<a style="margin-right: 1%" href="' . base_url() . 'index.php/cobrancas/atualizar/' . $r->idCobranca . '" class="btn-nwe" title="Atualizar Cobrança"><i class="bx bx-refresh"></i></a>';
echo '<a style="margin-right: 1%" href="#modal-confirmar" role="button" data-toggle="modal" confirma_id="' . $r->idCobranca . '" class="btn-nwe3" title="Confirmar pagamento"><i class="bx bx-check"></i></a>';
echo '<a style="margin-right: 1%" href="' . base_url() . 'index.php/cobrancas/visualizar/' . $r->idCobranca . '" class="btn-nwe2" title="Visualizar Cobrança"><i class="bx bx-show-alt" ></i></a>';
echo '<a style="margin-right: 1%" href="' . base_url() . 'index.php/cobrancas/visualizar/' . $r->idCobranca . '" class="btn-nwe2" title="Ver mais detalhes"><i class="bx bx-show" ></i></a>';
echo '<a style="margin-right: 1%" href="' . base_url() . 'index.php/cobrancas/enviarEmail/' . $r->idCobranca . '" class="btn-nwe5" title="Enviar por E-mail"><i class="bx bx-envelope" ></i></a>';
}
if ($this->permission->checkPermission($this->session->userdata('permissao'), 'eCobranca') && $r->barcode != '') {
Expand Down

0 comments on commit f243afb

Please sign in to comment.