X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/45c855269d952873285f7a835e82fc2b3eff3971..8e43fd9aa4cd7ec0d3dd806393ba03967f5050b2:/topdf.php
diff --git a/topdf.php b/topdf.php
index 9149e1c6..eb09bc45 100644
--- a/topdf.php
+++ b/topdf.php
@@ -119,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'];
@@ -135,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'];
@@ -150,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').' | '; }
@@ -174,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 .= ' | ';
@@ -205,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'];
@@ -223,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']).' | ';
@@ -234,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'];
@@ -261,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 .= ' | ';
@@ -292,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'];
@@ -308,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 .= ' | ';
@@ -319,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'];
| |