diff --git a/htdocs/product/composition/card.php b/htdocs/product/composition/card.php
index 2cecfc84bc4..d5325029771 100644
--- a/htdocs/product/composition/card.php
+++ b/htdocs/product/composition/card.php
@@ -339,7 +339,7 @@ if ($id > 0 || !empty($ref)) {
print '
';
// Rank
- print '| '.$langs->trans('Rank').' | ';
+ print ''.$langs->trans('Position').' | ';
// Product ref
print ''.$langs->trans('ComposedProduct').' | ';
// Product label
@@ -401,8 +401,8 @@ if ($id > 0 || !empty($ref)) {
$totalline = price2num($value['nb'] * ($fourn_unitprice * (1 - ($fourn_remise_percent / 100)) - $fourn_remise), 'MT');
$total += $totalline;
- print '';
- print ($notdefined ? '' : ($value['nb'] > 1 ? $value['nb'].'x' : '').price($unitline, '', '', 0, 0, -1, $conf->currency));
+ print ' | ';
+ print ($notdefined ? '' : ($value['nb'] > 1 ? $value['nb'].'x ' : '').''.price($unitline, '', '', 0, 0, -1, $conf->currency)).'';
print ' | ';
// Best selling price
@@ -414,11 +414,11 @@ if ($id > 0 || !empty($ref)) {
$totalsell += $totallinesell;
}
print '';
- print ($notdefined ? '' : ($value['nb'] > 1 ? $value['nb'].'x' : ''));
+ print ($notdefined ? '' : ($value['nb'] > 1 ? $value['nb'].'x ' : ''));
if (is_numeric($pricesell)) {
- print price($pricesell, '', '', 0, 0, -1, $conf->currency);
+ print ''.price($pricesell, '', '', 0, 0, -1, $conf->currency).'';
} else {
- print $langs->trans($pricesell);
+ print ''.$langs->trans($pricesell).'';
}
print ' | ';
@@ -603,6 +603,7 @@ if ($id > 0 || !empty($ref)) {
print '';
print '';
print '';
+
print '';
print '';
print '| '.$langs->trans("ComposedProduct").'';
|