{% extends "base.html" %} {% block title %}Bancos Recebedores - CapeSystem{% endblock %} {% block content %}
| Nome | Tipo | Custo Nota (%) | Custo por Boleto | Taxa Recebimento (%) | Saldo Disponível | Status | Ações |
|---|---|---|---|---|---|---|---|
| {{ banco.nome }} | {% if banco.tipo == 'boleto' %} Boleto {% elif banco.tipo == 'comissao' %} Comissão {% else %} {{ banco.tipo or 'N/A' }} {% endif %} | {% if banco.custo_nota_percentual > 0 %} {{ "%.2f"|format(banco.custo_nota_percentual) }}% {% else %} - {% endif %} | {% if banco.custo_por_boleto > 0 %} R$ {{ "%.2f"|format(banco.custo_por_boleto) }} {% else %} - {% endif %} | {% if banco.taxa_por_recebimento > 0 %} {{ "%.2f"|format(banco.taxa_por_recebimento) }}% {% else %} - {% endif %} | R$ {{ "%.2f"|format(banco.saldo_disponivel()) }} | {% if banco.ativo %} Ativo {% else %} Inativo {% endif %} |
Nenhum banco recebedor cadastrado ainda.
Cadastrar Primeiro Banco