{% extends 'base.html.twig' %} {% block title %}Liste des Transactions Filtrées{% endblock %} {% block body %}

Liste des Transactions Filtrées

{{ form_start(filterForm) }} {{ form_row(filterForm._token) }}
{{ form_row(filterForm.fromDate, {'attr':{'class':'form-control js-datepicker'}}) }}
{{ form_row(filterForm.toDate, {'attr':{'class':'form-control js-datepicker'}}) }}
{{ form_row(filterForm.compteEmetteur, {'attr':{'class':'form-control'}}) }}
{{ form_row(filterForm.compteRecepteur, {'attr':{'class':'form-control'}}) }}
{{ form_row(filterForm.outsider, {'attr':{'class':'form-control'}}) }}
{{ form_row(filterForm.parent, {'attr':{'class':'form-control'}}) }}
{{ form_row(filterForm.category, {'attr':{'class':'form-control'}}) }}
{{ form_row(filterForm.minDebAmount, {'attr':{'class':'form-control'}}) }}
{{ form_row(filterForm.maxDebAmount, {'attr':{'class':'form-control'}}) }}
{{ form_row(filterForm.minCredAmount, {'attr':{'class':'form-control'}}) }}
{{ form_row(filterForm.maxCredAmount, {'attr':{'class':'form-control'}}) }}
{{ form_end(filterForm, {'render_rest': false}) }} {% for transaction in transactions %} {% if transaction.reconsile == 'Yes' %} {% elseif date(transaction.creationDate|date('ymd')) > date("now"|date('ymd')) %} {% else %} {% endif %} {% if transaction.issuerAccount %} {% else %} {% endif %} {% if transaction.receiverAccount %} {% else %} {% endif %} {% else %} {% endfor %}
CreationDate Emetteur Tiers / Receveur Catégorie Debit Credit Comment.
{{ transaction.creationDate ? transaction.creationDate|date('d/m/Y') : '' }}{{ transaction.issuerAccount.bank }} / {{ transaction.issuerAccount.name }}{{ transaction.issuerAccount.bank }} / {{ transaction.issuerAccount.name }}{{ transaction.receiverAccount.bank }} / {{ transaction.receiverAccount.name }}{{ transaction.outsider.name ?? 'Anonyme' }}{{ transaction.category ? transaction.category.name }} {% if transaction.debit %} {% if transaction.receiverAccount %} {% if transaction.receiverAccount.id != account_id %} {{ transaction.debit|number_format(2, '.', ' ') }} € {% endif %} {% else %} {{ transaction.debit|number_format(2, '.', ' ') }} € {% endif %} {% endif %} {% if transaction.credit %} {{ transaction.credit ? transaction.credit|number_format(2, '.', ' ') }} € {% elseif transaction.receiverAccount %} {% if transaction.receiverAccount.id == account_id %} {{ transaction.debit|number_format(2, '.', ' ') }} € {% endif %} {% endif %} {% if transaction.comment %} {% endif %}
Aucune transaction trouvée
{# display navigation #}
{% endblock %} {% block javascripts %} {% endblock %}