Merge branch 'ent-11496-opcion-de-click-to-view-report-en-widget-de-custom-report-lleva-a' into 'develop'
Ent 11496 opcion de click to view report en widget de custom report lleva a See merge request artica/pandorafms!6106
This commit is contained in:
commit
f1fc7bbbe5
|
@ -411,7 +411,16 @@ class ReportsWidget extends Widget
|
|||
$this->printReport();
|
||||
$output .= ob_get_clean();
|
||||
|
||||
$output .= 'Click to view: <a href="?sec=reporting&sec2=operation/reporting/reporting_viewer&id='.$this->values['reportId'].'">'.__('Report').'</a>';
|
||||
if ($this->values['node'] === '-1') {
|
||||
$output .= 'Click to view: <a href="?sec=reporting&sec2=operation/reporting/reporting_viewer&id='.$this->values['reportId'].'">'.__('Report').'</a>';
|
||||
} else {
|
||||
\enterprise_hook('metaconsole_restore_db');
|
||||
$node = $this->values['node'];
|
||||
$serverurl = db_get_value('server_url', 'tmetaconsole_setup', 'id', $node);
|
||||
$url = $serverurl.'index.php?sec=reporting&sec2=operation/reporting/reporting_viewer&id='.$this->values['reportId'];
|
||||
$output .= 'Click to view: <a href="'.$url.'">'.__('Report').'</a>';
|
||||
}
|
||||
|
||||
$output .= '</div>';
|
||||
} else {
|
||||
$this->loadError = true;
|
||||
|
|
Loading…
Reference in New Issue