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.
 
  11 // | There are only two ways to violate the license:
 
  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).
 
  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).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  29 import('ttClientHelper');
 
  30 import('DateAndTime');
 
  32 import('ttTimeHelper');
 
  34 require_once(dirname(__FILE__).'/../../plugins/CustomFields.class.php');
 
  36 // Class ttReportHelper is used for help with reports.
 
  37 class ttReportHelper {
 
  39   // getWhere prepares a WHERE clause for a report query.
 
  40   static function getWhere($bean) {
 
  43         // Prepare dropdown parts.
 
  45     if ($bean->getAttribute('client'))
 
  46       $dropdown_parts .= ' and l.client_id = '.$bean->getAttribute('client');
 
  47     else if ($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';
 
  57     // Prepare user list part.
 
  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)";
 
  66       $user_list_part = " and l.user_id = ".$user->id;
 
  68     // Prepare sql query part for where.
 
  69     if ($bean->getAttribute('period'))
 
  70       $period = new Period($bean->getAttribute('period'), new DateAndTime($user->date_format));
 
  72       $period = new Period();
 
  74         new DateAndTime($user->date_format, $bean->getAttribute('start_date')),
 
  75         new DateAndTime($user->date_format, $bean->getAttribute('end_date')));
 
  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";
 
  82   // getFavWhere prepares a WHERE clause for a favorite report query.
 
  83   static function getFavWhere($report) {
 
  86         // Prepare dropdown parts.
 
  88     if ($report['client_id'])
 
  89       $dropdown_parts .= ' and l.client_id = '.$report['client_id'];
 
  90     else if ($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';
 
 100     // Prepare user list part.
 
 102     if (($user->canManageTeam() || $user->isClient())) {
 
 103       if ($report['users'])
 
 104         $userlist = $report['users'];
 
 106         $active_users = ttTeamHelper::getActiveUsers();
 
 107         foreach ($active_users as $single_user)
 
 108           $users[] = $single_user['id'];
 
 109         $userlist = join(',', $users);
 
 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)";
 
 117       $user_list_part = " and l.user_id = ".$user->id;
 
 119     // Prepare sql query part for where.
 
 120     if ($report['period'])
 
 121       $period = new Period($report['period'], new DateAndTime($user->date_format));
 
 123       $period = new Period();
 
 125         new DateAndTime($user->date_format, $report['period_start']),
 
 126         new DateAndTime($user->date_format, $report['period_end']));
 
 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";
 
 133   // getExpenseWhere prepares WHERE clause for expenses query in a report.
 
 134   static function getExpenseWhere($bean) {
 
 137         // Prepare dropdown parts.
 
 138     $dropdown_parts = '';
 
 139     if ($bean->getAttribute('client'))
 
 140       $dropdown_parts .= ' and ei.client_id = '.$bean->getAttribute('client');
 
 141     else if ($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';
 
 147     // Prepare user list part.
 
 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)";
 
 156       $user_list_part = " and ei.user_id = ".$user->id;
 
 158     // Prepare sql query part for where.
 
 159     if ($bean->getAttribute('period'))
 
 160       $period = new Period($bean->getAttribute('period'), new DateAndTime($user->date_format));
 
 162       $period = new Period();
 
 164         new DateAndTime($user->date_format, $bean->getAttribute('start_date')),
 
 165         new DateAndTime($user->date_format, $bean->getAttribute('end_date')));
 
 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";
 
 172   // getFavExpenseWhere prepares a WHERE clause for expenses query in a favorite report.
 
 173   static function getFavExpenseWhere($report) {
 
 176         // Prepare dropdown parts.
 
 177     $dropdown_parts = '';
 
 178     if ($report['client_id'])
 
 179       $dropdown_parts .= ' and ei.client_id = '.$report['client_id'];
 
 180     else if ($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';
 
 186     // Prepare user list part.
 
 188     if (($user->canManageTeam() || $user->isClient())) {
 
 189       if ($report['users'])
 
 190         $userlist = $report['users'];
 
 192         $active_users = ttTeamHelper::getActiveUsers();
 
 193         foreach ($active_users as $single_user)
 
 194           $users[] = $single_user['id'];
 
 195         $userlist = join(',', $users);
 
 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)";
 
 203       $user_list_part = " and ei.user_id = ".$user->id;
 
 205     // Prepare sql query part for where.
 
 206     if ($report['period'])
 
 207       $period = new Period($report['period'], new DateAndTime($user->date_format));
 
 209       $period = new Period();
 
 211         new DateAndTime($user->date_format, $report['period_start']),
 
 212         new DateAndTime($user->date_format, $report['period_end']));
 
 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";
 
 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) {
 
 224     $mdb2 = getConnection();
 
 226     $group_by_option = $bean->getAttribute('group_by');
 
 227     $convertTo12Hour = ('%I:%M %p' == $user->time_format) && ($bean->getAttribute('chstart') || $bean->getAttribute('chfinish'));
 
 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');
 
 246     $include_cf_1 = $bean->getAttribute('chcf_1') || 'cf_1' == $group_by_option;
 
 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       } else if ($cf_1_type == CustomFields::TYPE_DROPDOWN) {
 
 253             array_push($fields, 'cfo.value as cf_1');   
 
 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");
 
 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");
 
 265     if ($bean->getAttribute('chduration'))
 
 266       array_push($fields, "TIME_FORMAT(l.duration, '%k:%i') as duration");
 
 268     if ($bean->getAttribute('chnote'))
 
 269       array_push($fields, 'l.comment as note');
 
 271     $includeCost = $bean->getAttribute('chcost');
 
 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.
 
 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"); 
 
 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');
 
 283     // Prepare sql query part for left joins.
 
 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)";             
 
 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       else if ($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)";
 
 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)";
 
 306     $where = ttReportHelper::getWhere($bean);
 
 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.
 
 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
 
 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.
 
 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');
 
 349       // Prepare sql query part for left joins.
 
 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)";
 
 360       $where = ttReportHelper::getExpenseWhere($bean);
 
 362       // Construct sql query for expense items.
 
 363       $sql_for_expense_items = "select ".join(', ', $fields)." from tt_expense_items ei $left_joins $where";
 
 365       // Construct a union.
 
 366       $sql = "($sql) union all ($sql_for_expense_items)";
 
 369     // Determine sort part.
 
 370     $sort_part = ' order by ';
 
 371     if ('no_grouping' == $group_by_option || 'date' == $group_by_option)
 
 372       $sort_part .= 'date';
 
 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';
 
 382     // By now we are ready with sql.
 
 384     // Obtain items for report.
 
 385     $res = $mdb2->query($sql);
 
 386     if (!is_a($res, 'PEAR_Error')) {
 
 387       while ($val = $res->fetchRow()) {
 
 388           if ($convertTo12Hour) {
 
 389             if($val['start'] != '')
 
 390               $val['start'] = ttTimeHelper::to12HourFormat($val['start']);
 
 391             if($val['finish'] != '')
 
 392               $val['finish'] = ttTimeHelper::to12HourFormat($val['finish']);
 
 394               if (isset($val['cost'])) {
 
 395             if ('.' != $user->decimal_mark)
 
 396                   $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']);
 
 398           if (isset($val['expense'])) {
 
 399             if ('.' != $user->decimal_mark)
 
 400                   $val['expense'] = str_replace('.', $user->decimal_mark, $val['expense']);
 
 402               if ('no_grouping' != $group_by_option) {
 
 403             $val['grouped_by'] = $val[$group_by_option];
 
 404             if ('date' == $group_by_option) {
 
 405               // This is needed to get the date in user date format.
 
 406               $o_date = new DateAndTime(DB_DATEFORMAT, $val['grouped_by']);
 
 407               $val['grouped_by'] = $o_date->toString($user->date_format);
 
 412           // This is needed to get the date in user date format.
 
 413           $o_date = new DateAndTime(DB_DATEFORMAT, $val['date']);
 
 414           $val['date'] = $o_date->toString($user->date_format);
 
 418           $report_items[] = $row;
 
 421             die($res->getMessage());
 
 423     return $report_items;
 
 426   // getFavItems retrieves all items associated with a favorite report.
 
 427   // It combines tt_log and tt_expense_items in one array for presentation in one table using mysql union all.
 
 428   // Expense items use the "note" field for item name.
 
 429   static function getFavItems($report) {
 
 431     $mdb2 = getConnection();
 
 433     $group_by_option = $report['group_by'];
 
 434     $convertTo12Hour = ('%I:%M %p' == $user->time_format) && ($report['show_start'] || $report['show_end']);
 
 436     // Prepare a query for time items in tt_log table.
 
 437     $fields = array(); // An array of fields for database query.
 
 438     array_push($fields, 'l.id as id');
 
 439     array_push($fields, '1 as type'); // Type 1 is for tt_log entries.
 
 440     array_push($fields, 'l.date as date');
 
 441     if($user->canManageTeam() || $user->isClient())
 
 442       array_push($fields, 'u.name as user');
 
 443     // Add client name if it is selected.
 
 444     if ($report['show_client'] || 'client' == $group_by_option)
 
 445       array_push($fields, 'c.name as client');
 
 446     // Add project name if it is selected.
 
 447     if ($report['show_project'] || 'project' == $group_by_option)
 
 448       array_push($fields, 'p.name as project');
 
 449     // Add task name if it is selected.
 
 450     if ($report['show_task'] || 'task' == $group_by_option)
 
 451       array_push($fields, 't.name as task');
 
 453     $include_cf_1 = $report['show_custom_field_1'] || 'cf_1' == $group_by_option;
 
 455       $custom_fields = new CustomFields($user->team_id);
 
 456       $cf_1_type = $custom_fields->fields[0]['type'];
 
 457       if ($cf_1_type == CustomFields::TYPE_TEXT) {
 
 458         array_push($fields, 'cfl.value as cf_1');       
 
 459       } else if ($cf_1_type == CustomFields::TYPE_DROPDOWN) {
 
 460             array_push($fields, 'cfo.value as cf_1');   
 
 464     if ($report['show_start']) {
 
 465       array_push($fields, "l.start as unformatted_start");
 
 466       array_push($fields, "TIME_FORMAT(l.start, '%k:%i') as start");
 
 469     if ($report['show_end'])
 
 470       array_push($fields, "TIME_FORMAT(sec_to_time(time_to_sec(l.start) + time_to_sec(l.duration)), '%k:%i') as finish");
 
 472     if ($report['show_duration'])
 
 473       array_push($fields, "TIME_FORMAT(l.duration, '%k:%i') as duration");
 
 475     if ($report['show_note'])
 
 476       array_push($fields, 'l.comment as note');
 
 478     $includeCost = $report['show_cost'];
 
 480       if (MODE_TIME == $user->tracking_mode)
 
 481         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.
 
 483         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.
 
 484       array_push($fields, "null as expense"); 
 
 486     // Add invoice name if it is selected.
 
 487     if (($user->canManageTeam() || $user->isClient()) && $report['show_invoice'])
 
 488       array_push($fields, 'i.name as invoice');
 
 490     // Prepare sql query part for left joins.
 
 492     if ($report['show_client'] || 'client' == $group_by_option)
 
 493       $left_joins .= " left join tt_clients c on (c.id = l.client_id)";
 
 494     if (($user->canManageTeam() || $user->isClient()) && $report['show_invoice'])
 
 495       $left_joins .= " left join tt_invoices i on (i.id = l.invoice_id and i.status = 1)";
 
 496     if ($user->canManageTeam() || $user->isClient() || in_array('ex', explode(',', $user->plugins)))
 
 497        $left_joins .= " left join tt_users u on (u.id = l.user_id)";
 
 498     if ($report['show_project'] || 'project' == $group_by_option)
 
 499       $left_joins .= " left join tt_projects p on (p.id = l.project_id)";       
 
 500     if ($report['show_task'] || 'task' == $group_by_option)
 
 501       $left_joins .= " left join tt_tasks t on (t.id = l.task_id)";             
 
 503       if ($cf_1_type == CustomFields::TYPE_TEXT)
 
 504         $left_joins .= " left join tt_custom_field_log cfl on (l.id = cfl.log_id and cfl.status = 1)";
 
 505       else if ($cf_1_type == CustomFields::TYPE_DROPDOWN) {
 
 506         $left_joins .=  " left join tt_custom_field_log cfl on (l.id = cfl.log_id and cfl.status = 1)".
 
 507           " left join tt_custom_field_options cfo on (cfl.option_id = cfo.id)";
 
 510     if ($includeCost && MODE_TIME != $user->tracking_mode)
 
 511       $left_joins .= " left join tt_user_project_binds upb on (l.user_id = upb.user_id and l.project_id = upb.project_id)";
 
 513     $where = ttReportHelper::getFavWhere($report);
 
 515     // Construct sql query for tt_log items.    
 
 516     $sql = "select ".join(', ', $fields)." from tt_log l $left_joins $where";
 
 517     // If we don't have expense items (such as when the Expenses plugin is desabled), the above is all sql we need,
 
 518     // with an exception of sorting part, that is added in the end.
 
 520     // However, when we have expenses, we need to do a union with a separate query for expense items from tt_expense_items table.
 
 521     if ($report['show_cost'] && in_array('ex', explode(',', $user->plugins))) { // if ex(penses) plugin is enabled
 
 523       $fields = array(); // An array of fields for database query.
 
 524       array_push($fields, 'ei.id');
 
 525       array_push($fields, '2 as type'); // Type 2 is for tt_expense_items entries.
 
 526       array_push($fields, 'ei.date');
 
 527       if($user->canManageTeam() || $user->isClient())
 
 528         array_push($fields, 'u.name as user');
 
 529       // Add client name if it is selected.
 
 530       if ($report['show_client'] || 'client' == $group_by_option)
 
 531         array_push($fields, 'c.name as client');
 
 532       // Add project name if it is selected.
 
 533       if ($report['show_project'] || 'project' == $group_by_option)
 
 534         array_push($fields, 'p.name as project');
 
 535       if ($report['show_task'] || 'task' == $group_by_option)
 
 536         array_push($fields, 'null'); // null for task name. We need to match column count for union.
 
 537       if ($report['show_custom_field_1'] || 'cf_1' == $group_by_option)
 
 538         array_push($fields, 'null'); // null for cf_1.
 
 539       if ($report['show_start']) {
 
 540         array_push($fields, 'null'); // null for unformatted_start.
 
 541         array_push($fields, 'null'); // null for start.
 
 543       if ($report['show_end'])
 
 544         array_push($fields, 'null'); // null for finish.
 
 545       if ($report['show_duration'])
 
 546         array_push($fields, 'null'); // null for duration.
 
 547       // Use the note field to print item name.
 
 548       if ($report['show_note'])
 
 549         array_push($fields, 'ei.name as note');
 
 550       array_push($fields, 'ei.cost as cost');
 
 551       array_push($fields, 'ei.cost as expense');
 
 552       // Add invoice name if it is selected.
 
 553       if (($user->canManageTeam() || $user->isClient()) && $report['show_invoice'])
 
 554         array_push($fields, 'i.name as invoice');
 
 556       // Prepare sql query part for left joins.
 
 558       if ($user->canManageTeam() || $user->isClient())
 
 559         $left_joins .= " left join tt_users u on (u.id = ei.user_id)";
 
 560       if ($report['show_client'] || 'client' == $group_by_option)
 
 561         $left_joins .= " left join tt_clients c on (c.id = ei.client_id)";
 
 562       if ($report['show_project'] || 'project' == $group_by_option)
 
 563         $left_joins .= " left join tt_projects p on (p.id = ei.project_id)";          
 
 564       if (($user->canManageTeam() || $user->isClient()) && $report['show_invoice'])
 
 565         $left_joins .= " left join tt_invoices i on (i.id = ei.invoice_id and i.status = 1)";
 
 567       $where = ttReportHelper::getFavExpenseWhere($report);
 
 569       // Construct sql query for expense items.
 
 570       $sql_for_expense_items = "select ".join(', ', $fields)." from tt_expense_items ei $left_joins $where";
 
 572       // Construct a union.
 
 573       $sql = "($sql) union all ($sql_for_expense_items)";
 
 576     // Determine sort part.
 
 577     $sort_part = ' order by ';
 
 578     if ($group_by_option == null || 'no_grouping' == $group_by_option || 'date' == $group_by_option) // TODO: fix DB for NULL values in group_by field.
 
 579       $sort_part .= 'date';
 
 581       $sort_part .= $group_by_option.', date';
 
 582     if (($user->canManageTeam() || $user->isClient()) /*&& is_array($bean->getAttribute('users'))*/ && 'user' != $group_by_option)
 
 583       $sort_part .= ', user, type';
 
 584     if ($report['show_start'])
 
 585       $sort_part .= ', unformatted_start';
 
 586     $sort_part .= ', id';
 
 589     // By now we are ready with sql.
 
 591     // Obtain items for report.
 
 592     $res = $mdb2->query($sql);
 
 593     if (!is_a($res, 'PEAR_Error')) {
 
 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']);
 
 601               if (isset($val['cost'])) {
 
 602             if ('.' != $user->decimal_mark)
 
 603                   $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']);
 
 605           if (isset($val['expense'])) {
 
 606             if ('.' != $user->decimal_mark)
 
 607                   $val['expense'] = str_replace('.', $user->decimal_mark, $val['expense']);
 
 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);
 
 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);
 
 625           $report_items[] = $row;
 
 628             die($res->getMessage());
 
 630     return $report_items;
 
 633   // getSubtotals calculates report items subtotals when a report is grouped by.
 
 634   // Without expenses, it's a simple select with group by.
 
 635   // With expenses, it becomes a select with group by from a combined set of records obtained with "union all".
 
 636   static function getSubtotals($bean) {
 
 639     $group_by_option = $bean->getAttribute('group_by');
 
 640     if ('no_grouping' == $group_by_option) return null;
 
 642     $mdb2 = getConnection();
 
 644     // Start with sql to obtain subtotals for time items. This simple sql will be used when we have no expenses.
 
 646     // Determine group by field and a required join.
 
 647     switch ($group_by_option) {
 
 649         $group_field = 'l.date';
 
 653         $group_field = 'u.name';
 
 654         $group_join = 'left join tt_users u on (l.user_id = u.id) ';
 
 657         $group_field = 'c.name';
 
 658         $group_join = 'left join tt_clients c on (l.client_id = c.id) ';
 
 661             $group_field = 'p.name';
 
 662         $group_join = 'left join tt_projects p on (l.project_id = p.id) ';
 
 665             $group_field = 't.name';
 
 666         $group_join = 'left join tt_tasks t on (l.task_id = t.id) ';
 
 669             $group_field = 'cfo.value';
 
 670             $custom_fields = new CustomFields($user->team_id);
 
 671             if ($custom_fields->fields[0]['type'] == CustomFields::TYPE_TEXT)
 
 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.value = cfo.id) ';
 
 673         else if ($custom_fields->fields[0]['type'] == CustomFields::TYPE_DROPDOWN)
 
 674           $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) ';
 
 678     $where = ttReportHelper::getWhere($bean);
 
 679     if ($bean->getAttribute('chcost')) {
 
 680       if (MODE_TIME == $user->tracking_mode) {
 
 681         if ($group_by_option != 'user')
 
 682           $left_join = 'left join tt_users u on (l.user_id = u.id)';
 
 683         $sql = "select $group_field as group_field, sum(time_to_sec(l.duration)) as time, 
 
 684           sum(cast(l.billable * coalesce(u.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10, 2))) as cost,
 
 685           null as expenses from tt_log l
 
 686           $group_join $left_join $where group by $group_field";         
 
 688         // If we are including cost and tracking projects, our query (the same as above) needs to join the tt_user_project_binds table.
 
 689         $sql = "select $group_field as group_field, sum(time_to_sec(l.duration)) as time, 
 
 690           sum(cast(l.billable * coalesce(upb.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
 
 691           null as expenses from tt_log l 
 
 693           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";
 
 696            $sql = "select $group_field as group_field, sum(time_to_sec(l.duration)) as time, null as expenses from tt_log l 
 
 697          $group_join $where group by $group_field";
 
 699     // By now we have sql for time items.
 
 701     // However, when we have expenses, we need to do a union with a separate query for expense items from tt_expense_items table.
 
 702     if ($bean->getAttribute('chcost') && in_array('ex', explode(',', $user->plugins))) { // if ex(penses) plugin is enabled
 
 704       // Determine group by field and a required join.
 
 706       $group_field = 'null';
 
 707       switch ($group_by_option) {
 
 709           $group_field = 'ei.date';
 
 713           $group_field = 'u.name';
 
 714           $group_join = 'left join tt_users u on (ei.user_id = u.id) ';
 
 717           $group_field = 'c.name';
 
 718           $group_join = 'left join tt_clients c on (ei.client_id = c.id) ';
 
 721               $group_field = 'p.name';
 
 722           $group_join = 'left join tt_projects p on (ei.project_id = p.id) ';
 
 726       $where = ttReportHelper::getExpenseWhere($bean);
 
 727       $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 
 
 729       // Add a "group by" clause if we are grouping.
 
 730       if ('null' != $group_field) $sql_for_expenses .= " group by $group_field";
 
 732       // Create a combined query.
 
 733       $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";
 
 737     $res = $mdb2->query($sql);
 
 738     if (!is_a($res, 'PEAR_Error')) {
 
 739           while ($val = $res->fetchRow()) {
 
 740                 if ('date' == $group_by_option) {
 
 741           // This is needed to get the date in user date format.
 
 742           $o_date = new DateAndTime(DB_DATEFORMAT, $val['group_field']);
 
 743           $val['group_field'] = $o_date->toString($user->date_format);
 
 746                 $time = $val['time'] ? sec_to_time_fmt_hm($val['time']) : null;
 
 747         if ($bean->getAttribute('chcost')) {
 
 748               if ('.' != $user->decimal_mark) {
 
 749                 $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']);
 
 750                 $val['expenses'] = str_replace('.', $user->decimal_mark, $val['expenses']);
 
 752           $subtotals[$val['group_field']] = array('name'=>$val['group_field'],'time'=>$time,'cost'=>$val['cost'],'expenses'=>$val['expenses']);
 
 754           $subtotals[$val['group_field']] = array('name'=>$val['group_field'],'time'=>$time);
 
 757       die($res->getMessage());
 
 762   // getFavSubtotals calculates report items subtotals when a favorite report is grouped by.
 
 763   // Without expenses, it's a simple select with group by.
 
 764   // With expenses, it becomes a select with group by from a combined set of records obtained with "union all".
 
 765   static function getFavSubtotals($report) {
 
 768     $group_by_option = $report['group_by'];
 
 769     if ('no_grouping' == $group_by_option) return null;
 
 771     $mdb2 = getConnection();
 
 773     // Start with sql to obtain subtotals for time items. This simple sql will be used when we have no expenses.
 
 775     // Determine group by field and a required join.
 
 776     switch ($group_by_option) {
 
 778         $group_field = 'l.date';
 
 782         $group_field = 'u.name';
 
 783         $group_join = 'left join tt_users u on (l.user_id = u.id) ';
 
 786         $group_field = 'c.name';
 
 787         $group_join = 'left join tt_clients c on (l.client_id = c.id) ';
 
 790             $group_field = 'p.name';
 
 791         $group_join = 'left join tt_projects p on (l.project_id = p.id) ';
 
 794             $group_field = 't.name';
 
 795         $group_join = 'left join tt_tasks t on (l.task_id = t.id) ';
 
 798             $group_field = 'cfo.value';
 
 799             $custom_fields = new CustomFields($user->team_id);
 
 800             if ($custom_fields->fields[0]['type'] == CustomFields::TYPE_TEXT)
 
 801           $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) ';
 
 802         else if ($custom_fields->fields[0]['type'] == CustomFields::TYPE_DROPDOWN)
 
 803           $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) ';
 
 807     $where = ttReportHelper::getFavWhere($report);
 
 808     if ($report['show_cost']) {
 
 809       if (MODE_TIME == $user->tracking_mode) {
 
 810         if ($group_by_option != 'user')
 
 811           $left_join = 'left join tt_users u on (l.user_id = u.id)';
 
 812         $sql = "select $group_field as group_field, sum(time_to_sec(l.duration)) as time, 
 
 813           sum(cast(l.billable * coalesce(u.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10, 2))) as cost,
 
 814           null as expenses from tt_log l
 
 815           $group_join $left_join $where group by $group_field";         
 
 817         // If we are including cost and tracking projects, our query (the same as above) needs to join the tt_user_project_binds table.
 
 818         $sql = "select $group_field as group_field, sum(time_to_sec(l.duration)) as time, 
 
 819           sum(cast(l.billable * coalesce(upb.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
 
 820           null as expenses from tt_log l 
 
 822           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";
 
 825            $sql = "select $group_field as group_field, sum(time_to_sec(l.duration)) as time, null as expenses from tt_log l 
 
 826          $group_join $where group by $group_field";
 
 828     // By now we have sql for time items.
 
 830     // However, when we have expenses, we need to do a union with a separate query for expense items from tt_expense_items table.
 
 831     if ($report['show_cost'] && in_array('ex', explode(',', $user->plugins))) { // if ex(penses) plugin is enabled
 
 833       // Determine group by field and a required join.
 
 835       $group_field = 'null';
 
 836       switch ($group_by_option) {
 
 838           $group_field = 'ei.date';
 
 842           $group_field = 'u.name';
 
 843           $group_join = 'left join tt_users u on (ei.user_id = u.id) ';
 
 846           $group_field = 'c.name';
 
 847           $group_join = 'left join tt_clients c on (ei.client_id = c.id) ';
 
 850               $group_field = 'p.name';
 
 851           $group_join = 'left join tt_projects p on (ei.project_id = p.id) ';
 
 855       $where = ttReportHelper::getFavExpenseWhere($report);
 
 856       $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 
 
 858       // Add a "group by" clause if we are grouping.
 
 859       if ('null' != $group_field) $sql_for_expenses .= " group by $group_field";
 
 861       // Create a combined query.
 
 862       $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";
 
 866     $res = $mdb2->query($sql);
 
 867     if (!is_a($res, 'PEAR_Error')) {
 
 868           while ($val = $res->fetchRow()) {
 
 869                 if ('date' == $group_by_option) {
 
 870           // This is needed to get the date in user date format.
 
 871           $o_date = new DateAndTime(DB_DATEFORMAT, $val['group_field']);
 
 872           $val['group_field'] = $o_date->toString($user->date_format);
 
 875                 $time = $val['time'] ? sec_to_time_fmt_hm($val['time']) : null;
 
 876         if ($report['show_cost']) {
 
 877               if ('.' != $user->decimal_mark) {
 
 878                 $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']);
 
 879                 $val['expenses'] = str_replace('.', $user->decimal_mark, $val['expenses']);
 
 881           $subtotals[$val['group_field']] = array('name'=>$val['group_field'],'time'=>$time,'cost'=>$val['cost'],'expenses'=>$val['expenses']);
 
 883           $subtotals[$val['group_field']] = array('name'=>$val['group_field'],'time'=>$time);
 
 886       die($res->getMessage());
 
 891   // getTotals calculates total hours and cost for all report items.
 
 892   static function getTotals($bean)
 
 896     $mdb2 = getConnection();
 
 898     $where = ttReportHelper::getWhere($bean);
 
 900     // Start with a query for time items.
 
 901     if ($bean->getAttribute('chcost')) {
 
 902       if (MODE_TIME == $user->tracking_mode) {
 
 903         $sql = "select sum(time_to_sec(l.duration)) as time,
 
 904           sum(cast(l.billable * coalesce(u.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
 
 907           left join tt_users u on (l.user_id = u.id) $where";
 
 909         $sql = "select sum(time_to_sec(l.duration)) as time,
 
 910           sum(cast(l.billable * coalesce(upb.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
 
 913           left join tt_user_project_binds upb on (l.user_id = upb.user_id and l.project_id = upb.project_id) $where";   
 
 916       $sql = "select sum(time_to_sec(l.duration)) as time, null as cost, null as expenses from tt_log l $where";
 
 918     // If we have expenses, query becomes a bit more complex.
 
 919     if ($bean->getAttribute('chcost') && in_array('ex', explode(',', $user->plugins))) {
 
 920       $where = ttReportHelper::getExpenseWhere($bean);
 
 921       $sql_for_expenses = "select null as time, sum(cost) as cost, sum(cost) as expenses from tt_expense_items ei $where";
 
 922       // Create a combined query.
 
 923       $sql = "select sum(time) as time, sum(cost) as cost, sum(expenses) as expenses from (($sql) union all ($sql_for_expenses)) t";
 
 927     $res = $mdb2->query($sql);
 
 928     if (!is_a($res, 'PEAR_Error')) {
 
 929       $val = $res->fetchRow();
 
 930       $total_time = $val['time'] ? sec_to_time_fmt_hm($val['time']) : null;
 
 931       if ($bean->getAttribute('chcost')) {
 
 932         $total_cost = $val['cost'];
 
 933         if (!$total_cost) $total_cost = '0.00';
 
 934         if ('.' != $user->decimal_mark)
 
 935               $total_cost = str_replace('.', $user->decimal_mark, $total_cost);
 
 937             $total_expenses = $val['expenses'];
 
 938         if (!$total_expenses) $total_expenses = '0.00';
 
 939         if ('.' != $user->decimal_mark)
 
 940               $total_expenses = str_replace('.', $user->decimal_mark, $total_expenses);
 
 943       die($res->getMessage());
 
 945     if ($bean->getAttribute('period'))
 
 946       $period = new Period($bean->getAttribute('period'), new DateAndTime($user->date_format));
 
 948       $period = new Period();
 
 950         new DateAndTime($user->date_format, $bean->getAttribute('start_date')),
 
 951         new DateAndTime($user->date_format, $bean->getAttribute('end_date')));
 
 954     $totals['start_date'] = $period->getBeginDate();
 
 955         $totals['end_date'] = $period->getEndDate();
 
 956         $totals['time'] = $total_time;
 
 957         $totals['cost'] = $total_cost;
 
 958         $totals['expenses'] = $total_expenses;
 
 963   // getFavTotals calculates total hours and cost for all favorite report items.
 
 964   static function getFavTotals($report)
 
 968     $mdb2 = getConnection();
 
 970     $where = ttReportHelper::getFavWhere($report);
 
 972     // Start with a query for time items.
 
 973     if ($report['show_cost']) {
 
 974       if (MODE_TIME == $user->tracking_mode) {
 
 975         $sql = "select sum(time_to_sec(l.duration)) as time,
 
 976           sum(cast(l.billable * coalesce(u.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
 
 979           left join tt_users u on (l.user_id = u.id) $where";
 
 981         $sql = "select sum(time_to_sec(l.duration)) as time,
 
 982           sum(cast(l.billable * coalesce(upb.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10,2))) as cost,
 
 985           left join tt_user_project_binds upb on (l.user_id = upb.user_id and l.project_id = upb.project_id) $where";   
 
 988       $sql = "select sum(time_to_sec(l.duration)) as time, null as cost, null as expenses from tt_log l $where";
 
 990     // If we have expenses, query becomes a bit more complex.
 
 991     if ($report['show_cost'] && in_array('ex', explode(',', $user->plugins))) {
 
 992       $where = ttReportHelper::getFavExpenseWhere($report);
 
 993       $sql_for_expenses = "select null as time, sum(cost) as cost, sum(cost) as expenses from tt_expense_items ei $where";
 
 994       // Create a combined query.
 
 995       $sql = "select sum(time) as time, sum(cost) as cost, sum(expenses) as expenses from (($sql) union all ($sql_for_expenses)) t";
 
 999     $res = $mdb2->query($sql);
 
1000     if (!is_a($res, 'PEAR_Error')) {
 
1001       $val = $res->fetchRow();
 
1002       $total_time = $val['time'] ? sec_to_time_fmt_hm($val['time']) : null;
 
1003       if ($report['show_cost']) {
 
1004         $total_cost = $val['cost'];
 
1005         if (!$total_cost) $total_cost = '0.00';
 
1006         if ('.' != $user->decimal_mark)
 
1007               $total_cost = str_replace('.', $user->decimal_mark, $total_cost);
 
1009             $total_expenses = $val['expenses'];
 
1010         if (!$total_expenses) $total_expenses = '0.00';
 
1011         if ('.' != $user->decimal_mark)
 
1012               $total_expenses = str_replace('.', $user->decimal_mark, $total_expenses);
 
1015       die($res->getMessage());
 
1017     if ($report['period'])
 
1018       $period = new Period($report['period'], new DateAndTime($user->date_format));
 
1020       $period = new Period();
 
1022         new DateAndTime($user->date_format, $report['period_start']),
 
1023         new DateAndTime($user->date_format, $report['period_end']));
 
1026     $totals['start_date'] = $period->getBeginDate();
 
1027         $totals['end_date'] = $period->getEndDate();
 
1028         $totals['time'] = $total_time;
 
1029         $totals['cost'] = $total_cost;
 
1030         $totals['expenses'] = $total_expenses;
 
1035   // The assignToInvoice assigns a set of records to a specific invoice.
 
1036   static function assignToInvoice($invoice_id, $time_log_ids, $expense_item_ids)
 
1038         $mdb2 = getConnection();
 
1039         if ($time_log_ids) {
 
1040       $sql = "update tt_log set invoice_id = ".$mdb2->quote($invoice_id).
 
1041         " where id in(".join(', ', $time_log_ids).")";
 
1042       $affected = $mdb2->exec($sql);
 
1043       if (is_a($affected, 'PEAR_Error'))
 
1044             die($affected->getMessage());
 
1046     if ($expense_item_ids) {
 
1047       $sql = "update tt_expense_items set invoice_id = ".$mdb2->quote($invoice_id).
 
1048         " where id in(".join(', ', $expense_item_ids).")";
 
1049       $affected = $mdb2->exec($sql);
 
1050       if (is_a($affected, 'PEAR_Error'))
 
1051             die($affected->getMessage());
 
1055   // prepareReportBody - prepares an email body for report.
 
1056   static function prepareReportBody($bean, $comment)
 
1061     $items = ttReportHelper::getItems($bean);
 
1062     $group_by = $bean->getAttribute('group_by');
 
1063     if ($group_by && 'no_grouping' != $group_by)
 
1064         $subtotals = ttReportHelper::getSubtotals($bean);
 
1065     $totals = ttReportHelper::getTotals($bean);
 
1067     // Use custom fields plugin if it is enabled.
 
1068     if (in_array('cf', explode(',', $user->plugins)))
 
1069       $custom_fields = new CustomFields($user->team_id);
 
1071     // Define some styles to use in email.
 
1072     $style_title = 'text-align: center; font-size: 15pt; font-family: Arial, Helvetica, sans-serif;';
 
1073     $tableHeader = 'font-weight: bold; background-color: #a6ccf7; text-align: left;';
 
1074     $tableHeaderCentered = 'font-weight: bold; background-color: #a6ccf7; text-align: center;';
 
1075     $rowItem = 'background-color: #ccccce;';
 
1076     $rowItemAlt = 'background-color: #f5f5f5;';
 
1077     $rowSubtotal = 'background-color: #e0e0e0;';
 
1078     $cellLeftAligned = 'text-align: left; vertical-align: top;';
 
1079     $cellRightAligned = 'text-align: right; vertical-align: top;';
 
1080     $cellLeftAlignedSubtotal = 'font-weight: bold; text-align: left; vertical-align: top;';
 
1081     $cellRightAlignedSubtotal = 'font-weight: bold; text-align: right; vertical-align: top;';
 
1083     // Start creating email body.
 
1085     $body .= '<head><meta http-equiv="content-type" content="text/html; charset='.CHARSET.'"></head>';
 
1089     $body .= '<p style="'.$style_title.'">'.$i18n->getKey('form.mail.report_subject').': '.$totals['start_date'].' - '.$totals['end_date'].'</p>';
 
1092     if ($comment) $body .= '<p>'.htmlspecialchars($comment).'</p>';
 
1094     if ($bean->getAttribute('chtotalsonly')) {
 
1095       // Totals only report. Output subtotals.
 
1097       // Determine group_by header.
 
1098       if ('cf_1' == $group_by)
 
1099         $group_by_header = htmlspecialchars($custom_fields->fields[0]['label']);
 
1101         $key = 'label.'.$group_by;
 
1102         $group_by_header = $i18n->getKey($key);
 
1105       $body .= '<table border="0" cellpadding="4" cellspacing="0" width="100%">';
 
1107       $body .= '<td style="'.$tableHeader.'">'.$group_by_header.'</td>';
 
1108       if ($bean->getAttribute('chduration'))
 
1109         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.duration').'</td>';
 
1110       if ($bean->getAttribute('chcost'))
 
1111         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.cost').'</td>';
 
1113       foreach($subtotals as $subtotal) {
 
1114         $body .= '<tr style="'.$rowSubtotal.'">';
 
1115         $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($subtotal['name'] ? htmlspecialchars($subtotal['name']) : ' ').'</td>';
 
1116         if ($bean->getAttribute('chduration')) {
 
1117           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
 
1118           if ($subtotal['time'] <> '0:00') $body .= $subtotal['time'];
 
1121         if ($bean->getAttribute('chcost')) {
 
1122           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
 
1123           $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotal['cost'] : $subtotal['expenses'];
 
1130       $body .= '<tr><td> </td></tr>';
 
1131       $body .= '<tr style="'.$rowSubtotal.'">';
 
1132       $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.total').'</td>';
 
1133       if ($bean->getAttribute('chduration')) {
 
1134         $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
 
1135         if ($totals['time'] <> '0:00') $body .= $totals['time'];
 
1138       if ($bean->getAttribute('chcost')) {
 
1139         $body .= '<td nowrap style="'.$cellRightAlignedSubtotal.'">'.htmlspecialchars($user->currency).' ';
 
1140         $body .= ($user->canManageTeam() || $user->isClient()) ? $totals['cost'] : $totals['expenses'];
 
1145       $body .= '</table>';
 
1149       // Print table header.
 
1150       $body .= '<table border="0" cellpadding="4" cellspacing="0" width="100%">';
 
1152       $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.date').'</td>';
 
1153       if ($user->canManageTeam() || $user->isClient())
 
1154         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.user').'</td>';
 
1155       if ($bean->getAttribute('chclient'))
 
1156         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.client').'</td>';
 
1157       if ($bean->getAttribute('chproject'))
 
1158         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.project').'</td>';
 
1159       if ($bean->getAttribute('chtask'))
 
1160         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.task').'</td>';
 
1161       if ($bean->getAttribute('chcf_1'))
 
1162         $body .= '<td style="'.$tableHeader.'">'.htmlspecialchars($custom_fields->fields[0]['label']).'</td>';
 
1163       if ($bean->getAttribute('chstart'))
 
1164         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.start').'</td>';
 
1165       if ($bean->getAttribute('chfinish'))
 
1166         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.finish').'</td>';
 
1167       if ($bean->getAttribute('chduration'))
 
1168         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.duration').'</td>';
 
1169       if ($bean->getAttribute('chnote'))
 
1170         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.note').'</td>';
 
1171       if ($bean->getAttribute('chcost'))
 
1172         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.cost').'</td>';
 
1173       if ($bean->getAttribute('chinvoice'))
 
1174         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.invoice').'</td>';
 
1177       // Initialize variables to print subtotals.
 
1178       if ($items && 'no_grouping' != $group_by) {
 
1179         $print_subtotals = true;
 
1181         $prev_grouped_by = '';
 
1182         $cur_grouped_by = '';
 
1184       // Initialize variables to alternate color of rows for different dates.
 
1187       $row_style = $rowItem;
 
1189       // Print report items.
 
1190       if (is_array($items)) {
 
1191         foreach ($items as $record) {
 
1192           $cur_date = $record['date'];
 
1193           // Print a subtotal row after a block of grouped items.
 
1194           if ($print_subtotals) {
 
1195             $cur_grouped_by = $record['grouped_by'];
 
1196             if ($cur_grouped_by != $prev_grouped_by && !$first_pass) {
 
1197               $body .= '<tr style="'.$rowSubtotal.'">';
 
1198               $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.subtotal').'</td>';
 
1199               $subtotal_name = htmlspecialchars($subtotals[$prev_grouped_by]['name']);
 
1200               if ($user->canManageTeam() || $user->isClient()) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'user' ? $subtotal_name : '').'</td>';
 
1201               if ($bean->getAttribute('chclient')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'client' ? $subtotal_name : '').'</td>';
 
1202               if ($bean->getAttribute('chproject')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'project' ? $subtotal_name : '').'</td>';
 
1203               if ($bean->getAttribute('chtask')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'task' ? $subtotal_name : '').'</td>';
 
1204               if ($bean->getAttribute('chcf_1')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'cf_1' ? $subtotal_name : '').'</td>';
 
1205               if ($bean->getAttribute('chstart')) $body .= '<td></td>';
 
1206               if ($bean->getAttribute('chfinish')) $body .= '<td></td>';
 
1207               if ($bean->getAttribute('chduration')) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$subtotals[$prev_grouped_by]['time'].'</td>';
 
1208               if ($bean->getAttribute('chnote')) $body .= '<td></td>';
 
1209               if ($bean->getAttribute('chcost')) {
 
1210                 $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
 
1211                 $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotals[$prev_grouped_by]['cost'] : $subtotals[$prev_grouped_by]['expenses'];
 
1214               if ($bean->getAttribute('chinvoice')) $body .= '<td></td>';
 
1216               $body .= '<tr><td> </td></tr>';
 
1218             $first_pass = false;
 
1221           // Print a regular row.
 
1222           if ($cur_date != $prev_date)
 
1223             $row_style = ($row_style == $rowItem) ? $rowItemAlt : $rowItem;
 
1224           $body .= '<tr style="'.$row_style.'">';
 
1225           $body .= '<td style="'.$cellLeftAligned.'">'.$record['date'].'</td>';
 
1226           if ($user->canManageTeam() || $user->isClient())
 
1227             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['user']).'</td>';
 
1228           if ($bean->getAttribute('chclient'))
 
1229             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['client']).'</td>';
 
1230           if ($bean->getAttribute('chproject'))
 
1231             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['project']).'</td>';
 
1232           if ($bean->getAttribute('chtask'))
 
1233             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['task']).'</td>';
 
1234           if ($bean->getAttribute('chcf_1'))
 
1235             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['cf_1']).'</td>';
 
1236           if ($bean->getAttribute('chstart'))
 
1237             $body .= '<td nowrap style="'.$cellRightAligned.'">'.$record['start'].'</td>';
 
1238           if ($bean->getAttribute('chfinish'))
 
1239             $body .= '<td nowrap style="'.$cellRightAligned.'">'.$record['finish'].'</td>';
 
1240           if ($bean->getAttribute('chduration'))
 
1241             $body .= '<td style="'.$cellRightAligned.'">'.$record['duration'].'</td>';
 
1242           if ($bean->getAttribute('chnote'))
 
1243             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['note']).'</td>';
 
1244           if ($bean->getAttribute('chcost'))
 
1245             $body .= '<td style="'.$cellRightAligned.'">'.$record['cost'].'</td>';
 
1246           if ($bean->getAttribute('chinvoice'))
 
1247             $body .= '<td style="'.$cellRightAligned.'">'.htmlspecialchars($record['invoice']).'</td>';
 
1250           $prev_date = $record['date'];
 
1251           if ($print_subtotals)
 
1252             $prev_grouped_by = $record['grouped_by'];
 
1256       // Print a terminating subtotal.
 
1257       if ($print_subtotals) {
 
1258         $body .= '<tr style="'.$rowSubtotal.'">';
 
1259         $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.subtotal').'</td>';
 
1260         $subtotal_name = htmlspecialchars($subtotals[$cur_grouped_by]['name']);
 
1261         if ($user->canManageTeam() || $user->isClient()) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'user' ? $subtotal_name : '').'</td>';
 
1262         if ($bean->getAttribute('chclient')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'client' ? $subtotal_name : '').'</td>';
 
1263         if ($bean->getAttribute('chproject')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'project' ? $subtotal_name : '').'</td>';
 
1264         if ($bean->getAttribute('chtask')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'task' ? $subtotal_name : '').'</td>';
 
1265         if ($bean->getAttribute('chcf_1')) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'cf_1' ? $subtotal_name : '').'</td>';
 
1266         if ($bean->getAttribute('chstart')) $body .= '<td></td>';
 
1267         if ($bean->getAttribute('chfinish')) $body .= '<td></td>';
 
1268         if ($bean->getAttribute('chduration')) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$subtotals[$cur_grouped_by]['time'].'</td>';
 
1269         if ($bean->getAttribute('chnote')) $body .= '<td></td>';
 
1270         if ($bean->getAttribute('chcost')) {
 
1271           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
 
1272           $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotals[$cur_grouped_by]['cost'] : $subtotals[$cur_grouped_by]['expenses'];
 
1275         if ($bean->getAttribute('chinvoice')) $body .= '<td></td>';
 
1280       $body .= '<tr><td> </td></tr>';
 
1281       $body .= '<tr style="'.$rowSubtotal.'">';
 
1282       $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.total').'</td>';
 
1283       if ($user->canManageTeam() || $user->isClient()) $body .= '<td></td>';
 
1284       if ($bean->getAttribute('chclient')) $body .= '<td></td>';
 
1285       if ($bean->getAttribute('chproject')) $body .= '<td></td>';
 
1286       if ($bean->getAttribute('chtask')) $body .= '<td></td>';
 
1287       if ($bean->getAttribute('chcf_1')) $body .= '<td></td>';
 
1288       if ($bean->getAttribute('chstart')) $body .= '<td></td>';
 
1289       if ($bean->getAttribute('chfinish')) $body .= '<td></td>';
 
1290       if ($bean->getAttribute('chduration')) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$totals['time'].'</td>';
 
1291       if ($bean->getAttribute('chnote')) $body .= '<td></td>';
 
1292       if ($bean->getAttribute('chcost')) {
 
1293         $body .= '<td nowrap style="'.$cellRightAlignedSubtotal.'">'.htmlspecialchars($user->currency).' ';
 
1294         $body .= ($user->canManageTeam() || $user->isClient()) ? $totals['cost'] : $totals['expenses'];
 
1297       if ($bean->getAttribute('chinvoice')) $body .= '<td></td>';
 
1300       $body .= '</table>';
 
1304     $body .= '<p style="text-align: center;">'.$i18n->getKey('form.mail.footer').'</p>';
 
1306     // Finish creating email body.
 
1307     $body .= '</body></html>';
 
1312 // prepareFavReportBody - prepares an email body for a favorite report.
 
1313   static function prepareFavReportBody($report)
 
1318         $items = ttReportHelper::getFavItems($report);
 
1319     $group_by = $report['group_by'];
 
1320         if ($group_by && 'no_grouping' != $group_by)
 
1321         $subtotals = ttReportHelper::getFavSubtotals($report);    
 
1322     $totals = ttReportHelper::getFavTotals($report);            
 
1324     // Use custom fields plugin if it is enabled.
 
1325     if (in_array('cf', explode(',', $user->plugins)))
 
1326       $custom_fields = new CustomFields($user->team_id);
 
1328     // Define some styles to use in email.
 
1329     $style_title = 'text-align: center; font-size: 15pt; font-family: Arial, Helvetica, sans-serif;';
 
1330     $tableHeader = 'font-weight: bold; background-color: #a6ccf7; text-align: left;';
 
1331     $tableHeaderCentered = 'font-weight: bold; background-color: #a6ccf7; text-align: center;';
 
1332     $rowItem = 'background-color: #ccccce;';
 
1333     $rowItemAlt = 'background-color: #f5f5f5;';
 
1334     $rowSubtotal = 'background-color: #e0e0e0;';
 
1335     $cellLeftAligned = 'text-align: left; vertical-align: top;';
 
1336     $cellRightAligned = 'text-align: right; vertical-align: top;';
 
1337     $cellLeftAlignedSubtotal = 'font-weight: bold; text-align: left; vertical-align: top;';
 
1338     $cellRightAlignedSubtotal = 'font-weight: bold; text-align: right; vertical-align: top;';
 
1340     // Start creating email body.
 
1342     $body .= '<head><meta http-equiv="content-type" content="text/html; charset='.CHARSET.'"></head>';
 
1346     $body .= '<p style="'.$style_title.'">'.$i18n->getKey('form.mail.report_subject').': '.$totals['start_date'].' - '.$totals['end_date'].'</p>';
 
1349     // if ($comment) $body .= '<p>'.htmlspecialchars($comment).'</p>'; // No comment for fav. reports.
 
1351     if ($report['show_totals_only']) {
 
1352       // Totals only report. Output subtotals.
 
1354       // Determine group_by header.
 
1355       if ('cf_1' == $group_by)
 
1356         $group_by_header = htmlspecialchars($custom_fields->fields[0]['label']);
 
1358         $key = 'label.'.$group_by;
 
1359         $group_by_header = $i18n->getKey($key);
 
1362       $body .= '<table border="0" cellpadding="4" cellspacing="0" width="100%">';
 
1364       $body .= '<td style="'.$tableHeader.'">'.$group_by_header.'</td>';
 
1365       if ($report['show_duration'])
 
1366         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.duration').'</td>';
 
1367       if ($report['show_cost'])
 
1368         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.cost').'</td>';
 
1370       foreach($subtotals as $subtotal) {
 
1371         $body .= '<tr style="'.$rowSubtotal.'">';
 
1372         $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($subtotal['name'] ? htmlspecialchars($subtotal['name']) : ' ').'</td>';
 
1373         if ($report['show_duration']) {
 
1374           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
 
1375           if ($subtotal['time'] <> '0:00') $body .= $subtotal['time'];
 
1378         if ($report['show_cost']) {
 
1379           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
 
1380           $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotal['cost'] : $subtotal['expenses'];
 
1387       $body .= '<tr><td> </td></tr>';
 
1388       $body .= '<tr style="'.$rowSubtotal.'">';
 
1389       $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.total').'</td>';
 
1390       if ($report['show_duration']) {
 
1391         $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
 
1392         if ($totals['time'] <> '0:00') $body .= $totals['time'];
 
1395       if ($report['show_cost']) {
 
1396         $body .= '<td nowrap style="'.$cellRightAlignedSubtotal.'">'.htmlspecialchars($user->currency).' ';
 
1397         $body .= ($user->canManageTeam() || $user->isClient()) ? $totals['cost'] : $totals['expenses'];
 
1402       $body .= '</table>';
 
1406       // Print table header.
 
1407       $body .= '<table border="0" cellpadding="4" cellspacing="0" width="100%">';
 
1409       $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.date').'</td>';
 
1410       if ($user->canManageTeam() || $user->isClient())
 
1411         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.user').'</td>';
 
1412       if ($report['show_client'])
 
1413         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.client').'</td>';
 
1414       if ($report['show_project'])
 
1415         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.project').'</td>';
 
1416       if ($report['show_task'])
 
1417         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.task').'</td>';
 
1418       if ($report['show_custom_field_1'])
 
1419         $body .= '<td style="'.$tableHeader.'">'.htmlspecialchars($custom_fields->fields[0]['label']).'</td>';
 
1420       if ($report['show_start'])
 
1421         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.start').'</td>';
 
1422       if ($report['show_end'])
 
1423         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.finish').'</td>';
 
1424       if ($report['show_duration'])
 
1425         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.duration').'</td>';
 
1426       if ($report['show_note'])
 
1427         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.note').'</td>';
 
1428       if ($report['show_cost'])
 
1429         $body .= '<td style="'.$tableHeaderCentered.'" width="5%">'.$i18n->getKey('label.cost').'</td>';
 
1430       if ($report['show_invoice'])
 
1431         $body .= '<td style="'.$tableHeader.'">'.$i18n->getKey('label.invoice').'</td>';
 
1434       // Initialize variables to print subtotals.
 
1435       if ($items && 'no_grouping' != $group_by) {
 
1436         $print_subtotals = true;
 
1438         $prev_grouped_by = '';
 
1439         $cur_grouped_by = '';
 
1441       // Initialize variables to alternate color of rows for different dates.
 
1444       $row_style = $rowItem;
 
1446       // Print report items.
 
1447       if (is_array($items)) {
 
1448         foreach ($items as $record) {
 
1449           $cur_date = $record['date'];
 
1450           // Print a subtotal row after a block of grouped items.
 
1451           if ($print_subtotals) {
 
1452             $cur_grouped_by = $record['grouped_by'];
 
1453             if ($cur_grouped_by != $prev_grouped_by && !$first_pass) {
 
1454               $body .= '<tr style="'.$rowSubtotal.'">';
 
1455               $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.subtotal').'</td>';
 
1456               $subtotal_name = htmlspecialchars($subtotals[$prev_grouped_by]['name']);
 
1457               if ($user->canManageTeam() || $user->isClient()) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'user' ? $subtotal_name : '').'</td>';
 
1458               if ($report['show_client']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'client' ? $subtotal_name : '').'</td>';
 
1459               if ($report['show_project']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'project' ? $subtotal_name : '').'</td>';
 
1460               if ($report['show_task']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'task' ? $subtotal_name : '').'</td>';
 
1461               if ($report['show_custom_field_1']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'cf_1' ? $subtotal_name : '').'</td>';
 
1462               if ($report['show_start']) $body .= '<td></td>';
 
1463               if ($report['show_end']) $body .= '<td></td>';
 
1464               if ($report['show_duration']) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$subtotals[$prev_grouped_by]['time'].'</td>';
 
1465               if ($report['show_note']) $body .= '<td></td>';
 
1466               if ($report['show_cost']) {
 
1467                 $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
 
1468                 $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotals[$prev_grouped_by]['cost'] : $subtotals[$prev_grouped_by]['expenses'];
 
1471               if ($report['show_invoice']) $body .= '<td></td>';
 
1473               $body .= '<tr><td> </td></tr>';      
 
1475             $first_pass = false;
 
1478           // Print a regular row.
 
1479           if ($cur_date != $prev_date)
 
1480             $row_style = ($row_style == $rowItem) ? $rowItemAlt : $rowItem;
 
1481           $body .= '<tr style="'.$row_style.'">';
 
1482           $body .= '<td style="'.$cellLeftAligned.'">'.$record['date'].'</td>';
 
1483           if ($user->canManageTeam() || $user->isClient())
 
1484             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['user']).'</td>';
 
1485           if ($report['show_client'])
 
1486             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['client']).'</td>';
 
1487           if ($report['show_project'])
 
1488             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['project']).'</td>';
 
1489           if ($report['show_task'])
 
1490             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['task']).'</td>';
 
1491           if ($report['show_custom_field_1'])
 
1492             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['cf_1']).'</td>';
 
1493           if ($report['show_start'])
 
1494             $body .= '<td nowrap style="'.$cellRightAligned.'">'.$record['start'].'</td>';
 
1495           if ($report['show_end'])
 
1496             $body .= '<td nowrap style="'.$cellRightAligned.'">'.$record['finish'].'</td>';
 
1497           if ($report['show_duration'])
 
1498             $body .= '<td style="'.$cellRightAligned.'">'.$record['duration'].'</td>';
 
1499           if ($report['show_note'])
 
1500             $body .= '<td style="'.$cellLeftAligned.'">'.htmlspecialchars($record['note']).'</td>';
 
1501           if ($report['show_cost'])
 
1502             $body .= '<td style="'.$cellRightAligned.'">'.$record['cost'].'</td>';
 
1503           if ($report['show_invoice'])
 
1504             $body .= '<td style="'.$cellRightAligned.'">'.htmlspecialchars($record['invoice']).'</td>';
 
1507           $prev_date = $record['date'];
 
1508           if ($print_subtotals)
 
1509             $prev_grouped_by = $record['grouped_by'];
 
1513       // Print a terminating subtotal.
 
1514       if ($print_subtotals) {
 
1515         $body .= '<tr style="'.$rowSubtotal.'">';
 
1516         $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.subtotal').'</td>';
 
1517         $subtotal_name = htmlspecialchars($subtotals[$cur_grouped_by]['name']);
 
1518         if ($user->canManageTeam() || $user->isClient()) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'user' ? $subtotal_name : '').'</td>';
 
1519         if ($report['show_client']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'client' ? $subtotal_name : '').'</td>';
 
1520         if ($report['show_project']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'project' ? $subtotal_name : '').'</td>';
 
1521         if ($report['show_task']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'task' ? $subtotal_name : '').'</td>';
 
1522         if ($report['show_custom_field_1']) $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.($group_by == 'cf_1' ? $subtotal_name : '').'</td>';
 
1523         if ($report['show_start']) $body .= '<td></td>';
 
1524         if ($report['show_end']) $body .= '<td></td>';
 
1525         if ($report['show_duration']) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$subtotals[$cur_grouped_by]['time'].'</td>';
 
1526         if ($report['show_note']) $body .= '<td></td>';
 
1527         if ($report['show_cost']) {
 
1528           $body .= '<td style="'.$cellRightAlignedSubtotal.'">';
 
1529           $body .= ($user->canManageTeam() || $user->isClient()) ? $subtotals[$cur_grouped_by]['cost'] : $subtotals[$cur_grouped_by]['expenses'];
 
1532         if ($report['show_invoice']) $body .= '<td></td>';
 
1537       $body .= '<tr><td> </td></tr>';
 
1538       $body .= '<tr style="'.$rowSubtotal.'">';
 
1539       $body .= '<td style="'.$cellLeftAlignedSubtotal.'">'.$i18n->getKey('label.total').'</td>';
 
1540       if ($user->canManageTeam() || $user->isClient()) $body .= '<td></td>';
 
1541       if ($report['show_client']) $body .= '<td></td>';
 
1542       if ($report['show_project']) $body .= '<td></td>';
 
1543       if ($report['show_task']) $body .= '<td></td>';
 
1544       if ($report['show_custom_field_1']) $body .= '<td></td>';
 
1545       if ($report['show_start']) $body .= '<td></td>';
 
1546       if ($report['show_end']) $body .= '<td></td>';
 
1547       if ($report['show_duration']) $body .= '<td style="'.$cellRightAlignedSubtotal.'">'.$totals['time'].'</td>';
 
1548       if ($report['show_note']) $body .= '<td></td>';
 
1549       if ($report['show_cost']) {
 
1550         $body .= '<td nowrap style="'.$cellRightAlignedSubtotal.'">'.htmlspecialchars($user->currency).' ';
 
1551         $body .= ($user->canManageTeam() || $user->isClient()) ? $totals['cost'] : $totals['expenses'];
 
1554       if ($report['show_invoice']) $body .= '<td></td>';
 
1557       $body .= '</table>';
 
1561     $body .= '<p style="text-align: center;">'.$i18n->getKey('form.mail.footer').'</p>';
 
1563     // Finish creating email body.
 
1564     $body .= '</body></html>';
 
1569   // sendFavReport - sends a favorite report to a specified email, called from cron.php
 
1570   static function sendFavReport($report, $email) {
 
1571     // We are called from cron.php, we have no $bean in session.
 
1572     // cron.php set global $user and $i18n objects to match our favorite report user.
 
1576     // Prepare report body.
 
1577     $body = ttReportHelper::prepareFavReportBody($report);
 
1579     import('mail.Mailer');
 
1580     $mailer = new Mailer();
 
1581     $mailer->setCharSet(CHARSET);
 
1582     $mailer->setContentType('text/html');
 
1583     $mailer->setSender(SENDER);
 
1584     $mailer->setReceiver($email);
 
1585     $mailer->setSendType(MAIL_MODE);
 
1586     if (!$mailer->send($report['name'], $body))