{% set currency = service.tariff.currency|default('MXN') %}
| {{ 'reservation'|trans|capitalize }} | {{ 'providerAmount'|trans|capitalize }} | {{ 'clientAmount'|trans|capitalize }} | {{ 'status'|trans|capitalize }} | {{ 'type'|trans|capitalize }} | {{ 'creationDate'|trans|capitalize }} | {{ 'user'|trans|capitalize }} | {{ 'actions'|trans|capitalize }} | {% if service.refunds|length %} {% for refund in service.refunds %}
|---|---|---|---|---|---|---|---|
| {{ service.quotation.reservation.folio }} | {{ refund.providerAmount|price(currency) }} | {{ refund.clientAmount|price }} | {{ refund.status|trans|capitalize }} | {{ refund.type|trans|capitalize }} | {{ refund.createdDate|date('d-m-Y H:i') }} | {{ refund.createdBy.username|default('Sistema') }} | {% include 'App:backend/reservations/refund/actions.html.twig' with { entity: refund, entityName:'refund', entityId: refund.id } %} |
| {{ 'Sin reembolsos' }} | |||||||