Changed a message after a date locking error.
[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   // This is a new date for the expense item.
144   $new_date = new DateAndTime($user->date_format, $cl_date);
145
146   // Prohibit creating entries in future.
147   if (defined('FUTURE_ENTRIES') && !isTrue(FUTURE_ENTRIES)) {
148     $browser_today = new DateAndTime(DB_DATEFORMAT, $request->getParameter('browser_today', null));
149     if ($new_date->after($browser_today))
150       $err->add($i18n->getKey('error.future_date'));
151   }
152
153   // Save record.
154   if ($request->getParameter('btn_save')) {
155     // We need to:
156     // 1) Prohibit updating locked entries (that are in locked range).
157     // 2) Prohibit saving unlocked entries into locked range.
158
159     // Now, step by step.
160     // 1) Prohibit saving locked entries in any form.
161     if ($user->isDateLocked($item_date))
162       $err->add($i18n->getKey('error.range_locked'));
163
164     // 2) Prohibit saving unlocked entries into locked range.
165     if ($err->no() && $user->isDateLocked($new_date))
166       $err->add($i18n->getKey('error.range_locked'));
167
168     // Now, an update.
169     if ($err->no()) {
170       if (ttExpenseHelper::update(array('id'=>$cl_id,'date'=>$new_date->toString(DB_DATEFORMAT),'user_id'=>$user->getActiveUser(),
171           'client_id'=>$cl_client,'project_id'=>$cl_project,'name'=>$cl_item_name,'cost'=>$cl_cost))) {
172         header('Location: expenses.php?date='.$new_date->toString(DB_DATEFORMAT));
173         exit();
174       }
175     }
176   }
177
178   // Save as new record.
179   if ($request->getParameter('btn_copy')) {
180     // We need to prohibit saving into locked interval.
181     if ($user->isDateLocked($new_date))
182       $err->add($i18n->getKey('error.range_locked'));
183
184     // Now, a new insert.
185     if ($err->no()) {
186       if (ttExpenseHelper::insert(array('date'=>$new_date->toString(DB_DATEFORMAT),'user_id'=>$user->getActiveUser(),
187         'client_id'=>$cl_client,'project_id'=>$cl_project,'name'=>$cl_item_name,'cost'=>$cl_cost,'status'=>1))) {
188         header('Location: expenses.php?date='.$new_date->toString(DB_DATEFORMAT));
189         exit();
190       } else
191         $err->add($i18n->getKey('error.db'));
192     }
193   }
194
195   if ($request->getParameter('btn_delete')) {
196     header("Location: expense_delete.php?id=$cl_id");
197     exit();
198   }
199 } // isPost
200
201 $smarty->assign('client_list', $client_list);
202 $smarty->assign('project_list', $project_list);
203 $smarty->assign('task_list', $task_list);
204 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
205 $smarty->assign('title', $i18n->getKey('title.edit_expense'));
206 $smarty->assign('content_page_name', 'expense_edit.tpl');
207 $smarty->display('index.tpl');