Date de création

{{ filedate|date("d-m-Y")}}

{{ app.user.username }}
Journal du {{ filedate|format_datetime(locale='fr',pattern="EEEE dd MMMM YYYY")|capitalize }} Totaux
Nombre de prestations réalisées : {{realiseeCount}}
Nombre de prestations annulées : {{ annuleeCount }}
Total des prestations : {{ totalPrestations|number_format(2,'.',' ') }} Dirhams
Dont commissions : {{ totalPrestationsCommission|number_format(2,'.',' ') }} Dirhams
Soit un total net de : {{ totalNetPrestation|number_format(2,'.',' ') }} Dirhams
Total des ventes en boutique : {{ totalProduits|number_format(2,'.',' ') }} Dirhams
Dont total des commissions : {{ totalProduitsCommission|number_format(2,'.',' ') }} Dirhams
Soit un total boutique net de : {{ totalNetProduit|number_format(2,'.',' ') }} Dirhams
Total des ventes abonnements : {{ totalAbonnements|number_format(2,'.',' ') }} Dirhams
Dont total des commissions : {{ totalAbonnementsCommission|number_format(2,'.',' ') }} Dirhams
Soit un total abonnements net de : {{ totalNetAbonnement|number_format(2,'.',' ') }} Dirhams
Total des ventes : {{ totalVente|number_format(2,'.',' ') }} Dirhams
Total des commissions : {{ totalCommission|number_format(2,'.',' ') }} Dirhams
Dont total des charges: - {{ totalCharge|number_format(2,'.',' ') }} Dirhams
Total net de la journée : {{ totalNet|number_format(2,'.',' ') }} Dirhams

REPARTITION DE LA CAISSE DU JOUR

{% if etat == 'day' %} {% endif %} {% if etat == 'day' %} {% endif %}
CB Espèces Chèques Chèque cadeaux PayZoneDifféré
{% if paiementCounts["tpe"] is defined %} {{ paiementCounts["tpe"].totalPrice }} Dirhams {% else %} 0 Dirhams {% endif %} {% if paiementCounts["espece"] is defined %} {{ paiementCounts["espece"].totalPrice }} Dirhams {% else %} 0 Dirhams {% endif %} {% if paiementCounts['cheque'] is defined %} {{ paiementCounts['cheque'].totalPrice }} Dirhams {% else %} 0 Dirhams {% endif %} {% if paiementCounts["chequecadeaux"] is defined %} {{ paiementCounts["chequecadeaux"].totalPrice }} Dirhams {% else %} 0 Dirhams {% endif %} {% if paiementCounts['payzone'] is defined %} {{ paiementCounts['payzone'].totalPrice }} Dirhams {% else %} 0 Dirhams {% endif %} {{ totaldiffere }} Dirhams
{% if prestationsCounts %}

LISTE DES PRESTATIONS

{% for key, items in prestationsCounts %} {% for dureeId, item in items.duree %} {% endfor %} {% endfor %}
Prestations Duree Nombre Chiffre d'affaires
{{ items.product }} {{ item.duree }} {{ item.count }} {{ item.totalPrice }} Dirhams
Total {{ totalPrestations|number_format(2,'.',' ') }} Dirhams
{% endif %} {% if productCounts %}

LISTE DES PRODUITS

{% for prd in productCounts %} {% endfor %}
Produits Quantité Chiffre d'affaires
{{prd.product }} {{prd.qte}} {{prd.totalPrice}} Dirhams
Total {{ totalProduits|number_format(2,'.',' ') }} Dirhams
{% endif %} {% if abonnementsCounts %}

LISTE DES ABONNEMENTS

{% for prd in abonnementsCounts %} {% endfor %}
Abonnements Nombre Chiffre d'affaires
{{prd.product }} {{ prd.count }} {{prd.totalPrice}} Dirhams
Total {{ totalAbonnements|number_format(2,'.',' ') }} Dirhams
{% endif %} {% if chequeCadeauxCounts %}

LISTE DES CHEQUE CADEAUX

{% for prd in chequeCadeauxCounts %} {% endfor %}
Cheque cadeaux Nombre Chiffre d'affaires
{{prd.product }} Dhs {{prd.count }} {{prd.totalPrice}} Dirhams
Total {{ totalChequeCadeaux|number_format(2,'.',' ') }} Dirhams
{% endif %} {% if charges %}

LISTE DES CHARGES

{% for ch in charges %} {% endfor %}
Type depense Descriptif Montant
{{ch.typeDepenses.nomTypedepenses}} {{ ch.description }} {{ch.montantCharge}} Dirhams
Total {{ totalCharge|number_format(2,'.',' ') }} Dirhams
{% endif %}