mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
fix count
This commit is contained in:
parent
b0209ad827
commit
69bd28ff31
|
|
@ -1616,8 +1616,6 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
|||
continue; // Already in previous list
|
||||
}
|
||||
|
||||
$nbremote++;
|
||||
|
||||
$imgline = '';
|
||||
if ($src->object == 'source' && $src->type == 'sepa_debit') {
|
||||
$imgline = '<span class="fa fa-university fa-2x fa-fw"></span>';
|
||||
|
|
@ -1627,6 +1625,8 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
|||
continue;
|
||||
}
|
||||
|
||||
$nbremote++;
|
||||
|
||||
print '<tr class="oddeven">';
|
||||
print '<td>';
|
||||
print '</td>';
|
||||
|
|
@ -1715,7 +1715,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
|||
|
||||
if ($nbremote == 0 && $nblocal == 0) {
|
||||
$colspan = 10;
|
||||
if (!empty($conf->prelevement->enabled)) {
|
||||
if (isModEnabled('prelevement')) {
|
||||
$colspan += 3;
|
||||
}
|
||||
print '<tr><td colspan="'.$colspan.'"><span class="opacitymedium">'.$langs->trans("NoBANRecord").'</span></td></tr>';
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user