{% extends 'Common/baseAdminPannel.html.twig' %} {% if form is defined %} {% form_theme form 'backend/form/serviceServicePayment.twig' %} {% endif %} {% block title %} {{ 'Tranferencia de pagos al crédito con el proveedor' }} {% endblock %} {% block body %}
| {{ 'date'|trans|capitalize }} | {{ 'Created by'|trans }} | {{ 'Cantidad' }} | {% set total = 0 %} {% for movement in service.providerCreditAccountMovements %} {% set total = total + movement.amount %}
|---|---|---|
| {{ movement.createdDate|date('d-m-Y H:i') }} | {{ movement.createdBy.fullName }} | {{ movement.amount|price(service.tariff.currency) }} |
| {{ 'Total' }} | {{ total|price(service.tariff.currency) }} | |