Details of the order {{order.ref}}
{% set total = 0 %}
{% set total_trans_all = 0 %}
{% set countTrans=0 %}
| Item | Price |
|---|---|
{% if fasttrack.type==0 %}
- {{fasttrack.pack.title}} - Departure from {{fasttrack.pack.aeroport.title}}{% else %}- {{fasttrack.pack.title}} - Arrrival to {{fasttrack.pack.aeroport.title}}{% endif %} {% if fasttrack.getResaTrans()==1 %} {% set total_trans=0 %} {% for trans in transport[countTrans] %}- {{ trans.getVehicule() }}{% set total_trans=total_trans+trans.getPrix() %} {% set total_trans_all = total_trans_all + total_trans %} {% endfor %} {% set countTrans=countTrans+1 %} {% endif %} |
{{fasttrack.price|round(2, 'floor')}}€{% if fasttrack.getResaTrans()==1 %}{{total_trans|round(2, 'floor')}}€{% endif %} |
Subtotal : |
{{total|round(2, 'floor')}}€ |