Skip to content

Commit

Permalink
Fix balance no more visible
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Oct 13, 2017
1 parent 5092c41 commit c28dec8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/compta/bank/bankentries_list.php
Expand Up @@ -100,10 +100,10 @@
$pageprev = $page - 1;
$pagenext = $page + 1;
if (! $sortorder) $sortorder='ASC';
if (! $sortfield) $sortfield='b.datev, b.dateo, b.rowid';
if (! $sortfield) $sortfield='b.datev,b.dateo,b.rowid';

$mode_balance_ok=false;
//if (($sortfield == 'b.datev' || $sortfield == 'b.datev, b.dateo, b.rowid')) // TODO Manage balance when account not selected
//if (($sortfield == 'b.datev' || $sortfield == 'b.datev,b.dateo,b.rowid')) // TODO Manage balance when account not selected
if (($sortfield == 'b.datev' || $sortfield == 'b.datev,b.dateo,b.rowid'))
{
$sortfield = 'b.datev,b.dateo,b.rowid';
Expand Down

0 comments on commit c28dec8

Please sign in to comment.