More progress on timesheet approval workflow.
[timetracker.git] / timesheet_view.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('ttTimesheetHelper');
31
32 // Access checks.
33 if (!(ttAccessAllowed('view_own_timesheets') || ttAccessAllowed('view_timesheets') || ttAccessAllowed('view_all_timesheets') || ttAccessAllowed('view_client_timesheets'))) {
34   header('Location: access_denied.php');
35   exit();
36 }
37 if (!$user->isPluginEnabled('ts')) {
38   header('Location: feature_disabled.php');
39   exit();
40 }
41 $timesheet_id = (int)$request->getParameter('id');
42 $timesheet = ttTimesheetHelper::getTimesheet($timesheet_id);
43 if (!$timesheet) {
44   header('Location: access_denied.php');
45   exit();
46 }
47 // TODO: add other checks here for timesheet being appropriate for user role.
48 // TODO: if this is a timeheet submit, validate approver id, too.
49 // End of access checks.
50
51 $options = ttTimesheetHelper::getReportOptions($timesheet);
52 $subtotals = ttReportHelper::getSubtotals($options);
53 $totals = ttReportHelper::getTotals($options);
54 $notClient = !$user->isClient();
55
56 // Determine which controls to show and obtain date for them.
57 $showSubmit = $notClient && !$timesheet['submit_status'];
58 if ($showSubmit) $approvers = ttTimesheetHelper::getApprovers($timesheet['user_id']);
59 $canApprove = $user->can('approve_timesheets') || $user_>can('approve_all_timesheets');
60 $showApprove = $notClient && $timesheet['submit_status'] && !$timesheet['approval_status'];
61
62 // Add a form with controls.
63 $form = new Form('timesheetForm');
64 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$timesheet['id']));
65
66 if ($showSubmit) {
67   if (count($approvers) >= 1) {
68     $form->addInput(array('type'=>'combobox',
69       'name'=>'approver',
70       'style'=>'width: 200px;',
71       'data'=>$approvers,
72       'datakeys'=>array('id','name')));
73   }
74   $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->get('button.submit')));
75 }
76
77 if ($showApprove) {
78   $form->addInput(array('type'=>'submit','name'=>'btn_approve','value'=>$i18n->get('button.approve')));
79   $form->addInput(array('type'=>'submit','name'=>'btn_disapprove','value'=>$i18n->get('button.disapprove')));
80 }
81
82 // Submit.
83 if ($request->isPost()) {
84   if ($request->getParameter('btn_submit')) {
85     $fields = array('timesheet_id' => $timesheet['id'],
86       'approver_id' => $approver_id); // TODO: obtain (and check) approver id above during access checks.
87     if (ttTimesheetHelper::submitTimesheet($fields)) {
88       // Redirect to self.
89       header('Location: timesheet_view.php?id='.$timesheet['id']);
90       exit();
91     } else
92       $err->add($i18n->get('error.db'));
93   }
94 }
95
96 $smarty->assign('not_client', $notClient);
97 $smarty->assign('group_by_header', ttReportHelper::makeGroupByHeader($options));
98 $smarty->assign('timesheet', $timesheet);
99 $smarty->assign('subtotals', $subtotals);
100 $smarty->assign('totals', $totals);
101 $smarty->assign('show_submit', $showSubmit);
102 $smarty->assign('show_approve', $showApprove);
103 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
104 $smarty->assign('title', $i18n->get('title.timesheet'));
105 $smarty->assign('content_page_name', 'timesheet_view.tpl');
106 $smarty->display('index.tpl');