diff --git a/htdocs/accountancy/customer/index.php b/htdocs/accountancy/customer/index.php
index 0131f51d515..f063f832f54 100644
--- a/htdocs/accountancy/customer/index.php
+++ b/htdocs/accountancy/customer/index.php
@@ -211,10 +211,10 @@ if ($resql) {
else print $row[1];
print '';
for($i = 2; $i <= 12; $i ++) {
- print '
' . price($row[$i]) . ' | ';
+ print '' . price($row[$i]) . ' | ';
}
- print '' . price($row[13]) . ' | ';
- print '' . price($row[14]) . ' | ';
+ print '' . price($row[13]) . ' | ';
+ print '' . price($row[14]) . ' | ';
print '';
}
$db->free($resql);
@@ -289,10 +289,10 @@ if ($resql) {
print '';
for($i = 2; $i <= 12; $i++) {
- print '' . price($row[$i]) . ' | ';
+ print '' . price($row[$i]) . ' | ';
}
- print '' . price($row[13]) . ' | ';
- print '' . price($row[14]) . ' | ';
+ print '' . price($row[13]) . ' | ';
+ print '' . price($row[14]) . ' | ';
print '';
}
$db->free($resql);
@@ -348,9 +348,9 @@ if ($conf->global->MAIN_FEATURES_LEVEL > 0) // This part of code looks strange.
while ($row = $db->fetch_row($resql)) {
print '| ' . $row[0] . ' | ';
for($i = 1; $i <= 12; $i ++) {
- print '' . price($row[$i]) . ' | ';
+ print '' . price($row[$i]) . ' | ';
}
- print '' . price($row[13]) . ' | ';
+ print '' . price($row[13]) . ' | ';
print '
';
}
$db->free($resql);
@@ -401,9 +401,9 @@ if ($conf->global->MAIN_FEATURES_LEVEL > 0) // This part of code looks strange.
print '| ' . $row[0] . ' | ';
for($i = 1; $i <= 12; $i ++) {
- print '' . price(price2num($row[$i])) . ' | ';
+ print '' . price(price2num($row[$i])) . ' | ';
}
- print '' . price(price2num($row[13])) . ' | ';
+ print '' . price(price2num($row[13])) . ' | ';
print '
';
}
$db->free($resql);
diff --git a/htdocs/accountancy/customer/lines.php b/htdocs/accountancy/customer/lines.php
index 19e85cdb651..ea174638a2a 100644
--- a/htdocs/accountancy/customer/lines.php
+++ b/htdocs/accountancy/customer/lines.php
@@ -385,7 +385,7 @@ if ($result) {
print $form->textwithtooltip(dol_trunc($text, $trunclength), $objp->description);
print '';
- print '' . price($objp->total_ht) . ' | ';
+ print '' . price($objp->total_ht) . ' | ';
print '' . vatrate($objp->tva_tx.($objp->vat_src_code?' ('.$objp->vat_src_code.')':'')) . ' | ';
diff --git a/htdocs/accountancy/customer/list.php b/htdocs/accountancy/customer/list.php
index ed1c40a6ad7..5314099db1f 100644
--- a/htdocs/accountancy/customer/list.php
+++ b/htdocs/accountancy/customer/list.php
@@ -503,7 +503,7 @@ if ($result) {
print $form->textwithtooltip(dol_trunc($text, $trunclength), $objp->description);
print '';
- print '';
+ print ' | ';
print price($objp->total_ht);
print ' | ';
diff --git a/htdocs/accountancy/expensereport/index.php b/htdocs/accountancy/expensereport/index.php
index a5026f920a0..4fe2ee3120b 100644
--- a/htdocs/accountancy/expensereport/index.php
+++ b/htdocs/accountancy/expensereport/index.php
@@ -203,10 +203,10 @@ if ($resql) {
else print $row[1];
print '';
for($i = 2; $i <= 12; $i ++) {
- print '' . price($row[$i]) . ' | ';
+ print '' . price($row[$i]) . ' | ';
}
- print '' . price($row[13]) . ' | ';
- print '' . price($row[14]) . ' | ';
+ print '' . price($row[13]) . ' | ';
+ print '' . price($row[14]) . ' | ';
print '';
}
$db->free($resql);
@@ -276,10 +276,10 @@ if ($resql) {
else print $row[1];
print '';
for($i = 2; $i <= 12; $i ++) {
- print '' . price($row[$i]) . ' | ';
+ print '' . price($row[$i]) . ' | ';
}
- print '' . price($row[13]) . ' | ';
- print '' . price($row[14]) . ' | ';
+ print '' . price($row[13]) . ' | ';
+ print '' . price($row[14]) . ' | ';
print '';
}
$db->free($resql);
@@ -331,9 +331,9 @@ if ($conf->global->MAIN_FEATURES_LEVEL > 0) // This part of code looks strange.
while ($row = $db->fetch_row($resql)) {
print '| ' . $row[0] . ' | ';
for($i = 1; $i <= 12; $i ++) {
- print '' . price($row[$i]) . ' | ';
+ print '' . price($row[$i]) . ' | ';
}
- print '' . price($row[13]) . ' | ';
+ print '' . price($row[13]) . ' | ';
print '
';
}
diff --git a/htdocs/accountancy/expensereport/lines.php b/htdocs/accountancy/expensereport/lines.php
index 508dfb7136e..d15ef52ad39 100644
--- a/htdocs/accountancy/expensereport/lines.php
+++ b/htdocs/accountancy/expensereport/lines.php
@@ -319,7 +319,7 @@ if ($result) {
print $form->textwithtooltip(dol_trunc($text, $trunclength), $objp->comments);
print '';
- print '' . price($objp->total_ht) . ' | ';
+ print '' . price($objp->total_ht) . ' | ';
print '' . vatrate($objp->tva_tx.($objp->vat_src_code?' ('.$objp->vat_src_code.')':'')) . ' | ';
diff --git a/htdocs/accountancy/expensereport/list.php b/htdocs/accountancy/expensereport/list.php
index 9f70d175d40..60b24638775 100644
--- a/htdocs/accountancy/expensereport/list.php
+++ b/htdocs/accountancy/expensereport/list.php
@@ -376,7 +376,7 @@ if ($result) {
print $form->textwithtooltip(dol_trunc($text, $trunclength), $objp->comments);
print '';
- print '';
+ print ' | ';
print price($objp->price);
print ' | ';
diff --git a/htdocs/accountancy/supplier/index.php b/htdocs/accountancy/supplier/index.php
index ca60735fcf0..bc632118da7 100644
--- a/htdocs/accountancy/supplier/index.php
+++ b/htdocs/accountancy/supplier/index.php
@@ -203,10 +203,10 @@ if ($resql) {
else print $row[1];
print '';
for($i = 2; $i <= 12; $i ++) {
- print '' . price($row[$i]) . ' | ';
+ print '' . price($row[$i]) . ' | ';
}
- print '' . price($row[13]) . ' | ';
- print '' . price($row[14]) . ' | ';
+ print '' . price($row[13]) . ' | ';
+ print '' . price($row[14]) . ' | ';
print '';
}
$db->free($resql);
@@ -274,10 +274,10 @@ if ($resql) {
else print $row[1];
print '';
for($i = 2; $i <= 12; $i++) {
- print '' . price($row[$i]) . ' | ';
+ print '' . price($row[$i]) . ' | ';
}
- print '' . price($row[13]) . ' | ';
- print '' . price($row[14]) . ' | ';
+ print '' . price($row[13]) . ' | ';
+ print '' . price($row[14]) . ' | ';
print '';
}
$db->free($resql);
@@ -329,9 +329,9 @@ if ($conf->global->MAIN_FEATURES_LEVEL > 0) // This part of code looks strange.
while ($row = $db->fetch_row($resql)) {
print '| ' . $row[0] . ' | ';
for($i = 1; $i <= 12; $i ++) {
- print '' . price($row[$i]) . ' | ';
+ print '' . price($row[$i]) . ' | ';
}
- print '' . price($row[13]) . ' | ';
+ print '' . price($row[13]) . ' | ';
print '
';
}
$db->free($resql);
diff --git a/htdocs/accountancy/supplier/lines.php b/htdocs/accountancy/supplier/lines.php
index 352a73200fb..a67386f6fbd 100644
--- a/htdocs/accountancy/supplier/lines.php
+++ b/htdocs/accountancy/supplier/lines.php
@@ -396,7 +396,7 @@ if ($result) {
print $form->textwithtooltip(dol_trunc($text, $trunclength), $objp->description);
print '';
- print '' . price($objp->total_ht) . ' | ';
+ print '' . price($objp->total_ht) . ' | ';
print '' . vatrate($objp->tva_tx.($objp->vat_src_code?' ('.$objp->vat_src_code.')':'')) . ' | ';
diff --git a/htdocs/accountancy/supplier/list.php b/htdocs/accountancy/supplier/list.php
index fc8cc10fec4..17284513650 100644
--- a/htdocs/accountancy/supplier/list.php
+++ b/htdocs/accountancy/supplier/list.php
@@ -491,7 +491,7 @@ if ($result) {
print $form->textwithtooltip(dol_trunc($text, $trunclength), $objp->description);
print '';
- print '';
+ print ' | ';
print price($objp->total_ht);
print ' | ';
diff --git a/htdocs/compta/bank/treso.php b/htdocs/compta/bank/treso.php
index 5a4374f47dd..f17e622210e 100644
--- a/htdocs/compta/bank/treso.php
+++ b/htdocs/compta/bank/treso.php
@@ -293,9 +293,9 @@ if ($_REQUEST["account"] || $_REQUEST["ref"])
}else print " | ";
}
print "".$refcomp." | ";
- if ($obj->total_ttc < 0) { print "".price(abs($total_ttc))." | | "; };
- if ($obj->total_ttc >= 0) { print " | ".price($total_ttc)." | "; };
- print ''.price($solde).' | ';
+ if ($obj->total_ttc < 0) { print ''.price(abs($total_ttc))." | | "; };
+ if ($obj->total_ttc >= 0) { print ' | '.price($total_ttc)." | "; };
+ print ''.price($solde).' | ';
print "";
}
diff --git a/htdocs/compta/resultat/index.php b/htdocs/compta/resultat/index.php
index addc56a240b..70129e80403 100644
--- a/htdocs/compta/resultat/index.php
+++ b/htdocs/compta/resultat/index.php
@@ -943,7 +943,7 @@ for ($mois = 1+$nb_mois_decalage ; $mois <= 12+$nb_mois_decalage ; $mois++)
}
print "";
- print ' ';
+ print ' | ';
if ($modecompta == 'BOOKKEEPING')
{
if (isset($encaiss[$case]))
@@ -978,8 +978,8 @@ print ' | ';
for ($annee = $year_start ; $annee <= $year_end ; $annee++)
{
$nbcols+=2;
- print ''.(isset($totsorties[$annee])?price(price2num($totsorties[$annee], 'MT')):' ').' | ';
- print ''.(isset($totentrees[$annee])?price(price2num($totentrees[$annee], 'MT')):' ').' | ';
+ print ''.(isset($totsorties[$annee])?price(price2num($totsorties[$annee], 'MT')):' ').' | ';
+ print ''.(isset($totentrees[$annee])?price(price2num($totentrees[$annee], 'MT')):' ').' | ';
}
print "\n";
diff --git a/htdocs/core/boxes/box_activity.php b/htdocs/core/boxes/box_activity.php
index 300040639a8..995ba93fb64 100644
--- a/htdocs/core/boxes/box_activity.php
+++ b/htdocs/core/boxes/box_activity.php
@@ -422,7 +422,7 @@ class box_activity extends ModeleBoxes
);
$totalnb += $data[$j]->nb;
$this->info_box_contents[$line][3] = array(
- 'td' => 'class="right"',
+ 'td' => 'class="nowrap right"',
'text' => price($data[$j]->Mnttot, 1, $langs, 0, 0, -1, $conf->currency),
);
$this->info_box_contents[$line][4] = array(
diff --git a/htdocs/core/boxes/box_commandes.php b/htdocs/core/boxes/box_commandes.php
index 8575e739946..956e73b4acf 100644
--- a/htdocs/core/boxes/box_commandes.php
+++ b/htdocs/core/boxes/box_commandes.php
@@ -146,7 +146,7 @@ class box_commandes extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="right"',
+ 'td' => 'class="nowrap right"',
'text' => price($objp->total_ht, 0, $langs, 0, -1, -1, $conf->currency),
);
diff --git a/htdocs/core/boxes/box_factures_fourn_imp.php b/htdocs/core/boxes/box_factures_fourn_imp.php
index 09de3b874e3..74f8cbc6b64 100644
--- a/htdocs/core/boxes/box_factures_fourn_imp.php
+++ b/htdocs/core/boxes/box_factures_fourn_imp.php
@@ -151,7 +151,7 @@ class box_factures_fourn_imp extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="right"',
+ 'td' => 'class="nowrap right"',
'text' => price($objp->total_ht, 0, $langs, 0, -1, -1, $conf->currency),
);
diff --git a/htdocs/core/boxes/box_factures_imp.php b/htdocs/core/boxes/box_factures_imp.php
index fd85f136f96..a0692c791b2 100644
--- a/htdocs/core/boxes/box_factures_imp.php
+++ b/htdocs/core/boxes/box_factures_imp.php
@@ -161,7 +161,7 @@ class box_factures_imp extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="right"',
+ 'td' => 'class="nowrap right"',
'text' => price($objp->total_ht, 0, $langs, 0, -1, -1, $conf->currency),
);