#11293 Fix the menu to point to the list of reports and the link on all icons

This commit is contained in:
miguel angel rasteu 2023-05-23 16:35:55 +02:00
parent 59a4920877
commit 8bd1378d45
2 changed files with 9 additions and 8 deletions

View File

@ -508,11 +508,11 @@ switch ($action) {
$buttons = [
'list_reports' => [
'active' => false,
'text' => '<a href="index.php?sec=reporting&sec2=godmode/reporting/reporting_builder&pure='.$pure.'">'.html_print_image(
'text' => '<a href="index.php?sec=reporting&sec2=godmode/reporting/reporting_builder&pure='.$pure.'&action=list">'.html_print_image(
'images/logs@svg.svg',
true,
[
'title' => __('Reports list'),
'title' => __('Reports'),
'class' => 'main_menu_icon invert_filter',
]
).'</a>',
@ -545,7 +545,7 @@ switch ($action) {
// Header.
ui_print_standard_header(
__('List of reports'),
__('Reports'),
'images/op_reporting.png',
false,
'',
@ -3561,7 +3561,7 @@ switch ($action) {
$buttons = [
'list_reports' => [
'active' => false,
'text' => '<a href="index.php?sec=reporting&sec2=godmode/reporting/reporting_builder&pure='.$pure.'">'.html_print_image('images/logs@svg.svg', true, ['title' => __('Reports list'), 'class' => 'invert_filter main_menu_icon']).'</a>',
'text' => '<a href="index.php?sec=reporting&sec2=godmode/reporting/reporting_builder&pure='.$pure.'&action=list">'.html_print_image('images/logs@svg.svg', true, ['title' => __('Reports'), 'class' => 'invert_filter main_menu_icon']).'</a>',
],
];
@ -3628,7 +3628,7 @@ $buttons = [
'images/report_list.png',
true,
[
'title' => __('Reports list'),
'title' => __('Reports'),
'class' => 'main_menu_icon invert_filter',
]
).'</a>',
@ -3676,12 +3676,13 @@ if ($idReport != 0) {
$buttons = [
'main' => [
'active' => true,
'text' => '<a href="index.php?sec=reporting&sec2=godmode/reporting/reporting_builder&pure='.$pure.'">'.html_print_image('images/report_list.png', true, ['title' => __('Reports list'), 'class' => 'main_menu_icon invert_filter']).'</a>',
'text' => '<a href="index.php?sec=reporting&sec2=godmode/reporting/reporting_builder&pure='.$pure.'&action=list">'.html_print_image('images/report_list.png', true, ['title' => __('Reports'), 'class' => 'main_menu_icon invert_filter']).'</a>',
],
];
$textReportName = __('Create Custom Report');
}
// here1
$tab_builder = ($activeTab === 'item_editor') ? 'reporting_item_editor_tab' : '';
if ($action !== 'update') {

View File

@ -111,11 +111,11 @@ $options = [];
$options['list_reports'] = [
'active' => false,
'text' => '<a href="index.php?sec=reporting&sec2=godmode/reporting/reporting_builder&pure='.$pure.'">'.html_print_image(
'text' => '<a href="index.php?sec=reporting&sec2=godmode/reporting/reporting_builder&pure='.$pure.'&action=list">'.html_print_image(
'images/report_list.png',
true,
[
'title' => __('Report list'),
'title' => __('Reports'),
'class' => 'main_menu_icon invert_filter',
]
).'</a>',