forked from daN4cat/PHP-Point-Of-Sale
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemployee.php
More file actions
329 lines (283 loc) · 8.63 KB
/
employee.php
File metadata and controls
329 lines (283 loc) · 8.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
<?php
class Employee extends Person
{
/*
Determines if a given person_id is an employee
*/
function exists($person_id)
{
$this->db->from('employees');
$this->db->join('people', 'people.person_id = employees.person_id');
$this->db->where('employees.person_id',$person_id);
$this->db->where('deleted',0);
$query = $this->db->get();
return ($query->num_rows()==1);
}
/*
Returns all the employees
*/
function get_all()
{
$this->db->from('employees');
$this->db->where('deleted',0);
$this->db->join('people','employees.person_id=people.person_id');
$this->db->order_by("last_name", "asc");
return $this->db->get();
}
/*
Gets information about a particular employee
*/
function get_info($employee_id)
{
$this->db->from('employees');
$this->db->join('people', 'people.person_id = employees.person_id');
$this->db->where('employees.person_id',$employee_id);
$this->db->where('deleted',0);
$query = $this->db->get();
if($query->num_rows()==1)
{
return $query->row();
}
else
{
//Get empty base parent object, as $employee_id is NOT an employee
$person_obj=parent::get_info(-1);
//Get all the fields from employee table
$fields = $this->db->list_fields('employees');
//append those fields to base parent object, we we have a complete empty object
foreach ($fields as $field)
{
$person_obj->$field='';
}
return $person_obj;
}
}
/*
Gets information about multiple employees
*/
function get_multiple_info($employee_ids)
{
$this->db->from('employees');
$this->db->join('people', 'people.person_id = employees.person_id');
$this->db->where_in('employees.person_id',$employee_ids);
$this->db->where('deleted',0);
$this->db->order_by("last_name", "asc");
return $this->db->get();
}
/*
Inserts or updates an employee
*/
function save(&$person_data, &$employee_data,&$permission_data,$employee_id=false)
{
$success=false;
//Run these queries as a transaction, we want to make sure we do all or nothing
$this->db->trans_start();
if(parent::save($person_data,$employee_id))
{
if (!$employee_id or !$this->exists($employee_id))
{
$employee_data['person_id'] = $employee_id = $person_data['person_id'];
$success = $this->db->insert('employees',$employee_data);
//remove password before sending to quickbooks
unset($employee_data['password']);
postToQuickbooks('employee_add', array('employee' => array_merge($employee_data, $person_data)));
}
else
{
$this->db->where('person_id', $employee_id);
$success = $this->db->update('employees',$employee_data);
//remove password before sending to quickbooks
unset($employee_data['password']);
postToQuickbooks('employee_update', array('employee' => array_merge($employee_data, $person_data, array('person_id'=>$employee_id))));
}
//We have either inserted or updated a new employee, now lets set permissions.
if($success)
{
//First lets clear out any permissions the employee currently has.
$success=$this->db->delete('permissions', array('person_id' => $employee_id));
//Now insert the new permissions
if($success)
{
foreach($permission_data as $allowed_module)
{
$success = $this->db->insert('permissions',
array(
'module_id'=>$allowed_module,
'person_id'=>$employee_id));
}
}
}
}
$this->db->trans_complete();
return $success;
}
/*
Deletes one employee
*/
function delete($employee_id)
{
$success=false;
//Don't let employee delete their self
if($employee_id==$this->get_logged_in_employee_info()->person_id)
return false;
//Run these queries as a transaction, we want to make sure we do all or nothing
$this->db->trans_start();
//Delete permissions
if($this->db->delete('permissions', array('person_id' => $employee_id)))
{
$this->db->where('person_id', $employee_id);
$success = $this->db->update('employees', array('deleted' => 1));
postToQuickbooks('employee_delete', array('ids'=>array($employee_id)));
}
$this->db->trans_complete();
return $success;
}
/*
Deletes a list of employees
*/
function delete_list($employee_ids)
{
$success=false;
//Don't let employee delete their self
if(in_array($this->get_logged_in_employee_info()->person_id,$employee_ids))
return false;
//Run these queries as a transaction, we want to make sure we do all or nothing
$this->db->trans_start();
$this->db->where_in('person_id',$employee_ids);
//Delete permissions
if ($this->db->delete('permissions'))
{
//delete from employee table
$this->db->where_in('person_id',$employee_ids);
$success = $this->db->update('employees', array('deleted' => 1));
postToQuickbooks('employee_delete', array('ids'=>$employee_ids));
}
$this->db->trans_complete();
return $success;
}
/*
Get search suggestions to find employees
*/
function get_search_suggestions($search,$limit=5)
{
$suggestions = array();
$this->db->from('employees');
$this->db->join('people','employees.person_id=people.person_id');
$this->db->where("(first_name LIKE '%".$this->db->escape_like_str($search)."%' or
last_name LIKE '%".$this->db->escape_like_str($search)."%' or
CONCAT(`first_name`,' ',`last_name`) LIKE '%".$this->db->escape_like_str($search)."%') and deleted=0");
$this->db->order_by("last_name", "asc");
$by_name = $this->db->get();
foreach($by_name->result() as $row)
{
$suggestions[]=$row->first_name.' '.$row->last_name;
}
$this->db->from('employees');
$this->db->join('people','employees.person_id=people.person_id');
$this->db->where('deleted', 0);
$this->db->like("email",$search);
$this->db->order_by("email", "asc");
$by_email = $this->db->get();
foreach($by_email->result() as $row)
{
$suggestions[]=$row->email;
}
$this->db->from('employees');
$this->db->join('people','employees.person_id=people.person_id');
$this->db->where('deleted', 0);
$this->db->like("username",$search);
$this->db->order_by("username", "asc");
$by_username = $this->db->get();
foreach($by_username->result() as $row)
{
$suggestions[]=$row->username;
}
$this->db->from('employees');
$this->db->join('people','employees.person_id=people.person_id');
$this->db->where('deleted', 0);
$this->db->like("phone_number",$search);
$this->db->order_by("phone_number", "asc");
$by_phone = $this->db->get();
foreach($by_phone->result() as $row)
{
$suggestions[]=$row->phone_number;
}
//only return $limit suggestions
if(count($suggestions > $limit))
{
$suggestions = array_slice($suggestions, 0,$limit);
}
return $suggestions;
}
/*
Preform a search on employees
*/
function search($search)
{
$this->db->from('employees');
$this->db->join('people','employees.person_id=people.person_id');
$this->db->where("(first_name LIKE '%".$this->db->escape_like_str($search)."%' or
last_name LIKE '%".$this->db->escape_like_str($search)."%' or
email LIKE '%".$this->db->escape_like_str($search)."%' or
phone_number LIKE '%".$this->db->escape_like_str($search)."%' or
username LIKE '%".$this->db->escape_like_str($search)."%' or
CONCAT(`first_name`,' ',`last_name`) LIKE '%".$this->db->escape_like_str($search)."%') and deleted=0");
$this->db->order_by("last_name", "asc");
return $this->db->get();
}
/*
Attempts to login employee and set session. Returns boolean based on outcome.
*/
function login($username, $password)
{
$query = $this->db->get_where('employees', array('username' => $username,'password'=>md5($password), 'deleted'=>0), 1);
if ($query->num_rows() ==1)
{
$row=$query->row();
$this->session->set_userdata('person_id', $row->person_id);
return true;
}
return false;
}
/*
Logs out a user by destorying all session data and redirect to login
*/
function logout()
{
$this->session->sess_destroy();
redirect('login');
}
/*
Determins if a employee is logged in
*/
function is_logged_in()
{
return $this->session->userdata('person_id')!=false;
}
/*
Gets information about the currently logged in employee.
*/
function get_logged_in_employee_info()
{
if($this->is_logged_in())
{
return $this->get_info($this->session->userdata('person_id'));
}
return false;
}
/*
Determins whether the employee specified employee has access the specific module.
*/
function has_permission($module_id,$person_id)
{
//if no module_id is null, allow access
if($module_id==null)
{
return true;
}
$query = $this->db->get_where('permissions', array('person_id' => $person_id,'module_id'=>$module_id), 1);
return $query->num_rows() == 1;
return false;
}
}
?>