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.
 
  11 // | There are only two ways to violate the license:
 
  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).
 
  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).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  29 require_once('initialize.php');
 
  31 import('ttTeamHelper');
 
  32 import('DateAndTime');
 
  33 import('ttExpenseHelper');
 
  36 if (!ttAccessCheck(right_data_entry)) {
 
  37   header('Location: access_denied.php');
 
  41 $cl_id = $request->getParameter('id');
 
  43 // Get the expense item we are editing.
 
  44 $expense_item = ttExpenseHelper::getItem($cl_id, $user->getActiveUser());
 
  46 // Prohibit editing invoiced items.
 
  47 if ($expense_item['invoice_id']) die($i18n->getKey('error.sys'));
 
  49 $item_date = new DateAndTime(DB_DATEFORMAT, $expense_item['date']);
 
  51 // Initialize variables.
 
  52 $cl_date = $cl_client = $cl_project = $cl_item_name = $cl_cost = null;
 
  53 if ($request->getMethod() == 'POST') {
 
  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'));
 
  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'];
 
  67 // Initialize elements of 'expenseItemForm'.
 
  68 $form = new Form('expenseItemForm');
 
  70 // Dropdown for clients in MODE_TIME. Use all active clients.
 
  71 if (MODE_TIME == $user->tracking_mode && in_array('cl', explode(',', $user->plugins))) {
 
  72   $active_clients = ttTeamHelper::getActiveClients($user->team_id, true);
 
  73   $form->addInput(array('type'=>'combobox',
 
  74     'onchange'=>'fillProjectDropdown(this.value);',
 
  76     'style'=>'width: 250px;',
 
  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.
 
  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',
 
  89     'style'=>'width: 250px;',
 
  91     'data'=>$project_list,
 
  92     'datakeys'=>array('id','name'),
 
  93     'empty'=>array(''=>$i18n->getKey('dropdown.select'))));
 
  95   // Dropdown for clients if the clients plugin is enabled.
 
  96   if (in_array('cl', explode(',', $user->plugins))) {
 
  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'];
 
 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);
 
 108         $client['projects'] = implode(',', $intersection);
 
 109         $client_list[] = $client;
 
 112     $form->addInput(array('type'=>'combobox',
 
 113       'onchange'=>'fillProjectDropdown(this.value);',
 
 115       'style'=>'width: 250px;',
 
 117       'data'=>$client_list,
 
 118       'datakeys'=>array('id', 'name'),
 
 119       'empty'=>array(''=>$i18n->getKey('dropdown.select'))));
 
 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')));
 
 132 if ($request->getMethod() == 'POST') {
 
 133   // Validate user input.
 
 134   if (in_array('cl', explode(',', $user->plugins)) && in_array('cm', explode(',', $user->plugins)) && !$cl_client)
 
 135     $errors->add($i18n->getKey('error.client'));
 
 136   if (MODE_PROJECTS == $user->tracking_mode || MODE_PROJECTS_AND_TASKS == $user->tracking_mode) {
 
 137     if (!$cl_project) $errors->add($i18n->getKey('error.project'));
 
 139   if (!ttValidString($cl_item_name)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.item'));
 
 140   if (!ttValidFloat($cl_cost)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.cost'));
 
 141   if (!ttValidDate($cl_date)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.date'));
 
 143   // Determine lock date.
 
 144   $lock_interval = $user->lock_interval;
 
 146   if ($lock_interval > 0) {
 
 147     $lockdate = new DateAndTime();
 
 148     $lockdate->decDay($lock_interval);
 
 151   // This is a new date for the expense item.
 
 152   $new_date = new DateAndTime($user->date_format, $cl_date);
 
 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       $errors->add($i18n->getKey('error.future_date'));
 
 162   if ($request->getParameter('btn_save')) {
 
 164     // 1) Prohibit updating locked entries (that are in locked interval).
 
 165     // 2) Prohibit saving unlocked entries into locked interval.
 
 167     // Now, step by step.
 
 168     // 1) Prohibit updating locked entries.
 
 169     if($lockdate && $item_date->before($lockdate))
 
 170       $errors->add($i18n->getKey('error.period_locked'));        
 
 171     // 2) Prohibit saving completed unlocked entries into locked interval.
 
 172     if($errors->no() && $lockdate && $new_date->before($lockdate))
 
 173       $errors->add($i18n->getKey('error.period_locked'));        
 
 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));
 
 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       $errors->add($i18n->getKey('error.period_locked'));
 
 191     // Now, a new insert.
 
 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));
 
 198         $errors->add($i18n->getKey('error.db'));
 
 202   if ($request->getParameter('btn_delete')) {
 
 203     header("Location: expense_delete.php?id=$cl_id");
 
 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');