forked from anuko/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
expenses.php
253 lines (232 loc) · 10 KB
/
expenses.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
<?php
/* Copyright (c) Anuko International Ltd. https://www.anuko.com
License: See license.txt */
require_once('initialize.php');
import('form.Form');
import('ttUserHelper');
import('ttGroupHelper');
import('ttDate');
import('ttTimeHelper');
import('ttExpenseHelper');
import('ttFileHelper');
// Access checks.
if (!(ttAccessAllowed('track_own_expenses') || ttAccessAllowed('track_expenses'))) {
header('Location: access_denied.php');
exit();
}
if (!$user->isPluginEnabled('ex')) {
header('Location: feature_disabled.php');
exit();
}
if (!$user->exists()) {
header('Location: access_denied.php'); // Nobody to enter expenses for.
exit();
}
if ($user->behalf_id && (!$user->can('track_expenses') || !$user->checkBehalfId())) {
header('Location: access_denied.php'); // Trying on behalf, but no right or wrong user.
exit();
}
if (!$user->behalf_id && !$user->can('track_own_expenses') && !$user->adjustBehalfId()) {
header('Location: access_denied.php'); // Trying as self, but no right for self, and noone to work on behalf.
exit();
}
if ($request->isPost() && $request->getParameter('user')) {
$posted_user_id = $request->getParameter('user');
if (!ttValidInteger($posted_user_id) && !$user->isUserValid($posted_user_id)) {
header('Location: access_denied.php'); // Wrong user id on post.
exit();
}
}
// If we are passed in a date, make sure it is in correct format.
$date = $request->getParameter('date');
if ($date && !ttValidDbDateFormatDate($date)) {
header('Location: access_denied.php');
exit();
}
if ($request->isPost()) {
// Validate that browser_today parameter is in correct format.
$browser_today = $request->getParameter('browser_today');
if ($browser_today && !ttValidDbDateFormatDate($browser_today)) {
header('Location: access_denied.php');
exit();
}
}
// End of access checks.
// Determine user for which we display this page.
$userChanged = (int)$request->getParameter('user_changed');
if ($request->isPost() && $userChanged) {
$user_id = (int)$request->getParameter('user');
$user->setOnBehalfUser($user_id);
} else {
$user_id = $user->getUser();
}
// Initialize and store date in session.
$cl_date = $request->getParameter('date', @$_SESSION['date']);
$selected_date = new ttDate($cl_date);
if(!$cl_date)
$cl_date = $selected_date->toString();
$_SESSION['date'] = $cl_date;
$tracking_mode = $user->getTrackingMode();
$show_project = MODE_PROJECTS == $tracking_mode || MODE_PROJECTS_AND_TASKS == $tracking_mode;
$showFiles = $user->isPluginEnabled('at');
// Initialize variables.
$cl_client = $request->getParameter('client', ($request->isPost() ? null : @$_SESSION['client']));
$_SESSION['client'] = $cl_client;
$cl_project = $request->getParameter('project', ($request->isPost() ? null : @$_SESSION['project']));
$_SESSION['project'] = $cl_project;
$cl_item_name = $request->getParameter('item_name');
$cl_cost = $request->getParameter('cost');
// Elements of expensesForm.
$form = new Form('expensesForm');
$largeScreenCalendarRowSpan = 1; // Number of rows calendar spans on large screens.
if ($user->can('track_expenses')) {
$rank = $user->getMaxRankForGroup($user->getGroup());
if ($user->can('track_own_expenses'))
$options = array('status'=>ACTIVE,'max_rank'=>$rank,'include_self'=>true,'self_first'=>true);
else
$options = array('status'=>ACTIVE,'max_rank'=>$rank);
$user_list = $user->getUsers($options);
if (count($user_list) >= 1) {
$form->addInput(array('type'=>'combobox',
'onchange'=>'this.form.user_changed.value=1;this.form.submit();',
'name'=>'user',
'value'=>$user_id,
'data'=>$user_list,
'datakeys'=>array('id','name')));
$form->addInput(array('type'=>'hidden','name'=>'user_changed'));
$largeScreenCalendarRowSpan += 2;
$smarty->assign('user_dropdown', 1);
}
}
// Dropdown for clients in MODE_TIME. Use all active clients.
if (MODE_TIME == $tracking_mode && $user->isPluginEnabled('cl')) {
$active_clients = ttGroupHelper::getActiveClients(true);
$form->addInput(array('type'=>'combobox',
'onchange'=>'fillProjectDropdown(this.value);',
'name'=>'client',
'value'=>$cl_client,
'data'=>$active_clients,
'datakeys'=>array('id', 'name'),
'empty'=>array(''=>$i18n->get('dropdown.select'))));
// Note: in other modes the client list is filtered to relevant clients only. See below.
$largeScreenCalendarRowSpan += 2;
}
if ($show_project) {
// Dropdown for projects assigned to user.
$project_list = $user->getAssignedProjects();
$form->addInput(array('type'=>'combobox',
'name'=>'project',
'value'=>$cl_project,
'data'=>$project_list,
'datakeys'=>array('id','name'),
'empty'=>array(''=>$i18n->get('dropdown.select'))));
$largeScreenCalendarRowSpan += 2;
// Dropdown for clients if the clients plugin is enabled.
$client_list = array();
if ($user->isPluginEnabled('cl')) {
$active_clients = ttGroupHelper::getActiveClients(true);
// We need an array of assigned project ids to do some trimming.
foreach($project_list as $project)
$projects_assigned_to_user[] = $project['id'];
// Build a client list out of active clients. Use only clients that are relevant to user.
// Also trim their associated project list to only assigned projects (to user).
foreach($active_clients as $client) {
$projects_assigned_to_client = explode(',', $client['projects']);
$intersection = array_intersect($projects_assigned_to_client, $projects_assigned_to_user);
if ($intersection) {
$client['projects'] = implode(',', $intersection);
$client_list[] = $client;
}
}
$form->addInput(array('type'=>'combobox',
'onchange'=>'fillProjectDropdown(this.value);',
'name'=>'client',
'value'=>$cl_client,
'data'=>$client_list,
'datakeys'=>array('id', 'name'),
'empty'=>array(''=>$i18n->get('dropdown.select'))));
$largeScreenCalendarRowSpan += 2;
}
}
// If predefined expenses are configured, add controls to select an expense and quantity.
$predefined_expenses = ttGroupHelper::getPredefinedExpenses();
if ($predefined_expenses) {
$form->addInput(array('type'=>'combobox',
'onchange'=>'recalculateCost();',
'name'=>'predefined_expense',
'data'=>$predefined_expenses,
'datakeys'=>array('id', 'name'),
'empty'=>array(''=>$i18n->get('dropdown.select'))));
$largeScreenCalendarRowSpan += 2;
$form->addInput(array('type'=>'text','onchange'=>'recalculateCost();','maxlength'=>'40','name'=>'quantity'));
$largeScreenCalendarRowSpan += 2;
}
$form->addInput(array('type'=>'textarea','maxlength'=>'800','name'=>'item_name','value'=>$cl_item_name));
$largeScreenCalendarRowSpan += 2;
$form->addInput(array('type'=>'text','maxlength'=>'40','name'=>'cost','value'=>$cl_cost));
$largeScreenCalendarRowSpan += 2;
if ($showFiles) {
$form->addInput(array('type'=>'upload','name'=>'newfile','value'=>$i18n->get('button.submit')));
$largeScreenCalendarRowSpan += 2;
}
$form->addInput(array('type'=>'calendar','name'=>'date','highlight'=>'expenses','value'=>$cl_date)); // calendar
$form->addInput(array('type'=>'hidden','name'=>'browser_today','value'=>'')); // User current date, which gets filled in on btn_submit click.
$form->addInput(array('type'=>'submit','name'=>'btn_submit','onclick'=>'browser_today.value=get_date()','value'=>$i18n->get('button.submit')));
// Submit.
if ($request->isPost()) {
if ($request->getParameter('btn_submit')) {
// Use the "limit" plugin if we have one. Ignore include errors.
// The "limit" plugin is not required for normal operation of Time Tracker.
@include('plugins/limit/access_check.php');
// Validate user input.
if ($user->isPluginEnabled('cl') && $user->isOptionEnabled('client_required') && !$cl_client)
$err->add($i18n->get('error.client'));
if ($show_project && !$cl_project)
$err->add($i18n->get('error.project'));
if (!ttValidString($cl_item_name)) $err->add($i18n->get('error.field'), $i18n->get('label.comment'));
if (!ttValidFloat($cl_cost)) $err->add($i18n->get('error.field'), $i18n->get('label.cost'));
// Prohibit creating entries in future.
if (!$user->isOptionEnabled('future_entries')) {
$browser_today = new ttDate($request->getParameter('browser_today', null));
$server_tomorrow = new ttDate();
$server_tomorrow->incrementDay();
if ($selected_date->after($browser_today) || $selected_date->after($server_tomorrow))
$err->add($i18n->get('error.future_date'));
}
// Finished validating input data.
// Prohibit creating entries in locked range.
if ($user->isDateLocked($selected_date))
$err->add($i18n->get('error.range_locked'));
// Insert record.
if ($err->no()) {
$id = ttExpenseHelper::insert(array('date'=>$cl_date,'client_id'=>$cl_client,
'project_id'=>$cl_project,'name'=>$cl_item_name,'cost'=>$cl_cost,'status'=>1));
// Put a new file in storage if we have it.
if ($id && $showFiles && $_FILES['newfile']['name']) {
$fileHelper = new ttFileHelper($err);
$fields = array('entity_type'=>'expense',
'entity_id' => $id,
'file_name' => $_FILES['newfile']['name']);
$fileHelper->putFile($fields);
}
if ($id) {
header('Location: expenses.php');
exit();
} else
$err->add($i18n->get('error.db'));
}
}
}
$smarty->assign('large_screen_calendar_row_span', $largeScreenCalendarRowSpan);
$smarty->assign('forms', array($form->getName()=>$form->toArray()));
$smarty->assign('show_project', $show_project);
$smarty->assign('show_files', $showFiles);
$smarty->assign('day_total', ttExpenseHelper::getTotalForDay($cl_date));
$smarty->assign('expense_items', ttExpenseHelper::getItems($cl_date, $showFiles));
$smarty->assign('predefined_expenses', $predefined_expenses);
$smarty->assign('client_list', $client_list);
$smarty->assign('project_list', $project_list);
$smarty->assign('timestring', $selected_date->toString($user->getDateFormat()));
$smarty->assign('title', $i18n->get('title.expenses'));
$smarty->assign('content_page_name', 'expenses.tpl');
$smarty->display('index.tpl');