From a3faa12753a0c95b46553b294cdf982605d9262a Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 22 Nov 2020 01:28:56 +0100 Subject: [PATCH] Fix responsive --- htdocs/user/bank.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/htdocs/user/bank.php b/htdocs/user/bank.php index 74263a11975..d16d429b2fe 100644 --- a/htdocs/user/bank.php +++ b/htdocs/user/bank.php @@ -335,9 +335,7 @@ if ($action != 'edit' && $action != 'create') // If not bank account yet, $acco // Nbre max d'elements des petites listes $MAXLIST = $conf->global->MAIN_SIZE_SHORTLIST_LIMIT; - /* - * Latest salary payments - */ + // Latest payments of salaries if (!empty($conf->salaries->enabled) && $user->rights->salaries->read && (in_array($object->id, $childids) || $object->id == $user->id) ) @@ -368,14 +366,17 @@ if ($action != 'edit' && $action != 'create') // If not bank account yet, $acco $objp = $db->fetch_object($resql); print ''; - print ''; + print ''; $salary->id = $objp->rowid; $salary->ref = $objp->rowid; - print $salary->getNomUrl(1); - print ''.dol_print_date($db->jdate($objp->datesp), 'day')."\n"; + print ''; + + print ''.dol_print_date($db->jdate($objp->datesp), 'day')."\n"; print ''.dol_print_date($db->jdate($objp->dateep), 'day')."\n"; - print ''.price($objp->amount).''; + print ''.price($objp->amount).''; + + print ''; $i++; } $db->free($resql);