{% extends 'AppBundle:Documents:v2\\standard_layout.html.twig' %} {% block header %} {% set editor = '' %} {% if seller != null %} {% set editor = {'label': 'user.seller.title'|trans({}, 'DocumentTrans'), 'contactLabel': 'contact.title'|trans({}, 'DocumentTrans' )}|merge(seller) %} {% endif %} {% include 'AppBundle:Documents:v2\\Include\\Global\\header.html.twig' with { 'editor': editor } %} {% endblock %} {% block main_title %} {% include 'AppBundle:Documents:v2\\Include\\Administrative\\OrderForm\\sale_detail.html.twig' with { 'label_transport': 'automalin.multiple_removal_order.delivry_place'|trans({}, 'DocumentTrans') } %}

{{ 'automalin.multiple_removal_order.title'|trans({}, 'DocumentTrans') }}

le {{ "now"|date('d/m/Y') }}

{# TO DO DATA TRANSPORT #} {% include 'AppBundle:Documents:v2\\Include\\Administrative\\customer_infos.html.twig' with { 'customer' : customer } %}
{% endblock main_title %} {% block content %}
{% include 'AppBundle:Documents:v2\\Include\\Global\\title_content.html.twig' with {'title' : 'LISTE DE VEHICULES'} %}
{% if sellingData == null %} {% set vehicleSellings = vehicleData.orderForm.vehicleSellings %} {% set totalVehicleSellingPrice = vehicleData.orderForm.vehicleSellings|first %} {% set sellPriceWithoutTaxWithDiscount = totalVehicleSellingPrice.sellPriceWithoutTax %} {% else %} {% set vehicleSellings = sellingData.vehicleSellings %} {% set totalVehicleSellingPrice = sellingData.prices.vehicles %} {% set sellPriceWithoutTaxWithDiscount = totalVehicleSellingPrice.sellPriceWithoutTaxWithDiscount %} {% endif %} {% include 'AppBundle:Documents:v2\\Include\\Vehicle\\vehicle_table.html.twig' with { 'with_price' : true, 'vehicleSellings' : vehicleSellings } %}
{{ 'administrative.total.title'|trans({}, 'DocumentTrans') }} {{ sellPriceWithoutTaxWithDiscount|number_format(2, ',', ' ') ~ ' ' ~ currencySymbol}} {{ totalVehicleSellingPrice.sellTotalCollectedTax|number_format(2, ',', ' ') ~ ' ' ~ currencySymbol}} {{ totalVehicleSellingPrice.sellPriceWithTax|number_format(2, ',', ' ') ~ ' ' ~ currencySymbol}}
{% include 'AppBundle:Documents:v2\\Include\\Global\\summary.html.twig' %} {% include 'AppBundle:Documents:v2\\Include\\Global\\signature_stamp.html.twig' %} {% endblock content %} {% block signature %} {% endblock signature %}