diff --git a/htdocs/fourn/commande/dispatch.php b/htdocs/fourn/commande/dispatch.php
index ea51bcdb4d7..ac611155f31 100644
--- a/htdocs/fourn/commande/dispatch.php
+++ b/htdocs/fourn/commande/dispatch.php
@@ -571,7 +571,7 @@ if ($id > 0 || ! empty($ref)) {
print '
| ';
print ' | ';
}
- //print '' . $langs->trans("SupplierRef") . ' | ';
+ print '' . $langs->trans("SupplierRef") . ' | ';
print '' . $langs->trans("QtyOrdered") . ' | ';
print '' . $langs->trans("QtyDispatchedShort") . ' | ';
print '' . $langs->trans("QtyToDispatchShort") . ' | ';
@@ -655,7 +655,7 @@ if ($id > 0 || ! empty($ref)) {
$up_ht_disc = price2num($up_ht_disc * (100 - $objp->remise_percent) / 100, 'MU');
// Supplier ref
- //print ''.$objp->sref.' | ';
+ print ''.$objp->sref.' | ';
// Qty ordered
print '' . $objp->qty . ' | ';
@@ -748,7 +748,7 @@ if ($id > 0 || ! empty($ref)) {
print '';
print '';
- print '| ';
+ print ' | ';
print '';
print '';
|