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('ttClientHelper');
 
  32 import('ttTeamHelper');
 
  35 if (!ttAccessCheck(right_manage_team)) {
 
  36   header('Location: access_denied.php');
 
  40 $cl_id = (int) $request->getParameter('id');
 
  42 $projects = ttTeamHelper::getActiveProjects($user->team_id);
 
  44 if ($request->isPost()) {
 
  45   $cl_name = trim($request->getParameter('name'));
 
  46   $cl_address = trim($request->getParameter('address'));
 
  47   $cl_tax = trim($request->getParameter('tax'));
 
  48   $cl_status = $request->getParameter('status');
 
  49   $cl_projects = $request->getParameter('projects');
 
  51   $client = ttClientHelper::getClient($cl_id, true);
 
  52   $cl_name = $client['name'];
 
  53   $cl_address = $client['address'];
 
  54   $cl_tax = $client['tax'];
 
  55   $cl_status = $client['status'];
 
  56   $assigned_projects = ttClientHelper::getAssignedProjects($cl_id);
 
  57   foreach($assigned_projects as $project_item) {
 
  58     $cl_projects[] = $project_item['id'];
 
  62 $form = new Form('clientForm');
 
  63 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_id));
 
  64 $form->addInput(array('type'=>'text','name'=>'name','maxlength'=>'100','value'=>$cl_name));
 
  65 $form->addInput(array('type'=>'textarea','name'=>'address','maxlength'=>'255','class'=>'mobile-textarea','value'=>$cl_address));
 
  66 $form->addInput(array('type'=>'floatfield','name'=>'tax','size'=>'10','format'=>'.2','value'=>$cl_tax));
 
  67 $form->addInput(array('type'=>'combobox','name'=>'status','value'=>$cl_status,
 
  68   'data'=>array(ACTIVE=>$i18n->getKey('dropdown.status_active'),INACTIVE=>$i18n->getKey('dropdown.status_inactive'))));
 
  69 if (MODE_PROJECTS == $user->tracking_mode || MODE_PROJECTS_AND_TASKS == $user->tracking_mode)
 
  70   $form->addInput(array('type'=>'checkboxgroup','name'=>'projects','data'=>$projects,'datakeys'=>array('id','name'),'layout'=>'H','value'=>$cl_projects));
 
  71 $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->getKey('button.save')));
 
  72 $form->addInput(array('type'=>'submit','name'=>'btn_copy','value'=>$i18n->getKey('button.copy')));
 
  73 $form->addInput(array('type'=>'submit','name'=>'btn_delete','value'=>$i18n->getKey('label.delete')));
 
  75 if ($request->isPost()) {
 
  76   // Validate user input.
 
  77   if (!ttValidString($cl_name)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.client_name'));
 
  78   if (!ttValidString($cl_address, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.client_address'));
 
  79   if (!ttValidFloat($cl_tax, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.tax'));
 
  82     if ($request->getParameter('btn_save')) {
 
  83       $client = ttClientHelper::getClientByName($cl_name);
 
  84       if (($client && ($cl_id == $client['id'])) || !$client) {
 
  85         if (ttClientHelper::update(array(
 
  88           'address' => $cl_address,
 
  90           'status' => $cl_status,
 
  91           'projects' => $cl_projects))) {
 
  92           header('Location: clients.php');
 
  95           $err->add($i18n->getKey('error.db'));
 
  97         $err->add($i18n->getKey('error.client_exists'));
 
 100     if ($request->getParameter('btn_copy')) {
 
 101       if (!ttClientHelper::getClientByName($cl_name)) {
 
 102         if (ttClientHelper::insert(array(
 
 103           'team_id' => $user->team_id,
 
 105           'address' => $cl_address,
 
 107           'status' => $cl_status,
 
 108           'projects' => $cl_projects))) {
 
 109           header('Location: clients.php');
 
 112           $err->add($i18n->getKey('error.db'));
 
 114         $err->add($i18n->getKey('error.client_exists'));
 
 117     if ($request->getParameter('btn_delete')) {
 
 118       header("Location: client_delete.php?id=$cl_id");
 
 124 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
 
 125 $smarty->assign('title', $i18n->getKey('title.edit_client'));
 
 126 $smarty->assign('content_page_name', 'mobile/client_edit.tpl');
 
 127 $smarty->display('mobile/index.tpl');