{% extends 'Common/baseAdminPannel.html.twig' %} {% block title %} Pagos del reembolso {% endblock %} {% block body %} {% if is_granted("RESERV_PAYMENT_NEW_REFUND_PAYMENT") %}
{% include 'backend/reservations/refund/indexButtons.html.twig' with {'refund': refund} %}
{% endif %}

Pagos del proveedor

{% if refund.service is defined %} {% endif %} {% if refund.servicePayments|length > 0 %} {% for payment in refund.servicePayments %} {% include 'backend/reservations/servicePayment/refundRow.html.twig' with {"payment":payment} %} {% endfor %} {% endif %}
Fecha de pago Tipo CantidadSubsidiadoEstado Comentario Usuario

Pagos al cliente

{% if refund.clientPayments|length > 0 %} {% for payment in refund.clientPayments %} {% include 'backend/reservations/clientPayment/row.html.twig' with {"payment":payment} %} {% endfor %} {% endif %}
Fecha de pago Tipo Cantidad Estado Comentario Usuario
{% include 'backend/reservations/refund/refundSummary.html.twig' with { refund: refund, paymentsView:true } %}
{% endblock %}