Ongoing refactoring, getting rid of canManageTeam().
[timetracker.git] / reports.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 require_once('initialize.php');
30 import('form.Form');
31 import('form.ActionForm');
32 import('DateAndTime');
33 import('ttTeamHelper');
34 import('Period');
35 import('ttProjectHelper');
36 import('ttFavReportHelper');
37 import('ttClientHelper');
38
39 // Access check.
40 if (!(ttAccessAllowed('view_own_reports') || ttAccessAllowed('view_reports') || ttAccessAllowed('view_all_reports'))) {
41   header('Location: access_denied.php');
42   exit();
43 }
44
45 // Use custom fields plugin if it is enabled.
46 if ($user->isPluginEnabled('cf')) {
47   require_once('plugins/CustomFields.class.php');
48   $custom_fields = new CustomFields($user->group_id);
49   $smarty->assign('custom_fields', $custom_fields);
50 }
51
52 $form = new Form('reportForm');
53
54 // Get saved favorite reports for user.
55 $report_list = ttFavReportHelper::getReports($user->id);
56 $form->addInput(array('type'=>'combobox',
57   'name'=>'favorite_report',
58   'onchange'=>'document.reportForm.fav_report_changed.value=1;document.reportForm.submit();',
59   'style'=>'width: 250px;',
60   'data'=>$report_list,
61   'datakeys'=>array('id','name'),
62   'empty'=>array('-1'=>$i18n->get('dropdown.no'))));
63 $form->addInput(array('type'=>'hidden','name'=>'fav_report_changed'));
64 // Generate and Delete buttons.
65 $form->addInput(array('type'=>'submit','name'=>'btn_generate','value'=>$i18n->get('button.generate')));
66 $form->addInput(array('type'=>'submit','name'=>'btn_delete','value'=>$i18n->get('label.delete'),'onclick'=>"return confirm('".$i18n->get('form.reports.confirm_delete')."')"));
67
68 // Dropdown for clients if the clients plugin is enabled.
69 if ($user->isPluginEnabled('cl') && !$user->isClient()) {
70   if ($user->can('view_reports') || $user->can('view_all_reports')) {
71     $client_list = ttClientHelper::getClients(); // TODO: improve getClients for "view_reports"
72                                                  // by filtering out not relevant clients.
73   } else
74     $client_list = ttClientHelper::getClientsForUser();
75   $form->addInput(array('type'=>'combobox',
76     'name'=>'client',
77     'style'=>'width: 250px;',
78     'data'=>$client_list,
79     'datakeys'=>array('id', 'name'),
80     'empty'=>array(''=>$i18n->get('dropdown.all'))));
81 }
82
83 // If we have a TYPE_DROPDOWN custom field - add control to select an option.
84 if ($custom_fields && $custom_fields->fields[0] && $custom_fields->fields[0]['type'] == CustomFields::TYPE_DROPDOWN) {
85     $form->addInput(array('type'=>'combobox','name'=>'option',
86       'style'=>'width: 250px;',
87       'value'=>$cl_cf_1,
88       'data'=>$custom_fields->options,
89       'empty'=>array(''=>$i18n->get('dropdown.all'))));
90 }
91
92 // Add controls for projects and tasks.
93 if ($user->canManageTeam()) {
94   $project_list = ttProjectHelper::getProjects(); // Manager and co-managers can run reports on all active and inactive projects.
95 } elseif ($user->isClient()) {
96   $project_list = ttProjectHelper::getProjectsForClient();
97 } else {
98   $project_list = ttProjectHelper::getAssignedProjects($user->id);      
99 }
100 $form->addInput(array('type'=>'combobox',
101   'onchange'=>'fillTaskDropdown(this.value);selectAssignedUsers(this.value);',
102   'name'=>'project',
103   'style'=>'width: 250px;',
104   'data'=>$project_list,
105   'datakeys'=>array('id','name'),
106   'empty'=>array(''=>$i18n->get('dropdown.all'))));
107 if (MODE_PROJECTS_AND_TASKS == $user->tracking_mode) {
108   $task_list = ttTeamHelper::getActiveTasks($user->group_id);
109   $form->addInput(array('type'=>'combobox',
110     'name'=>'task',
111     'style'=>'width: 250px;',
112     'data'=>$task_list,
113     'datakeys'=>array('id','name'),
114     'empty'=>array(''=>$i18n->get('dropdown.all'))));
115 }
116
117 // Add include records control.
118 $include_options = array('1'=>$i18n->get('form.reports.include_billable'),
119   '2'=>$i18n->get('form.reports.include_not_billable'));
120 $form->addInput(array('type'=>'combobox',
121   'name'=>'include_records',
122   'style'=>'width: 250px;',
123   'data'=>$include_options,
124   'empty'=>array(''=>$i18n->get('dropdown.all'))));
125
126 // Add invoiced / not invoiced selector.
127 $invoice_options = array('1'=>$i18n->get('form.reports.include_invoiced'),
128   '2'=>$i18n->get('form.reports.include_not_invoiced'));
129 $form->addInput(array('type'=>'combobox',
130   'name'=>'invoice',
131   'style'=>'width: 250px;',
132   'data'=>$invoice_options,
133   'empty'=>array(''=>$i18n->get('dropdown.all'))));
134
135 if ($user->canManageTeam() && $user->isPluginEnabled('ps')) {
136   $form->addInput(array('type'=>'combobox',
137    'name'=>'paid_status',
138    'style'=>'width: 250px;',
139    'data'=>array('1'=>$i18n->get('dropdown.paid'),'2'=>$i18n->get('dropdown.not_paid')),
140    'empty'=>array(''=>$i18n->get('dropdown.all'))
141  ));
142 }
143
144 $user_list = array();
145 if ($user->can('view_reports') || $user->can('view_all_reports') || $user->isClient()) {
146   // Prepare user and assigned projects arrays.
147   if ($user->can('view_reports') || $user->can('view_all_reports')) {
148     $max_rank = $user->rank-1;
149     if ($user->can('view_all_reports')) $max_rank = 512;
150     if ($user->can('view_own_reports'))
151       $options = array('max_rank'=>$max_rank,'include_self'=>true);
152     else
153       $options = array('max_rank'=>$max_rank);
154     $users = $user->getUsers($options); // Active and inactive users.
155   }
156   elseif ($user->isClient())
157     $users = ttTeamHelper::getUsersForClient(); // Active and inactive users for clients.
158
159   foreach ($users as $single_user) {
160     $user_list[$single_user['id']] = $single_user['name'];
161     $projects = ttProjectHelper::getAssignedProjects($single_user['id']);
162     if ($projects) {
163       foreach ($projects as $single_project) {
164         $assigned_projects[$single_user['id']][] = $single_project['id'];
165       }
166     }
167   }
168   $row_count = ceil(count($user_list)/3);
169   $form->addInput(array('type'=>'checkboxgroup',
170     'name'=>'users',
171     'data'=>$user_list,
172     'layout'=>'V',
173     'groupin'=>$row_count,
174     'style'=>'width: 100%;'));
175 }
176
177 // Add control for time period.
178 $form->addInput(array('type'=>'combobox',
179   'name'=>'period',
180   'style'=>'width: 250px;',
181   'data'=>array(INTERVAL_THIS_MONTH=>$i18n->get('dropdown.current_month'),
182     INTERVAL_LAST_MONTH=>$i18n->get('dropdown.previous_month'),
183     INTERVAL_THIS_WEEK=>$i18n->get('dropdown.current_week'),
184     INTERVAL_LAST_WEEK=>$i18n->get('dropdown.previous_week'),
185     INTERVAL_THIS_DAY=>$i18n->get('dropdown.current_day'),
186     INTERVAL_LAST_DAY=>$i18n->get('dropdown.previous_day')),
187   'empty'=>array(''=>$i18n->get('dropdown.select'))));
188 // Add controls for start and end dates.
189 $form->addInput(array('type'=>'datefield','maxlength'=>'20','name'=>'start_date'));
190 $form->addInput(array('type'=>'datefield','maxlength'=>'20','name'=>'end_date'));
191
192 // Add checkboxes for fields.
193 if ($user->isPluginEnabled('cl'))
194   $form->addInput(array('type'=>'checkbox','name'=>'chclient'));
195 if (($user->canManageTeam() || $user->isClient()) && $user->isPluginEnabled('iv'))
196   $form->addInput(array('type'=>'checkbox','name'=>'chinvoice'));
197 if ($user->canManageTeam() && $user->isPluginEnabled('ps'))
198   $form->addInput(array('type'=>'checkbox','name'=>'chpaid'));
199 if ($user->canManageTeam())
200   $form->addInput(array('type'=>'checkbox','name'=>'chip'));
201 if (MODE_PROJECTS == $user->tracking_mode || MODE_PROJECTS_AND_TASKS == $user->tracking_mode)
202   $form->addInput(array('type'=>'checkbox','name'=>'chproject'));
203 if (MODE_PROJECTS_AND_TASKS == $user->tracking_mode)
204   $form->addInput(array('type'=>'checkbox','name'=>'chtask'));
205 if ((TYPE_START_FINISH == $user->record_type) || (TYPE_ALL == $user->record_type)) {
206   $form->addInput(array('type'=>'checkbox','name'=>'chstart'));
207   $form->addInput(array('type'=>'checkbox','name'=>'chfinish'));
208 }
209 $form->addInput(array('type'=>'checkbox','name'=>'chduration'));
210 $form->addInput(array('type'=>'checkbox','name'=>'chnote'));
211 $form->addInput(array('type'=>'checkbox','name'=>'chcost'));
212 // If we have a custom field - add a checkbox for it.
213 if ($custom_fields && $custom_fields->fields[0])
214   $form->addInput(array('type'=>'checkbox','name'=>'chcf_1'));
215 // Add group by control.
216 $group_by_options['no_grouping'] = $i18n->get('form.reports.group_by_no');
217 $group_by_options['date'] = $i18n->get('form.reports.group_by_date');
218 if ($user->canManageTeam() || $user->isClient())
219   $group_by_options['user'] = $i18n->get('form.reports.group_by_user');
220 if ($user->isPluginEnabled('cl') && !($user->isClient() && $user->client_id))
221   $group_by_options['client'] = $i18n->get('form.reports.group_by_client');
222 if (MODE_PROJECTS == $user->tracking_mode || MODE_PROJECTS_AND_TASKS == $user->tracking_mode)
223   $group_by_options['project'] = $i18n->get('form.reports.group_by_project');
224 if (MODE_PROJECTS_AND_TASKS == $user->tracking_mode)
225   $group_by_options['task'] = $i18n->get('form.reports.group_by_task');
226 if ($custom_fields && $custom_fields->fields[0] && $custom_fields->fields[0]['type'] == CustomFields::TYPE_DROPDOWN) {
227   $group_by_options['cf_1'] = $custom_fields->fields[0]['label'];
228 }
229 $form->addInput(array('type'=>'combobox','onchange'=>'handleCheckboxes();','name'=>'group_by','data'=>$group_by_options));
230 $form->addInput(array('type'=>'checkbox','name'=>'chtotalsonly'));
231
232 // Add text field for a new favorite report name.
233 $form->addInput(array('type'=>'text','name'=>'new_fav_report','maxlength'=>'30','style'=>'width: 250px;'));
234 // Save button.
235 $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->get('button.save')));
236
237 $form->addInput(array('type'=>'submit','name'=>'btn_generate','value'=>$i18n->get('button.generate')));
238
239 // Create a bean (which is a mechanism to remember form values in session).
240 $bean = new ActionForm('reportBean', $form, $request);
241 // At this point form values are obtained from session if they are there.
242
243 if ($request->isGet() && !$bean->isSaved()) {
244   // No previous form data were found in session. Use the following default values.
245   $form->setValueByElement('users', array_keys($user_list));
246   $period = new Period(INTERVAL_THIS_MONTH, new DateAndTime($user->date_format));
247   $form->setValueByElement('start_date', $period->getStartDate());
248   $form->setValueByElement('end_date', $period->getEndDate());
249   $form->setValueByElement('chclient', '1');
250   $form->setValueByElement('chinvoice', '0');
251   $form->setValueByElement('chpaid', '0');
252   $form->setValueByElement('chip', '0');
253   $form->setValueByElement('chproject', '1');
254   $form->setValueByElement('chstart', '1');
255   $form->setValueByElement('chduration', '1');
256   $form->setValueByElement('chcost', '0');
257   $form->setValueByElement('chtask', '1');
258   $form->setValueByElement('chfinish', '1');
259   $form->setValueByElement('chnote', '1');
260   $form->setValueByElement('chcf_1', '0');
261   $form->setValueByElement('chtotalsonly', '0');
262 }
263
264 $form->setValueByElement('fav_report_changed','');
265
266 // Disable the Delete button when no favorite report is selected.
267 if (!$bean->getAttribute('favorite_report') || ($bean->getAttribute('favorite_report') == -1))
268   $form->getElement('btn_delete')->setEnabled(false);
269
270 if ($request->isPost()) {
271   if((!$bean->getAttribute('btn_generate') && ($request->getParameter('fav_report_changed')))) {
272     // User changed favorite report. We need to load new values into the form.
273     if ($bean->getAttribute('favorite_report')) {
274       // This loads new favorite report options into the bean (into our form).
275       ttFavReportHelper::loadReport($user->id, $bean);
276
277       // If user selected no favorite report - mark all user checkboxes (most probable scenario).
278       if ($bean->getAttribute('favorite_report') == -1)
279         $form->setValueByElement('users', array_keys($user_list));
280
281       // Save form data in session for future use.
282       $bean->saveBean();
283       header('Location: reports.php');
284       exit();
285     }
286   } elseif ($bean->getAttribute('btn_save')) {
287     // User clicked the Save button. We need to save form options as new favorite report.
288     if (!ttValidString($bean->getAttribute('new_fav_report'))) $err->add($i18n->get('error.field'), $i18n->get('form.reports.save_as_favorite'));
289
290     if ($err->no()) {
291       $id = ttFavReportHelper::saveReport($user->id, $bean);
292       if (!$id)
293         $err->add($i18n->get('error.db'));
294       if ($err->no()) {
295         $bean->setAttribute('favorite_report', $id);
296         $bean->saveBean();
297         header('Location: reports.php');
298         exit();
299       }
300     }
301   } elseif($bean->getAttribute('btn_delete')) {
302     // Delete button pressed. User wants to delete a favorite report.
303     if ($bean->getAttribute('favorite_report')) {
304       ttFavReportHelper::deleteReport($bean->getAttribute('favorite_report'));
305       // Load default report.
306       $bean->setAttribute('favorite_report','');
307       $bean->setAttribute('new_fav_report', $report_list[0]['name']);
308       ttFavReportHelper::loadReport($user->id, $bean);
309       $form->setValueByElement('users', array_keys($user_list));
310       $bean->saveBean();
311       header('Location: reports.php');
312       exit();
313     }
314   } else {
315     // Generate button pressed. Check some values.
316     if (!$bean->getAttribute('period')) {
317       $start_date = new DateAndTime($user->date_format, $bean->getAttribute('start_date'));
318
319       if ($start_date->isError() || !$bean->getAttribute('start_date'))
320         $err->add($i18n->get('error.field'), $i18n->get('label.start_date'));
321
322       $end_date = new DateAndTime($user->date_format, $bean->getAttribute('end_date'));
323       if ($end_date->isError() || !$bean->getAttribute('end_date'))
324         $err->add($i18n->get('error.field'), $i18n->get('label.end_date'));
325
326       if ($start_date->compare($end_date) > 0)
327         $err->add($i18n->get('error.interval'), $i18n->get('label.end_date'), $i18n->get('label.start_date'));
328     }
329
330     $bean->saveBean();
331
332     if ($err->no()) {
333       // Now we can go ahead and create a report.
334       header('Location: report.php');
335       exit();
336     }
337   }
338 } // isPost
339
340 $smarty->assign('project_list', $project_list);
341 $smarty->assign('task_list', $task_list);
342 $smarty->assign('assigned_projects', $assigned_projects);
343 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
344 $smarty->assign('onload', 'onLoad="handleCheckboxes()"');
345 $smarty->assign('title', $i18n->get('title.reports'));
346 $smarty->assign('content_page_name', 'reports.tpl');
347 $smarty->display('index.tpl');