{% extends 'cantine/_layout.html.twig' %} {% block title %}Achats{% endblock %} {% block page_title %}Achats{% endblock %} {% block body %} {% if produitsSaisonniers is not empty %}
Produits de saison en ce moment
{% for produit in produitsSaisonniers %}
{{ produit.libelle }} {{ produit.prixIndicatif|montant }} - jusqu'au {{ produit.dateFin|date('d/m/Y') }}
{% endfor %}
{% endif %}
{% for i in 1..4 %}
{% endfor %}
Total 0 FCFA

Achats

{% if historique is empty %}
Aucun achat enregistré.
{% endif %}
{% for depense in historique %}
{{ depense.montant|montant }} FCFA {% if depense.statut.value == 'en_attente' %} {{ depense.statut.label }} {% elseif depense.statut.value == 'valide' %} {{ depense.statut.label }} {% else %} {{ depense.statut.label }} {% endif %}
{{ (depense.dateAchat ?? depense.dateSaisie)|date('d/m/Y') }}
{{ depense.description }}
{% if depense.motifRefus %}
Motif du refus : {{ depense.motifRefus }}
{% endif %} {% if piecesParDepense[depense.id] is not empty %}
{% for piece in piecesParDepense[depense.id] %}
{% if piece.cle ends with '.pdf' %} {% else %} Photo {{ loop.index }} {% endif %} {% if peutModifier and modifiableParDepense[depense.id] %}
{% endif %}
{% endfor %}
{% endif %} {% if peutModifier and modifiableParDepense[depense.id] %}
{% endif %}
{% endfor %}
{% if total > historique|length %}
{% endif %}
{% endblock %} {% block javascripts_bottom %} {{ parent() }} {% endblock %}