diff --git a/htdocs/fourn/class/fournisseur.product.class.php b/htdocs/fourn/class/fournisseur.product.class.php
index 9eedea68335..c0a7bbc97c7 100644
--- a/htdocs/fourn/class/fournisseur.product.class.php
+++ b/htdocs/fourn/class/fournisseur.product.class.php
@@ -893,13 +893,13 @@ class ProductFournisseur extends Product
$langs->load("suppliers");
if (count($productFournList) > 0) {
$out .= '
';
- $out .= '| '.($showunitprice?$langs->trans("Price").' '.$langs->trans("HT"):'').' | ';
- $out .= ''.($showunitprice?$langs->trans("QtyMin"):'').' | ';
+ $out .= '
| '.($showunitprice?$langs->trans("Price").' '.$langs->trans("HT"):'').' | ';
+ $out .= ''.($showunitprice?$langs->trans("QtyMin"):'').' | ';
$out .= ''.$langs->trans("Supplier").' | ';
$out .= ''.$langs->trans("SupplierRef").' |
';
foreach ($productFournList as $productFourn) {
- $out.= '| '.($showunitprice?price($productFourn->fourn_unitprice * (1 -$productFourn->fourn_remise_percent/100) - $productFourn->fourn_remise):'').' | ';
- $out.= ''.($showunitprice?$productFourn->fourn_qty:'').' | ';
+ $out.= '
| '.($showunitprice?price($productFourn->fourn_unitprice * (1 -$productFourn->fourn_remise_percent/100) - $productFourn->fourn_remise):'').' | ';
+ $out.= ''.($showunitprice?$productFourn->fourn_qty:'').' | ';
$out.= ''.$productFourn->getSocNomUrl(1, 'supplier', $maxlen, $notooltip).' | ';
$out.= ''.$productFourn->fourn_ref.' | |
';
}
@@ -992,13 +992,13 @@ class ProductFournisseur extends Product
if (count($productFournLogList) > 0) {
$out .= '';
$out .= '| '.$langs->trans("Date").' | ';
- $out .= ''.$langs->trans("Price").' | ';
- //$out .= ''.$langs->trans("QtyMin").' | ';
+ $out .= ''.$langs->trans("Price").' | ';
+ //$out .= ''.$langs->trans("QtyMin").' | ';
$out .= ''.$langs->trans("User").' |
';
foreach ($productFournLogList as $productFournLog) {
- $out.= '| '.dol_print_date($productFournLog['datec'], 'dayhour', 'tzuser').' | ';
- $out.= ''.price($productFournLog['price']).' | ';
- //$out.= ''.$productFournLog['quantity'].' | ';
+ $out.= '
| '.dol_print_date($productFournLog['datec'], 'dayhour', 'tzuser').' | ';
+ $out.= ''.price($productFournLog['price']).' | ';
+ //$out.= ''.$productFournLog['quantity'].' | ';
$out.= ''.$productFournLog['lastname'].' |
';
}
$out .= '
';