X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/a8a4278a6a87c600835890a10c774dfdc58e930a..df91142c352b8cefe51c228be25b181f357acca3:/topdf.php diff --git a/topdf.php b/topdf.php index 3177d155..eb09bc45 100644 --- a/topdf.php +++ b/topdf.php @@ -35,11 +35,12 @@ import('form.Form'); import('form.ActionForm'); import('ttReportHelper'); -// Access check. +// Access checks. if (!(ttAccessAllowed('view_own_reports') || ttAccessAllowed('view_reports'))) { header('Location: access_denied.php'); exit(); } +// End of access checks. // Check whether TCPDF library is available. if (!file_exists('WEB-INF/lib/tcpdf/')) @@ -51,7 +52,7 @@ require_once('WEB-INF/lib/tcpdf/tcpdf.php'); // Use custom fields plugin if it is enabled. if ($user->isPluginEnabled('cf')) { require_once('plugins/CustomFields.class.php'); - $custom_fields = new CustomFields($user->team_id); + $custom_fields = new CustomFields($user->group_id); } // Report settings are stored in session bean before we get here. @@ -118,7 +119,7 @@ if ($totals_only) { if ($bean->getAttribute('chduration')) $html .= "".$subtotal['time'].''; if ($bean->getAttribute('chcost')) { $html .= ""; - if ($user->canManageTeam() || $user->isClient()) + if ($user->can('manage_invoices') || $user->isClient()) $html .= $subtotal['cost']; else $html .= $subtotal['expenses']; @@ -134,7 +135,7 @@ if ($totals_only) { if ($bean->getAttribute('chcost')) { $html .= ""; $html .= htmlspecialchars($user->currency).' '; - if ($user->canManageTeam() || $user->isClient()) + if ($user->can('manage_invoices') || $user->isClient()) $html .= $totals['cost']; else $html .= $totals['expenses']; @@ -149,7 +150,7 @@ if ($totals_only) { $html .= ''; $html .= ""; $html .= ''.$i18n->get('label.date').''; - if ($user->canManageTeam() || $user->isClient()) { $colspan++; $html .= ''.$i18n->get('label.user').''; } + if ($user->can('view_reports') || $user->can('view_all_reports') || $user->isClient()) { $colspan++; $html .= ''.$i18n->get('label.user').''; } if ($bean->getAttribute('chclient')) { $colspan++; $html .= ''.$i18n->get('label.client').''; } if ($bean->getAttribute('chproject')) { $colspan++; $html .= ''.$i18n->get('label.project').''; } if ($bean->getAttribute('chtask')) { $colspan++; $html .= ''.$i18n->get('label.task').''; } @@ -173,7 +174,7 @@ if ($totals_only) { if ($cur_grouped_by != $prev_grouped_by && !$first_pass) { $html .= ''; $html .= ''.$i18n->get('label.subtotal').''; - if ($user->canManageTeam() || $user->isClient()) { + if ($user->can('view_reports') || $user->can('view_all_reports') || $user->isClient()) { $html .= ''; if ($group_by == 'user') $html .= htmlspecialchars($subtotals[$prev_grouped_by]['name']); $html .= ''; @@ -204,7 +205,7 @@ if ($totals_only) { if ($bean->getAttribute('chnote')) $html .= ''; if ($bean->getAttribute('chcost')) { $html .= ""; - if ($user->canManageTeam() || $user->isClient()) + if ($user->can('manage_invoices') || $user->isClient()) $html .= $subtotals[$prev_grouped_by]['cost']; else $html .= $subtotals[$prev_grouped_by]['expenses']; @@ -222,7 +223,7 @@ if ($totals_only) { // Print a regular row. $html .= ''; $html .= ''.$item['date'].''; - if ($user->canManageTeam() || $user->isClient()) $html .= ''.htmlspecialchars($item['user']).''; + if ($user->can('view_reports') || $user->can('view_all_reports') || $user->isClient()) $html .= ''.htmlspecialchars($item['user']).''; if ($bean->getAttribute('chclient')) $html .= ''.htmlspecialchars($item['client']).''; if ($bean->getAttribute('chproject')) $html .= ''.htmlspecialchars($item['project']).''; if ($bean->getAttribute('chtask')) $html .= ''.htmlspecialchars($item['task']).''; @@ -233,7 +234,7 @@ if ($totals_only) { if ($bean->getAttribute('chnote')) $html .= ''.htmlspecialchars($item['note']).''; if ($bean->getAttribute('chcost')) { $html .= ""; - if ($user->canManageTeam() || $user->isClient()) + if ($user->can('manage_invoices') || $user->isClient()) $html .= $item['cost']; else $html .= $item['expense']; @@ -260,7 +261,7 @@ if ($totals_only) { if ($print_subtotals) { $html .= ''; $html .= ''.$i18n->get('label.subtotal').''; - if ($user->canManageTeam() || $user->isClient()) { + if ($user->can('view_reports') || $user->can('view_all_reports') || $user->isClient()) { $html .= ''; if ($group_by == 'user') $html .= htmlspecialchars($subtotals[$prev_grouped_by]['name']); $html .= ''; @@ -291,7 +292,7 @@ if ($totals_only) { if ($bean->getAttribute('chnote')) $html .= ''; if ($bean->getAttribute('chcost')) { $html .= ""; - if ($user->canManageTeam() || $user->isClient()) + if ($user->can('manage_invoices') || $user->isClient()) $html .= $subtotals[$prev_grouped_by]['cost']; else $html .= $subtotals[$prev_grouped_by]['expenses']; @@ -307,7 +308,7 @@ if ($totals_only) { $html .= ' '; $html .= ''; $html .= ''.$i18n->get('label.total').''; - if ($user->canManageTeam() || $user->isClient()) $html .= ''; + if ($user->can('view_reports') || $user->can('view_all_reports') || $user->isClient()) $html .= ''; if ($bean->getAttribute('chclient')) $html .= ''; if ($bean->getAttribute('chproject')) $html .= ''; if ($bean->getAttribute('chtask')) $html .= ''; @@ -318,7 +319,7 @@ if ($totals_only) { if ($bean->getAttribute('chnote')) $html .= ''; if ($bean->getAttribute('chcost')) { $html .= "".htmlspecialchars($user->currency).' '; - if ($user->canManageTeam() || $user->isClient()) + if ($user->can('manage_invoices') || $user->isClient()) $html .= $totals['cost']; else $html .= $totals['expenses']; @@ -390,8 +391,8 @@ class ttPDF extends TCPDF { $pdf = new ttPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); // If custom logo file exists - set it. -if (file_exists('images/'.$user->team_id.'.png')) - $pdf->SetImageFile('images/'.$user->team_id.'.png'); +if (file_exists('images/'.$user->group_id.'.png')) + $pdf->SetImageFile('images/'.$user->group_id.'.png'); // Set page word for the footer. $pdf->SetPageWord($i18n->get('label.page'));