{% extends "base.html" %} {% block titre %}Gestion Comptable{% endblock %} {% block contenu %}
| Nom | Contact | Téléphone | N° compte | Solde dû (MAD) | |
|---|---|---|---|---|---|
| {{ f.nom }} | {{ f.contact or "â" }} | {{ f.telephone or "â" }} | {{ f.numero_compte or "â" }} | {{ "%.2f"|format(f.solde) }} | đ Grand livre Modifier |
Aucun fournisseur enregistré.
{% endif %}| Date | N° facture | Fournisseur | Produit | Qté | Montant (MAD) | Solde dû (MAD) | Facture | |
|---|---|---|---|---|---|---|---|---|
| {{ a.date_achat }} | {{ a.numero_facture or "â" }} | {{ a.fournisseur.nom }} | {{ a.designation_produit }} | {{ (a.quantite ~ " " ~ (a.unite or "unitĂ©")) if a.quantite is not none else "â" }} | {{ "%.2f"|format(a.montant_total) }} | {{ "%.2f"|format(a.solde_du) }} | {% if a.facture_path %}Voir{% else %}â{% endif %} | Modifier |
Aucun achat enregistré.
{% endif %}| Date | Fournisseur | Mode | Référence | Facture liée | Montant (MAD) | |
|---|---|---|---|---|---|---|
| {{ r.date_reglement }} | {{ r.fournisseur.nom }} | {{ r.mode_paiement }} | {{ r.reference or "â" }} | {{ (r.achat.numero_facture or r.achat.designation_produit) if r.achat else "â" }} | {{ "%.2f"|format(r.montant) }} | Modifier |
Aucun rÚglement enregistré.
{% endif %}| Employé | Période | Montant (MAD) | Description | |
|---|---|---|---|---|
| {{ f.employe }} | {{ f.periode }} | {{ "%.2f"|format(f.montant) }} | {{ f.description or "â" }} | Modifier |
Aucun frais de personnel enregistré.
{% endif %}| Type | Date | Montant (MAD) | Description | |
|---|---|---|---|---|
| {{ f.type_frais }} | {{ f.date_frais }} | {{ "%.2f"|format(f.montant) }} | {{ f.description or "â" }} | Modifier |
Aucun autre frais enregistré.
{% endif %}Générer un rapport imprimable limité à la ferme d'exploitation : frais de personnel, autres frais, ou les deux ensemble.
| Période | Achats (MAD) | Autres frais (MAD) | Frais personnel (MAD) | Total (MAD) |
|---|---|---|---|---|
| {{ r.periode }} | {{ "%.2f"|format(r.achats) }} | {{ "%.2f"|format(r.autres_frais) }} | {{ "%.2f"|format(r.frais_personnel) }} | {{ "%.2f"|format(r.total) }} |
Les frais de personnel sans date de période renseignée (anciennes saisies) n'apparaissent pas ici tant qu'ils ne sont pas mis à jour.
{% else %}Pas encore de données.
{% endif %}| Fournisseur | Nb achats | Total (MAD) |
|---|---|---|
| {{ nom }} | {{ nb }} | {{ "%.2f"|format(total or 0) }} |
Aucune donnée.
{% endif %}| Type | Total (MAD) |
|---|---|
| {{ type_frais }} | {{ "%.2f"|format(total or 0) }} |
Aucune donnée.
{% endif %}| Employé | Total (MAD) |
|---|---|
| {{ employe }} | {{ "%.2f"|format(total or 0) }} |
Aucune donnée.
{% endif %}| Période | Total (MAD) |
|---|---|
| {{ periode }} | {{ "%.2f"|format(total or 0) }} |
Aucune donnée.
{% endif %}