{% extends 'base.html.twig' %} {% block title %}Cuentas Contables{% endblock %} {% block page_title %}Cuentas Contables{% endblock %} {% block body %}

Cuentas Contables

Plan de cuentas contable del sistema

{% if is_granted('ROLE_ADMIN') %} Nueva Cuenta {% endif %}
{# Filters #}
Limpiar
{# Table #}
{% for cuenta in pagination %} {% else %} {% endfor %}
Código Nombre Nivel Tipo Estado Acciones
{{ cuenta.codigo }} {{ cuenta.nombre }} Nivel {{ cuenta.nivel }} {% set tipoBadge = { 'ACTIVO': 'bg-blue-100 text-blue-800', 'PASIVO': 'bg-red-100 text-red-800', 'PATRIMONIO': 'bg-purple-100 text-purple-800', 'INGRESO': 'bg-green-100 text-green-800', 'GASTO': 'bg-orange-100 text-orange-800', 'COSTOS': 'bg-yellow-100 text-yellow-800' } %} {{ cuenta.tipo ?? '-' }} {% if cuenta.activo %} Activo {% else %} Inactivo {% endif %}
{% if is_granted('ROLE_ADMIN') %}
{% endif %}
No se encontraron cuentas contables
{% if pagination.pageCount > 1 %}
{{ knp_pagination_render(pagination) }}
{% endif %}
{% endblock %}