Refactoring - reorganized code a bit for clarity.
[timetracker.git] / WEB-INF / lib / ttReportHelper.class.php
1 <?php
2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
10 // |
11 // | There are only two ways to violate the license:
12 // |
13 // | 1. To redistribute this code in source form, with the copyright
14 // |    notice or license removed or altered. (Distributing in compiled
15 // |    forms without embedded copyright notices is permitted).
16 // |
17 // | 2. To redistribute modified versions of this code in *any* form
18 // |    that bears insufficient indications that the modifications are
19 // |    not the work of the original author(s).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 import('ttClientHelper');
30 import('DateAndTime');
31 import('Period');
32 import('ttTimeHelper');
33
34 require_once(dirname(__FILE__).'/../../plugins/CustomFields.class.php');
35
36 // Class ttReportHelper is used for help with reports.
37 class ttReportHelper {
38
39   // getWhere prepares a WHERE clause for a report query.
40   static function getWhere($bean) {
41     global $user;
42
43     // Prepare dropdown parts.
44     $dropdown_parts = '';
45     if ($bean->getAttribute('client'))
46       $dropdown_parts .= ' and l.client_id = '.$bean->getAttribute('client');
47     elseif ($user->isClient() && $user->client_id)
48       $dropdown_parts .= ' and l.client_id = '.$user->client_id;
49     if ($bean->getAttribute('option')) $dropdown_parts .= ' and l.id in(select log_id from tt_custom_field_log where status = 1 and option_id = '.$bean->getAttribute('option').')';
50     if ($bean->getAttribute('project')) $dropdown_parts .= ' and l.project_id = '.$bean->getAttribute('project');
51     if ($bean->getAttribute('task')) $dropdown_parts .= ' and l.task_id = '.$bean->getAttribute('task');
52     if ($bean->getAttribute('include_records')=='1') $dropdown_parts .= ' and l.billable = 1';
53     if ($bean->getAttribute('include_records')=='2') $dropdown_parts .= ' and l.billable = 0';
54     if ($bean->getAttribute('invoice')=='1') $dropdown_parts .= ' and l.invoice_id is not NULL';
55     if ($bean->getAttribute('invoice')=='2') $dropdown_parts .= ' and l.invoice_id is NULL';
56
57     // Prepare user list part.
58     $userlist = -1;
59     if (($user->canManageTeam() || $user->isClient()) && is_array($bean->getAttribute('users')))
60       $userlist = join(',', $bean->getAttribute('users'));
61     // Prepare sql query part for user list.
62     $user_list_part = null;
63     if ($user->canManageTeam() || $user->isClient())
64       $user_list_part = " and l.user_id in ($userlist)";
65     else
66       $user_list_part = " and l.user_id = ".$user->id;
67
68     // Prepare sql query part for where.
69     if ($bean->getAttribute('period'))
70       $period = new Period($bean->getAttribute('period'), new DateAndTime($user->date_format));
71     else {
72       $period = new Period();
73       $period->setPeriod(
74         new DateAndTime($user->date_format, $bean->getAttribute('start_date')),
75         new DateAndTime($user->date_format, $bean->getAttribute('end_date')));
76     }
77     $where = " where l.status = 1 and l.date >= '".$period->getBeginDate(DB_DATEFORMAT)."' and l.date <= '".$period->getEndDate(DB_DATEFORMAT)."'".
78       " $user_list_part $dropdown_parts";
79     return $where;
80   }
81
82   // getFavWhere prepares a WHERE clause for a favorite report query.
83   static function getFavWhere($report) {
84     global $user;
85
86     // Prepare dropdown parts.
87     $dropdown_parts = '';
88     if ($report['client_id'])
89       $dropdown_parts .= ' and l.client_id = '.$report['client_id'];
90     elseif ($user->isClient() && $user->client_id)
91       $dropdown_parts .= ' and l.client_id = '.$user->client_id;
92     if ($report['cf_1_option_id']) $dropdown_parts .= ' and l.id in(select log_id from tt_custom_field_log where status = 1 and option_id = '.$report['cf_1_option_id'].')';
93     if ($report['project_id']) $dropdown_parts .= ' and l.project_id = '.$report['project_id'];
94     if ($report['task_id']) $dropdown_parts .= ' and l.task_id = '.$report['task_id'];
95     if ($report['billable']=='1') $dropdown_parts .= ' and l.billable = 1';
96     if ($report['billable']=='2') $dropdown_parts .= ' and l.billable = 0';
97     if ($report['invoice']=='1') $dropdown_parts .= ' and l.invoice_id is not NULL';
98     if ($report['invoice']=='2') $dropdown_parts .= ' and l.invoice_id is NULL';
99
100     // Prepare user list part.
101     $userlist = -1;
102     if (($user->canManageTeam() || $user->isClient())) {
103       if ($report['users'])
104         $userlist = $report['users'];
105       else {
106         $active_users = ttTeamHelper::getActiveUsers();
107         foreach ($active_users as $single_user)
108           $users[] = $single_user['id'];
109         $userlist = join(',', $users);
110       }
111     }
112     // Prepare sql query part for user list.
113     $user_list_part = null;
114     if ($user->canManageTeam() || $user->isClient())
115       $user_list_part = " and l.user_id in ($userlist)";
116     else
117       $user_list_part = " and l.user_id = ".$user->id;
118
119     // Prepare sql query part for where.
120     if ($report['period'])
121       $period = new Period($report['period'], new DateAndTime($user->date_format));
122     else {
123       $period = new Period();
124       $period->setPeriod(
125         new DateAndTime($user->date_format, $report['period_start']),
126         new DateAndTime($user->date_format, $report['period_end']));
127     }
128     $where = " where l.status = 1 and l.date >= '".$period->getBeginDate(DB_DATEFORMAT)."' and l.date <= '".$period->getEndDate(DB_DATEFORMAT)."'".
129       " $user_list_part $dropdown_parts";
130     return $where;
131   }
132
133   // getExpenseWhere prepares WHERE clause for expenses query in a report.
134   static function getExpenseWhere($bean) {
135     global $user;
136
137     // Prepare dropdown parts.
138     $dropdown_parts = '';
139     if ($bean->getAttribute('client'))
140       $dropdown_parts .= ' and ei.client_id = '.$bean->getAttribute('client');
141     elseif ($user->isClient() && $user->client_id)
142       $dropdown_parts .= ' and ei.client_id = '.$user->client_id;
143     if ($bean->getAttribute('project')) $dropdown_parts .= ' and ei.project_id = '.$bean->getAttribute('project');
144     if ($bean->getAttribute('invoice')=='1') $dropdown_parts .= ' and ei.invoice_id is not NULL';
145     if ($bean->getAttribute('invoice')=='2') $dropdown_parts .= ' and ei.invoice_id is NULL';
146
147     // Prepare user list part.
148     $userlist = -1;
149     if (($user->canManageTeam() || $user->isClient()) && is_array($bean->getAttribute('users')))
150       $userlist = join(',', $bean->getAttribute('users'));
151     // Prepare sql query part for user list.
152     $user_list_part = null;
153     if ($user->canManageTeam() || $user->isClient())
154       $user_list_part = " and ei.user_id in ($userlist)";
155     else
156       $user_list_part = " and ei.user_id = ".$user->id;
157
158     // Prepare sql query part for where.
159     if ($bean->getAttribute('period'))
160       $period = new Period($bean->getAttribute('period'), new DateAndTime($user->date_format));
161     else {
162       $period = new Period();
163       $period->setPeriod(
164         new DateAndTime($user->date_format, $bean->getAttribute('start_date')),
165         new DateAndTime($user->date_format, $bean->getAttribute('end_date')));
166     }
167     $where = " where ei.status = 1 and ei.date >= '".$period->getBeginDate(DB_DATEFORMAT)."' and ei.date <= '".$period->getEndDate(DB_DATEFORMAT)."'".
168       " $user_list_part $dropdown_parts";
169     return $where;
170   }
171
172   // getFavExpenseWhere prepares a WHERE clause for expenses query in a favorite report.
173   static function getFavExpenseWhere($report) {
174     global $user;
175
176     // Prepare dropdown parts.
177     $dropdown_parts = '';
178     if ($report['client_id'])
179       $dropdown_parts .= ' and ei.client_id = '.$report['client_id'];
180     elseif ($user->isClient() && $user->client_id)
181       $dropdown_parts .= ' and ei.client_id = '.$user->client_id;
182     if ($report['project_id']) $dropdown_parts .= ' and ei.project_id = '.$report['project_id'];
183     if ($report['invoice']=='1') $dropdown_parts .= ' and ei.invoice_id is not NULL';
184     if ($report['invoice']=='2') $dropdown_parts .= ' and ei.invoice_id is NULL';
185
186     // Prepare user list part.
187     $userlist = -1;
188     if (($user->canManageTeam() || $user->isClient())) {
189       if ($report['users'])
190         $userlist = $report['users'];
191       else {
192         $active_users = ttTeamHelper::getActiveUsers();
193         foreach ($active_users as $single_user)
194           $users[] = $single_user['id'];
195         $userlist = join(',', $users);
196       }
197     }
198     // Prepare sql query part for user list.
199     $user_list_part = null;
200     if ($user->canManageTeam() || $user->isClient())
201       $user_list_part = " and ei.user_id in ($userlist)";
202     else
203       $user_list_part = " and ei.user_id = ".$user->id;
204
205     // Prepare sql query part for where.
206     if ($report['period'])
207       $period = new Period($report['period'], new DateAndTime($user->date_format));
208     else {
209       $period = new Period();
210       $period->setPeriod(
211         new DateAndTime($user->date_format, $report['period_start']),
212         new DateAndTime($user->date_format, $report['period_end']));
213     }
214     $where = " where ei.status = 1 and ei.date >= '".$period->getBeginDate(DB_DATEFORMAT)."' and ei.date <= '".$period->getEndDate(DB_DATEFORMAT)."'".
215       " $user_list_part $dropdown_parts";
216     return $where;
217   }
218
219   // getItems retrieves all items associated with a report.
220   // It combines tt_log and tt_expense_items in one array for presentation in one table using mysql union all.
221   // Expense items use the "note" field for item name.
222   static function getItems($bean) {
223     global $user;
224     $mdb2 = getConnection();
225
226     $group_by_option = $bean->getAttribute('group_by');
227     $convertTo12Hour = ('%I:%M %p' == $user->time_format) && ($bean->getAttribute('chstart') || $bean->getAttribute('chfinish'));
228
229     // Prepare a query for time items in tt_log table.
230     $fields = array(); // An array of fields for database query.
231     array_push($fields, 'l.id as id');
232     array_push($fields, '1 as type'); // Type 1 is for tt_log entries.
233     array_push($fields, 'l.date as date');
234     if($user->canManageTeam() || $user->isClient())
235       array_push($fields, 'u.name as user');
236     // Add client name if it is selected.
237     if ($bean->getAttribute('chclient') || 'client' == $group_by_option)
238       array_push($fields, 'c.name as client');
239     // Add project name if it is selected.
240     if ($bean->getAttribute('chproject') || 'project' == $group_by_option)
241       array_push($fields, 'p.name as project');
242     // Add task name if it is selected.
243     if ($bean->getAttribute('chtask') || 'task' == $group_by_option)
244       array_push($fields, 't.name as task');
245     // Add custom field.
246     $include_cf_1 = $bean->getAttribute('chcf_1') || 'cf_1' == $group_by_option;
247     if ($include_cf_1) {
248       $custom_fields = new CustomFields($user->team_id);
249       $cf_1_type = $custom_fields->fields[0]['type'];
250       if ($cf_1_type == CustomFields::TYPE_TEXT) {
251         array_push($fields, 'cfl.value as cf_1');
252       } elseif ($cf_1_type == CustomFields::TYPE_DROPDOWN) {
253         array_push($fields, 'cfo.value as cf_1');
254       }
255     }
256     // Add start time.
257     if ($bean->getAttribute('chstart')) {
258       array_push($fields, "l.start as unformatted_start");
259       array_push($fields, "TIME_FORMAT(l.start, '%k:%i') as start");
260     }
261     // Add finish time.
262     if ($bean->getAttribute('chfinish'))
263       array_push($fields, "TIME_FORMAT(sec_to_time(time_to_sec(l.start) + time_to_sec(l.duration)), '%k:%i') as finish");
264     // Add duration.
265     if ($bean->getAttribute('chduration'))
266       array_push($fields, "TIME_FORMAT(l.duration, '%k:%i') as duration");
267     // Add note.
268     if ($bean->getAttribute('chnote'))
269       array_push($fields, 'l.comment as note');
270     // Handle cost.
271     $includeCost = $bean->getAttribute('chcost');
272     if ($includeCost) {
273       if (MODE_TIME == $user->tracking_mode)
274         array_push($fields, "cast(l.billable * coalesce(u.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2)) as cost");   // Use default user rate.
275       else
276         array_push($fields, "cast(l.billable * coalesce(upb.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2)) as cost"); // Use project rate for user.
277       array_push($fields, "null as expense"); 
278     }
279     // Add invoice name if it is selected.
280     if (($user->canManageTeam() || $user->isClient()) && $bean->getAttribute('chinvoice'))
281       array_push($fields, 'i.name as invoice');
282
283     // Prepare sql query part for left joins.
284     $left_joins = null;
285     if ($bean->getAttribute('chclient') || 'client' == $group_by_option)
286       $left_joins .= " left join tt_clients c on (c.id = l.client_id)";
287     if (($user->canManageTeam() || $user->isClient()) && $bean->getAttribute('chinvoice'))
288       $left_joins .= " left join tt_invoices i on (i.id = l.invoice_id and i.status = 1)";
289     if ($user->canManageTeam() || $user->isClient() || in_array('ex', explode(',', $user->plugins)))
290        $left_joins .= " left join tt_users u on (u.id = l.user_id)";
291     if ($bean->getAttribute('chproject') || 'project' == $group_by_option)
292       $left_joins .= " left join tt_projects p on (p.id = l.project_id)";
293     if ($bean->getAttribute('chtask') || 'task' == $group_by_option)
294       $left_joins .= " left join tt_tasks t on (t.id = l.task_id)";
295     if ($include_cf_1) {
296       if ($cf_1_type == CustomFields::TYPE_TEXT)
297         $left_joins .= " left join tt_custom_field_log cfl on (l.id = cfl.log_id and cfl.status = 1)";
298       elseif ($cf_1_type == CustomFields::TYPE_DROPDOWN) {
299         $left_joins .=  " left join tt_custom_field_log cfl on (l.id = cfl.log_id and cfl.status = 1)".
300           " left join tt_custom_field_options cfo on (cfl.option_id = cfo.id)";
301       }
302     }
303     if ($includeCost && MODE_TIME != $user->tracking_mode)
304       $left_joins .= " left join tt_user_project_binds upb on (l.user_id = upb.user_id and l.project_id = upb.project_id)";
305
306     $where = ttReportHelper::getWhere($bean);
307
308     // Construct sql query for tt_log items.
309     $sql = "select ".join(', ', $fields)." from tt_log l $left_joins $where";
310     // If we don't have expense items (such as when the Expenses plugin is desabled), the above is all sql we need,
311     // with an exception of sorting part, that is added in the end.
312
313     // However, when we have expenses, we need to do a union with a separate query for expense items from tt_expense_items table.
314     if ($bean->getAttribute('chcost') && in_array('ex', explode(',', $user->plugins))) { // if ex(penses) plugin is enabled
315
316       $fields = array(); // An array of fields for database query.
317       array_push($fields, 'ei.id');
318       array_push($fields, '2 as type'); // Type 2 is for tt_expense_items entries.
319       array_push($fields, 'ei.date');
320       if($user->canManageTeam() || $user->isClient())
321         array_push($fields, 'u.name as user');
322       // Add client name if it is selected.
323       if ($bean->getAttribute('chclient') || 'client' == $group_by_option)
324         array_push($fields, 'c.name as client');
325       // Add project name if it is selected.
326       if ($bean->getAttribute('chproject') || 'project' == $group_by_option)
327         array_push($fields, 'p.name as project');
328       if ($bean->getAttribute('chtask') || 'task' == $group_by_option)
329         array_push($fields, 'null'); // null for task name. We need to match column count for union.
330       if ($bean->getAttribute('chcf_1') || 'cf_1' == $group_by_option)
331         array_push($fields, 'null'); // null for cf_1.
332       if ($bean->getAttribute('chstart')) {
333         array_push($fields, 'null'); // null for unformatted_start.
334         array_push($fields, 'null'); // null for start.
335       }
336       if ($bean->getAttribute('chfinish'))
337         array_push($fields, 'null'); // null for finish.
338       if ($bean->getAttribute('chduration'))
339         array_push($fields, 'null'); // null for duration.
340       // Use the note field to print item name.
341       if ($bean->getAttribute('chnote'))
342         array_push($fields, 'ei.name as note');
343       array_push($fields, 'ei.cost as cost');
344       array_push($fields, 'ei.cost as expense');
345       // Add invoice name if it is selected.
346       if (($user->canManageTeam() || $user->isClient()) && $bean->getAttribute('chinvoice'))
347         array_push($fields, 'i.name as invoice');
348
349       // Prepare sql query part for left joins.
350       $left_joins = null;
351       if ($user->canManageTeam() || $user->isClient())
352         $left_joins .= " left join tt_users u on (u.id = ei.user_id)";
353       if ($bean->getAttribute('chclient') || 'client' == $group_by_option)
354         $left_joins .= " left join tt_clients c on (c.id = ei.client_id)";
355       if ($bean->getAttribute('chproject') || 'project' == $group_by_option)
356         $left_joins .= " left join tt_projects p on (p.id = ei.project_id)";
357       if (($user->canManageTeam() || $user->isClient()) && $bean->getAttribute('chinvoice'))
358         $left_joins .= " left join tt_invoices i on (i.id = ei.invoice_id and i.status = 1)";
359
360       $where = ttReportHelper::getExpenseWhere($bean);
361
362       // Construct sql query for expense items.
363       $sql_for_expense_items = "select ".join(', ', $fields)." from tt_expense_items ei $left_joins $where";
364
365       // Construct a union.
366       $sql = "($sql) union all ($sql_for_expense_items)";
367     }
368
369     // Determine sort part.
370     $sort_part = ' order by ';
371     if ('no_grouping' == $group_by_option || 'date' == $group_by_option)
372       $sort_part .= 'date';
373     else
374       $sort_part .= $group_by_option.', date';
375     if (($user->canManageTeam() || $user->isClient()) && is_array($bean->getAttribute('users')) && 'user' != $group_by_option)
376       $sort_part .= ', user, type';
377     if ($bean->getAttribute('chstart'))
378       $sort_part .= ', unformatted_start';
379     $sort_part .= ', id';
380
381     $sql .= $sort_part;
382     // By now we are ready with sql.
383
384     // Obtain items for report.
385     $res = $mdb2->query($sql);
386     if (is_a($res, 'PEAR_Error')) die($res->getMessage());
387
388     while ($val = $res->fetchRow()) {
389       if ($convertTo12Hour) {
390         if($val['start'] != '')
391           $val['start'] = ttTimeHelper::to12HourFormat($val['start']);
392         if($val['finish'] != '')
393           $val['finish'] = ttTimeHelper::to12HourFormat($val['finish']);
394       }
395       if (isset($val['cost'])) {
396         if ('.' != $user->decimal_mark)
397           $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']);
398       }
399       if (isset($val['expense'])) {
400         if ('.' != $user->decimal_mark)
401           $val['expense'] = str_replace('.', $user->decimal_mark, $val['expense']);
402       }
403       if ('no_grouping' != $group_by_option) {
404         $val['grouped_by'] = $val[$group_by_option];
405         if ('date' == $group_by_option) {
406           // This is needed to get the date in user date format.
407           $o_date = new DateAndTime(DB_DATEFORMAT, $val['grouped_by']);
408           $val['grouped_by'] = $o_date->toString($user->date_format);
409           unset($o_date);
410         }
411       }
412
413       // This is needed to get the date in user date format.
414       $o_date = new DateAndTime(DB_DATEFORMAT, $val['date']);
415       $val['date'] = $o_date->toString($user->date_format);
416       unset($o_date);
417
418       $row = $val;
419       $report_items[] = $row;
420     }
421
422     return $report_items;
423   }
424
425   // getFavItems retrieves all items associated with a favorite report.
426   // It combines tt_log and tt_expense_items in one array for presentation in one table using mysql union all.
427   // Expense items use the "note" field for item name.
428   static function getFavItems($report) {
429     global $user;
430     $mdb2 = getConnection();
431
432     $group_by_option = $report['group_by'];
433     $convertTo12Hour = ('%I:%M %p' == $user->time_format) && ($report['show_start'] || $report['show_end']);
434
435     // Prepare a query for time items in tt_log table.
436     $fields = array(); // An array of fields for database query.
437     array_push($fields, 'l.id as id');
438     array_push($fields, '1 as type'); // Type 1 is for tt_log entries.
439     array_push($fields, 'l.date as date');
440     if($user->canManageTeam() || $user->isClient())
441       array_push($fields, 'u.name as user');
442     // Add client name if it is selected.
443     if ($report['show_client'] || 'client' == $group_by_option)
444       array_push($fields, 'c.name as client');
445     // Add project name if it is selected.
446     if ($report['show_project'] || 'project' == $group_by_option)
447       array_push($fields, 'p.name as project');
448     // Add task name if it is selected.
449     if ($report['show_task'] || 'task' == $group_by_option)
450       array_push($fields, 't.name as task');
451     // Add custom field.
452     $include_cf_1 = $report['show_custom_field_1'] || 'cf_1' == $group_by_option;
453     if ($include_cf_1) {
454       $custom_fields = new CustomFields($user->team_id);
455       $cf_1_type = $custom_fields->fields[0]['type'];
456       if ($cf_1_type == CustomFields::TYPE_TEXT) {
457         array_push($fields, 'cfl.value as cf_1');
458       } elseif ($cf_1_type == CustomFields::TYPE_DROPDOWN) {
459         array_push($fields, 'cfo.value as cf_1');
460       }
461     }
462     // Add start time.
463     if ($report['show_start']) {
464       array_push($fields, "l.start as unformatted_start");
465       array_push($fields, "TIME_FORMAT(l.start, '%k:%i') as start");
466     }
467     // Add finish time.
468     if ($report['show_end'])
469       array_push($fields, "TIME_FORMAT(sec_to_time(time_to_sec(l.start) + time_to_sec(l.duration)), '%k:%i') as finish");
470     // Add duration.
471     if ($report['show_duration'])
472       array_push($fields, "TIME_FORMAT(l.duration, '%k:%i') as duration");
473     // Add note.
474     if ($report['show_note'])
475       array_push($fields, 'l.comment as note');
476     // Handle cost.
477     $includeCost = $report['show_cost'];
478     if ($includeCost) {
479       if (MODE_TIME == $user->tracking_mode)
480         array_push($fields, "cast(l.billable * coalesce(u.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2)) as cost");   // Use default user rate.
481       else
482         array_push($fields, "cast(l.billable * coalesce(upb.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2)) as cost"); // Use project rate for user.
483       array_push($fields, "null as expense"); 
484     }
485     // Add invoice name if it is selected.
486     if (($user->canManageTeam() || $user->isClient()) && $report['show_invoice'])
487       array_push($fields, 'i.name as invoice');
488
489     // Prepare sql query part for left joins.
490     $left_joins = null;
491     if ($report['show_client'] || 'client' == $group_by_option)
492       $left_joins .= " left join tt_clients c on (c.id = l.client_id)";
493     if (($user->canManageTeam() || $user->isClient()) && $report['show_invoice'])
494       $left_joins .= " left join tt_invoices i on (i.id = l.invoice_id and i.status = 1)";
495     if ($user->canManageTeam() || $user->isClient() || in_array('ex', explode(',', $user->plugins)))
496        $left_joins .= " left join tt_users u on (u.id = l.user_id)";
497     if ($report['show_project'] || 'project' == $group_by_option)
498       $left_joins .= " left join tt_projects p on (p.id = l.project_id)";
499     if ($report['show_task'] || 'task' == $group_by_option)
500       $left_joins .= " left join tt_tasks t on (t.id = l.task_id)";
501     if ($include_cf_1) {
502       if ($cf_1_type == CustomFields::TYPE_TEXT)
503         $left_joins .= " left join tt_custom_field_log cfl on (l.id = cfl.log_id and cfl.status = 1)";
504       elseif ($cf_1_type == CustomFields::TYPE_DROPDOWN) {
505         $left_joins .=  " left join tt_custom_field_log cfl on (l.id = cfl.log_id and cfl.status = 1)".
506           " left join tt_custom_field_options cfo on (cfl.option_id = cfo.id)";
507       }
508     }
509     if ($includeCost && MODE_TIME != $user->tracking_mode)
510       $left_joins .= " left join tt_user_project_binds upb on (l.user_id = upb.user_id and l.project_id = upb.project_id)";
511
512     $where = ttReportHelper::getFavWhere($report);
513
514     // Construct sql query for tt_log items.
515     $sql = "select ".join(', ', $fields)." from tt_log l $left_joins $where";
516     // If we don't have expense items (such as when the Expenses plugin is desabled), the above is all sql we need,
517     // with an exception of sorting part, that is added in the end.
518
519     // However, when we have expenses, we need to do a union with a separate query for expense items from tt_expense_items table.
520     if ($report['show_cost'] && in_array('ex', explode(',', $user->plugins))) { // if ex(penses) plugin is enabled
521
522       $fields = array(); // An array of fields for database query.
523       array_push($fields, 'ei.id');
524       array_push($fields, '2 as type'); // Type 2 is for tt_expense_items entries.
525       array_push($fields, 'ei.date');
526       if($user->canManageTeam() || $user->isClient())
527         array_push($fields, 'u.name as user');
528       // Add client name if it is selected.
529       if ($report['show_client'] || 'client' == $group_by_option)
530         array_push($fields, 'c.name as client');
531       // Add project name if it is selected.
532       if ($report['show_project'] || 'project' == $group_by_option)
533         array_push($fields, 'p.name as project');
534       if ($report['show_task'] || 'task' == $group_by_option)
535         array_push($fields, 'null'); // null for task name. We need to match column count for union.
536       if ($report['show_custom_field_1'] || 'cf_1' == $group_by_option)
537         array_push($fields, 'null'); // null for cf_1.
538       if ($report['show_start']) {
539         array_push($fields, 'null'); // null for unformatted_start.
540         array_push($fields, 'null'); // null for start.
541       }
542       if ($report['show_end'])
543         array_push($fields, 'null'); // null for finish.
544       if ($report['show_duration'])
545         array_push($fields, 'null'); // null for duration.
546       // Use the note field to print item name.
547       if ($report['show_note'])
548         array_push($fields, 'ei.name as note');
549       array_push($fields, 'ei.cost as cost');
550       array_push($fields, 'ei.cost as expense');
551       // Add invoice name if it is selected.
552       if (($user->canManageTeam() || $user->isClient()) && $report['show_invoice'])
553         array_push($fields, 'i.name as invoice');
554
555       // Prepare sql query part for left joins.
556       $left_joins = null;
557       if ($user->canManageTeam() || $user->isClient())
558         $left_joins .= " left join tt_users u on (u.id = ei.user_id)";
559       if ($report['show_client'] || 'client' == $group_by_option)
560         $left_joins .= " left join tt_clients c on (c.id = ei.client_id)";
561       if ($report['show_project'] || 'project' == $group_by_option)
562         $left_joins .= " left join tt_projects p on (p.id = ei.project_id)";
563       if (($user->canManageTeam() || $user->isClient()) && $report['show_invoice'])
564         $left_joins .= " left join tt_invoices i on (i.id = ei.invoice_id and i.status = 1)";
565
566       $where = ttReportHelper::getFavExpenseWhere($report);
567
568       // Construct sql query for expense items.
569       $sql_for_expense_items = "select ".join(', ', $fields)." from tt_expense_items ei $left_joins $where";
570
571       // Construct a union.
572       $sql = "($sql) union all ($sql_for_expense_items)";
573     }
574
575     // Determine sort part.
576     $sort_part = ' order by ';
577     if ($group_by_option == null || 'no_grouping' == $group_by_option || 'date' == $group_by_option) // TODO: fix DB for NULL values in group_by field.
578       $sort_part .= 'date';
579     else
580       $sort_part .= $group_by_option.', date';
581     if (($user->canManageTeam() || $user->isClient()) /*&& is_array($bean->getAttribute('users'))*/ && 'user' != $group_by_option)
582       $sort_part .= ', user, type';
583     if ($report['show_start'])
584       $sort_part .= ', unformatted_start';
585     $sort_part .= ', id';
586
587     $sql .= $sort_part;
588     // By now we are ready with sql.
589
590     // Obtain items for report.
591     $res = $mdb2->query($sql);
592     if (is_a($res, 'PEAR_Error')) die($res->getMessage());
593
594     while ($val = $res->fetchRow()) {
595       if ($convertTo12Hour) {
596         if($val['start'] != '')
597           $val['start'] = ttTimeHelper::to12HourFormat($val['start']);
598         if($val['finish'] != '')
599           $val['finish'] = ttTimeHelper::to12HourFormat($val['finish']);
600       }
601       if (isset($val['cost'])) {
602         if ('.' != $user->decimal_mark)
603           $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']);
604       }
605       if (isset($val['expense'])) {
606         if ('.' != $user->decimal_mark)
607           $val['expense'] = str_replace('.', $user->decimal_mark, $val['expense']);
608       }
609       if ('no_grouping' != $group_by_option) {
610         $val['grouped_by'] = $val[$group_by_option];
611         if ('date' == $group_by_option) {
612           // This is needed to get the date in user date format.
613           $o_date = new DateAndTime(DB_DATEFORMAT, $val['grouped_by']);
614           $val['grouped_by'] = $o_date->toString($user->date_format);
615           unset($o_date);
616         }
617       }
618
619       // This is needed to get the date in user date format.
620       $o_date = new DateAndTime(DB_DATEFORMAT, $val['date']);
621       $val['date'] = $o_date->toString($user->date_format);
622       unset($o_date);
623
624       $row = $val;
625       $report_items[] = $row;
626     }
627
628     return $report_items;
629   }
630
631   // getSubtotals calculates report items subtotals when a report is grouped by.
632   // Without expenses, it's a simple select with group by.
633   // With expenses, it becomes a select with group by from a combined set of records obtained with "union all".
634   static function getSubtotals($bean) {
635     global $user;
636
637     $group_by_option = $bean->getAttribute('group_by');
638     if ('no_grouping' == $group_by_option) return null;
639
640     $mdb2 = getConnection();
641
642     // Start with sql to obtain subtotals for time items. This simple sql will be used when we have no expenses.
643
644     // Determine group by field and a required join.
645     switch ($group_by_option) {
646       case 'date':
647         $group_field = 'l.date';
648         $group_join = '';
649         break;
650       case 'user':
651         $group_field = 'u.name';
652         $group_join = 'left join tt_users u on (l.user_id = u.id) ';
653         break;
654       case 'client':
655         $group_field = 'c.name';
656         $group_join = 'left join tt_clients c on (l.client_id = c.id) ';
657         break;
658       case 'project':
659         $group_field = 'p.name';
660         $group_join = 'left join tt_projects p on (l.project_id = p.id) ';
661         break;
662       case 'task':
663         $group_field = 't.name';
664         $group_join = 'left join tt_tasks t on (l.task_id = t.id) ';
665         break;
666       case 'cf_1':
667         $group_field = 'cfo.value';
668         $custom_fields = new CustomFields($user->team_id);
669         if ($custom_fields->fields[0]['type'] == CustomFields::TYPE_TEXT)
670           $group_join = 'left join tt_custom_field_log cfl on (l.id = cfl.log_id and cfl.status = 1) left join tt_custom_field_options cfo on (cfl.value = cfo.id) ';
671         elseif ($custom_fields->fields[0]['type'] == CustomFields::TYPE_DROPDOWN)
672           $group_join = 'left join tt_custom_field_log cfl on (l.id = cfl.log_id and cfl.status = 1) left join tt_custom_field_options cfo on (cfl.option_id = cfo.id) ';
673         break;
674     }
675
676     $where = ttReportHelper::getWhere($bean);
677     if ($bean->getAttribute('chcost')) {
678       if (MODE_TIME == $user->tracking_mode) {
679         if ($group_by_option != 'user')
680           $left_join = 'left join tt_users u on (l.user_id = u.id)';
681         $sql = "select $group_field as group_field, sum(time_to_sec(l.duration)) as time, 
682           sum(cast(l.billable * coalesce(u.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10, 2))) as cost,
683           null as expenses from tt_log l
684           $group_join $left_join $where group by $group_field";
685       } else {
686         // If we are including cost and tracking projects, our query (the same as above) needs to join the tt_user_project_binds table.
687         $sql = "select $group_field as group_field, sum(time_to_sec(l.duration)) as time, 
688           sum(cast(l.billable * coalesce(upb.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
689           null as expenses from tt_log l
690           $group_join
691           left join tt_user_project_binds upb on (l.user_id = upb.user_id and l.project_id = upb.project_id) $where group by $group_field";
692       }
693     } else {
694       $sql = "select $group_field as group_field, sum(time_to_sec(l.duration)) as time, null as expenses from tt_log l
695          $group_join $where group by $group_field";
696     }
697     // By now we have sql for time items.
698
699     // However, when we have expenses, we need to do a union with a separate query for expense items from tt_expense_items table.
700     if ($bean->getAttribute('chcost') && in_array('ex', explode(',', $user->plugins))) { // if ex(penses) plugin is enabled
701
702       // Determine group by field and a required join.
703       $group_join = null;
704       $group_field = 'null';
705       switch ($group_by_option) {
706         case 'date':
707           $group_field = 'ei.date';
708           $group_join = '';
709           break;
710         case 'user':
711           $group_field = 'u.name';
712           $group_join = 'left join tt_users u on (ei.user_id = u.id) ';
713           break;
714         case 'client':
715           $group_field = 'c.name';
716           $group_join = 'left join tt_clients c on (ei.client_id = c.id) ';
717           break;
718         case 'project':
719           $group_field = 'p.name';
720           $group_join = 'left join tt_projects p on (ei.project_id = p.id) ';
721           break;
722       }
723
724       $where = ttReportHelper::getExpenseWhere($bean);
725       $sql_for_expenses = "select $group_field as group_field, null as time, sum(ei.cost) as cost, sum(ei.cost) as expenses from tt_expense_items ei 
726         $group_join $where";
727       // Add a "group by" clause if we are grouping.
728       if ('null' != $group_field) $sql_for_expenses .= " group by $group_field";
729
730       // Create a combined query.
731       $sql = "select group_field, sum(time) as time, sum(cost) as cost, sum(expenses) as expenses from (($sql) union all ($sql_for_expenses)) t group by group_field";
732     }
733
734     // Execute query.
735     $res = $mdb2->query($sql);
736     if (is_a($res, 'PEAR_Error')) die($res->getMessage());
737
738     while ($val = $res->fetchRow()) {
739       if ('date' == $group_by_option) {
740         // This is needed to get the date in user date format.
741         $o_date = new DateAndTime(DB_DATEFORMAT, $val['group_field']);
742         $val['group_field'] = $o_date->toString($user->date_format);
743         unset($o_date);
744       }
745       $time = $val['time'] ? sec_to_time_fmt_hm($val['time']) : null;
746       if ($bean->getAttribute('chcost')) {
747         if ('.' != $user->decimal_mark) {
748           $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']);
749           $val['expenses'] = str_replace('.', $user->decimal_mark, $val['expenses']);
750         }
751         $subtotals[$val['group_field']] = array('name'=>$val['group_field'],'time'=>$time,'cost'=>$val['cost'],'expenses'=>$val['expenses']);
752       } else
753         $subtotals[$val['group_field']] = array('name'=>$val['group_field'],'time'=>$time);
754     }
755
756     return $subtotals;
757   }
758
759   // getFavSubtotals calculates report items subtotals when a favorite report is grouped by.
760   // Without expenses, it's a simple select with group by.
761   // With expenses, it becomes a select with group by from a combined set of records obtained with "union all".
762   static function getFavSubtotals($report) {
763     global $user;
764
765     $group_by_option = $report['group_by'];
766     if ('no_grouping' == $group_by_option) return null;
767
768     $mdb2 = getConnection();
769
770     // Start with sql to obtain subtotals for time items. This simple sql will be used when we have no expenses.
771
772     // Determine group by field and a required join.
773     switch ($group_by_option) {
774       case 'date':
775         $group_field = 'l.date';
776         $group_join = '';
777         break;
778       case 'user':
779         $group_field = 'u.name';
780         $group_join = 'left join tt_users u on (l.user_id = u.id) ';
781         break;
782       case 'client':
783         $group_field = 'c.name';
784         $group_join = 'left join tt_clients c on (l.client_id = c.id) ';
785         break;
786       case 'project':
787         $group_field = 'p.name';
788         $group_join = 'left join tt_projects p on (l.project_id = p.id) ';
789         break;
790       case 'task':
791         $group_field = 't.name';
792         $group_join = 'left join tt_tasks t on (l.task_id = t.id) ';
793         break;
794       case 'cf_1':
795         $group_field = 'cfo.value';
796         $custom_fields = new CustomFields($user->team_id);
797         if ($custom_fields->fields[0]['type'] == CustomFields::TYPE_TEXT)
798           $group_join = 'left join tt_custom_field_log cfl on (l.id = cfl.log_id and cfl.status = 1) left join tt_custom_field_options cfo on (cfl.value = cfo.id) ';
799         elseif ($custom_fields->fields[0]['type'] == CustomFields::TYPE_DROPDOWN)
800           $group_join = 'left join tt_custom_field_log cfl on (l.id = cfl.log_id and cfl.status = 1) left join tt_custom_field_options cfo on (cfl.option_id = cfo.id) ';
801         break;
802     }
803
804     $where = ttReportHelper::getFavWhere($report);
805     if ($report['show_cost']) {
806       if (MODE_TIME == $user->tracking_mode) {
807         if ($group_by_option != 'user')
808           $left_join = 'left join tt_users u on (l.user_id = u.id)';
809         $sql = "select $group_field as group_field, sum(time_to_sec(l.duration)) as time, 
810           sum(cast(l.billable * coalesce(u.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10, 2))) as cost,
811           null as expenses from tt_log l
812           $group_join $left_join $where group by $group_field";
813       } else {
814         // If we are including cost and tracking projects, our query (the same as above) needs to join the tt_user_project_binds table.
815         $sql = "select $group_field as group_field, sum(time_to_sec(l.duration)) as time, 
816           sum(cast(l.billable * coalesce(upb.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
817           null as expenses from tt_log l 
818           $group_join
819           left join tt_user_project_binds upb on (l.user_id = upb.user_id and l.project_id = upb.project_id) $where group by $group_field";
820       }
821     } else {
822       $sql = "select $group_field as group_field, sum(time_to_sec(l.duration)) as time, null as expenses from tt_log l 
823          $group_join $where group by $group_field";
824     }
825     // By now we have sql for time items.
826
827     // However, when we have expenses, we need to do a union with a separate query for expense items from tt_expense_items table.
828     if ($report['show_cost'] && in_array('ex', explode(',', $user->plugins))) { // if ex(penses) plugin is enabled
829
830       // Determine group by field and a required join.
831       $group_join = null;
832       $group_field = 'null';
833       switch ($group_by_option) {
834         case 'date':
835           $group_field = 'ei.date';
836           $group_join = '';
837           break;
838         case 'user':
839           $group_field = 'u.name';
840           $group_join = 'left join tt_users u on (ei.user_id = u.id) ';
841           break;
842         case 'client':
843           $group_field = 'c.name';
844           $group_join = 'left join tt_clients c on (ei.client_id = c.id) ';
845           break;
846         case 'project':
847           $group_field = 'p.name';
848           $group_join = 'left join tt_projects p on (ei.project_id = p.id) ';
849           break;
850       }
851
852       $where = ttReportHelper::getFavExpenseWhere($report);
853       $sql_for_expenses = "select $group_field as group_field, null as time, sum(ei.cost) as cost, sum(ei.cost) as expenses from tt_expense_items ei 
854         $group_join $where";
855       // Add a "group by" clause if we are grouping.
856       if ('null' != $group_field) $sql_for_expenses .= " group by $group_field";
857
858       // Create a combined query.
859       $sql = "select group_field, sum(time) as time, sum(cost) as cost, sum(expenses) as expenses from (($sql) union all ($sql_for_expenses)) t group by group_field";
860     }
861
862     // Execute query.
863     $res = $mdb2->query($sql);
864     if (is_a($res, 'PEAR_Error')) die($res->getMessage());
865
866     while ($val = $res->fetchRow()) {
867       if ('date' == $group_by_option) {
868         // This is needed to get the date in user date format.
869         $o_date = new DateAndTime(DB_DATEFORMAT, $val['group_field']);
870         $val['group_field'] = $o_date->toString($user->date_format);
871         unset($o_date);
872       }
873       $time = $val['time'] ? sec_to_time_fmt_hm($val['time']) : null;
874       if ($report['show_cost']) {
875         if ('.' != $user->decimal_mark) {
876           $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']);
877           $val['expenses'] = str_replace('.', $user->decimal_mark, $val['expenses']);
878         }
879         $subtotals[$val['group_field']] = array('name'=>$val['group_field'],'time'=>$time,'cost'=>$val['cost'],'expenses'=>$val['expenses']);
880       } else
881         $subtotals[$val['group_field']] = array('name'=>$val['group_field'],'time'=>$time);
882     }
883
884     return $subtotals;
885   }
886
887   // getTotals calculates total hours and cost for all report items.
888   static function getTotals($bean)
889   {
890     global $user;
891     
892     $mdb2 = getConnection();
893     
894     $where = ttReportHelper::getWhere($bean);
895         
896     // Start with a query for time items.
897     if ($bean->getAttribute('chcost')) {
898       if (MODE_TIME == $user->tracking_mode) {
899         $sql = "select sum(time_to_sec(l.duration)) as time,
900           sum(cast(l.billable * coalesce(u.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
901           null as expenses 
902           from tt_log l
903           left join tt_users u on (l.user_id = u.id) $where";
904       } else {
905         $sql = "select sum(time_to_sec(l.duration)) as time,
906           sum(cast(l.billable * coalesce(upb.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
907           null as expenses
908           from tt_log l
909           left join tt_user_project_binds upb on (l.user_id = upb.user_id and l.project_id = upb.project_id) $where";   
910       }
911     } else
912       $sql = "select sum(time_to_sec(l.duration)) as time, null as cost, null as expenses from tt_log l $where";
913       
914     // If we have expenses, query becomes a bit more complex.
915     if ($bean->getAttribute('chcost') && in_array('ex', explode(',', $user->plugins))) {
916       $where = ttReportHelper::getExpenseWhere($bean);
917       $sql_for_expenses = "select null as time, sum(cost) as cost, sum(cost) as expenses from tt_expense_items ei $where";
918       // Create a combined query.
919       $sql = "select sum(time) as time, sum(cost) as cost, sum(expenses) as expenses from (($sql) union all ($sql_for_expenses)) t";
920         }
921
922         // Execute query.
923     $res = $mdb2->query($sql);
924     if (!is_a($res, 'PEAR_Error')) {
925       $val = $res->fetchRow();
926       $total_time = $val['time'] ? sec_to_time_fmt_hm($val['time']) : null;
927       if ($bean->getAttribute('chcost')) {
928         $total_cost = $val['cost'];
929         if (!$total_cost) $total_cost = '0.00';
930         if ('.' != $user->decimal_mark)
931               $total_cost = str_replace('.', $user->decimal_mark, $total_cost);
932               
933             $total_expenses = $val['expenses'];
934         if (!$total_expenses) $total_expenses = '0.00';
935         if ('.' != $user->decimal_mark)
936               $total_expenses = str_replace('.', $user->decimal_mark, $total_expenses);
937       }
938     } else
939       die($res->getMessage());
940       
941     if ($bean->getAttribute('period'))
942       $period = new Period($bean->getAttribute('period'), new DateAndTime($user->date_format));
943     else {
944       $period = new Period();
945       $period->setPeriod(
946         new DateAndTime($user->date_format, $bean->getAttribute('start_date')),
947         new DateAndTime($user->date_format, $bean->getAttribute('end_date')));
948     }
949
950     $totals['start_date'] = $period->getBeginDate();
951         $totals['end_date'] = $period->getEndDate();
952         $totals['time'] = $total_time;
953         $totals['cost'] = $total_cost;
954         $totals['expenses'] = $total_expenses;
955
956     return $totals;
957   }
958   
959   // getFavTotals calculates total hours and cost for all favorite report items.
960   static function getFavTotals($report)
961   {
962     global $user;
963     
964     $mdb2 = getConnection();
965     
966     $where = ttReportHelper::getFavWhere($report);
967         
968     // Start with a query for time items.
969     if ($report['show_cost']) {
970       if (MODE_TIME == $user->tracking_mode) {
971         $sql = "select sum(time_to_sec(l.duration)) as time,
972           sum(cast(l.billable * coalesce(u.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
973           null as expenses 
974           from tt_log l
975           left join tt_users u on (l.user_id = u.id) $where";
976       } else {
977         $sql = "select sum(time_to_sec(l.duration)) as time,
978           sum(cast(l.billable * coalesce(upb.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
979           null as expenses
980           from tt_log l
981           left join tt_user_project_binds upb on (l.user_id = upb.user_id and l.project_id = upb.project_id) $where";   
982       }
983     } else
984       $sql = "select sum(time_to_sec(l.duration)) as time, null as cost, null as expenses from tt_log l $where";
985       
986     // If we have expenses, query becomes a bit more complex.
987     if ($report['show_cost'] && in_array('ex', explode(',', $user->plugins))) {
988       $where = ttReportHelper::getFavExpenseWhere($report);
989       $sql_for_expenses = "select null as time, sum(cost) as cost, sum(cost) as expenses from tt_expense_items ei $where";
990       // Create a combined query.
991       $sql = "select sum(time) as time, sum(cost) as cost, sum(expenses) as expenses from (($sql) union all ($sql_for_expenses)) t";
992         }
993
994         // Execute query.
995     $res = $mdb2->query($sql);
996     if (!is_a($res, 'PEAR_Error')) {
997       $val = $res->fetchRow();
998       $total_time = $val['time'] ? sec_to_time_fmt_hm($val['time']) : null;
999       if ($report['show_cost']) {
1000         $total_cost = $val['cost'];
1001         if (!$total_cost) $total_cost = '0.00';
1002         if ('.' != $user->decimal_mark)
1003               $total_cost = str_replace('.', $user->decimal_mark, $total_cost);
1004               
1005             $total_expenses = $val['expenses'];
1006         if (!$total_expenses) $total_expenses = '0.00';
1007         if ('.' != $user->decimal_mark)
1008               $total_expenses = str_replace('.', $user->decimal_mark, $total_expenses);
1009       }
1010     } else
1011       die($res->getMessage());
1012       
1013     if ($report['period'])
1014       $period = new Period($report['period'], new DateAndTime($user->date_format));
1015     else {
1016       $period = new Period();
1017       $period->setPeriod(
1018         new DateAndTime($user->date_format, $report['period_start']),
1019         new DateAndTime($user->date_format, $report['period_end']));
1020     }
1021
1022     $totals['start_date'] = $period->getBeginDate();
1023         $totals['end_date'] = $period->getEndDate();
1024         $totals['time'] = $total_time;
1025         $totals['cost'] = $total_cost;
1026         $totals['expenses'] = $total_expenses;
1027
1028     return $totals;
1029   }
1030   
1031   // The assignToInvoice assigns a set of records to a specific invoice.
1032   static function assignToInvoice($invoice_id, $time_log_ids, $expense_item_ids)
1033   {
1034         $mdb2 = getConnection();
1035         if ($time_log_ids) {
1036       $sql = "update tt_log set invoice_id = ".$mdb2->quote($invoice_id).
1037         " where id in(".join(', ', $time_log_ids).")";
1038       $affected = $mdb2->exec($sql);
1039       if (is_a($affected, 'PEAR_Error'))
1040             die($affected->getMessage());
1041         }
1042     if ($expense_item_ids) {
1043       $sql = "update tt_expense_items set invoice_id = ".$mdb2->quote($invoice_id).
1044         " where id in(".join(', ', $expense_item_ids).")";
1045       $affected = $mdb2->exec($sql);
1046       if (is_a($affected, 'PEAR_Error'))
1047             die($affected->getMessage());
1048         }
1049   }
1050
1051   // prepareReportBody - prepares an email body for report.
1052   static function prepareReportBody($bean, $comment)
1053   {
1054     global $user;
1055     global $i18n;
1056
1057     $items = ttReportHelper::getItems($bean);
1058     $group_by = $bean->getAttribute('group_by');
1059     if ($group_by && 'no_grouping' != $group_by)
1060       $subtotals = ttReportHelper::getSubtotals($bean);
1061     $totals = ttReportHelper::getTotals($bean);
1062     
1063     // Use custom fields plugin if it is enabled.
1064     if (in_array('cf', explode(',', $user->plugins)))
1065       $custom_fields = new CustomFields($user->team_id);
1066
1067     // Define some styles to use in email.
1068     $style_title = 'text-align: center; font-size: 15pt; font-family: Arial, Helvetica, sans-serif;';
1069     $tableHeader = 'font-weight: bold; background-color: #a6ccf7; text-align: left;';
1070     $tableHeaderCentered = 'font-weight: bold; background-color: #a6ccf7; text-align: center;';
1071     $rowItem = 'background-color: #ccccce;';
1072     $rowItemAlt = 'background-color: #f5f5f5;';
1073     $rowSubtotal = 'background-color: #e0e0e0;';
1074     $cellLeftAligned = 'text-align: left; vertical-align: top;';
1075     $cellRightAligned = 'text-align: right; vertical-align: top;';
1076     $cellLeftAlignedSubtotal = 'font-weight: bold; text-align: left; vertical-align: top;';
1077     $cellRightAlignedSubtotal = 'font-weight: bold; text-align: right; vertical-align: top;';
1078     
1079     // Start creating email body.
1080     $body = '<html>';
1081     $body .= '<head><meta http-equiv="content-type" content="text/html; charset='.CHARSET.'"></head>';
1082     $body .= '<body>';
1083     
1084     // Output title.
1085     $body .= '<p style="'.$style_title.'">'.$i18n->getKey('form.mail.report_subject').': '.$totals['start_date'].' - '.$totals['end_date'].'</p>';
1086     
1087     // Output comment.
1088     if ($comment) $body .= '<p>'.htmlspecialchars($comment).'</p>';
1089
1090     if ($bean->getAttribute('chtotalsonly')) {
1091       // Totals only report. Output subtotals.
1092       
1093       // Determine group_by header.
1094       if ('cf_1' == $group_by)
1095         $group_by_header = htmlspecialchars($custom_fields->fields[0]['label']);
1096       else {
1097         $key = 'label.'.$group_by;
1098         $group_by_header = $i18n->getKey($key);
1099       }
1100         
1101       $body .= '<table border="0" cellpadding="4" cellspacing="0" width="100%">';
1102       $body .= '<tr>';
1103       $body .= '<td style="'.$tableHeader.'">'.$group_by_header.'</td>';
1104       if ($bean->getAttribute('chduration'))
1105         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.duration').'</td>';
1106       if ($bean->getAttribute('chcost'))
1107         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.cost').'</td>';
1108       $body .= '</tr>';
1109       foreach($subtotals as $subtotal) {
1110         $body .= '<tr style="'.$rowSubtotal.'">';
1111         $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($subtotal['name'] ? htmlspecialchars($subtotal['name']) : '&nbsp;').'</td>';
1112         if ($bean->getAttribute('chduration')) {
1113           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1114           if ($subtotal['time'] <> '0:00') $body .= $subtotal['time'];
1115           $body .= '</td>';
1116         }
1117         if ($bean->getAttribute('chcost')) {
1118           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1119           $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotal['cost'] : $subtotal['expenses'];
1120           $body .= '</td>';
1121         }
1122         $body .= '</tr>';
1123       }
1124       
1125       // Print totals.
1126       $body .= '<tr><td>&nbsp;</td></tr>';
1127       $body .= '<tr style="'.$rowSubtotal.'">';
1128       $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.total').'</td>';
1129       if ($bean->getAttribute('chduration')) {
1130         $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1131         if ($totals['time'] <> '0:00') $body .= $totals['time'];
1132         $body .= '</td>';
1133       }
1134       if ($bean->getAttribute('chcost')) {
1135         $body .= '<td nowrap style="'.$cellRightAlignedSubtotal.'">'.htmlspecialchars($user->currency).' ';
1136         $body .= ($user->canManageTeam() || $user->isClient()) ? $totals['cost'] : $totals['expenses'];
1137         $body .= '</td>';
1138       }
1139       $body .= '</tr>';
1140        
1141       $body .= '</table>';
1142     } else {
1143       // Regular report.
1144       
1145       // Print table header.
1146       $body .= '<table border="0" cellpadding="4" cellspacing="0" width="100%">';
1147       $body .= '<tr>';
1148       $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.date').'</td>';
1149       if ($user->canManageTeam() || $user->isClient())
1150         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.user').'</td>';
1151       if ($bean->getAttribute('chclient'))
1152         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.client').'</td>';
1153       if ($bean->getAttribute('chproject'))
1154         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.project').'</td>';
1155       if ($bean->getAttribute('chtask'))
1156         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.task').'</td>';
1157       if ($bean->getAttribute('chcf_1'))
1158         $body .= '<td style="'.$tableHeader.'">'.htmlspecialchars($custom_fields->fields[0]['label']).'</td>';
1159       if ($bean->getAttribute('chstart'))
1160         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.start').'</td>';
1161       if ($bean->getAttribute('chfinish'))
1162         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.finish').'</td>';
1163       if ($bean->getAttribute('chduration'))
1164         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.duration').'</td>';
1165       if ($bean->getAttribute('chnote'))
1166         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.note').'</td>';
1167       if ($bean->getAttribute('chcost'))
1168         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.cost').'</td>';
1169       if ($bean->getAttribute('chinvoice'))
1170         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.invoice').'</td>';
1171       $body .= '</tr>';
1172       
1173       // Initialize variables to print subtotals.
1174       if ($items && 'no_grouping' != $group_by) {
1175         $print_subtotals = true;
1176         $first_pass = true;
1177         $prev_grouped_by = '';
1178         $cur_grouped_by = '';
1179       }
1180       // Initialize variables to alternate color of rows for different dates.
1181       $prev_date = '';
1182       $cur_date = '';
1183       $row_style = $rowItem;
1184       
1185       // Print report items.
1186       if (is_array($items)) {
1187         foreach ($items as $record) {
1188           $cur_date = $record['date'];
1189           // Print a subtotal row after a block of grouped items.
1190           if ($print_subtotals) {
1191             $cur_grouped_by = $record['grouped_by'];
1192             if ($cur_grouped_by != $prev_grouped_by && !$first_pass) {
1193               $body .= '<tr style="'.$rowSubtotal.'">';
1194               $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.subtotal').'</td>';
1195               $subtotal_name = htmlspecialchars($subtotals[$prev_grouped_by]['name']);
1196               if ($user->canManageTeam() || $user->isClient()) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'user' ? $subtotal_name : '').'</td>';
1197               if ($bean->getAttribute('chclient')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'client' ? $subtotal_name : '').'</td>';
1198               if ($bean->getAttribute('chproject')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'project' ? $subtotal_name : '').'</td>';
1199               if ($bean->getAttribute('chtask')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'task' ? $subtotal_name : '').'</td>';
1200               if ($bean->getAttribute('chcf_1')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'cf_1' ? $subtotal_name : '').'</td>';
1201               if ($bean->getAttribute('chstart')) $body .= '<td></td>';
1202               if ($bean->getAttribute('chfinish')) $body .= '<td></td>';
1203               if ($bean->getAttribute('chduration')) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$subtotals[$prev_grouped_by]['time'].'</td>';
1204               if ($bean->getAttribute('chnote')) $body .= '<td></td>';
1205               if ($bean->getAttribute('chcost')) {
1206                 $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1207                 $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotals[$prev_grouped_by]['cost'] : $subtotals[$prev_grouped_by]['expenses'];
1208                 $body .= '</td>';
1209               }
1210               if ($bean->getAttribute('chinvoice')) $body .= '<td></td>';
1211               $body .= '</tr>';
1212               $body .= '<tr><td>&nbsp;</td></tr>';
1213             }
1214             $first_pass = false;
1215           }
1216           
1217           // Print a regular row.
1218           if ($cur_date != $prev_date)
1219             $row_style = ($row_style == $rowItem) ? $rowItemAlt : $rowItem;
1220           $body .= '<tr style="'.$row_style.'">';
1221           $body .= '<td style="'.$cellLeftAligned.'">'.$record['date'].'</td>';
1222           if ($user->canManageTeam() || $user->isClient())
1223             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['user']).'</td>';
1224           if ($bean->getAttribute('chclient'))
1225             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['client']).'</td>';
1226           if ($bean->getAttribute('chproject'))
1227             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['project']).'</td>';
1228           if ($bean->getAttribute('chtask'))
1229             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['task']).'</td>';
1230           if ($bean->getAttribute('chcf_1'))
1231             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['cf_1']).'</td>';
1232           if ($bean->getAttribute('chstart'))
1233             $body .= '<td nowrap style="'.$cellRightAligned.'">'.$record['start'].'</td>';
1234           if ($bean->getAttribute('chfinish'))
1235             $body .= '<td nowrap style="'.$cellRightAligned.'">'.$record['finish'].'</td>';
1236           if ($bean->getAttribute('chduration'))
1237             $body .= '<td style="'.$cellRightAligned.'">'.$record['duration'].'</td>';
1238           if ($bean->getAttribute('chnote'))
1239             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['note']).'</td>';
1240           if ($bean->getAttribute('chcost'))
1241             $body .= '<td style="'.$cellRightAligned.'">'.$record['cost'].'</td>';
1242           if ($bean->getAttribute('chinvoice'))
1243             $body .= '<td style="'.$cellRightAligned.'">'.htmlspecialchars($record['invoice']).'</td>';
1244           $body .= '</tr>';
1245           
1246           $prev_date = $record['date'];
1247           if ($print_subtotals)
1248             $prev_grouped_by = $record['grouped_by'];
1249         }
1250       }
1251       
1252       // Print a terminating subtotal.
1253       if ($print_subtotals) {
1254         $body .= '<tr style="'.$rowSubtotal.'">';
1255         $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.subtotal').'</td>';
1256         $subtotal_name = htmlspecialchars($subtotals[$cur_grouped_by]['name']);
1257         if ($user->canManageTeam() || $user->isClient()) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'user' ? $subtotal_name : '').'</td>';
1258         if ($bean->getAttribute('chclient')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'client' ? $subtotal_name : '').'</td>';
1259         if ($bean->getAttribute('chproject')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'project' ? $subtotal_name : '').'</td>';
1260         if ($bean->getAttribute('chtask')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'task' ? $subtotal_name : '').'</td>';
1261         if ($bean->getAttribute('chcf_1')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'cf_1' ? $subtotal_name : '').'</td>';
1262         if ($bean->getAttribute('chstart')) $body .= '<td></td>';
1263         if ($bean->getAttribute('chfinish')) $body .= '<td></td>';
1264         if ($bean->getAttribute('chduration')) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$subtotals[$cur_grouped_by]['time'].'</td>';
1265         if ($bean->getAttribute('chnote')) $body .= '<td></td>';
1266         if ($bean->getAttribute('chcost')) {
1267           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1268           $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotals[$cur_grouped_by]['cost'] : $subtotals[$cur_grouped_by]['expenses'];
1269           $body .= '</td>';
1270         }
1271         if ($bean->getAttribute('chinvoice')) $body .= '<td></td>';
1272         $body .= '</tr>';
1273       }
1274       
1275       // Print totals.
1276       $body .= '<tr><td>&nbsp;</td></tr>';
1277       $body .= '<tr style="'.$rowSubtotal.'">';
1278       $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.total').'</td>';
1279       if ($user->canManageTeam() || $user->isClient()) $body .= '<td></td>';
1280       if ($bean->getAttribute('chclient')) $body .= '<td></td>';
1281       if ($bean->getAttribute('chproject')) $body .= '<td></td>';
1282       if ($bean->getAttribute('chtask')) $body .= '<td></td>';
1283       if ($bean->getAttribute('chcf_1')) $body .= '<td></td>';
1284       if ($bean->getAttribute('chstart')) $body .= '<td></td>';
1285       if ($bean->getAttribute('chfinish')) $body .= '<td></td>';
1286       if ($bean->getAttribute('chduration')) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$totals['time'].'</td>';
1287       if ($bean->getAttribute('chnote')) $body .= '<td></td>';
1288       if ($bean->getAttribute('chcost')) {
1289         $body .= '<td nowrap style="'.$cellRightAlignedSubtotal.'">'.htmlspecialchars($user->currency).' ';
1290         $body .= ($user->canManageTeam() || $user->isClient()) ? $totals['cost'] : $totals['expenses'];
1291         $body .= '</td>';
1292       }
1293       if ($bean->getAttribute('chinvoice')) $body .= '<td></td>';
1294       $body .= '</tr>';
1295       
1296       $body .= '</table>';
1297     }
1298     
1299     // Output footer.
1300     if (!defined('REPORT_FOOTER') || !(REPORT_FOOTER == false))
1301       $body .= '<p style="text-align: center;">'.$i18n->getKey('form.mail.footer').'</p>';
1302
1303     // Finish creating email body.
1304     $body .= '</body></html>';
1305
1306     return $body;
1307   }
1308   
1309 // prepareFavReportBody - prepares an email body for a favorite report.
1310   static function prepareFavReportBody($report)
1311   {
1312         global $user;
1313         global $i18n;
1314         
1315         $items = ttReportHelper::getFavItems($report);
1316     $group_by = $report['group_by'];
1317         if ($group_by && 'no_grouping' != $group_by)
1318         $subtotals = ttReportHelper::getFavSubtotals($report);    
1319     $totals = ttReportHelper::getFavTotals($report);            
1320         
1321     // Use custom fields plugin if it is enabled.
1322     if (in_array('cf', explode(',', $user->plugins)))
1323       $custom_fields = new CustomFields($user->team_id);
1324
1325     // Define some styles to use in email.
1326     $style_title = 'text-align: center; font-size: 15pt; font-family: Arial, Helvetica, sans-serif;';
1327     $tableHeader = 'font-weight: bold; background-color: #a6ccf7; text-align: left;';
1328     $tableHeaderCentered = 'font-weight: bold; background-color: #a6ccf7; text-align: center;';
1329     $rowItem = 'background-color: #ccccce;';
1330     $rowItemAlt = 'background-color: #f5f5f5;';
1331     $rowSubtotal = 'background-color: #e0e0e0;';
1332     $cellLeftAligned = 'text-align: left; vertical-align: top;';
1333     $cellRightAligned = 'text-align: right; vertical-align: top;';
1334     $cellLeftAlignedSubtotal = 'font-weight: bold; text-align: left; vertical-align: top;';
1335     $cellRightAlignedSubtotal = 'font-weight: bold; text-align: right; vertical-align: top;';
1336     
1337     // Start creating email body.
1338     $body = '<html>';
1339     $body .= '<head><meta http-equiv="content-type" content="text/html; charset='.CHARSET.'"></head>';
1340     $body .= '<body>';
1341     
1342     // Output title.
1343     $body .= '<p style="'.$style_title.'">'.$i18n->getKey('form.mail.report_subject').': '.$totals['start_date'].' - '.$totals['end_date'].'</p>';
1344
1345     // Output comment.
1346     // if ($comment) $body .= '<p>'.htmlspecialchars($comment).'</p>'; // No comment for fav. reports.
1347
1348     if ($report['show_totals_only']) {
1349       // Totals only report. Output subtotals.
1350       
1351       // Determine group_by header.
1352       if ('cf_1' == $group_by)
1353         $group_by_header = htmlspecialchars($custom_fields->fields[0]['label']);
1354       else {
1355         $key = 'label.'.$group_by;
1356         $group_by_header = $i18n->getKey($key);
1357       }
1358         
1359       $body .= '<table border="0" cellpadding="4" cellspacing="0" width="100%">';
1360       $body .= '<tr>';
1361       $body .= '<td style="'.$tableHeader.'">'.$group_by_header.'</td>';
1362       if ($report['show_duration'])
1363         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.duration').'</td>';
1364       if ($report['show_cost'])
1365         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.cost').'</td>';
1366       $body .= '</tr>';
1367       foreach($subtotals as $subtotal) {
1368         $body .= '<tr style="'.$rowSubtotal.'">';
1369         $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($subtotal['name'] ? htmlspecialchars($subtotal['name']) : '&nbsp;').'</td>';
1370         if ($report['show_duration']) {
1371           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1372           if ($subtotal['time'] <> '0:00') $body .= $subtotal['time'];
1373           $body .= '</td>';
1374         }
1375         if ($report['show_cost']) {
1376           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1377           $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotal['cost'] : $subtotal['expenses'];
1378           $body .= '</td>';
1379         }
1380         $body .= '</tr>';
1381       }
1382       
1383       // Print totals.
1384       $body .= '<tr><td>&nbsp;</td></tr>';
1385       $body .= '<tr style="'.$rowSubtotal.'">';
1386       $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.total').'</td>';
1387       if ($report['show_duration']) {
1388         $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1389         if ($totals['time'] <> '0:00') $body .= $totals['time'];
1390         $body .= '</td>';
1391       }
1392       if ($report['show_cost']) {
1393         $body .= '<td nowrap style="'.$cellRightAlignedSubtotal.'">'.htmlspecialchars($user->currency).' ';
1394         $body .= ($user->canManageTeam() || $user->isClient()) ? $totals['cost'] : $totals['expenses'];
1395         $body .= '</td>';
1396       }
1397       $body .= '</tr>';
1398        
1399       $body .= '</table>';
1400     } else {
1401       // Regular report.
1402       
1403       // Print table header.
1404       $body .= '<table border="0" cellpadding="4" cellspacing="0" width="100%">';
1405       $body .= '<tr>';
1406       $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.date').'</td>';
1407       if ($user->canManageTeam() || $user->isClient())
1408         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.user').'</td>';
1409       if ($report['show_client'])
1410         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.client').'</td>';
1411       if ($report['show_project'])
1412         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.project').'</td>';
1413       if ($report['show_task'])
1414         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.task').'</td>';
1415       if ($report['show_custom_field_1'])
1416         $body .= '<td style="'.$tableHeader.'">'.htmlspecialchars($custom_fields->fields[0]['label']).'</td>';
1417       if ($report['show_start'])
1418         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.start').'</td>';
1419       if ($report['show_end'])
1420         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.finish').'</td>';
1421       if ($report['show_duration'])
1422         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.duration').'</td>';
1423       if ($report['show_note'])
1424         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.note').'</td>';
1425       if ($report['show_cost'])
1426         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.cost').'</td>';
1427       if ($report['show_invoice'])
1428         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.invoice').'</td>';
1429       $body .= '</tr>';
1430       
1431       // Initialize variables to print subtotals.
1432       if ($items && 'no_grouping' != $group_by) {
1433         $print_subtotals = true;
1434         $first_pass = true;
1435         $prev_grouped_by = '';
1436         $cur_grouped_by = '';
1437       }
1438       // Initialize variables to alternate color of rows for different dates.
1439       $prev_date = '';
1440       $cur_date = '';
1441       $row_style = $rowItem;
1442       
1443       // Print report items.
1444       if (is_array($items)) {
1445         foreach ($items as $record) {
1446           $cur_date = $record['date'];
1447           // Print a subtotal row after a block of grouped items.
1448           if ($print_subtotals) {
1449             $cur_grouped_by = $record['grouped_by'];
1450             if ($cur_grouped_by != $prev_grouped_by && !$first_pass) {
1451               $body .= '<tr style="'.$rowSubtotal.'">';
1452               $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.subtotal').'</td>';
1453               $subtotal_name = htmlspecialchars($subtotals[$prev_grouped_by]['name']);
1454               if ($user->canManageTeam() || $user->isClient()) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'user' ? $subtotal_name : '').'</td>';
1455               if ($report['show_client']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'client' ? $subtotal_name : '').'</td>';
1456               if ($report['show_project']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'project' ? $subtotal_name : '').'</td>';
1457               if ($report['show_task']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'task' ? $subtotal_name : '').'</td>';
1458               if ($report['show_custom_field_1']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'cf_1' ? $subtotal_name : '').'</td>';
1459               if ($report['show_start']) $body .= '<td></td>';
1460               if ($report['show_end']) $body .= '<td></td>';
1461               if ($report['show_duration']) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$subtotals[$prev_grouped_by]['time'].'</td>';
1462               if ($report['show_note']) $body .= '<td></td>';
1463               if ($report['show_cost']) {
1464                 $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1465                 $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotals[$prev_grouped_by]['cost'] : $subtotals[$prev_grouped_by]['expenses'];
1466                 $body .= '</td>';
1467               }
1468               if ($report['show_invoice']) $body .= '<td></td>';
1469               $body .= '</tr>';
1470               $body .= '<tr><td>&nbsp;</td></tr>';      
1471             }
1472             $first_pass = false;
1473           }
1474         
1475           // Print a regular row.
1476           if ($cur_date != $prev_date)
1477             $row_style = ($row_style == $rowItem) ? $rowItemAlt : $rowItem;
1478           $body .= '<tr style="'.$row_style.'">';
1479           $body .= '<td style="'.$cellLeftAligned.'">'.$record['date'].'</td>';
1480           if ($user->canManageTeam() || $user->isClient())
1481             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['user']).'</td>';
1482           if ($report['show_client'])
1483             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['client']).'</td>';
1484           if ($report['show_project'])
1485             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['project']).'</td>';
1486           if ($report['show_task'])
1487             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['task']).'</td>';
1488           if ($report['show_custom_field_1'])
1489             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['cf_1']).'</td>';
1490           if ($report['show_start'])
1491             $body .= '<td nowrap style="'.$cellRightAligned.'">'.$record['start'].'</td>';
1492           if ($report['show_end'])
1493             $body .= '<td nowrap style="'.$cellRightAligned.'">'.$record['finish'].'</td>';
1494           if ($report['show_duration'])
1495             $body .= '<td style="'.$cellRightAligned.'">'.$record['duration'].'</td>';
1496           if ($report['show_note'])
1497             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['note']).'</td>';
1498           if ($report['show_cost'])
1499             $body .= '<td style="'.$cellRightAligned.'">'.$record['cost'].'</td>';
1500           if ($report['show_invoice'])
1501             $body .= '<td style="'.$cellRightAligned.'">'.htmlspecialchars($record['invoice']).'</td>';
1502           $body .= '</tr>';
1503             
1504           $prev_date = $record['date'];
1505           if ($print_subtotals)
1506             $prev_grouped_by = $record['grouped_by'];
1507         }
1508       }
1509       
1510       // Print a terminating subtotal.
1511       if ($print_subtotals) {
1512         $body .= '<tr style="'.$rowSubtotal.'">';
1513         $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.subtotal').'</td>';
1514         $subtotal_name = htmlspecialchars($subtotals[$cur_grouped_by]['name']);
1515         if ($user->canManageTeam() || $user->isClient()) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'user' ? $subtotal_name : '').'</td>';
1516         if ($report['show_client']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'client' ? $subtotal_name : '').'</td>';
1517         if ($report['show_project']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'project' ? $subtotal_name : '').'</td>';
1518         if ($report['show_task']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'task' ? $subtotal_name : '').'</td>';
1519         if ($report['show_custom_field_1']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'cf_1' ? $subtotal_name : '').'</td>';
1520         if ($report['show_start']) $body .= '<td></td>';
1521         if ($report['show_end']) $body .= '<td></td>';
1522         if ($report['show_duration']) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$subtotals[$cur_grouped_by]['time'].'</td>';
1523         if ($report['show_note']) $body .= '<td></td>';
1524         if ($report['show_cost']) {
1525           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1526           $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotals[$cur_grouped_by]['cost'] : $subtotals[$cur_grouped_by]['expenses'];
1527           $body .= '</td>';
1528         }
1529         if ($report['show_invoice']) $body .= '<td></td>';
1530         $body .= '</tr>';
1531       }
1532       
1533       // Print totals.
1534       $body .= '<tr><td>&nbsp;</td></tr>';
1535       $body .= '<tr style="'.$rowSubtotal.'">';
1536       $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.total').'</td>';
1537       if ($user->canManageTeam() || $user->isClient()) $body .= '<td></td>';
1538       if ($report['show_client']) $body .= '<td></td>';
1539       if ($report['show_project']) $body .= '<td></td>';
1540       if ($report['show_task']) $body .= '<td></td>';
1541       if ($report['show_custom_field_1']) $body .= '<td></td>';
1542       if ($report['show_start']) $body .= '<td></td>';
1543       if ($report['show_end']) $body .= '<td></td>';
1544       if ($report['show_duration']) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$totals['time'].'</td>';
1545       if ($report['show_note']) $body .= '<td></td>';
1546       if ($report['show_cost']) {
1547         $body .= '<td nowrap style="'.$cellRightAlignedSubtotal.'">'.htmlspecialchars($user->currency).' ';
1548         $body .= ($user->canManageTeam() || $user->isClient()) ? $totals['cost'] : $totals['expenses'];
1549         $body .= '</td>';
1550       }
1551       if ($report['show_invoice']) $body .= '<td></td>';
1552       $body .= '</tr>';
1553       
1554       $body .= '</table>';
1555     }
1556     
1557     // Output footer.
1558     if (!defined('REPORT_FOOTER') || !(REPORT_FOOTER == false))
1559       $body .= '<p style="text-align: center;">'.$i18n->getKey('form.mail.footer').'</p>';
1560
1561     // Finish creating email body.
1562     $body .= '</body></html>';
1563
1564     return $body;
1565   }
1566   
1567   // sendFavReport - sends a favorite report to a specified email, called from cron.php
1568   static function sendFavReport($report, $email) {
1569     // We are called from cron.php, we have no $bean in session.
1570     // cron.php set global $user and $i18n objects to match our favorite report user.
1571     global $user;
1572     global $i18n;
1573     
1574     // Prepare report body.
1575     $body = ttReportHelper::prepareFavReportBody($report);
1576                         
1577     import('mail.Mailer');
1578     $mailer = new Mailer();
1579     $mailer->setCharSet(CHARSET);
1580     $mailer->setContentType('text/html');
1581     $mailer->setSender(SENDER);
1582     $mailer->setReceiver($email);
1583     $mailer->setSendType(MAIL_MODE);
1584     if (!$mailer->send($report['name'], $body))
1585       return false;
1586       
1587     return true;
1588   }
1589 }