|
{{ shipment.customer ? shipment.customer.name : '-' }}
{{ shipment.address ? shipment.address.street : '' }} {% if shipment.address and shipment.address.street2 %} {{ shipment.address.street2 }} {% endif %} {% if shipment.address %} {{ shipment.address.postalCode }} {{ shipment.address.city }} {% endif %} |
| Code client | Date | N° expédition |
|---|---|---|
| {{ shipment.customer ? shipment.customer.name : '-' }} | {{ shipment.shipmentDate|date('d/m/Y') }} | {{ shipment.identificationNumber ?? '-' }} |
| Désignation | Qté expédiée (kg) |
|---|---|
|
Expédition
{% for weight in shipment.weights %}
{% if weight.type == 'gross' %}
{% set grossWeight = weight %}
Poids à plein : {{ grossWeight.weight }}kg (pesée n°{{ grossWeight.dsd }} {{ grossWeight.weighedAt|date('d/m/Y H:i:s') }}) {% elseif weight.type == 'tare' %} {% set tareWeight = weight %}Poids à vide : {{ tareWeight.weight }}kg (pesée n°{{ tareWeight.dsd }} {{ tareWeight.weighedAt|date('d/m/Y H:i:s') }}) {% endif %} {% endfor %} |
{% if grossWeight and tareWeight %} {{ grossWeight.weight - tareWeight.weight }} {% else %} 0 {% endif %} |
|
Bovin
{% if shipment.shipmentType %}
{{ shipment.shipmentType.label ?? '-' }} : {{ shipment.nbBovinSend ?? 0 }} {% else %}- {% endif %} |
|
Signature les Nauds :
Signature transporteur :
|