X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FttFavReportHelper.class.php;h=111e9b1915002d08fc5ee678b0bcc4f264b6feed;hb=813f43a9406fb5adfb8c6e89cd97b06a11da58c9;hp=a1ea8bc201ec0e2dfb069478de4005d65ea3e7fe;hpb=00b04fd2b07cfd576ffb038c750bf955ca7f87a6;p=timetracker.git diff --git a/WEB-INF/lib/ttFavReportHelper.class.php b/WEB-INF/lib/ttFavReportHelper.class.php index a1ea8bc2..111e9b19 100644 --- a/WEB-INF/lib/ttFavReportHelper.class.php +++ b/WEB-INF/lib/ttFavReportHelper.class.php @@ -80,8 +80,8 @@ class ttFavReportHelper { $mdb2 = getConnection(); $sql = "insert into tt_fav_reports (name, user_id, client_id, cf_1_option_id, project_id, task_id, - billable, invoice, users, period, period_start, period_end, - show_client, show_invoice, + billable, invoice, paid_status, users, period, period_start, period_end, + show_client, show_invoice, show_paid, show_project, show_start, show_duration, show_cost, show_task, show_end, show_note, show_custom_field_1, group_by, show_totals_only) @@ -90,9 +90,10 @@ class ttFavReportHelper { $mdb2->quote($fields['client']).", ".$mdb2->quote($fields['option']).", ". $mdb2->quote($fields['project']).", ".$mdb2->quote($fields['task']).", ". $mdb2->quote($fields['billable']).", ".$mdb2->quote($fields['invoice']).", ". + $mdb2->quote($fields['paid_status']).", ". $mdb2->quote($fields['users']).", ".$mdb2->quote($fields['period']).", ". $mdb2->quote($fields['from']).", ".$mdb2->quote($fields['to']).", ". - $fields['chclient'].", ".$fields['chinvoice'].", ". + $fields['chclient'].", ".$fields['chinvoice'].", ".$fields['chpaid'].", ". $fields['chproject'].", ".$fields['chstart'].", ".$fields['chduration'].", ".$fields['chcost'].", ". $fields['chtask'].", ".$fields['chfinish'].", ".$fields['chnote'].", ".$fields['chcf_1'].", ". $mdb2->quote($fields['group_by']).", ".$fields['chtotalsonly'].")"; @@ -120,12 +121,14 @@ class ttFavReportHelper { "task_id = ".$mdb2->quote($fields['task']).", ". "billable = ".$mdb2->quote($fields['billable']).", ". "invoice = ".$mdb2->quote($fields['invoice']).", ". + "paid_status = ".$mdb2->quote($fields['paid_status']).", ". "users = ".$mdb2->quote($fields['users']).", ". "period = ".$mdb2->quote($fields['period']).", ". "period_start = ".$mdb2->quote($fields['from']).", ". "period_end = ".$mdb2->quote($fields['to']).", ". "show_client = ".$fields['chclient'].", ". "show_invoice = ".$fields['chinvoice'].", ". + "show_paid = ".$fields['chpaid'].", ". "show_project = ".$fields['chproject'].", ". "show_start = ".$fields['chstart'].", ". "show_duration = ".$fields['chduration'].", ". @@ -152,6 +155,7 @@ class ttFavReportHelper { // Later in this function we use it to construct $fields array to update database. if (!$bean->getAttribute('chclient')) $bean->setAttribute('chclient', 0); if (!$bean->getAttribute('chinvoice')) $bean->setAttribute('chinvoice', 0); + if (!$bean->getAttribute('chpaid')) $bean->setAttribute('chpaid', 0); if (!$bean->getAttribute('chproject')) $bean->setAttribute('chproject', 0); if (!$bean->getAttribute('chstart')) $bean->setAttribute('chstart', 0); if (!$bean->getAttribute('chduration')) $bean->setAttribute('chduration', 0); @@ -167,7 +171,7 @@ class ttFavReportHelper { // If all users are selected - use a null value (which means "all users"). $all_users_selected = true; - if ($user->canManageTeam()) { + if ($user->can('view_reports')) { $all = ttTeamHelper::getActiveUsers(); foreach ($all as $one) { if (!in_array($one['id'], $users_in_bean)) { @@ -198,12 +202,14 @@ class ttFavReportHelper { 'task'=>$bean->getAttribute('task'), 'billable'=>$bean->getAttribute('include_records'), 'invoice'=>$bean->getAttribute('invoice'), + 'paid_status'=>$bean->getAttribute('paid_status'), 'users'=>$users, 'period'=>$bean->getAttribute('period'), 'from'=>$from, 'to'=>$to, 'chclient'=>$bean->getAttribute('chclient'), 'chinvoice'=>$bean->getAttribute('chinvoice'), + 'chpaid'=>$bean->getAttribute('chpaid'), 'chproject'=>$bean->getAttribute('chproject'), 'chstart'=>$bean->getAttribute('chstart'), 'chduration'=>$bean->getAttribute('chduration'), @@ -249,11 +255,12 @@ class ttFavReportHelper { $bean->setAttribute('task', $val['task_id']); $bean->setAttribute('include_records', $val['billable']); $bean->setAttribute('invoice', $val['invoice']); + $bean->setAttribute('paid_status', $val['paid_status']); if ($val['users']) $bean->setAttribute('users', explode(',', $val['users'])); else { // Null users value means "all users". Add them to the bean. - if ($user->canManageTeam()) { + if ($user->can('view_reports')) { $all = ttTeamHelper::getActiveUsers(); foreach ($all as $one) { $all_user_ids[] = $one['id']; @@ -272,6 +279,7 @@ class ttFavReportHelper { } $bean->setAttribute('chclient', $val['show_client']); $bean->setAttribute('chinvoice', $val['show_invoice']); + $bean->setAttribute('chpaid', $val['show_paid']); $bean->setAttribute('chproject', $val['show_project']); $bean->setAttribute('chstart', $val['show_start']); $bean->setAttribute('chduration', $val['show_duration']);