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('ttGroupHelper');
35 if (!ttAccessAllowed('manage_clients')) {
36 header('Location: access_denied.php');
39 if (!$user->isPluginEnabled('cl')) {
40 header('Location: feature_disabled.php');
43 $cl_id = (int)$request->getParameter('id');
44 $client = ttClientHelper::getClient($cl_id, true);
46 header('Location: access_denied.php');
49 // End of access checks.
51 $projects = ttGroupHelper::getActiveProjects();
53 if ($request->isPost()) {
54 $cl_name = trim($request->getParameter('name'));
55 $cl_address = trim($request->getParameter('address'));
56 $cl_tax = trim($request->getParameter('tax'));
57 $cl_status = $request->getParameter('status');
58 $cl_projects = $request->getParameter('projects');
60 $cl_name = $client['name'];
61 $cl_address = $client['address'];
62 $cl_tax = $client['tax'];
63 $cl_status = $client['status'];
64 $assigned_projects = ttClientHelper::getAssignedProjects($cl_id);
65 foreach($assigned_projects as $project_item) {
66 $cl_projects[] = $project_item['id'];
70 $show_projects = (MODE_PROJECTS == $user->getTrackingMode() || MODE_PROJECTS_AND_TASKS == $user->getTrackingMode()) && count($projects) > 0;
72 $form = new Form('clientForm');
73 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_id));
74 $form->addInput(array('type'=>'text','name'=>'name','maxlength'=>'100','value'=>$cl_name));
75 $form->addInput(array('type'=>'textarea','name'=>'address','maxlength'=>'255','class'=>'mobile-textarea','value'=>$cl_address));
76 $form->addInput(array('type'=>'floatfield','name'=>'tax','size'=>'10','format'=>'.2','value'=>$cl_tax));
77 $form->addInput(array('type'=>'combobox','name'=>'status','value'=>$cl_status,
78 'data'=>array(ACTIVE=>$i18n->get('dropdown.status_active'),INACTIVE=>$i18n->get('dropdown.status_inactive'))));
80 $form->addInput(array('type'=>'checkboxgroup','name'=>'projects','data'=>$projects,'datakeys'=>array('id','name'),'layout'=>'H','value'=>$cl_projects));
81 $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->get('button.save')));
82 $form->addInput(array('type'=>'submit','name'=>'btn_copy','value'=>$i18n->get('button.copy')));
83 $form->addInput(array('type'=>'submit','name'=>'btn_delete','value'=>$i18n->get('label.delete')));
85 if ($request->isPost()) {
86 // Validate user input.
87 if (!ttValidString($cl_name)) $err->add($i18n->get('error.field'), $i18n->get('label.client_name'));
88 if (!ttValidString($cl_address, true)) $err->add($i18n->get('error.field'), $i18n->get('label.client_address'));
89 if (!ttValidFloat($cl_tax, true)) $err->add($i18n->get('error.field'), $i18n->get('label.tax'));
92 if ($request->getParameter('btn_save')) {
93 $client = ttClientHelper::getClientByName($cl_name);
94 if (($client && ($cl_id == $client['id'])) || !$client) {
95 if (ttClientHelper::update(array('id' => $cl_id,
97 'address' => $cl_address,
99 'status' => $cl_status,
100 'projects' => $cl_projects))) {
101 header('Location: clients.php');
104 $err->add($i18n->get('error.db'));
106 $err->add($i18n->get('error.object_exists'));
109 if ($request->getParameter('btn_copy')) {
110 if (!ttClientHelper::getClientByName($cl_name)) {
111 if (ttClientHelper::insert(array('name' => $cl_name,
112 'address' => $cl_address,
114 'status' => $cl_status,
115 'projects' => $cl_projects))) {
116 header('Location: clients.php');
119 $err->add($i18n->get('error.db'));
121 $err->add($i18n->get('error.object_exists'));
124 if ($request->getParameter('btn_delete')) {
125 header("Location: client_delete.php?id=$cl_id");
131 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
132 $smarty->assign('show_projects', $show_projects);
133 $smarty->assign('title', $i18n->get('title.edit_client'));
134 $smarty->assign('content_page_name', 'mobile/client_edit.tpl');
135 $smarty->display('mobile/index.tpl');