{% extends 'datatable.html.twig' %} {% block page_title %}{{ 'charged_lines_of_removed_expeditions'|trans }} - {{ month }} / {{ year }} ({{ lines | length }}){% endblock %} {% block page_content %}
{% set total_cost = 0 %} {% for line in lines %} {% set total_cost = total_cost + line.line_cost %} {% else %} {% endfor %}
ID línea ID Factura Agencia Ref. de la factura Procesada Referencia del envío Coste ID expedición Cancelada
{{ line.line_id }} {{ line.invoice_id }} {{ line.carrier_name }} {{ line.invoice_reference }} {{ line.invoice_date_add | date('d/m/Y H:i')}} {{ line.carrierOrderReference }} {{ line.line_cost }} € {{ line.expedition_id }} {% if line.expedition_date_canceled %}{{ line.expedition_date_canceled | date('d/m/Y H:i')}}{% else %}-{% endif %}
{{ 'no_results' | trans }}
{{ lines | length }} lineas {{ total_cost }} €
{% endblock %}