{% extends "base.html" %} {% block title %}Gestion des Comptes - Bolsa{% endblock %} {% block header_title %}Gestion des comptes{% endblock %} {% block content %}
{% set messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %}

Comptes - {{ selected_societe }}

Suivi des écritures comptables de la société.

Retour au menu
{% if ecritures %} {% for e in ecritures %} {% endfor %} {% else %} {% endif %}
Date Libellé Crédit Débit
{{ e.date_operation }} {% if e.source == 'ordre' %}{{ e.libelle | safe }}{% else %}{{ e.libelle or '-' }}{% endif %} {% if e.credit and e.credit > 0 %} {{ "{:,.2f}".format(e.credit) }} {% else %} - {% endif %} {% if e.debit and e.debit > 0 %} {{ "{:,.2f}".format(e.debit) }} {% else %} - {% endif %} {% if e.source == 'manuel' %} {% else %} Auto {% endif %}
Aucune écriture pour cette société.
TOTAL : {{ "{:,.2f}".format(total_credit or 0) }} {{ "{:,.2f}".format(total_debit or 0) }}
SOLDE : {{ "{:,.2f}".format(solde | abs) }} €{% if solde < 0 %} (-){% endif %} | DISPO : {{ "{:,.2f}".format(dispo | abs) }} €{% if dispo < 0 %} (-){% endif %} | ENGA. : | Depot : {{ "{:,.2f}".format(tcredit | abs) }} €{% if tcredit < 0 %} (-){% endif %} | Retrait : {{ "{:,.2f}".format(tdebit | abs) }} €{% if tdebit < 0 %} (-){% endif %} | PV : {{ "{:,.2f}".format(pv | abs) }} €{% if pv < 0 %} (-){% endif %}
Comptes : Accès sécurisé. Veillez à fermer votre session après chaque utilisation.
{% endblock %}