| {{ payment.date|date("d-m-Y H:i:s")}} |
{{ payment.getTypeName|trans }}
|
{{ payment.amount|price }} |
{% if reservation is defined %}
{{ payment.cardCommission? ' + ' ~payment.cardCommission|price}} |
{% endif %}
{% if payment.isSubsidized is defined %}
{{ payment.isSubsidized? 'SI':"NO" }} |
{% endif %}
{% if payment.status == 'approved' %}
{{ payment.status |trans}}
{% elseif payment.status == 'rejected' %}
{{ payment.status |trans}}
{% else %}
{{ payment.status |trans}}
{% endif %}
|
{{ payment.comment}} |
{{ payment.createdBy.username|default('Sistema') }} |
{% if service is defined %}
{% if payment.status in ["approved", "invoiced"] %}
{% if is_granted("RESERV_PAYMENT_CHANGE_VOUCHER") %}
{% endif %}
{% if is_granted("RESERV_PAYMENT_INVOICE") %}
{% endif %}
{% endif %}
{% if payment.status not in ["pending", "rejected"] and is_granted("RESERV_INVOICE_REQUEST_TO_PROVIDER") %}
{% endif %}
|
{% endif %}
{% if payment.isRefund != true and (payment.revalidatedBy is null or payment.revalidatedBy.id == app.user.id) and payment.getQuotation.assertServicesTariffs is null and is_granted("RESERV_PAYMENT_DELETE") %}
|
{% endif %}
{% if reservation is defined %}