{% extends "base.html" %} {% block title %}Gestion des Comptes - Bolsa{% endblock %} {% block header_title %}Gestion des comptes{% endblock %} {% block content %}
Suivi des écritures comptables de la société.
| 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. :
{{ "{:,.2f}".format(engagement | abs) }} €{% if engagement < 0 %} (-){% endif %}
|
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 %}
|
||||