Merge branch 'ent-13049-17246-no-hay-paginacion-en-la-lista-de-informes-para-operator-read' into 'develop'

Ent 13049 17246 no hay paginacion en la lista de informes para operator read

See merge request artica/pandorafms!7237
This commit is contained in:
Rafael Ameijeiras 2024-04-22 09:14:05 +00:00
commit 9531038d01

View File

@ -1328,6 +1328,25 @@ switch ($action) {
],
true
);
} else if (check_acl($config['id_user'], 0, 'RR')) {
$tablePagination = ui_pagination(
$total_reports,
$url,
$offset,
$pagination,
true,
'offset',
$show_count
);
echo html_print_action_buttons(
'',
[
'type' => 'form_action',
'right_content' => $tablePagination,
],
true
);
}
return;