{% extends 'base.html.twig' %} {% block title %}Rapprochement d'une transaction Powens{% endblock %} {% block body %}

Transaction Powens à rapprocher

Date : {{ powensTransaction.rdate ? powensTransaction.rdate|date('d/m/Y') : 'Non définie' }}

Libellé original : {{ powensTransaction.originalWording }}

Montant : {{ powensTransaction.value }} €

Type : {{ powensTransaction.state }}

Transactions correspondantes potentielles

{% if matchedTransactions is not empty %} {% for transaction in matchedTransactions %} {% endfor %}
Date Tiers Sous-catégorie Compte émetteur Compte receveur Type Débit Crédit Commentaire Action
{{ transaction.creationDate ? transaction.creationDate|date('d/m/Y') : 'N/A' }} {{ transaction.outsider.name ?? 'Anonyme' }} {{ transaction.category.name ?? '-' }} {% if transaction.issuerAccount is not null %} {{ transaction.issuerAccount.bank ~ ' ' ~ transaction.issuerAccount.name }} {% else %} - {% endif %} {% if transaction.receiverAccount is not null %} {{ transaction.receiverAccount.bank ~ ' ' ~ transaction.receiverAccount.name }} {% else %} - {% endif %} {{ transaction.transactionType.name ?? '-' }} {{ transaction.debit ? transaction.debit|number_format(2, '.', ' ') }} € {{ transaction.credit ? transaction.credit|number_format(2, '.', ' ') }} € {{ transaction.comment ?? '' }} Lier
{% else %}
Aucune transaction correspondante trouvée.
Créer transaction à partir de cette donnée
{% endif %}
{% endblock %}