{% extends 'base.html' %} {% block title %}Nuevo asiento manual{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Nuevo asiento manual

El asiento debe cuadrar (suma Debe = suma Haber).

{% with msgs = get_flashed_messages(with_categories=true) %} {% for cat, msg in msgs %}
{{ msg }}
{% endfor %} {% endwith %}
Cabecera del asiento
Líneas del asiento Debe: 0,00 · Haber: 0,00
Cuenta Nombre cuenta Concepto línea Debe Haber
Cancelar
Cuentas frecuentes
{% set frecuentes = ['430','400','472','477','473','4751','476','570','572','640','642','700','705','600','621','622','623','624','625','627','628','629','681','682'] %} {% for c in cuentas %} {% if c.codigo in frecuentes %} {% endif %} {% endfor %}
CódigoCuenta
{{ c.codigo }} {{ c.nombre[:35] }}{% if c.nombre|length > 35 %}…{% endif %}
{% endblock %}