Fixed a condition. Also some white space cleanup.
[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')) {
865       while ($val = $res->fetchRow()) {
866         if ('date' == $group_by_option) {
867           // This is needed to get the date in user date format.
868           $o_date = new DateAndTime(DB_DATEFORMAT, $val['group_field']);
869           $val['group_field'] = $o_date->toString($user->date_format);
870           unset($o_date);
871         }
872         $time = $val['time'] ? sec_to_time_fmt_hm($val['time']) : null;
873         if ($report['show_cost']) {
874           if ('.' != $user->decimal_mark) {
875             $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']);
876             $val['expenses'] = str_replace('.', $user->decimal_mark, $val['expenses']);
877           }
878           $subtotals[$val['group_field']] = array('name'=>$val['group_field'],'time'=>$time,'cost'=>$val['cost'],'expenses'=>$val['expenses']);
879         } else
880           $subtotals[$val['group_field']] = array('name'=>$val['group_field'],'time'=>$time);
881       }
882     } else
883       die($res->getMessage());
884
885     return $subtotals;
886   }
887
888   // getTotals calculates total hours and cost for all report items.
889   static function getTotals($bean)
890   {
891     global $user;
892     
893     $mdb2 = getConnection();
894     
895     $where = ttReportHelper::getWhere($bean);
896         
897     // Start with a query for time items.
898     if ($bean->getAttribute('chcost')) {
899       if (MODE_TIME == $user->tracking_mode) {
900         $sql = "select sum(time_to_sec(l.duration)) as time,
901           sum(cast(l.billable * coalesce(u.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
902           null as expenses 
903           from tt_log l
904           left join tt_users u on (l.user_id = u.id) $where";
905       } else {
906         $sql = "select sum(time_to_sec(l.duration)) as time,
907           sum(cast(l.billable * coalesce(upb.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
908           null as expenses
909           from tt_log l
910           left join tt_user_project_binds upb on (l.user_id = upb.user_id and l.project_id = upb.project_id) $where";   
911       }
912     } else
913       $sql = "select sum(time_to_sec(l.duration)) as time, null as cost, null as expenses from tt_log l $where";
914       
915     // If we have expenses, query becomes a bit more complex.
916     if ($bean->getAttribute('chcost') && in_array('ex', explode(',', $user->plugins))) {
917       $where = ttReportHelper::getExpenseWhere($bean);
918       $sql_for_expenses = "select null as time, sum(cost) as cost, sum(cost) as expenses from tt_expense_items ei $where";
919       // Create a combined query.
920       $sql = "select sum(time) as time, sum(cost) as cost, sum(expenses) as expenses from (($sql) union all ($sql_for_expenses)) t";
921         }
922
923         // Execute query.
924     $res = $mdb2->query($sql);
925     if (!is_a($res, 'PEAR_Error')) {
926       $val = $res->fetchRow();
927       $total_time = $val['time'] ? sec_to_time_fmt_hm($val['time']) : null;
928       if ($bean->getAttribute('chcost')) {
929         $total_cost = $val['cost'];
930         if (!$total_cost) $total_cost = '0.00';
931         if ('.' != $user->decimal_mark)
932               $total_cost = str_replace('.', $user->decimal_mark, $total_cost);
933               
934             $total_expenses = $val['expenses'];
935         if (!$total_expenses) $total_expenses = '0.00';
936         if ('.' != $user->decimal_mark)
937               $total_expenses = str_replace('.', $user->decimal_mark, $total_expenses);
938       }
939     } else
940       die($res->getMessage());
941       
942     if ($bean->getAttribute('period'))
943       $period = new Period($bean->getAttribute('period'), new DateAndTime($user->date_format));
944     else {
945       $period = new Period();
946       $period->setPeriod(
947         new DateAndTime($user->date_format, $bean->getAttribute('start_date')),
948         new DateAndTime($user->date_format, $bean->getAttribute('end_date')));
949     }
950
951     $totals['start_date'] = $period->getBeginDate();
952         $totals['end_date'] = $period->getEndDate();
953         $totals['time'] = $total_time;
954         $totals['cost'] = $total_cost;
955         $totals['expenses'] = $total_expenses;
956
957     return $totals;
958   }
959   
960   // getFavTotals calculates total hours and cost for all favorite report items.
961   static function getFavTotals($report)
962   {
963     global $user;
964     
965     $mdb2 = getConnection();
966     
967     $where = ttReportHelper::getFavWhere($report);
968         
969     // Start with a query for time items.
970     if ($report['show_cost']) {
971       if (MODE_TIME == $user->tracking_mode) {
972         $sql = "select sum(time_to_sec(l.duration)) as time,
973           sum(cast(l.billable * coalesce(u.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
974           null as expenses 
975           from tt_log l
976           left join tt_users u on (l.user_id = u.id) $where";
977       } else {
978         $sql = "select sum(time_to_sec(l.duration)) as time,
979           sum(cast(l.billable * coalesce(upb.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
980           null as expenses
981           from tt_log l
982           left join tt_user_project_binds upb on (l.user_id = upb.user_id and l.project_id = upb.project_id) $where";   
983       }
984     } else
985       $sql = "select sum(time_to_sec(l.duration)) as time, null as cost, null as expenses from tt_log l $where";
986       
987     // If we have expenses, query becomes a bit more complex.
988     if ($report['show_cost'] && in_array('ex', explode(',', $user->plugins))) {
989       $where = ttReportHelper::getFavExpenseWhere($report);
990       $sql_for_expenses = "select null as time, sum(cost) as cost, sum(cost) as expenses from tt_expense_items ei $where";
991       // Create a combined query.
992       $sql = "select sum(time) as time, sum(cost) as cost, sum(expenses) as expenses from (($sql) union all ($sql_for_expenses)) t";
993         }
994
995         // Execute query.
996     $res = $mdb2->query($sql);
997     if (!is_a($res, 'PEAR_Error')) {
998       $val = $res->fetchRow();
999       $total_time = $val['time'] ? sec_to_time_fmt_hm($val['time']) : null;
1000       if ($report['show_cost']) {
1001         $total_cost = $val['cost'];
1002         if (!$total_cost) $total_cost = '0.00';
1003         if ('.' != $user->decimal_mark)
1004               $total_cost = str_replace('.', $user->decimal_mark, $total_cost);
1005               
1006             $total_expenses = $val['expenses'];
1007         if (!$total_expenses) $total_expenses = '0.00';
1008         if ('.' != $user->decimal_mark)
1009               $total_expenses = str_replace('.', $user->decimal_mark, $total_expenses);
1010       }
1011     } else
1012       die($res->getMessage());
1013       
1014     if ($report['period'])
1015       $period = new Period($report['period'], new DateAndTime($user->date_format));
1016     else {
1017       $period = new Period();
1018       $period->setPeriod(
1019         new DateAndTime($user->date_format, $report['period_start']),
1020         new DateAndTime($user->date_format, $report['period_end']));
1021     }
1022
1023     $totals['start_date'] = $period->getBeginDate();
1024         $totals['end_date'] = $period->getEndDate();
1025         $totals['time'] = $total_time;
1026         $totals['cost'] = $total_cost;
1027         $totals['expenses'] = $total_expenses;
1028
1029     return $totals;
1030   }
1031   
1032   // The assignToInvoice assigns a set of records to a specific invoice.
1033   static function assignToInvoice($invoice_id, $time_log_ids, $expense_item_ids)
1034   {
1035         $mdb2 = getConnection();
1036         if ($time_log_ids) {
1037       $sql = "update tt_log set invoice_id = ".$mdb2->quote($invoice_id).
1038         " where id in(".join(', ', $time_log_ids).")";
1039       $affected = $mdb2->exec($sql);
1040       if (is_a($affected, 'PEAR_Error'))
1041             die($affected->getMessage());
1042         }
1043     if ($expense_item_ids) {
1044       $sql = "update tt_expense_items set invoice_id = ".$mdb2->quote($invoice_id).
1045         " where id in(".join(', ', $expense_item_ids).")";
1046       $affected = $mdb2->exec($sql);
1047       if (is_a($affected, 'PEAR_Error'))
1048             die($affected->getMessage());
1049         }
1050   }
1051
1052   // prepareReportBody - prepares an email body for report.
1053   static function prepareReportBody($bean, $comment)
1054   {
1055     global $user;
1056     global $i18n;
1057
1058     $items = ttReportHelper::getItems($bean);
1059     $group_by = $bean->getAttribute('group_by');
1060     if ($group_by && 'no_grouping' != $group_by)
1061       $subtotals = ttReportHelper::getSubtotals($bean);
1062     $totals = ttReportHelper::getTotals($bean);
1063     
1064     // Use custom fields plugin if it is enabled.
1065     if (in_array('cf', explode(',', $user->plugins)))
1066       $custom_fields = new CustomFields($user->team_id);
1067
1068     // Define some styles to use in email.
1069     $style_title = 'text-align: center; font-size: 15pt; font-family: Arial, Helvetica, sans-serif;';
1070     $tableHeader = 'font-weight: bold; background-color: #a6ccf7; text-align: left;';
1071     $tableHeaderCentered = 'font-weight: bold; background-color: #a6ccf7; text-align: center;';
1072     $rowItem = 'background-color: #ccccce;';
1073     $rowItemAlt = 'background-color: #f5f5f5;';
1074     $rowSubtotal = 'background-color: #e0e0e0;';
1075     $cellLeftAligned = 'text-align: left; vertical-align: top;';
1076     $cellRightAligned = 'text-align: right; vertical-align: top;';
1077     $cellLeftAlignedSubtotal = 'font-weight: bold; text-align: left; vertical-align: top;';
1078     $cellRightAlignedSubtotal = 'font-weight: bold; text-align: right; vertical-align: top;';
1079     
1080     // Start creating email body.
1081     $body = '<html>';
1082     $body .= '<head><meta http-equiv="content-type" content="text/html; charset='.CHARSET.'"></head>';
1083     $body .= '<body>';
1084     
1085     // Output title.
1086     $body .= '<p style="'.$style_title.'">'.$i18n->getKey('form.mail.report_subject').': '.$totals['start_date'].' - '.$totals['end_date'].'</p>';
1087     
1088     // Output comment.
1089     if ($comment) $body .= '<p>'.htmlspecialchars($comment).'</p>';
1090
1091     if ($bean->getAttribute('chtotalsonly')) {
1092       // Totals only report. Output subtotals.
1093       
1094       // Determine group_by header.
1095       if ('cf_1' == $group_by)
1096         $group_by_header = htmlspecialchars($custom_fields->fields[0]['label']);
1097       else {
1098         $key = 'label.'.$group_by;
1099         $group_by_header = $i18n->getKey($key);
1100       }
1101         
1102       $body .= '<table border="0" cellpadding="4" cellspacing="0" width="100%">';
1103       $body .= '<tr>';
1104       $body .= '<td style="'.$tableHeader.'">'.$group_by_header.'</td>';
1105       if ($bean->getAttribute('chduration'))
1106         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.duration').'</td>';
1107       if ($bean->getAttribute('chcost'))
1108         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.cost').'</td>';
1109       $body .= '</tr>';
1110       foreach($subtotals as $subtotal) {
1111         $body .= '<tr style="'.$rowSubtotal.'">';
1112         $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($subtotal['name'] ? htmlspecialchars($subtotal['name']) : '&nbsp;').'</td>';
1113         if ($bean->getAttribute('chduration')) {
1114           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1115           if ($subtotal['time'] <> '0:00') $body .= $subtotal['time'];
1116           $body .= '</td>';
1117         }
1118         if ($bean->getAttribute('chcost')) {
1119           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1120           $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotal['cost'] : $subtotal['expenses'];
1121           $body .= '</td>';
1122         }
1123         $body .= '</tr>';
1124       }
1125       
1126       // Print totals.
1127       $body .= '<tr><td>&nbsp;</td></tr>';
1128       $body .= '<tr style="'.$rowSubtotal.'">';
1129       $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.total').'</td>';
1130       if ($bean->getAttribute('chduration')) {
1131         $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1132         if ($totals['time'] <> '0:00') $body .= $totals['time'];
1133         $body .= '</td>';
1134       }
1135       if ($bean->getAttribute('chcost')) {
1136         $body .= '<td nowrap style="'.$cellRightAlignedSubtotal.'">'.htmlspecialchars($user->currency).' ';
1137         $body .= ($user->canManageTeam() || $user->isClient()) ? $totals['cost'] : $totals['expenses'];
1138         $body .= '</td>';
1139       }
1140       $body .= '</tr>';
1141        
1142       $body .= '</table>';
1143     } else {
1144       // Regular report.
1145       
1146       // Print table header.
1147       $body .= '<table border="0" cellpadding="4" cellspacing="0" width="100%">';
1148       $body .= '<tr>';
1149       $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.date').'</td>';
1150       if ($user->canManageTeam() || $user->isClient())
1151         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.user').'</td>';
1152       if ($bean->getAttribute('chclient'))
1153         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.client').'</td>';
1154       if ($bean->getAttribute('chproject'))
1155         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.project').'</td>';
1156       if ($bean->getAttribute('chtask'))
1157         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.task').'</td>';
1158       if ($bean->getAttribute('chcf_1'))
1159         $body .= '<td style="'.$tableHeader.'">'.htmlspecialchars($custom_fields->fields[0]['label']).'</td>';
1160       if ($bean->getAttribute('chstart'))
1161         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.start').'</td>';
1162       if ($bean->getAttribute('chfinish'))
1163         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.finish').'</td>';
1164       if ($bean->getAttribute('chduration'))
1165         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.duration').'</td>';
1166       if ($bean->getAttribute('chnote'))
1167         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.note').'</td>';
1168       if ($bean->getAttribute('chcost'))
1169         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.cost').'</td>';
1170       if ($bean->getAttribute('chinvoice'))
1171         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.invoice').'</td>';
1172       $body .= '</tr>';
1173       
1174       // Initialize variables to print subtotals.
1175       if ($items && 'no_grouping' != $group_by) {
1176         $print_subtotals = true;
1177         $first_pass = true;
1178         $prev_grouped_by = '';
1179         $cur_grouped_by = '';
1180       }
1181       // Initialize variables to alternate color of rows for different dates.
1182       $prev_date = '';
1183       $cur_date = '';
1184       $row_style = $rowItem;
1185       
1186       // Print report items.
1187       if (is_array($items)) {
1188         foreach ($items as $record) {
1189           $cur_date = $record['date'];
1190           // Print a subtotal row after a block of grouped items.
1191           if ($print_subtotals) {
1192             $cur_grouped_by = $record['grouped_by'];
1193             if ($cur_grouped_by != $prev_grouped_by && !$first_pass) {
1194               $body .= '<tr style="'.$rowSubtotal.'">';
1195               $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.subtotal').'</td>';
1196               $subtotal_name = htmlspecialchars($subtotals[$prev_grouped_by]['name']);
1197               if ($user->canManageTeam() || $user->isClient()) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'user' ? $subtotal_name : '').'</td>';
1198               if ($bean->getAttribute('chclient')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'client' ? $subtotal_name : '').'</td>';
1199               if ($bean->getAttribute('chproject')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'project' ? $subtotal_name : '').'</td>';
1200               if ($bean->getAttribute('chtask')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'task' ? $subtotal_name : '').'</td>';
1201               if ($bean->getAttribute('chcf_1')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'cf_1' ? $subtotal_name : '').'</td>';
1202               if ($bean->getAttribute('chstart')) $body .= '<td></td>';
1203               if ($bean->getAttribute('chfinish')) $body .= '<td></td>';
1204               if ($bean->getAttribute('chduration')) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$subtotals[$prev_grouped_by]['time'].'</td>';
1205               if ($bean->getAttribute('chnote')) $body .= '<td></td>';
1206               if ($bean->getAttribute('chcost')) {
1207                 $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1208                 $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotals[$prev_grouped_by]['cost'] : $subtotals[$prev_grouped_by]['expenses'];
1209                 $body .= '</td>';
1210               }
1211               if ($bean->getAttribute('chinvoice')) $body .= '<td></td>';
1212               $body .= '</tr>';
1213               $body .= '<tr><td>&nbsp;</td></tr>';
1214             }
1215             $first_pass = false;
1216           }
1217           
1218           // Print a regular row.
1219           if ($cur_date != $prev_date)
1220             $row_style = ($row_style == $rowItem) ? $rowItemAlt : $rowItem;
1221           $body .= '<tr style="'.$row_style.'">';
1222           $body .= '<td style="'.$cellLeftAligned.'">'.$record['date'].'</td>';
1223           if ($user->canManageTeam() || $user->isClient())
1224             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['user']).'</td>';
1225           if ($bean->getAttribute('chclient'))
1226             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['client']).'</td>';
1227           if ($bean->getAttribute('chproject'))
1228             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['project']).'</td>';
1229           if ($bean->getAttribute('chtask'))
1230             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['task']).'</td>';
1231           if ($bean->getAttribute('chcf_1'))
1232             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['cf_1']).'</td>';
1233           if ($bean->getAttribute('chstart'))
1234             $body .= '<td nowrap style="'.$cellRightAligned.'">'.$record['start'].'</td>';
1235           if ($bean->getAttribute('chfinish'))
1236             $body .= '<td nowrap style="'.$cellRightAligned.'">'.$record['finish'].'</td>';
1237           if ($bean->getAttribute('chduration'))
1238             $body .= '<td style="'.$cellRightAligned.'">'.$record['duration'].'</td>';
1239           if ($bean->getAttribute('chnote'))
1240             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['note']).'</td>';
1241           if ($bean->getAttribute('chcost'))
1242             $body .= '<td style="'.$cellRightAligned.'">'.$record['cost'].'</td>';
1243           if ($bean->getAttribute('chinvoice'))
1244             $body .= '<td style="'.$cellRightAligned.'">'.htmlspecialchars($record['invoice']).'</td>';
1245           $body .= '</tr>';
1246           
1247           $prev_date = $record['date'];
1248           if ($print_subtotals)
1249             $prev_grouped_by = $record['grouped_by'];
1250         }
1251       }
1252       
1253       // Print a terminating subtotal.
1254       if ($print_subtotals) {
1255         $body .= '<tr style="'.$rowSubtotal.'">';
1256         $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.subtotal').'</td>';
1257         $subtotal_name = htmlspecialchars($subtotals[$cur_grouped_by]['name']);
1258         if ($user->canManageTeam() || $user->isClient()) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'user' ? $subtotal_name : '').'</td>';
1259         if ($bean->getAttribute('chclient')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'client' ? $subtotal_name : '').'</td>';
1260         if ($bean->getAttribute('chproject')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'project' ? $subtotal_name : '').'</td>';
1261         if ($bean->getAttribute('chtask')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'task' ? $subtotal_name : '').'</td>';
1262         if ($bean->getAttribute('chcf_1')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'cf_1' ? $subtotal_name : '').'</td>';
1263         if ($bean->getAttribute('chstart')) $body .= '<td></td>';
1264         if ($bean->getAttribute('chfinish')) $body .= '<td></td>';
1265         if ($bean->getAttribute('chduration')) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$subtotals[$cur_grouped_by]['time'].'</td>';
1266         if ($bean->getAttribute('chnote')) $body .= '<td></td>';
1267         if ($bean->getAttribute('chcost')) {
1268           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1269           $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotals[$cur_grouped_by]['cost'] : $subtotals[$cur_grouped_by]['expenses'];
1270           $body .= '</td>';
1271         }
1272         if ($bean->getAttribute('chinvoice')) $body .= '<td></td>';
1273         $body .= '</tr>';
1274       }
1275       
1276       // Print totals.
1277       $body .= '<tr><td>&nbsp;</td></tr>';
1278       $body .= '<tr style="'.$rowSubtotal.'">';
1279       $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.total').'</td>';
1280       if ($user->canManageTeam() || $user->isClient()) $body .= '<td></td>';
1281       if ($bean->getAttribute('chclient')) $body .= '<td></td>';
1282       if ($bean->getAttribute('chproject')) $body .= '<td></td>';
1283       if ($bean->getAttribute('chtask')) $body .= '<td></td>';
1284       if ($bean->getAttribute('chcf_1')) $body .= '<td></td>';
1285       if ($bean->getAttribute('chstart')) $body .= '<td></td>';
1286       if ($bean->getAttribute('chfinish')) $body .= '<td></td>';
1287       if ($bean->getAttribute('chduration')) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$totals['time'].'</td>';
1288       if ($bean->getAttribute('chnote')) $body .= '<td></td>';
1289       if ($bean->getAttribute('chcost')) {
1290         $body .= '<td nowrap style="'.$cellRightAlignedSubtotal.'">'.htmlspecialchars($user->currency).' ';
1291         $body .= ($user->canManageTeam() || $user->isClient()) ? $totals['cost'] : $totals['expenses'];
1292         $body .= '</td>';
1293       }
1294       if ($bean->getAttribute('chinvoice')) $body .= '<td></td>';
1295       $body .= '</tr>';
1296       
1297       $body .= '</table>';
1298     }
1299     
1300     // Output footer.
1301     if (!defined('REPORT_FOOTER') || !(REPORT_FOOTER == false))
1302       $body .= '<p style="text-align: center;">'.$i18n->getKey('form.mail.footer').'</p>';
1303
1304     // Finish creating email body.
1305     $body .= '</body></html>';
1306
1307     return $body;
1308   }
1309   
1310 // prepareFavReportBody - prepares an email body for a favorite report.
1311   static function prepareFavReportBody($report)
1312   {
1313         global $user;
1314         global $i18n;
1315         
1316         $items = ttReportHelper::getFavItems($report);
1317     $group_by = $report['group_by'];
1318         if ($group_by && 'no_grouping' != $group_by)
1319         $subtotals = ttReportHelper::getFavSubtotals($report);    
1320     $totals = ttReportHelper::getFavTotals($report);            
1321         
1322     // Use custom fields plugin if it is enabled.
1323     if (in_array('cf', explode(',', $user->plugins)))
1324       $custom_fields = new CustomFields($user->team_id);
1325
1326     // Define some styles to use in email.
1327     $style_title = 'text-align: center; font-size: 15pt; font-family: Arial, Helvetica, sans-serif;';
1328     $tableHeader = 'font-weight: bold; background-color: #a6ccf7; text-align: left;';
1329     $tableHeaderCentered = 'font-weight: bold; background-color: #a6ccf7; text-align: center;';
1330     $rowItem = 'background-color: #ccccce;';
1331     $rowItemAlt = 'background-color: #f5f5f5;';
1332     $rowSubtotal = 'background-color: #e0e0e0;';
1333     $cellLeftAligned = 'text-align: left; vertical-align: top;';
1334     $cellRightAligned = 'text-align: right; vertical-align: top;';
1335     $cellLeftAlignedSubtotal = 'font-weight: bold; text-align: left; vertical-align: top;';
1336     $cellRightAlignedSubtotal = 'font-weight: bold; text-align: right; vertical-align: top;';
1337     
1338     // Start creating email body.
1339     $body = '<html>';
1340     $body .= '<head><meta http-equiv="content-type" content="text/html; charset='.CHARSET.'"></head>';
1341     $body .= '<body>';
1342     
1343     // Output title.
1344     $body .= '<p style="'.$style_title.'">'.$i18n->getKey('form.mail.report_subject').': '.$totals['start_date'].' - '.$totals['end_date'].'</p>';
1345
1346     // Output comment.
1347     // if ($comment) $body .= '<p>'.htmlspecialchars($comment).'</p>'; // No comment for fav. reports.
1348
1349     if ($report['show_totals_only']) {
1350       // Totals only report. Output subtotals.
1351       
1352       // Determine group_by header.
1353       if ('cf_1' == $group_by)
1354         $group_by_header = htmlspecialchars($custom_fields->fields[0]['label']);
1355       else {
1356         $key = 'label.'.$group_by;
1357         $group_by_header = $i18n->getKey($key);
1358       }
1359         
1360       $body .= '<table border="0" cellpadding="4" cellspacing="0" width="100%">';
1361       $body .= '<tr>';
1362       $body .= '<td style="'.$tableHeader.'">'.$group_by_header.'</td>';
1363       if ($report['show_duration'])
1364         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.duration').'</td>';
1365       if ($report['show_cost'])
1366         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.cost').'</td>';
1367       $body .= '</tr>';
1368       foreach($subtotals as $subtotal) {
1369         $body .= '<tr style="'.$rowSubtotal.'">';
1370         $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($subtotal['name'] ? htmlspecialchars($subtotal['name']) : '&nbsp;').'</td>';
1371         if ($report['show_duration']) {
1372           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1373           if ($subtotal['time'] <> '0:00') $body .= $subtotal['time'];
1374           $body .= '</td>';
1375         }
1376         if ($report['show_cost']) {
1377           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1378           $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotal['cost'] : $subtotal['expenses'];
1379           $body .= '</td>';
1380         }
1381         $body .= '</tr>';
1382       }
1383       
1384       // Print totals.
1385       $body .= '<tr><td>&nbsp;</td></tr>';
1386       $body .= '<tr style="'.$rowSubtotal.'">';
1387       $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.total').'</td>';
1388       if ($report['show_duration']) {
1389         $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1390         if ($totals['time'] <> '0:00') $body .= $totals['time'];
1391         $body .= '</td>';
1392       }
1393       if ($report['show_cost']) {
1394         $body .= '<td nowrap style="'.$cellRightAlignedSubtotal.'">'.htmlspecialchars($user->currency).' ';
1395         $body .= ($user->canManageTeam() || $user->isClient()) ? $totals['cost'] : $totals['expenses'];
1396         $body .= '</td>';
1397       }
1398       $body .= '</tr>';
1399        
1400       $body .= '</table>';
1401     } else {
1402       // Regular report.
1403       
1404       // Print table header.
1405       $body .= '<table border="0" cellpadding="4" cellspacing="0" width="100%">';
1406       $body .= '<tr>';
1407       $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.date').'</td>';
1408       if ($user->canManageTeam() || $user->isClient())
1409         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.user').'</td>';
1410       if ($report['show_client'])
1411         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.client').'</td>';
1412       if ($report['show_project'])
1413         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.project').'</td>';
1414       if ($report['show_task'])
1415         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.task').'</td>';
1416       if ($report['show_custom_field_1'])
1417         $body .= '<td style="'.$tableHeader.'">'.htmlspecialchars($custom_fields->fields[0]['label']).'</td>';
1418       if ($report['show_start'])
1419         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.start').'</td>';
1420       if ($report['show_end'])
1421         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.finish').'</td>';
1422       if ($report['show_duration'])
1423         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.duration').'</td>';
1424       if ($report['show_note'])
1425         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.note').'</td>';
1426       if ($report['show_cost'])
1427         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.cost').'</td>';
1428       if ($report['show_invoice'])
1429         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.invoice').'</td>';
1430       $body .= '</tr>';
1431       
1432       // Initialize variables to print subtotals.
1433       if ($items && 'no_grouping' != $group_by) {
1434         $print_subtotals = true;
1435         $first_pass = true;
1436         $prev_grouped_by = '';
1437         $cur_grouped_by = '';
1438       }
1439       // Initialize variables to alternate color of rows for different dates.
1440       $prev_date = '';
1441       $cur_date = '';
1442       $row_style = $rowItem;
1443       
1444       // Print report items.
1445       if (is_array($items)) {
1446         foreach ($items as $record) {
1447           $cur_date = $record['date'];
1448           // Print a subtotal row after a block of grouped items.
1449           if ($print_subtotals) {
1450             $cur_grouped_by = $record['grouped_by'];
1451             if ($cur_grouped_by != $prev_grouped_by && !$first_pass) {
1452               $body .= '<tr style="'.$rowSubtotal.'">';
1453               $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.subtotal').'</td>';
1454               $subtotal_name = htmlspecialchars($subtotals[$prev_grouped_by]['name']);
1455               if ($user->canManageTeam() || $user->isClient()) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'user' ? $subtotal_name : '').'</td>';
1456               if ($report['show_client']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'client' ? $subtotal_name : '').'</td>';
1457               if ($report['show_project']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'project' ? $subtotal_name : '').'</td>';
1458               if ($report['show_task']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'task' ? $subtotal_name : '').'</td>';
1459               if ($report['show_custom_field_1']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'cf_1' ? $subtotal_name : '').'</td>';
1460               if ($report['show_start']) $body .= '<td></td>';
1461               if ($report['show_end']) $body .= '<td></td>';
1462               if ($report['show_duration']) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$subtotals[$prev_grouped_by]['time'].'</td>';
1463               if ($report['show_note']) $body .= '<td></td>';
1464               if ($report['show_cost']) {
1465                 $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1466                 $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotals[$prev_grouped_by]['cost'] : $subtotals[$prev_grouped_by]['expenses'];
1467                 $body .= '</td>';
1468               }
1469               if ($report['show_invoice']) $body .= '<td></td>';
1470               $body .= '</tr>';
1471               $body .= '<tr><td>&nbsp;</td></tr>';      
1472             }
1473             $first_pass = false;
1474           }
1475         
1476           // Print a regular row.
1477           if ($cur_date != $prev_date)
1478             $row_style = ($row_style == $rowItem) ? $rowItemAlt : $rowItem;
1479           $body .= '<tr style="'.$row_style.'">';
1480           $body .= '<td style="'.$cellLeftAligned.'">'.$record['date'].'</td>';
1481           if ($user->canManageTeam() || $user->isClient())
1482             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['user']).'</td>';
1483           if ($report['show_client'])
1484             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['client']).'</td>';
1485           if ($report['show_project'])
1486             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['project']).'</td>';
1487           if ($report['show_task'])
1488             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['task']).'</td>';
1489           if ($report['show_custom_field_1'])
1490             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['cf_1']).'</td>';
1491           if ($report['show_start'])
1492             $body .= '<td nowrap style="'.$cellRightAligned.'">'.$record['start'].'</td>';
1493           if ($report['show_end'])
1494             $body .= '<td nowrap style="'.$cellRightAligned.'">'.$record['finish'].'</td>';
1495           if ($report['show_duration'])
1496             $body .= '<td style="'.$cellRightAligned.'">'.$record['duration'].'</td>';
1497           if ($report['show_note'])
1498             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['note']).'</td>';
1499           if ($report['show_cost'])
1500             $body .= '<td style="'.$cellRightAligned.'">'.$record['cost'].'</td>';
1501           if ($report['show_invoice'])
1502             $body .= '<td style="'.$cellRightAligned.'">'.htmlspecialchars($record['invoice']).'</td>';
1503           $body .= '</tr>';
1504             
1505           $prev_date = $record['date'];
1506           if ($print_subtotals)
1507             $prev_grouped_by = $record['grouped_by'];
1508         }
1509       }
1510       
1511       // Print a terminating subtotal.
1512       if ($print_subtotals) {
1513         $body .= '<tr style="'.$rowSubtotal.'">';
1514         $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.subtotal').'</td>';
1515         $subtotal_name = htmlspecialchars($subtotals[$cur_grouped_by]['name']);
1516         if ($user->canManageTeam() || $user->isClient()) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'user' ? $subtotal_name : '').'</td>';
1517         if ($report['show_client']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'client' ? $subtotal_name : '').'</td>';
1518         if ($report['show_project']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'project' ? $subtotal_name : '').'</td>';
1519         if ($report['show_task']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'task' ? $subtotal_name : '').'</td>';
1520         if ($report['show_custom_field_1']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'cf_1' ? $subtotal_name : '').'</td>';
1521         if ($report['show_start']) $body .= '<td></td>';
1522         if ($report['show_end']) $body .= '<td></td>';
1523         if ($report['show_duration']) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$subtotals[$cur_grouped_by]['time'].'</td>';
1524         if ($report['show_note']) $body .= '<td></td>';
1525         if ($report['show_cost']) {
1526           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
1527           $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotals[$cur_grouped_by]['cost'] : $subtotals[$cur_grouped_by]['expenses'];
1528           $body .= '</td>';
1529         }
1530         if ($report['show_invoice']) $body .= '<td></td>';
1531         $body .= '</tr>';
1532       }
1533       
1534       // Print totals.
1535       $body .= '<tr><td>&nbsp;</td></tr>';
1536       $body .= '<tr style="'.$rowSubtotal.'">';
1537       $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.total').'</td>';
1538       if ($user->canManageTeam() || $user->isClient()) $body .= '<td></td>';
1539       if ($report['show_client']) $body .= '<td></td>';
1540       if ($report['show_project']) $body .= '<td></td>';
1541       if ($report['show_task']) $body .= '<td></td>';
1542       if ($report['show_custom_field_1']) $body .= '<td></td>';
1543       if ($report['show_start']) $body .= '<td></td>';
1544       if ($report['show_end']) $body .= '<td></td>';
1545       if ($report['show_duration']) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$totals['time'].'</td>';
1546       if ($report['show_note']) $body .= '<td></td>';
1547       if ($report['show_cost']) {
1548         $body .= '<td nowrap style="'.$cellRightAlignedSubtotal.'">'.htmlspecialchars($user->currency).' ';
1549         $body .= ($user->canManageTeam() || $user->isClient()) ? $totals['cost'] : $totals['expenses'];
1550         $body .= '</td>';
1551       }
1552       if ($report['show_invoice']) $body .= '<td></td>';
1553       $body .= '</tr>';
1554       
1555       $body .= '</table>';
1556     }
1557     
1558     // Output footer.
1559     if (!defined('REPORT_FOOTER') || !(REPORT_FOOTER == false))
1560       $body .= '<p style="text-align: center;">'.$i18n->getKey('form.mail.footer').'</p>';
1561
1562     // Finish creating email body.
1563     $body .= '</body></html>';
1564
1565     return $body;
1566   }
1567   
1568   // sendFavReport - sends a favorite report to a specified email, called from cron.php
1569   static function sendFavReport($report, $email) {
1570     // We are called from cron.php, we have no $bean in session.
1571     // cron.php set global $user and $i18n objects to match our favorite report user.
1572     global $user;
1573     global $i18n;
1574     
1575     // Prepare report body.
1576     $body = ttReportHelper::prepareFavReportBody($report);
1577                         
1578     import('mail.Mailer');
1579     $mailer = new Mailer();
1580     $mailer->setCharSet(CHARSET);
1581     $mailer->setContentType('text/html');
1582     $mailer->setSender(SENDER);
1583     $mailer->setReceiver($email);
1584     $mailer->setSendType(MAIL_MODE);
1585     if (!$mailer->send($report['name'], $body))
1586       return false;
1587       
1588     return true;
1589   }
1590 }