{% extends 'Common/baseAdminPannel.html.twig' %} {% block title %} {{'refunds'|trans|capitalize}} {% endblock %} {% block body %}
{% if service.tariff.serviceCharge %}
{{ 'Cargos por servicio incluidos en el monto reembolsable.' }}
Cargos por servicio: {{ service.tariff.serviceCharge|price }}
{% else %}
{{ 'La tarifa no tiene cargos por servicio.' }}
{% endif %}
{% if service.quotation.assertServicesTariffs is not null %}
{{ 'Debe aprobar las tarifas de la cotización para poder gestionar reembolsos.' }} {{ service.quotation.assertServicesTariffs }}
{% endif %} {% if is_granted("RESERV_REFUND_CREATE") and service.hasOneCompleteRefund == false and service.quotation.assertServicesTariffs is null %}
{% endif %} {% if service.quotation.assertServicesTariffs is null %}

{{ include('backend/reservations/refund/refunds.html.twig') }}
{% endif %}
{% include 'backend/reservations/service/refundsSummary.html.twig' with {service: service} %}
{% endblock %}