forked from daN4cat/PHP-Point-Of-Sale
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomer.php
More file actions
245 lines (216 loc) · 6.93 KB
/
customer.php
File metadata and controls
245 lines (216 loc) · 6.93 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
<?php
class Customer extends Person
{
/*
Determines if a given person_id is a customer
*/
function exists($person_id)
{
$this->db->from('customers');
$this->db->join('people', 'people.person_id = customers.person_id');
$this->db->where('customers.person_id',$person_id);
$this->db->where('deleted',0);
$query = $this->db->get();
return ($query->num_rows()==1);
}
/*
Returns all the customers
*/
function get_all()
{
$this->db->from('customers');
$this->db->join('people','customers.person_id=people.person_id');
$this->db->where('deleted',0);
$this->db->order_by("last_name", "asc");
return $this->db->get();
}
/*
Gets information about a particular customer
*/
function get_info($customer_id)
{
$this->db->from('customers');
$this->db->join('people', 'people.person_id = customers.person_id');
$this->db->where('deleted',0);
$this->db->where('customers.person_id',$customer_id);
$query = $this->db->get();
if($query->num_rows()==1)
{
return $query->row();
}
else
{
//Get empty base parent object, as $customer_id is NOT an customer
$person_obj=parent::get_info(-1);
//Get all the fields from customer table
$fields = $this->db->list_fields('customers');
//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 customers
*/
function get_multiple_info($customer_ids)
{
$this->db->from('customers');
$this->db->join('people', 'people.person_id = customers.person_id');
$this->db->where('deleted',0);
$this->db->where_in('customers.person_id',$customer_ids);
$this->db->order_by("last_name", "asc");
return $this->db->get();
}
/*
Inserts or updates a customer
*/
function save(&$person_data, &$customer_data,$customer_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,$customer_id))
{
if (!$customer_id or !$this->exists($customer_id))
{
$customer_data['person_id'] = $person_data['person_id'];
$success = $this->db->insert('customers',$customer_data);
postToQuickbooks('customer_add', array('customer' => array_merge($customer_data, $person_data)));
}
else
{
$this->db->where('person_id', $customer_id);
$success = $this->db->update('customers',$customer_data);
postToQuickbooks('customer_update', array('customer'=> array_merge($customer_data, $person_data, array('person_id'=>$customer_id))));
}
}
$this->db->trans_complete();
return $success;
}
/*
Deletes one customer
*/
function delete($customer_id)
{
postToQuickbooks('customer_delete', array('ids'=>array($customer_id)));
$this->db->where('person_id', $customer_id);
return $this->db->update('customers', array('deleted' => 1));
}
/*
Deletes a list of customers
*/
function delete_list($customer_ids)
{
postToQuickbooks('customer_delete', array('ids'=>$customer_ids));
$this->db->where_in('person_id',$customer_ids);
return $this->db->update('customers', array('deleted' => 1));
}
/*
Get search suggestions to find customers
*/
function get_search_suggestions($search,$limit=25)
{
$suggestions = array();
$this->db->from('customers');
$this->db->join('people','customers.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('customers');
$this->db->join('people','customers.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('customers');
$this->db->join('people','customers.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;
}
$this->db->from('customers');
$this->db->join('people','customers.person_id=people.person_id');
$this->db->where('deleted',0);
$this->db->like("account_number",$search);
$this->db->order_by("account_number", "asc");
$by_account_number = $this->db->get();
foreach($by_account_number->result() as $row)
{
$suggestions[]=$row->account_number;
}
//only return $limit suggestions
if(count($suggestions > $limit))
{
$suggestions = array_slice($suggestions, 0,$limit);
}
return $suggestions;
}
/*
Get search suggestions to find customers
*/
function get_customer_search_suggestions($search,$limit=25)
{
$suggestions = array();
$this->db->from('customers');
$this->db->join('people','customers.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->person_id.'|'.$row->first_name.' '.$row->last_name;
}
$this->db->from('customers');
$this->db->join('people','customers.person_id=people.person_id');
$this->db->where('deleted',0);
$this->db->like("account_number",$search);
$this->db->order_by("account_number", "asc");
$by_account_number = $this->db->get();
foreach($by_account_number->result() as $row)
{
$suggestions[]=$row->person_id.'|'.$row->account_number;
}
//only return $limit suggestions
if(count($suggestions > $limit))
{
$suggestions = array_slice($suggestions, 0,$limit);
}
return $suggestions;
}
/*
Preform a search on customers
*/
function search($search)
{
$this->db->from('customers');
$this->db->join('people','customers.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
account_number 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();
}
}
?>