diff --git a/htdocs/compta/bank/annuel.php b/htdocs/compta/bank/annuel.php
index 64f4e15cce6..63f1ffd107d 100644
--- a/htdocs/compta/bank/annuel.php
+++ b/htdocs/compta/bank/annuel.php
@@ -232,7 +232,7 @@ for ($mois = 1 ; $mois < 13 ; $mois++)
print '
| '.$langs->trans("Total")." | ";
for ($annee = $year_start ; $annee <= $year_end ; $annee++)
{
- print ''.price($totsorties[$annee]).' | '.price($totentrees[$annee]).' | ';
+ print ''.price($totsorties[$annee]).' | '.price($totentrees[$annee]).' | ';
}
print "
\n";
diff --git a/htdocs/compta/bank/bankentries_list.php b/htdocs/compta/bank/bankentries_list.php
index a8d86c1a5f9..a3928cbc0ca 100644
--- a/htdocs/compta/bank/bankentries_list.php
+++ b/htdocs/compta/bank/bankentries_list.php
@@ -704,8 +704,8 @@ if ($resql)
$form->select_comptes(GETPOST('add_account','int')?GETPOST('add_account','int'):$search_account,'add_account',0,'',1, ($id > 0 || ! empty($ref)?' disabled="disabled"':''));
print '';
//}
- print ' | ';
- print ' | ';
+ print ' | ';
+ print ' | ';
/*if (! empty($conf->accounting->enabled))
{
print '';
@@ -896,32 +896,32 @@ if ($resql)
}
if (! empty($arrayfields['ba.ref']['checked']))
{
- print ' | ';
+ print ' | ';
$form->select_comptes($search_account,'search_account',0,'',1, ($id > 0 || ! empty($ref)?' disabled="disabled"':''));
print ' | ';
}
if (! empty($arrayfields['b.debit']['checked']))
{
- print '';
+ print ' | ';
print '';
print ' | ';
}
if (! empty($arrayfields['b.credit']['checked']))
{
- print '';
+ print ' | ';
print '';
print ' | ';
}
if (! empty($arrayfields['balancebefore']['checked']))
{
- print '';
+ print ' | ';
$htmltext=$langs->trans("BalanceVisibilityDependsOnSortAndFilters", $langs->transnoentitiesnoconv("DateValue"));
print $form->textwithpicto('', $htmltext, 1);
print ' | ';
}
if (! empty($arrayfields['balance']['checked']))
{
- print '';
+ print ' | ';
$htmltext=$langs->trans("BalanceVisibilityDependsOnSortAndFilters", $langs->transnoentitiesnoconv("DateValue"));
print $form->textwithpicto('', $htmltext, 1);
print ' | ';
@@ -1072,13 +1072,13 @@ if ($resql)
if (! empty($arrayfields['balancebefore']['checked']))
{
- print '';
+ print ' | ';
print price(price2num($balance, 'MT'), 1, $langs);
print ' | ';
}
if (! empty($arrayfields['balance']['checked']))
{
- print '';
+ print ' | ';
print price(price2num($balance, 'MT'), 1, $langs);
print ' | ';
}
@@ -1126,7 +1126,7 @@ if ($resql)
// Ref
if (! empty($arrayfields['b.rowid']['checked']))
{
- print '';
+ print ' | ';
print "rowid.'&save_lastsearch_values=1">'.img_object($langs->trans("ShowPayment").': '.$objp->rowid, 'account', 'class="classfortooltip"').' '.$objp->rowid." ";
print ' | ';
if (! $i) $totalarray['nbfield']++;
@@ -1346,7 +1346,7 @@ if ($resql)
// Bank account
if (! empty($arrayfields['ba.ref']['checked']))
{
- print '';
+ print ' | ';
print $bankaccount->getNomUrl(1);
print " | \n";
if (! $i) $totalarray['nbfield']++;
@@ -1369,7 +1369,7 @@ if ($resql)
// Credit
if (! empty($arrayfields['b.credit']['checked']))
{
- print '';
+ print ' | ';
if ($objp->amount > 0)
{
print price($objp->amount);
@@ -1387,11 +1387,11 @@ if ($resql)
{
if ($balancebefore >= 0)
{
- print ' | '.price($balancebefore).' | ';
+ print ' '.price($balancebefore).' | ';
}
else
{
- print ' '.price($balancebefore).' | ';
+ print ' '.price($balancebefore).' | ';
}
}
else
@@ -1407,7 +1407,7 @@ if ($resql)
{
if ($balance >= 0)
{
- print ' '.price($balance).' | ';
+ print ' '.price($balance).' | ';
}
else
{
@@ -1523,8 +1523,8 @@ if ($resql)
if ($num < $limit && empty($offset)) print ''.$langs->trans("Total").' | ';
else print ''.$langs->trans("Totalforthispage").' | ';
}
- elseif ($totalarray['totaldebfield'] == $i) print ''.price(-1 * $totalarray['totaldeb']).' | ';
- elseif ($totalarray['totalcredfield'] == $i) print ''.price($totalarray['totalcred']).' | ';
+ elseif ($totalarray['totaldebfield'] == $i) print ''.price(-1 * $totalarray['totaldeb']).' | ';
+ elseif ($totalarray['totalcredfield'] == $i) print ''.price($totalarray['totalcred']).' | ';
elseif ($i == $posconciliatecol)
{
print '';
|