operations.html.twig 6.68 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
{% 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>
Yvon committed
20 21 22 23 24
                    {# Display column to store btn to cancel transaction adherent prestataire #}
                    {% if operation.flux.type = constant('App\\Entity\\Transaction::TYPE_TRANSACTION_ADHERENT_PRESTATAIRE')
                        and app.user in operation.flux.destinataire %}
                        <th scope="col"></th>
                    {% endif %}
Julien Jorry committed
25 26 27 28 29 30
                  </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>
31 32
                        <td>{{ ((isCurrentAccountable(app.user, operation.flux.expediteur) ? 'exp' : 'des')~'_'~operation.flux.parenttype)|trans({}, 'flux') }}
                        <div id='operationInfo{{loop.index}}' class='collapse operationInfo{{loop.index}}'>
33 34 35 36 37 38 39
                            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 %}
40 41
                        </div>
                        </td>
Julien Jorry committed
42
                        <td>
43
                            <span style='cursor:pointer;' data-toggle="collapse" data-target=".operationInfo{{loop.index}}">
Julien Jorry committed
44
                                {% if not isCurrentAccountable(app.user, operation.flux.expediteur)  %}
Julien Jorry committed
45 46 47 48 49
                                    {% 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
50
                                {% elseif not isCurrentAccountable(app.user, operation.flux.destinataire)  %}
Julien Jorry committed
51 52 53 54 55
                                    {% 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
56 57 58
                                {% endif %}
                                <i class="fa fa-caret-down ml-2" aria-hidden="true"></i>
                            </span>
59
                            <div class='collapse operationInfo{{loop.index}}'>
Julien Jorry committed
60 61 62 63
                                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>
Yvon committed
64 65 66 67 68 69 70 71 72
                        {# Display btn to cancel transaction adherent prestataire #}
                        {% if operation.flux.type = constant('App\\Entity\\Transaction::TYPE_TRANSACTION_ADHERENT_PRESTATAIRE')
                            and app.user in operation.flux.destinataire %}
                            <td>
                                <a href="{{ path('cancel_transactio_adherent_prestataire', {'id': operation.flux.id}) }}" type="button" class="button button-danger">
                                    <i class="fa fa-remove" aria-hidden="true"></i>
                                </a>
                            </td>
                        {% endif %}
Julien Jorry committed
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 102 103 104 105 106 107 108 109 110 111 112 113 114 115
                    </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 %}