Refactoring - more usage of ttUser::isPluginEnabled().
[timetracker.git] / expense_edit.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('ttTeamHelper');
32 import('DateAndTime');
33 import('ttExpenseHelper');
34
35 // Access check.
36 if (!ttAccessCheck(right_data_entry)) {
37   header('Location: access_denied.php');
38   exit();
39 }
40
41 $cl_id = $request->getParameter('id');
42
43 // Get the expense item we are editing.
44 $expense_item = ttExpenseHelper::getItem($cl_id, $user->getActiveUser());
45
46 // Prohibit editing invoiced items.
47 if ($expense_item['invoice_id']) die($i18n->getKey('error.sys'));
48
49 $item_date = new DateAndTime(DB_DATEFORMAT, $expense_item['date']);
50
51 // Initialize variables.
52 $cl_date = $cl_client = $cl_project = $cl_item_name = $cl_cost = null;
53 if ($request->isPost()) {
54   $cl_date = trim($request->getParameter('date'));
55   $cl_client = $request->getParameter('client');
56   $cl_project = $request->getParameter('project');
57   $cl_item_name = trim($request->getParameter('item_name'));
58   $cl_cost = trim($request->getParameter('cost'));
59 } else {
60   $cl_date = $item_date->toString($user->date_format);
61   $cl_client = $expense_item['client_id'];
62   $cl_project = $expense_item['project_id'];
63   $cl_item_name = $expense_item['name'];
64   $cl_cost = $expense_item['cost'];
65 }
66
67 // Initialize elements of 'expenseItemForm'.
68 $form = new Form('expenseItemForm');
69
70 // Dropdown for clients in MODE_TIME. Use all active clients.
71 if (MODE_TIME == $user->tracking_mode && $user->isPluginEnabled('cl')) {
72   $active_clients = ttTeamHelper::getActiveClients($user->team_id, true);
73   $form->addInput(array('type'=>'combobox',
74     'onchange'=>'fillProjectDropdown(this.value);',
75     'name'=>'client',
76     'style'=>'width: 250px;',
77     'value'=>$cl_client,
78     'data'=>$active_clients,
79     'datakeys'=>array('id', 'name'),
80     'empty'=>array(''=>$i18n->getKey('dropdown.select'))));
81   // Note: in other modes the client list is filtered to relevant clients only. See below.
82 }
83
84 if (MODE_PROJECTS == $user->tracking_mode || MODE_PROJECTS_AND_TASKS == $user->tracking_mode) {
85   // Dropdown for projects assigned to user.
86   $project_list = $user->getAssignedProjects();
87   $form->addInput(array('type'=>'combobox',
88     'name'=>'project',
89     'style'=>'width: 250px;',
90     'value'=>$cl_project,
91     'data'=>$project_list,
92     'datakeys'=>array('id','name'),
93     'empty'=>array(''=>$i18n->getKey('dropdown.select'))));
94
95   // Dropdown for clients if the clients plugin is enabled.
96   if ($user->isPluginEnabled('cl')) {
97     $active_clients = ttTeamHelper::getActiveClients($user->team_id, true);
98     // We need an array of assigned project ids to do some trimming. 
99     foreach($project_list as $project)
100       $projects_assigned_to_user[] = $project['id'];
101
102     // Build a client list out of active clients. Use only clients that are relevant to user.
103     // Also trim their associated project list to only assigned projects (to user).
104     foreach($active_clients as $client) {
105       $projects_assigned_to_client = explode(',', $client['projects']);
106       $intersection = array_intersect($projects_assigned_to_client, $projects_assigned_to_user);
107       if ($intersection) {
108         $client['projects'] = implode(',', $intersection);
109         $client_list[] = $client;
110       }
111     }
112     $form->addInput(array('type'=>'combobox',
113       'onchange'=>'fillProjectDropdown(this.value);',
114       'name'=>'client',
115       'style'=>'width: 250px;',
116       'value'=>$cl_client,
117       'data'=>$client_list,
118       'datakeys'=>array('id', 'name'),
119       'empty'=>array(''=>$i18n->getKey('dropdown.select'))));
120   }
121 }
122 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'item_name','style'=>'width: 250px;','value'=>$cl_item_name));
123 $form->addInput(array('type'=>'text','maxlength'=>'40','name'=>'cost','style'=>'width: 100px;','value'=>$cl_cost));
124 $form->addInput(array('type'=>'datefield','name'=>'date','maxlength'=>'20','value'=>$cl_date));
125 // Hidden control for record id.
126 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_id));
127 $form->addInput(array('type'=>'hidden','name'=>'browser_today','value'=>'')); // User current date, which gets filled in on btn_save or btn_copy click.
128 $form->addInput(array('type'=>'submit','name'=>'btn_save','onclick'=>'browser_today.value=get_date()','value'=>$i18n->getKey('button.save')));
129 $form->addInput(array('type'=>'submit','name'=>'btn_copy','onclick'=>'browser_today.value=get_date()','value'=>$i18n->getKey('button.copy')));
130 $form->addInput(array('type'=>'submit','name'=>'btn_delete','value'=>$i18n->getKey('label.delete')));
131
132 if ($request->isPost()) {
133   // Validate user input.
134   if ($user->isPluginEnabled('cl') && $user->isPluginEnabled('cm') && !$cl_client)
135     $err->add($i18n->getKey('error.client'));
136   if (MODE_PROJECTS == $user->tracking_mode || MODE_PROJECTS_AND_TASKS == $user->tracking_mode) {
137     if (!$cl_project) $err->add($i18n->getKey('error.project'));
138   }
139   if (!ttValidString($cl_item_name)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.item'));
140   if (!ttValidFloat($cl_cost)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.cost'));
141   if (!ttValidDate($cl_date)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.date'));
142
143   // Determine lock date.
144   $lock_interval = $user->lock_interval;
145   $lockdate = 0;
146   if ($lock_interval > 0) {
147     $lockdate = new DateAndTime();
148     $lockdate->decDay($lock_interval);
149   }
150
151   // This is a new date for the expense item.
152   $new_date = new DateAndTime($user->date_format, $cl_date);
153
154   // Prohibit creating entries in future.
155   if (defined('FUTURE_ENTRIES') && !isTrue(FUTURE_ENTRIES)) {
156     $browser_today = new DateAndTime(DB_DATEFORMAT, $request->getParameter('browser_today', null));
157     if ($new_date->after($browser_today))
158       $err->add($i18n->getKey('error.future_date'));
159   }
160
161   // Save record.
162   if ($request->getParameter('btn_save')) {
163     // We need to:
164     // 1) Prohibit updating locked entries (that are in locked interval).
165     // 2) Prohibit saving unlocked entries into locked interval.
166
167     // Now, step by step.
168     // 1) Prohibit updating locked entries.
169     if($lockdate && $item_date->before($lockdate))
170       $err->add($i18n->getKey('error.period_locked'));
171     // 2) Prohibit saving completed unlocked entries into locked interval.
172     if($err->no() && $lockdate && $new_date->before($lockdate))
173       $err->add($i18n->getKey('error.period_locked'));
174
175     // Now, an update.
176     if ($err->no()) {
177       if (ttExpenseHelper::update(array('id'=>$cl_id,'date'=>$new_date->toString(DB_DATEFORMAT),'user_id'=>$user->getActiveUser(),
178           'client_id'=>$cl_client,'project_id'=>$cl_project,'name'=>$cl_item_name,'cost'=>$cl_cost))) {
179         header('Location: expenses.php?date='.$new_date->toString(DB_DATEFORMAT));
180         exit();
181       }
182     }
183   }
184
185   // Save as new record.
186   if ($request->getParameter('btn_copy')) {
187     // We need to prohibit saving into locked interval.
188     if($lockdate && $new_date->before($lockdate))
189       $err->add($i18n->getKey('error.period_locked'));
190
191     // Now, a new insert.
192     if ($err->no()) {
193       if (ttExpenseHelper::insert(array('date'=>$new_date->toString(DB_DATEFORMAT),'user_id'=>$user->getActiveUser(),
194         'client_id'=>$cl_client,'project_id'=>$cl_project,'name'=>$cl_item_name,'cost'=>$cl_cost,'status'=>1))) {
195         header('Location: expenses.php?date='.$new_date->toString(DB_DATEFORMAT));
196         exit();
197       } else
198         $err->add($i18n->getKey('error.db'));
199     }
200   }
201
202   if ($request->getParameter('btn_delete')) {
203     header("Location: expense_delete.php?id=$cl_id");
204     exit();
205   }
206 } // isPost
207
208 $smarty->assign('client_list', $client_list);
209 $smarty->assign('project_list', $project_list);
210 $smarty->assign('task_list', $task_list);
211 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
212 $smarty->assign('title', $i18n->getKey('title.edit_expense'));
213 $smarty->assign('content_page_name', 'expense_edit.tpl');
214 $smarty->display('index.tpl');