{% 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
| Fecha de pago |
Tipo |
Cantidad |
{% if refund.service is defined %}
Subsidiado |
{% endif %}
Estado |
Comentario |
Usuario |
|
{% if refund.servicePayments|length > 0 %}
{% for payment in refund.servicePayments %}
{% include 'backend/reservations/servicePayment/refundRow.html.twig' with {"payment":payment} %}
{% endfor %}
{% endif %}
Pagos al cliente
| Fecha de pago |
Tipo |
Cantidad |
Estado |
Comentario |
Usuario |
|
{% if refund.clientPayments|length > 0 %}
{% for payment in refund.clientPayments %}
{% include 'backend/reservations/clientPayment/row.html.twig' with {"payment":payment} %}
{% endfor %}
{% endif %}
{% include 'backend/reservations/refund/refundSummary.html.twig' with { refund: refund, paymentsView:true } %}
{% endblock %}