Skip to content

Commit

Permalink
Merge pull request #12107 from frederic34/patch-14
Browse files Browse the repository at this point in the history
Update list.php
  • Loading branch information
eldy committed Oct 14, 2019
2 parents 1fc5afa + b424fc6 commit ebd8bc3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions htdocs/compta/bank/list.php
Original file line number Diff line number Diff line change
Expand Up @@ -505,8 +505,13 @@
if ($result<0) {
setEventMessages($objecttmp->error, $objecttmp->errors, 'errors');
} else {
print $result->nbtodo;
if ($result->nbtodolate) print ' &nbsp; ('.$result->nbtodolate.img_warning($langs->trans("Late")).')';
print '<span class="badge badge-info classfortooltip" title="'.dol_htmlentities($langs->trans("TransactionsToConciliate")).'">'.$result->nbtodo.'</span>';
if ($result->nbtodolate) {
print '&nbsp;';
print '<span title="'.dol_htmlentities($langs->trans("Late")).'" class="classfortooltip badge badge-danger">';
print '<i class="fa fa-exclamation-triangle"></i> '.$result->nbtodolate;
print '</span>';
}
}
}
else print $langs->trans("FeatureDisabled");
Expand Down

0 comments on commit ebd8bc3

Please sign in to comment.