{% extends 'base.html' %} {% block title %}Plan de Cuentas{% endblock %} {% block content %}
Plan General Contable simplificado. Las cuentas del sistema no son eliminables.
| Código | Nombre | Suma Debe | Suma Haber | Saldo | Tipo | |
|---|---|---|---|---|---|---|
| {{ c.codigo }} | {{ c.nombre }} {% if not c.activo %}Inactiva{% endif %} {% if c.es_sistema %}PGC{% endif %} | {% if td %}{{ "%.2f €"|format(td) }}{% else %}—{% endif %} | {% if th %}{{ "%.2f €"|format(th) }}{% else %}—{% endif %} | {% if saldo != 0 %} {{ "%.2f €"|format(saldo) }} {% else %}—{% endif %} | {{ c.tipo }} |
{% if not c.es_sistema %}
{% set movs = saldos.get(c.id) %}
{% if movs %}
{% else %}
|