diff --git a/htdocs/accountancy/bookkeeping/balance.php b/htdocs/accountancy/bookkeeping/balance.php
index a35333020cd..7d6d71d49a8 100644
--- a/htdocs/accountancy/bookkeeping/balance.php
+++ b/htdocs/accountancy/bookkeeping/balance.php
@@ -401,14 +401,14 @@ if ($action != 'export_csv') {
print '
';
print '| '.$langs->trans("SubTotal").': | ';
if (!empty($conf->global->ACCOUNTANCY_SHOW_OPENING_BALANCE)) {
- print ''.price($sous_total_opening_balance).' | ';
+ print ''.price($sous_total_opening_balance).' | ';
}
- print ''.price($sous_total_debit).' | ';
- print ''.price($sous_total_credit).' | ';
+ print ''.price($sous_total_debit).' | ';
+ print ''.price($sous_total_credit).' | ';
if (!empty($conf->global->ACCOUNTANCY_SHOW_OPENING_BALANCE)) {
- print ''.price(price2num($sous_total_opening_balance + $sous_total_debit - $sous_total_credit)).' | ';
+ print ''.price(price2num($sous_total_opening_balance + $sous_total_debit - $sous_total_credit)).' | ';
} else {
- print ''.price(price2num($sous_total_debit - $sous_total_credit)).' | ';
+ print ''.price(price2num($sous_total_debit - $sous_total_credit)).' | ';
}
print " | \n";
print '
';
@@ -443,14 +443,14 @@ if ($action != 'export_csv') {
}
}
// Debit
- print ''.price($line->debit).' | ';
+ print ''.price($line->debit).' | ';
// Credit
- print ''.price($line->credit).' | ';
+ print ''.price($line->credit).' | ';
if (!empty($conf->global->ACCOUNTANCY_SHOW_OPENING_BALANCE)) {
- print ''.price(price2num($opening_balance + $line->debit - $line->credit, 'MT')).' | ';
+ print ''.price(price2num($opening_balance + $line->debit - $line->credit, 'MT')).' | ';
} else {
- print ''.price(price2num($line->debit - $line->credit, 'MT')).' | ';
+ print ''.price(price2num($line->debit - $line->credit, 'MT')).' | ';
}
print '';
print $link;
@@ -468,12 +468,12 @@ if ($action != 'export_csv') {
if (!empty($conf->global->ACCOUNTANCY_SHOW_OPENING_BALANCE)) {
print ' | '.price($sous_total_opening_balance).' | ';
}
- print ''.price($sous_total_debit).' | ';
- print ''.price($sous_total_credit).' | ';
+ print ''.price($sous_total_debit).' | ';
+ print ''.price($sous_total_credit).' | ';
if (!empty($conf->global->ACCOUNTANCY_SHOW_OPENING_BALANCE)) {
- print '' . price(price2num($sous_total_opening_balance + $sous_total_debit - $sous_total_credit, 'MT')) . ' | ';
+ print '' . price(price2num($sous_total_opening_balance + $sous_total_debit - $sous_total_credit, 'MT')) . ' | ';
} else {
- print '' . price(price2num($sous_total_debit - $sous_total_credit, 'MT')) . ' | ';
+ print '' . price(price2num($sous_total_debit - $sous_total_credit, 'MT')) . ' | ';
}
print " | \n";
print '';
@@ -483,8 +483,8 @@ if ($action != 'export_csv') {
if (!empty($conf->global->ACCOUNTANCY_SHOW_OPENING_BALANCE)) {
print ''.price($total_opening_balance).' | ';
}
- print ''.price($total_debit).' | ';
- print ''.price($total_credit).' | ';
+ print ''.price($total_debit).' | ';
+ print ''.price($total_credit).' | ';
if (!empty($conf->global->ACCOUNTANCY_SHOW_OPENING_BALANCE)) {
print '' . price(price2num($total_opening_balance + $total_debit - $total_credit, 'MT')) . ' | ';
} else {
diff --git a/htdocs/accountancy/bookkeeping/card.php b/htdocs/accountancy/bookkeeping/card.php
index 81b6f98570e..4c7194b2255 100644
--- a/htdocs/accountancy/bookkeeping/card.php
+++ b/htdocs/accountancy/bookkeeping/card.php
@@ -680,8 +680,8 @@ if ($action == 'create') {
}
print '';
print ''.$line->label_operation.' | ';
- print ''.price($line->debit).' | ';
- print ''.price($line->credit).' | ';
+ print ''.price($line->debit).' | ';
+ print ''.price($line->credit).' | ';
if (empty($line->date_export) || empty($line->date_validation)) {
print '';
diff --git a/htdocs/accountancy/bookkeeping/list.php b/htdocs/accountancy/bookkeeping/list.php
index 9df70350922..a70bb710937 100644
--- a/htdocs/accountancy/bookkeeping/list.php
+++ b/htdocs/accountancy/bookkeeping/list.php
@@ -1174,7 +1174,7 @@ while ($i < min($num, $limit)) {
// Amount debit
if (!empty($arrayfields['t.debit']['checked'])) {
- print ' | '.($line->debit != 0 ? price($line->debit) : '').' | ';
+ print ''.($line->debit != 0 ? price($line->debit) : '').' | ';
if (!$i) {
$totalarray['nbfield']++;
}
@@ -1186,7 +1186,7 @@ while ($i < min($num, $limit)) {
// Amount credit
if (!empty($arrayfields['t.credit']['checked'])) {
- print ''.($line->credit != 0 ? price($line->credit) : '').' | ';
+ print ''.($line->credit != 0 ? price($line->credit) : '').' | ';
if (!$i) {
$totalarray['nbfield']++;
}
diff --git a/htdocs/accountancy/bookkeeping/listbyaccount.php b/htdocs/accountancy/bookkeeping/listbyaccount.php
index c47e4ca0e27..98c3f14191b 100644
--- a/htdocs/accountancy/bookkeeping/listbyaccount.php
+++ b/htdocs/accountancy/bookkeeping/listbyaccount.php
@@ -807,7 +807,7 @@ while ($i < min($num, $limit)) {
// Amount debit
if (!empty($arrayfields['t.debit']['checked'])) {
- print ''.($line->debit ? price($line->debit) : '').' | ';
+ print ''.($line->debit ? price($line->debit) : '').' | ';
if (!$i) {
$totalarray['nbfield']++;
}
@@ -819,7 +819,7 @@ while ($i < min($num, $limit)) {
// Amount credit
if (!empty($arrayfields['t.credit']['checked'])) {
- print ''.($line->credit ? price($line->credit) : '').' | ';
+ print ''.($line->credit ? price($line->credit) : '').' | ';
if (!$i) {
$totalarray['nbfield']++;
}
diff --git a/htdocs/accountancy/bookkeeping/listbysubaccount.php b/htdocs/accountancy/bookkeeping/listbysubaccount.php
index 43d4acf343f..20899c693c6 100644
--- a/htdocs/accountancy/bookkeeping/listbysubaccount.php
+++ b/htdocs/accountancy/bookkeeping/listbysubaccount.php
@@ -821,7 +821,7 @@ while ($i < min($num, $limit)) {
// Amount debit
if (!empty($arrayfields['t.debit']['checked'])) {
- print ''.($line->debit ? price($line->debit) : '').' | ';
+ print ''.($line->debit ? price($line->debit) : '').' | ';
if (!$i) {
$totalarray['nbfield']++;
}
@@ -833,7 +833,7 @@ while ($i < min($num, $limit)) {
// Amount credit
if (!empty($arrayfields['t.credit']['checked'])) {
- print ''.($line->credit ? price($line->credit) : '').' | ';
+ print ''.($line->credit ? price($line->credit) : '').' | ';
if (!$i) {
$totalarray['nbfield']++;
}
diff --git a/htdocs/accountancy/bookkeeping/thirdparty_lettering_customer.php b/htdocs/accountancy/bookkeeping/thirdparty_lettering_customer.php
index 8669cae7c2f..29a0171fe08 100644
--- a/htdocs/accountancy/bookkeeping/thirdparty_lettering_customer.php
+++ b/htdocs/accountancy/bookkeeping/thirdparty_lettering_customer.php
@@ -296,15 +296,15 @@ if ($resql) {
print '';
print '| '.$langs->trans("Total").': | '."\n";
- print ''.price($debit).' | ';
- print ''.price($credit).' | ';
+ print ''.price($debit).' | ';
+ print ''.price($credit).' | ';
print ' | ';
print "
\n";
print '';
print '| '.$langs->trans("Balancing").': | '."\n";
print ' | ';
- print ''.price($credit - $debit).' | ';
+ print ''.price($credit - $debit).' | ';
print ' | ';
print "
\n";
diff --git a/htdocs/accountancy/bookkeeping/thirdparty_lettering_supplier.php b/htdocs/accountancy/bookkeeping/thirdparty_lettering_supplier.php
index a73f711e15a..d62a1e9fc25 100644
--- a/htdocs/accountancy/bookkeeping/thirdparty_lettering_supplier.php
+++ b/htdocs/accountancy/bookkeeping/thirdparty_lettering_supplier.php
@@ -293,15 +293,15 @@ if ($resql) {
print '';
print '| '.$langs->trans("Total").': | '."\n";
- print ''.price($debit).' | ';
- print ''.price($credit).' | ';
+ print ''.price($debit).' | ';
+ print ''.price($credit).' | ';
print ' | ';
print "
\n";
print '';
print '| '.$langs->trans("Balancing").': | '."\n";
print ' | ';
- print ''.price($credit - $debit).' | ';
+ print ''.price($credit - $debit).' | ';
print ' | ';
print "
\n";
diff --git a/htdocs/accountancy/customer/index.php b/htdocs/accountancy/customer/index.php
index 9580e8bca37..16dea74108e 100644
--- a/htdocs/accountancy/customer/index.php
+++ b/htdocs/accountancy/customer/index.php
@@ -319,10 +319,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);
@@ -405,10 +405,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);
@@ -472,9 +472,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);
@@ -533,9 +533,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(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 1e6fb660c62..884de9dd232 100644
--- a/htdocs/accountancy/customer/lines.php
+++ b/htdocs/accountancy/customer/lines.php
@@ -492,7 +492,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 4df8d6b9b15..347f5b8c4c2 100644
--- a/htdocs/accountancy/customer/list.php
+++ b/htdocs/accountancy/customer/list.php
@@ -687,7 +687,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 baeefa1bbfb..f06dd5f8d6f 100644
--- a/htdocs/accountancy/expensereport/index.php
+++ b/htdocs/accountancy/expensereport/index.php
@@ -210,10 +210,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);
@@ -290,10 +290,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);
@@ -352,9 +352,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 df50eaaff87..b262f85367a 100644
--- a/htdocs/accountancy/expensereport/lines.php
+++ b/htdocs/accountancy/expensereport/lines.php
@@ -388,7 +388,7 @@ if ($result) {
print '';
// Amount without taxes
- print ''.price($objp->total_ht).' | ';
+ print ''.price($objp->total_ht).' | ';
// Vat rate
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 810f65c68df..d69e78fead2 100644
--- a/htdocs/accountancy/expensereport/list.php
+++ b/htdocs/accountancy/expensereport/list.php
@@ -434,7 +434,7 @@ if ($result) {
print '';
// Amount without taxes
- print '';
+ print ' | ';
print price($objp->price);
print ' | ';
diff --git a/htdocs/accountancy/journal/bankjournal.php b/htdocs/accountancy/journal/bankjournal.php
index 32670b15575..34e533974fc 100644
--- a/htdocs/accountancy/journal/bankjournal.php
+++ b/htdocs/accountancy/journal/bankjournal.php
@@ -1108,8 +1108,8 @@ if (empty($action) || $action == 'view') {
print $reflabel;
print "";
print ''.$val["type_payment"]." | ";
- print ''.($mt >= 0 ? price($mt) : '')." | ";
- print ''.($mt < 0 ? price(-$mt) : '')." | ";
+ print ''.($mt >= 0 ? price($mt) : '')." | ";
+ print ''.($mt < 0 ? price(-$mt) : '')." | ";
print "";
}
}
@@ -1222,8 +1222,8 @@ if (empty($action) || $action == 'view') {
print "";
print "".$reflabel." | ";
print ''.$val["type_payment"]." | ";
- print ''.($mt < 0 ? price(-$mt) : '')." | ";
- print ''.($mt >= 0 ? price($mt) : '')." | ";
+ print ''.($mt < 0 ? price(-$mt) : '')." | ";
+ print ''.($mt >= 0 ? price($mt) : '')." | ";
print "";
}
}
@@ -1259,8 +1259,8 @@ if (empty($action) || $action == 'view') {
print "";
print "".$reflabel." | ";
print ''.$val["type_payment"]." | ";
- print ''.($mt < 0 ? price(-$mt) : '')." | ";
- print ''.($mt >= 0 ? price($mt) : '')." | ";
+ print ''.($mt < 0 ? price(-$mt) : '')." | ";
+ print ''.($mt >= 0 ? price($mt) : '')." | ";
print "";
}
}
diff --git a/htdocs/accountancy/journal/expensereportsjournal.php b/htdocs/accountancy/journal/expensereportsjournal.php
index 0273690ae81..c1a62847b32 100644
--- a/htdocs/accountancy/journal/expensereportsjournal.php
+++ b/htdocs/accountancy/journal/expensereportsjournal.php
@@ -610,8 +610,8 @@ if (empty($action) || $action == 'view') {
$userstatic->id = $tabuser[$key]['id'];
$userstatic->name = $tabuser[$key]['name'];
print "".$userstatic->getNomUrl(0, 'user', 16).' - '.$accountingaccount->label." | ";
- print ''.($mt >= 0 ? price($mt) : '')." | ";
- print ''.($mt < 0 ? price(-$mt) : '')." | ";
+ print ''.($mt >= 0 ? price($mt) : '')." | ";
+ print ''.($mt < 0 ? price(-$mt) : '')." | ";
print "";
}
}
@@ -644,8 +644,8 @@ if (empty($action) || $action == 'view') {
}
print '';
print "".$userstatic->getNomUrl(0, 'user', 16).' - '.$langs->trans("SubledgerAccount")." | ";
- print ''.($mt < 0 ? price(-$mt) : '')." | ";
- print ''.($mt >= 0 ? price($mt) : '')." | ";
+ print ''.($mt < 0 ? price(-$mt) : '')." | ";
+ print ''.($mt >= 0 ? price($mt) : '')." | ";
print "";
}
@@ -680,8 +680,8 @@ if (empty($action) || $action == 'view') {
print '';
print "".$userstatic->getNomUrl(0, 'user', 16).' - '.$langs->trans("VAT").' '.join(', ', $def_tva[$key][$k]).' %'.($numtax ? ' - Localtax '.$numtax : '');
print " | ";
- print ''.($mt >= 0 ? price($mt) : '')." | ";
- print ''.($mt < 0 ? price(-$mt) : '')." | ";
+ print ''.($mt >= 0 ? price($mt) : '')." | ";
+ print ''.($mt < 0 ? price(-$mt) : '')." | ";
print "";
}
}
diff --git a/htdocs/accountancy/journal/purchasesjournal.php b/htdocs/accountancy/journal/purchasesjournal.php
index 2677f8569f2..9b979da37d6 100644
--- a/htdocs/accountancy/journal/purchasesjournal.php
+++ b/htdocs/accountancy/journal/purchasesjournal.php
@@ -911,8 +911,8 @@ if (empty($action) || $action == 'view') {
}
print '';
print "".$companystatic->getNomUrl(0, 'supplier', 16).' - '.$invoicestatic->ref_supplier.' - '.$langs->trans("SubledgerAccount")." | ";
- print ''.($mt < 0 ? price(-$mt) : '')." | ";
- print ''.($mt >= 0 ? price($mt) : '')." | ";
+ print ''.($mt < 0 ? price(-$mt) : '')." | ";
+ print ''.($mt >= 0 ? price($mt) : '')." | ";
print "";
}
@@ -940,8 +940,8 @@ if (empty($action) || $action == 'view') {
$companystatic->id = $tabcompany[$key]['id'];
$companystatic->name = $tabcompany[$key]['name'];
print "".$companystatic->getNomUrl(0, 'supplier', 16).' - '.$invoicestatic->ref_supplier.' - '.$accountingaccount->label." | ";
- print ''.($mt >= 0 ? price($mt) : '')." | ";
- print ''.($mt < 0 ? price(-$mt) : '')." | ";
+ print ''.($mt >= 0 ? price($mt) : '')." | ";
+ print ''.($mt < 0 ? price(-$mt) : '')." | ";
print "";
}
@@ -977,8 +977,8 @@ if (empty($action) || $action == 'view') {
print "";
print $companystatic->getNomUrl(0, 'supplier', 16).' - '.$invoicestatic->ref_supplier.' - '.$langs->trans("VAT").' '.join(', ', $def_tva[$key][$k]).' %'.($numtax ? ' - Localtax '.$numtax : '');
print " | ";
- print ''.($mt >= 0 ? price($mt) : '')." | ";
- print ''.($mt < 0 ? price(-$mt) : '')." | ";
+ print ''.($mt >= 0 ? price($mt) : '')." | ";
+ print ''.($mt < 0 ? price(-$mt) : '')." | ";
print "";
}
}
@@ -1005,8 +1005,8 @@ if (empty($action) || $action == 'view') {
print "";
print ' | ';
print "".$companystatic->getNomUrl(0, 'supplier', 16).' - '.$invoicestatic->ref_supplier.' - '.$langs->trans("VAT")." NPR (counterpart) | ";
- print ''.($mt < 0 ? price(-$mt) : '')." | ";
- print ''.($mt >= 0 ? price($mt) : '')." | ";
+ print ''.($mt < 0 ? price(-$mt) : '')." | ";
+ print ''.($mt >= 0 ? price($mt) : '')." | ";
print "";
}
}
diff --git a/htdocs/accountancy/journal/sellsjournal.php b/htdocs/accountancy/journal/sellsjournal.php
index d147186a8d8..93be8e8b1b9 100644
--- a/htdocs/accountancy/journal/sellsjournal.php
+++ b/htdocs/accountancy/journal/sellsjournal.php
@@ -851,8 +851,8 @@ if (empty($action) || $action == 'view') {
}
print '';
print "".$companystatic->getNomUrl(0, 'customer', 16).' - '.$invoicestatic->ref.' - '.$langs->trans("SubledgerAccount")." | ";
- print ''.($mt >= 0 ? price($mt) : '')." | ";
- print ''.($mt < 0 ? price(-$mt) : '')." | ";
+ print ''.($mt >= 0 ? price($mt) : '')." | ";
+ print ''.($mt < 0 ? price(-$mt) : '')." | ";
print "";
}
@@ -880,8 +880,8 @@ if (empty($action) || $action == 'view') {
$companystatic->id = $tabcompany[$key]['id'];
$companystatic->name = $tabcompany[$key]['name'];
print "".$companystatic->getNomUrl(0, 'customer', 16).' - '.$invoicestatic->ref.' - '.$accountingaccount->label." | ";
- print ''.($mt < 0 ? price(-$mt) : '')." | ";
- print ''.($mt >= 0 ? price($mt) : '')." | ";
+ print ''.($mt < 0 ? price(-$mt) : '')." | ";
+ print ''.($mt >= 0 ? price($mt) : '')." | ";
print "";
}
@@ -916,8 +916,8 @@ if (empty($action) || $action == 'view') {
print '';
print "".$companystatic->getNomUrl(0, 'customer', 16).' - '.$invoicestatic->ref.' - '.$langs->trans("VAT").' '.join(', ', $def_tva[$key][$k]).' %'.($numtax ? ' - Localtax '.$numtax : '');
print " | ";
- print ''.($mt < 0 ? price(-$mt) : '')." | ";
- print ''.($mt >= 0 ? price($mt) : '')." | ";
+ print ''.($mt < 0 ? price(-$mt) : '')." | ";
+ print ''.($mt >= 0 ? price($mt) : '')." | ";
print "";
}
}
diff --git a/htdocs/accountancy/supplier/index.php b/htdocs/accountancy/supplier/index.php
index c1a3ffe23a6..343eb506408 100644
--- a/htdocs/accountancy/supplier/index.php
+++ b/htdocs/accountancy/supplier/index.php
@@ -314,10 +314,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);
@@ -393,10 +393,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);
@@ -456,9 +456,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 90e7213c8f9..4a3b8cd53ac 100644
--- a/htdocs/accountancy/supplier/lines.php
+++ b/htdocs/accountancy/supplier/lines.php
@@ -497,7 +497,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 63dd996a546..793ba453105 100644
--- a/htdocs/accountancy/supplier/list.php
+++ b/htdocs/accountancy/supplier/list.php
@@ -671,7 +671,7 @@ if ($result) {
print $form->textwithtooltip(dol_trunc($text, $trunclength), $objp->description);
print '';
- print '';
+ print ' | ';
print price($objp->total_ht);
print ' | ';