-
Notifications
You must be signed in to change notification settings - Fork 124
/
reports.php
538 lines (494 loc) · 23.7 KB
/
reports.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
<?php
/* Copyright (c) Anuko International Ltd. https://www.anuko.com
License: See license.txt */
require_once('initialize.php');
import('form.Form');
import('form.ActionForm');
import('ttGroupHelper');
import('ttProjectHelper');
import('ttFavReportHelper');
import('ttClientHelper');
import('ttReportHelper');
import('ttDate');
import('ttPeriod');
// Access check.
if (!(ttAccessAllowed('view_own_reports') || ttAccessAllowed('view_reports') || ttAccessAllowed('view_all_reports') || ttAccessAllowed('view_client_reports'))) {
header('Location: access_denied.php');
exit();
}
if (!$user->exists()) {
header('Location: access_denied.php'); // No users in subgroup.
exit();
}
// End of access checks.
$trackingMode = $user->getTrackingMode();
// Use custom fields plugin if it is enabled.
if ($user->isPluginEnabled('cf')) {
require_once('plugins/CustomFields.class.php');
$custom_fields = new CustomFields();
$smarty->assign('custom_fields', $custom_fields);
}
$form = new Form('reportForm');
// Get saved favorite reports for user.
$report_list = ttFavReportHelper::getReports();
$form->addInput(array('type'=>'combobox',
'name'=>'favorite_report',
'onchange'=>'this.form.fav_report_changed.value=1;this.form.submit();',
'data'=>$report_list,
'datakeys'=>array('id','name'),
'empty'=>array('-1'=>$i18n->get('dropdown.no'))));
$form->addInput(array('type'=>'hidden','name'=>'fav_report_changed'));
// Generate and Delete buttons.
$form->addInput(array('type'=>'submit','name'=>'btn_generate','value'=>$i18n->get('button.generate')));
$form->addInput(array('type'=>'submit','name'=>'btn_delete','value'=>$i18n->get('label.delete'),'onclick'=>"return confirm('".$i18n->get('form.reports.confirm_delete')."')"));
// Dropdown for clients if the clients plugin is enabled.
$showClient = $user->isPluginEnabled('cl') && !$user->isClient();
$client_list = array();
if ($showClient) {
if ($user->can('view_reports') || $user->can('view_all_reports')) {
$client_list = ttClientHelper::getClients(); // TODO: improve getClients for "view_reports"
// by filtering out not relevant clients.
} else
$client_list = ttClientHelper::getClientsForUser();
if (count($client_list) == 0) $showClient = false;
}
if ($showClient) {
$form->addInput(array('type'=>'combobox',
'onchange'=>'fillProjectDropdown(this.value);',
'name'=>'client',
'data'=>$client_list,
'datakeys'=>array('id', 'name'),
'empty'=>array(''=>$i18n->get('dropdown.all'))));
}
// Add project dropdown.
$showProject = MODE_PROJECTS == $trackingMode || MODE_PROJECTS_AND_TASKS == $trackingMode;
$project_list = array();
if ($showProject) {
if ($user->can('view_reports') || $user->can('view_all_reports')) {
$config = new ttConfigHelper($user->getConfig());
$includeInactiveProjects = $config->getDefinedValue('report_inactive_projects');
$project_list = ttProjectHelper::getProjects($includeInactiveProjects);
} elseif ($user->isClient()) {
$project_list = ttProjectHelper::getProjectsForClient();
} else {
$project_list = ttProjectHelper::getAssignedProjects($user->getUser());
}
if (count($project_list) == 0) $showProject = false;
}
if ($showProject) {
$form->addInput(array('type'=>'multipleselectcombobox',
'onchange'=>'fillTaskDropdown();selectAssignedUsers();',
'name'=>'project', // Multiple select now, but the name without "[]" in the end because we can't use it in reports.tpl.
// Example: {$forms.reportForm.project.control}, we can't use {$forms.reportForm.project[].control}.
// This creates an ugly complication:
// Form.class.php addInput adds "[]" to a multiple select combobox element name.
// When we verify bean in a form post, the name is "project".
// But if bean is loaded from session, the name is "project[]".
// It is unclear how to deal with this properly.
//'multiple'=>true,
'data'=>$project_list,
'datakeys'=>array('id','name'),
'empty'=>array(''=>$i18n->get('dropdown.all'))));
}
// Add task dropdown.
$showTask = MODE_PROJECTS_AND_TASKS == $trackingMode;
$task_list = array();
if ($showTask) {
$task_list = ttGroupHelper::getActiveTasks();
if (count($task_list) == 0) $showTask = false;
}
if ($showTask) {
$form->addInput(array('type'=>'combobox',
'name'=>'task',
'data'=>$task_list,
'datakeys'=>array('id','name'),
'empty'=>array(''=>$i18n->get('dropdown.all'))));
}
// Add billable dropdown.
$showBillable = $user->isPluginEnabled('iv');
if ($showBillable) {
$include_options = array('1'=>$i18n->get('form.reports.include_billable'),
'2'=>$i18n->get('form.reports.include_not_billable'));
$form->addInput(array('type'=>'combobox',
'name'=>'include_records', // TODO: how about a better name here?
'data'=>$include_options,
'empty'=>array(''=>$i18n->get('dropdown.all'))));
}
// Add invoiced / not invoiced selector.
$showInvoiceDropdown = $user->isPluginEnabled('iv') && $user->can('manage_invoices');
if ($showInvoiceDropdown) {
$invoice_options = array('1'=>$i18n->get('form.reports.include_invoiced'),
'2'=>$i18n->get('form.reports.include_not_invoiced'));
$form->addInput(array('type'=>'combobox',
'name'=>'invoice',
'data'=>$invoice_options,
'empty'=>array(''=>$i18n->get('dropdown.all'))));
}
$showInvoiceCheckbox = $user->isPluginEnabled('iv') && ($user->can('manage_invoices') || $user->isClient());
// Add paid status selector.
$showPaidStatus = $user->isPluginEnabled('ps') && $user->can('manage_invoices');
if ($showPaidStatus) {
$form->addInput(array('type'=>'combobox',
'name'=>'paid_status',
'data'=>array('1'=>$i18n->get('dropdown.paid'),'2'=>$i18n->get('dropdown.not_paid')),
'empty'=>array(''=>$i18n->get('dropdown.all'))
));
}
// Add approved / not approved selector.
$showApproved = $user->isPluginEnabled('ap') &&
($user->can('view_own_reports') || $user->can('view_reports') ||
$user->can('view_all_reports') || ($user->can('view_client_reports') && $user->can('view_client_unapproved')));
if ($showApproved) {
$form->addInput(array('type'=>'combobox',
'name'=>'approved',
'data'=>array('1'=>$i18n->get('dropdown.approved'),'2'=>$i18n->get('dropdown.not_approved')),
'empty'=>array(''=>$i18n->get('dropdown.all'))
));
}
// Add timesheet assignment selector.
$showTimesheetDropdown = $user->isPluginEnabled('ts');
if ($showTimesheetDropdown) {
$form->addInput(array('type'=>'combobox',
'name'=>'timesheet',
'data'=>array(TIMESHEET_NOT_ASSIGNED=>$i18n->get('form.reports.include_not_assigned'),
TIMESHEET_ASSIGNED=>$i18n->get('form.reports.include_assigned'),
TIMESHEET_PENDING=>$i18n->get('form.reports.include_pending'),
TIMESHEET_APPROVED=>$i18n->get('dropdown.approved'),
TIMESHEET_NOT_APPROVED=>$i18n->get('dropdown.not_approved')),
'empty'=>array(''=>$i18n->get('dropdown.all'))
));
}
$showTimesheetCheckbox = $user->isPluginEnabled('ts');
// Add user table.
$showUsers = $user->can('view_reports') || $user->can('view_all_reports') || $user->isClient();
$user_list = $user_list_active = $user_list_inactive = array();
if ($showUsers) {
// Prepare user and assigned projects arrays.
if ($user->can('view_reports') || $user->can('view_all_reports')) {
$rank = $user->getMaxRankForGroup($user->getGroup());
if ($user->can('view_all_reports')) $max_rank = MAX_RANK;
if ($user->can('view_own_reports')) {
$options_active = array('max_rank'=>$max_rank,'include_self'=>true,'status'=>ACTIVE);
$options_inactive = array('max_rank'=>$max_rank,'include_self'=>true,'status'=>INACTIVE);
} else {
$options_active = array('max_rank'=>$max_rank,'status'=>ACTIVE);
$options_inactive = array('max_rank'=>$max_rank,'status'=>INACTIVE);
}
$active_users = $user->getUsers($options_active);
$inactive_users = $user->getUsers($options_inactive);
}
elseif ($user->isClient()) {
$options_active = array('status'=>ACTIVE);
$options_inactive = array('status'=>INACTIVE);
$active_users = ttGroupHelper::getUsersForClient($options_active);
$inactive_users = ttGroupHelper::getUsersForClient($options_inactive);
}
foreach ($active_users as $single_user) {
$user_list_active[$single_user['id']] = $single_user['name'];
$projects = ttProjectHelper::getAssignedProjects($single_user['id']);
if ($projects) {
foreach ($projects as $single_project) {
$assigned_projects[$single_user['id']][] = $single_project['id'];
}
}
}
$row_count = is_array($user_list_active) ? ceil(count($user_list_active)/3) : 1;
$form->addInput(array('type'=>'checkboxgroup',
'name'=>'users_active',
'data'=>$user_list_active,
'layout'=>'V',
'groupin'=>$row_count));
foreach ($inactive_users as $single_user) {
$user_list_inactive[$single_user['id']] = $single_user['name'];
$projects = ttProjectHelper::getAssignedProjects($single_user['id']);
if ($projects) {
foreach ($projects as $single_project) {
$assigned_projects[$single_user['id']][] = $single_project['id'];
}
}
}
$row_count = ceil(count($user_list_inactive)/3);
$form->addInput(array('type'=>'checkboxgroup',
'name'=>'users_inactive',
'data'=>$user_list_inactive,
'layout'=>'V',
'groupin'=>$row_count));
}
// Add control for time period.
$form->addInput(array('type'=>'combobox',
'name'=>'period',
'data'=>array(INTERVAL_THIS_MONTH=>$i18n->get('dropdown.current_month'),
INTERVAL_PREVIOUS_MONTH=>$i18n->get('dropdown.previous_month'),
INTERVAL_THIS_WEEK=>$i18n->get('dropdown.current_week'),
INTERVAL_PREVIOUS_WEEK=>$i18n->get('dropdown.previous_week'),
INTERVAL_THIS_DAY=>$i18n->get('dropdown.current_day'),
INTERVAL_PREVIOUS_DAY=>$i18n->get('dropdown.previous_day')),
'empty'=>array(''=>$i18n->get('dropdown.select'))));
// Add controls for start and end dates.
$form->addInput(array('type'=>'datefield','maxlength'=>'20','name'=>'start_date'));
$form->addInput(array('type'=>'datefield','maxlength'=>'20','name'=>'end_date'));
// Add control for notes containing.
$form->addInput(array('type'=>'text','maxlength'=>'80','name'=>'note_containing'));
// Add checkboxes for "Show fields" block.
if ($showClient)
$form->addInput(array('type'=>'checkbox','name'=>'chclient'));
if ($showProject)
$form->addInput(array('type'=>'checkbox','name'=>'chproject'));
if ($showTask)
$form->addInput(array('type'=>'checkbox','name'=>'chtask'));
if ($showInvoiceCheckbox)
$form->addInput(array('type'=>'checkbox','name'=>'chinvoice'));
if ($showPaidStatus)
$form->addInput(array('type'=>'checkbox','name'=>'chpaid'));
$showIP = $user->can('view_reports') || $user->can('view_all_reports');
if ($showIP)
$form->addInput(array('type'=>'checkbox','name'=>'chip'));
$recordType = $user->getRecordType();
$showStart = TYPE_START_FINISH == $recordType || TYPE_ALL == $recordType;
$showFinish = $showStart;
if ($showStart)
$form->addInput(array('type'=>'checkbox','name'=>'chstart'));
if ($showFinish)
$form->addInput(array('type'=>'checkbox','name'=>'chfinish'));
$form->addInput(array('type'=>'checkbox','name'=>'chduration'));
$form->addInput(array('type'=>'checkbox','name'=>'chnote'));
$form->addInput(array('type'=>'checkbox','name'=>'chcost'));
$showWorkUnits = $user->isPluginEnabled('wu');
if ($showWorkUnits)
$form->addInput(array('type'=>'checkbox','name'=>'chunits'));
if ($showTimesheetCheckbox)
$form->addInput(array('type'=>'checkbox','name'=>'chtimesheet'));
if ($showApproved)
$form->addInput(array('type'=>'checkbox','name'=>'chapproved'));
$showFiles = $user->isPluginEnabled('at');
if ($showFiles)
$form->addInput(array('type'=>'checkbox','name'=>'chfiles'));
// Add a hidden control for timesheet_user_id (who to generate a timesheet for).
if ($showTimesheetCheckbox)
$form->addInput(array('type'=>'hidden','name'=>'timesheet_user_id'));
// If we have time custom fields - add controls for them.
if (isset($custom_fields) && $custom_fields->timeFields) {
foreach ($custom_fields->timeFields as $timeField) {
$field_name = 'time_field_'.$timeField['id'];
$checkbox_field_name = 'show_'.$field_name;
if ($timeField['type'] == CustomFields::TYPE_TEXT) {
$form->addInput(array('type'=>'text','name'=>$field_name));
} elseif ($timeField['type'] == CustomFields::TYPE_DROPDOWN) {
$form->addInput(array('type'=>'combobox','name'=>$field_name,
'data'=>CustomFields::getOptions($timeField['id']),
'empty'=>array(''=>$i18n->get('dropdown.all'))));
}
// Also add a checkbox (to print the field or not).
$form->addInput(array('type'=>'checkbox','name'=>$checkbox_field_name));
}
}
// If we have user custom fields - add controls for them.
if (isset($custom_fields) && $custom_fields->userFields) {
foreach ($custom_fields->userFields as $userField) {
$field_name = 'user_field_'.$userField['id'];
$checkbox_field_name = 'show_'.$field_name;
if ($userField['type'] == CustomFields::TYPE_TEXT) {
$form->addInput(array('type'=>'text','name'=>$field_name,));
} elseif ($userField['type'] == CustomFields::TYPE_DROPDOWN) {
$form->addInput(array('type'=>'combobox','name'=>$field_name,
'data'=>CustomFields::getOptions($userField['id']),
'empty'=>array(''=>$i18n->get('dropdown.all'))));
}
// Also add a checkbox (to print the field or not).
$form->addInput(array('type'=>'checkbox','name'=>$checkbox_field_name));
}
}
// If we have projects custom fields - add controls for them.
if ($showProject && isset($custom_fields) && $custom_fields->projectFields) {
foreach ($custom_fields->projectFields as $projectField) {
$field_name = 'project_field_'.$projectField['id'];
$checkbox_field_name = 'show_'.$field_name;
if ($projectField['type'] == CustomFields::TYPE_TEXT) {
$form->addInput(array('type'=>'text','name'=>$field_name,));
} elseif ($projectField['type'] == CustomFields::TYPE_DROPDOWN) {
$form->addInput(array('type'=>'combobox','name'=>$field_name,
'data'=>CustomFields::getOptions($projectField['id']),
'empty'=>array(''=>$i18n->get('dropdown.all'))));
}
// Also add a checkbox (to print the field or not).
$form->addInput(array('type'=>'checkbox','name'=>$checkbox_field_name));
}
}
// Add group by control.
$group_by_options['no_grouping'] = $i18n->get('form.reports.group_by_no');
$group_by_options['date'] = $i18n->get('form.reports.group_by_date');
if ($user->can('view_reports') || $user->can('view_all_reports') || $user->isClient())
$group_by_options['user'] = $i18n->get('form.reports.group_by_user');
if ($user->isPluginEnabled('cl') && !($user->isClient() && $user->client_id))
$group_by_options['client'] = $i18n->get('form.reports.group_by_client');
if (MODE_PROJECTS == $trackingMode || MODE_PROJECTS_AND_TASKS == $trackingMode)
$group_by_options['project'] = $i18n->get('form.reports.group_by_project');
if (MODE_PROJECTS_AND_TASKS == $trackingMode)
$group_by_options['task'] = $i18n->get('form.reports.group_by_task');
// If we have time custom fields - add group by options for them.
if (isset($custom_fields) && $custom_fields->timeFields) {
foreach ($custom_fields->timeFields as $timeField) {
$field_name = 'time_field_'.$timeField['id'];
$group_by_options[$field_name] = $timeField['label'];
}
}
// If we have user custom fields - add group by options for them.
if (isset($custom_fields) && $custom_fields->userFields) {
foreach ($custom_fields->userFields as $userField) {
$field_name = 'user_field_'.$userField['id'];
$group_by_options[$field_name] = $userField['label'];
}
}
// If we have project custom fields - add group by options for them.
if (isset($custom_fields) && $custom_fields->projectFields) {
foreach ($custom_fields->projectFields as $projectField) {
$field_name = 'project_field_'.$projectField['id'];
$group_by_options[$field_name] = $projectField['label'];
}
}
$group_by_options_size = sizeof($group_by_options);
$form->addInput(array('type'=>'combobox','onchange'=>'handleCheckboxes();','name'=>'group_by1','data'=>$group_by_options));
if ($group_by_options_size > 2) $form->addInput(array('type'=>'combobox','onchange'=>'handleCheckboxes();','name'=>'group_by2','data'=>$group_by_options));
if ($group_by_options_size > 3) $form->addInput(array('type'=>'combobox','onchange'=>'handleCheckboxes();','name'=>'group_by3','data'=>$group_by_options));
$form->addInput(array('type'=>'checkbox','name'=>'chtotalsonly'));
// Add text field for a new favorite report name.
$form->addInput(array('type'=>'text','name'=>'new_fav_report','maxlength'=>'30'));
// Save button.
$form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->get('button.save')));
$form->addInput(array('type'=>'submit','name'=>'btn_generate','value'=>$i18n->get('button.generate')));
// Create a bean (which is a mechanism to remember form values in session).
$bean = new ActionForm('reportBean', $form, $request);
// At this point form values are obtained from session if they are there.
if ($request->isGet() && !$bean->isSaved()) {
// No previous form data were found in session. Use the following default values.
$form->setValueByElement('users_active', array_keys((array)$user_list_active));
$period = new ttPeriod(new ttDate(), INTERVAL_THIS_MONTH);
$form->setValueByElement('start_date', $period->getStartDate($user->getDateFormat()));
$form->setValueByElement('end_date', $period->getEndDate($user->getDateFormat()));
$form->setValueByElement('chclient', '1');
$form->setValueByElement('chstart', '1');
$form->setValueByElement('chfinish', '1');
$form->setValueByElement('chduration', '1');
$form->setValueByElement('chproject', '1');
$form->setValueByElement('chtask', '1');
$form->setValueByElement('chnote', '1');
$form->setValueByElement('chcost', '0');
$form->setValueByElement('chtimesheet', '0');
$form->setValueByElement('chip', '0');
$form->setValueByElement('chapproved', '0');
$form->setValueByElement('chpaid', '0');
$form->setValueByElement('chunits', '0');
$form->setValueByElement('chinvoice', '0');
$form->setValueByElement('chfiles', '1');
$form->setValueByElement('chtotalsonly', '0');
}
$form->setValueByElement('fav_report_changed','');
// Disable the Delete button when no favorite report is selected.
if (!$bean->getAttribute('favorite_report') || ($bean->getAttribute('favorite_report') == -1))
$form->getElement('btn_delete')->setEnabled(false);
if ($request->isPost()) {
// Verify bean. Do not proceed with bogus post data.
if (!ttReportHelper::verifyBean($bean)) $err->add($i18n->get('error.sys'));
if($err->no()) {
if (!$bean->getAttribute('btn_generate') && $request->getParameter('fav_report_changed')) {
// User changed favorite report. We need to load new values into the form.
if ($bean->getAttribute('favorite_report')) {
// This loads new favorite report options into the bean (into our form).
ttFavReportHelper::loadReport($bean);
// If user selected no favorite report - mark all user checkboxes (most probable scenario).
if ($bean->getAttribute('favorite_report') == -1) {
$form->setValueByElement('users_active', array_keys($user_list_active));
$form->setValueByElement('users_inactive', false);
}
// Save form data in session for future use.
$bean->saveBean();
header('Location: reports.php');
exit();
}
} elseif ($bean->getAttribute('btn_save')) {
// User clicked the Save button. We need to save form options as new favorite report.
// We check new_fav_report here, rather than in ttReportHelper::verifyBean to display a specific error, instead of 'error.sys'.
if (!ttValidString($bean->getAttribute('new_fav_report'))) $err->add($i18n->get('error.field'), $i18n->get('form.reports.save_as_favorite'));
if ($err->no()) {
$id = ttFavReportHelper::saveReport($bean);
if (!$id)
$err->add($i18n->get('error.db'));
if ($err->no()) {
$bean->setAttribute('favorite_report', $id);
$bean->saveBean();
header('Location: reports.php');
exit();
}
}
} elseif($bean->getAttribute('btn_delete')) {
// Delete button pressed. User wants to delete a favorite report.
if ($bean->getAttribute('favorite_report')) {
ttFavReportHelper::deleteReport($bean->getAttribute('favorite_report'));
// Load default report.
$bean->setAttribute('favorite_report','');
$bean->setAttribute('new_fav_report', $report_list[0]['name']);
ttFavReportHelper::loadReport($bean);
$form->setValueByElement('users', array_keys($user_list));
$bean->saveBean();
header('Location: reports.php');
exit();
}
} else {
// Generate button pressed. Check some values.
if (!$bean->getAttribute('period')) {
// Validate start date.
if (!ttValidDate($bean->getAttribute('start_date'))) $err->add($i18n->get('error.field'), $i18n->get('label.start_date'));
// Validate end date.
if (!ttValidDate($bean->getAttribute('end_date'))) $err->add($i18n->get('error.field'), $i18n->get('label.end_date'));
// Make sure that the end date is equal or after the start date.
if ($err->no()) {
$startDate = new ttDate($bean->getAttribute('start_date'), $user->getDateFormat());
$endDate = new ttDate($bean->getAttribute('end_date'), $user->getDateFormat());
if ($startDate->compare($endDate) > 0) {
$err->add($i18n->get('error.interval'), $i18n->get('label.end_date'), $i18n->get('label.start_date'));
}
}
}
$group_by1 = $bean->getAttribute('group_by1');
$group_by2 = $bean->getAttribute('group_by2');
$group_by3 = $bean->getAttribute('group_by3');
if (($group_by3 != null && $group_by3 != 'no_grouping') && ($group_by3 == $group_by1 || $group_by3 == $group_by2))
$err->add($i18n->get('error.field'), $i18n->get('form.reports.group_by'));
if (($group_by2 != null && $group_by2 != 'no_grouping') && ($group_by2 == $group_by1 || $group_by3 == $group_by2))
$err->add($i18n->get('error.field'), $i18n->get('form.reports.group_by'));
// TODO: review the above checks and possibly move some of them to verifyBean that we call when entering isPost above.
if ($err->no()) {
$bean->saveBean();
// Now we can go ahead and create a report.
header('Location: report.php');
exit();
}
}
} // if($err->no())
} // isPost
$smarty->assign('client_list', $client_list);
$smarty->assign('show_client', $showClient);
$smarty->assign('show_project', $showProject);
$smarty->assign('show_task', $showTask);
$smarty->assign('show_billable', $showBillable);
$smarty->assign('show_approved', $showApproved);
$smarty->assign('show_invoice_dropdown', $showInvoiceDropdown);
$smarty->assign('show_invoice_checkbox', $showInvoiceCheckbox);
$smarty->assign('show_paid_status', $showPaidStatus);
$smarty->assign('show_timesheet_dropdown', $showTimesheetDropdown);
$smarty->assign('show_timesheet_checkbox', $showTimesheetCheckbox);
$smarty->assign('show_active_users', $showUsers && $active_users);
$smarty->assign('show_inactive_users', $showUsers && $inactive_users);
$smarty->assign('show_start', $showStart);
$smarty->assign('show_finish', $showFinish);
$smarty->assign('show_work_units', $showWorkUnits);
$smarty->assign('show_ip', $showIP);
$smarty->assign('show_files', $showFiles);
$smarty->assign('project_list', $project_list);
$smarty->assign('task_list', $task_list);
$smarty->assign('assigned_projects', $assigned_projects);
$smarty->assign('forms', array($form->getName()=>$form->toArray()));
$smarty->assign('onload', 'onLoad="handleCheckboxes();fillDropdowns()"');
$smarty->assign('title', $i18n->get('title.reports'));
$smarty->assign('content_page_name', 'reports.tpl');
$smarty->display('index.tpl');