operations.html.twig 5.66 KB
Newer Older
Julien Jorry committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
{% set operations = operations|default(getLastOperations(app.request, app.user, constant('App\\Enum\\CurrencyEnum::CURRENCY_EMLC'))) %}
{% set title = title|default('Dernières opérations'|trans) %}
{% extends '@kohinos/block/block_collapse.html.twig' %}

{% block blocktitle %}
	<i class="fa fa-list-alt mr-4"></i> {{ title }}
{% endblock blocktitle %}
{% block blocksubtitle %}
{% endblock blocksubtitle %}
{% block blockcontent %}
    {% if operations|length > 0 %}
        <div class="table-responsive">
      		<table class="table">
                <thead>
                  <tr>
                    <th scope="col">Date</th>
                    <th scope="col">Type</th>
                    <th scope="col">Operation</th>
                    <th scope="col">Montant</th>
                  </tr>
                </thead>
                <tbody>
      			{% for operation in operations %}
                    <tr>
                        <td><span data-toggle="tooltip" data-placement="bottom" title="{{ operation.createdAt|date('d/m/Y H:i') }}">{{ operation.createdAt|date('d/m/Y') }}</span></td>
26 27
                        <td>{{ ((isCurrentAccountable(app.user, operation.flux.expediteur) ? 'exp' : 'des')~'_'~operation.flux.parenttype)|trans({}, 'flux') }}
                        <div id='operationInfo{{loop.index}}' class='collapse operationInfo{{loop.index}}'>
28 29 30 31 32 33 34
                            Référence : {{ operation.flux.reference }}<br/>
                            {% if operation.flux.moyen == constant('App\\Enum\\MoyenEnum::MOYEN_HELLOASSO') %}
                                {% set urlTicket = getPaymentReceiptUrlFromFlux(operation.flux) %}
                                {% if urlTicket is not empty %}
                                    <a href='{{urlTicket}}' target='_blank'>Ticket CB</a>
                                {% endif %}
                            {% endif %}
35 36
                        </div>
                        </td>
Julien Jorry committed
37
                        <td>
38
                            <span style='cursor:pointer;' data-toggle="collapse" data-target=".operationInfo{{loop.index}}">
Julien Jorry committed
39
                                {% if not isCurrentAccountable(app.user, operation.flux.expediteur)  %}
Julien Jorry committed
40 41 42 43 44
                                    {% if operation.flux.expediteur is instanceof("App\\Entity\\Prestataire") and operation.flux.expediteur.isSolidoume == true %}
                                        {{ getSolidoumeParam('name')|default('Sécurité Sociale Alimentaire') }}
                                    {% else %}
                                        {{ operation.flux.expediteur }}
                                    {% endif %}
Julien Jorry committed
45
                                {% elseif not isCurrentAccountable(app.user, operation.flux.destinataire)  %}
Julien Jorry committed
46 47 48 49 50
                                    {% if operation.flux.destinataire is instanceof("App\\Entity\\Prestataire") and operation.flux.destinataire.isSolidoume == true %}
                                        {{ getSolidoumeParam('name')|default('Sécurité Sociale Alimentaire') }}
                                    {% else %}
                                        {{ operation.flux.destinataire }}
                                    {% endif %}
Julien Jorry committed
51 52 53
                                {% endif %}
                                <i class="fa fa-caret-down ml-2" aria-hidden="true"></i>
                            </span>
54
                            <div class='collapse operationInfo{{loop.index}}'>
Julien Jorry committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
                                Moyen : {{ operation.flux.moyen|trans }}
                            </div>
                        </td>
                        <td class='text-right'><span class='font-weight-bold {{ (operation.montant < 0)? '':'text-primary' }}'>{{ (operation.montant < 0)? '- ':'+ ' }} {{ operation.montant|abs|number_format(2) }} {{ getCurrencyName(operation.currency) }}</span></td>
                    </tr>
      			{% endfor %}
      		  </tbody>
      		</table>
        </div>
    {% else %}
        <div class='my-2 mx-2'>
            {{ 'Aucunes opérations pour le moment ! '|trans }}
        </div>
    {% endif %}
    {% if operations|length > 0 %}
        <a href='{{ path('show_operations', {'currency' : operations[0].currency}) }}' type="button" class="btn btn-primary">
            <i class="fa fa-share-square-o" aria-hidden="true"></i>
            {{ 'Voir toutes les opérations'|trans }}
        </a>
		<br/>
		{# <div class="btn-group">
            <button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown" id="dropdownMenuLink">
                <i class="fa fa-share-square-o" aria-hidden="true"></i>
                Exporter
                <span class="caret"></span>
            </button>
            <div class="dropdown-menu" aria-labelledby="dropdownMenuLink">
                <a class="dropdown-item" href="{{ path('exportUserOperation', {'format' : 'json'}) }}">
                    <i class="fa fa-arrow-circle-o-down" aria-hidden="true"></i>
                    JSON
                </a>
                <a class="dropdown-item" href="{{ path('exportUserOperation', {'format' : 'xml'}) }}">
                    <i class="fa fa-arrow-circle-o-down" aria-hidden="true"></i>
                    XML
                </a>
                <a class="dropdown-item" href="{{ path('exportUserOperation', {'format' : 'csv'}) }}">
                    <i class="fa fa-arrow-circle-o-down" aria-hidden="true"></i>
                    CSV
                </a>
                <a class="dropdown-item" href="{{ path('exportUserOperation', {'format' : 'xls'}) }}">
                    <i class="fa fa-arrow-circle-o-down" aria-hidden="true"></i>
                    XLS
                </a>
			</div>
        </div> #}
	{% endif %}
{% endblock blockcontent %}