From d2c2637caf2d38abc8f762afddb03a64e84a3c68 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 18 Jun 2006 16:23:13 +0000 Subject: [PATCH] =?UTF-8?q?On=20utilise=20info=20stock=E9=20pour=20d=E9fin?= =?UTF-8?q?ir=20le=20lien?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/compta/bank/account.php | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/htdocs/compta/bank/account.php b/htdocs/compta/bank/account.php index c08c2e210a0..1f2ed1352ee 100644 --- a/htdocs/compta/bank/account.php +++ b/htdocs/compta/bank/account.php @@ -404,21 +404,29 @@ function _print_lines($db,$result,$sql,$acct) foreach($links as $key=>$val) { print ' - '; - print ''; if ($links[$key]['type']=='payment') { + print ''; //print img_object($langs->trans('ShowPayment'),'payment').' '; print $langs->trans("Payment"); + print ''; } else if ($links[$key]['type']=='payment_supplier') { + print ''; //print img_object($langs->trans('ShowPayment'),'payment').' '; print $langs->trans("Payment"); + print ''; } else if ($links[$key]['type']=='company') { + print ''; //print img_object($langs->trans('ShowCustomer'),'company').' '; print $links[$key]['label']; + print ''; + } + else { + print ''; + print $links[$key]['label']; + print ''; } - else print $links[$key]['label']; - print ''; } print '';