From: Nik Okuntseff Date: Wed, 1 Aug 2018 00:36:03 +0000 (+0000) Subject: More refactoring in reports. X-Git-Tag: timetracker_1.19-1~783 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=e4ddcc8ecb86ac997048d648ed82402eff2cbb4a;p=timetracker.git More refactoring in reports. --- diff --git a/WEB-INF/lib/ttReportHelper.class.php b/WEB-INF/lib/ttReportHelper.class.php index bc60fb80..a3b0b0d8 100644 --- a/WEB-INF/lib/ttReportHelper.class.php +++ b/WEB-INF/lib/ttReportHelper.class.php @@ -279,16 +279,15 @@ class ttReportHelper { if (($canViewReports || $isClient) && $options['show_invoice']) array_push($fields, 'i.name as invoice'); -// TODO: refactoring in progress down from here... The above is identical to getFavItems and is ready to merge. // Prepare sql query part for left joins. $left_joins = null; if ($canViewReports || $isClient) $left_joins .= " left join tt_users u on (u.id = ei.user_id)"; - if ($bean->getAttribute('chclient') || 'client' == $group_by_option) + if ($options['show_client'] || 'client' == $group_by_option) $left_joins .= " left join tt_clients c on (c.id = ei.client_id)"; - if ($bean->getAttribute('chproject') || 'project' == $group_by_option) + if ($options['show_project'] || 'project' == $group_by_option) $left_joins .= " left join tt_projects p on (p.id = ei.project_id)"; - if (($canViewReports || $isClient) && $bean->getAttribute('chinvoice')) + if (($canViewReports || $isClient) && $options['show_invoice']) $left_joins .= " left join tt_invoices i on (i.id = ei.invoice_id and i.status = 1)"; $where = ttReportHelper::getExpenseWhere($options); @@ -300,6 +299,9 @@ class ttReportHelper { $sql = "($sql) union all ($sql_for_expense_items)"; } +// TODO: refactoring in progress down from here... The above is identical to getFavItems and is ready to merge. +// Note: this sort part below is different in getFavItems. Need to figure out why and fix properly. + // Determine sort part. $sort_part = ' order by '; if ('no_grouping' == $group_by_option || 'date' == $group_by_option) @@ -1814,16 +1816,8 @@ class ttReportHelper { $options['show_note'] = $bean->getAttribute('chnote'); $options['show_custom_field_1'] = $bean->getAttribute('chcf_1'); $options['show_work_units'] = $bean->getAttribute('chunits'); -/* - `show_totals_only` tinyint(4) NOT NULL default 0, # whether to show totals only -*/ + $options['show_totals_only'] = $bean->getAttribute('chtotalsonly'); $options['group_by'] = $bean->getAttribute('group_by'); -/* - * TODO: remaining fields to fill in... - `status` tinyint(4) default 1, # favorite report status - PRIMARY KEY (`id`) -); -*/ return $options; } diff --git a/WEB-INF/templates/footer.tpl b/WEB-INF/templates/footer.tpl index 833f4374..56a70830 100644 --- a/WEB-INF/templates/footer.tpl +++ b/WEB-INF/templates/footer.tpl @@ -12,7 +12,7 @@
-
 Anuko Time Tracker 1.17.97.4309 | Copyright © Anuko | +  Anuko Time Tracker 1.17.97.4310 | Copyright © Anuko | {$i18n.footer.credits} | {$i18n.footer.license} | {$i18n.footer.improve}