diff --git a/htdocs/expedition/shipment.php b/htdocs/expedition/shipment.php
index 07f004ca8d2..f1be4b07021 100644
--- a/htdocs/expedition/shipment.php
+++ b/htdocs/expedition/shipment.php
@@ -164,7 +164,7 @@ if ($id > 0 || ! empty($ref))
}
// Onglet commande
- $nbrow=7;
+ $nbrow=8;
if (! empty($conf->projet->enabled)) $nbrow++;
print '
';
@@ -264,6 +264,7 @@ if ($id > 0 || ! empty($ref))
print dol_print_date($commande->date_livraison,'daytext');
}
print '';
+ // Note on several rows
print ''.$langs->trans('NotePublic').' : ';
print nl2br($commande->note_public);
print ' | ';
@@ -277,7 +278,7 @@ if ($id > 0 || ! empty($ref))
if ($action != 'editshippingmethod' && $user->rights->expedition->creer)
print 'id.'">'.img_edit($langs->trans('SetShippingMode'),1).' | ';
print '
';
- print '';
+ print ' | ';
if ($action == 'editshippingmethod') {
$form->formSelectShippingMethod($_SERVER['PHP_SELF'].'?id='.$commande->id, $commande->shipping_method_id, 'shipping_method_id', 1);
} else {
@@ -349,16 +350,16 @@ if ($id > 0 || ! empty($ref))
// Total HT
print ' | | '.$langs->trans('AmountHT').' | ';
- print ''.price($commande->total_ht).' | ';
- print ''.$langs->trans('Currency'.$conf->currency).' |
';
+ print ''.price($commande->total_ht, 0, '', 1, -1, -1, $conf->currency).' | ';
+ print '';
// Total TVA
- print '| '.$langs->trans('AmountVAT').' | '.price($commande->total_tva).' | ';
- print ''.$langs->trans('Currency'.$conf->currency).' |
';
+ print '| '.$langs->trans('AmountVAT').' | '.price($commande->total_tva, 0, '', 1, -1, -1, $conf->currency).' | ';
+ print '
';
// Total TTC
- print '| '.$langs->trans('AmountTTC').' | '.price($commande->total_ttc).' | ';
- print ''.$langs->trans('Currency'.$conf->currency).' |
';
+ print '| '.$langs->trans('AmountTTC').' | '.price($commande->total_ttc, 0, '', 1, -1, -1, $conf->currency).' | ';
+ print '
';
// Statut
print '| '.$langs->trans('Status').' | ';