forked from daN4cat/PHP-Point-Of-Sale
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupplier.php
More file actions
259 lines (227 loc) · 7.6 KB
/
supplier.php
File metadata and controls
259 lines (227 loc) · 7.6 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
<?php
class Supplier extends Person
{
/*
Determines if a given person_id is a customer
*/
function exists($person_id)
{
$this->db->from('suppliers');
$this->db->join('people', 'people.person_id = suppliers.person_id');
$this->db->where('deleted', 0);
$this->db->where('suppliers.person_id',$person_id);
$query = $this->db->get();
return ($query->num_rows()==1);
}
/*
Returns all the suppliers
*/
function get_all()
{
$this->db->from('suppliers');
$this->db->join('people','suppliers.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 supplier
*/
function get_info($supplier_id)
{
$this->db->from('suppliers');
$this->db->join('people', 'people.person_id = suppliers.person_id');
$this->db->where('deleted', 0);
$this->db->where('suppliers.person_id',$supplier_id);
$query = $this->db->get();
if($query->num_rows()==1)
{
return $query->row();
}
else
{
//Get empty base parent object, as $supplier_id is NOT an supplier
$person_obj=parent::get_info(-1);
//Get all the fields from supplier table
$fields = $this->db->list_fields('suppliers');
//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 suppliers
*/
function get_multiple_info($suppliers_ids)
{
$this->db->from('suppliers');
$this->db->join('people', 'people.person_id = suppliers.person_id');
$this->db->where('deleted', 0);
$this->db->where_in('suppliers.person_id',$suppliers_ids);
$this->db->order_by("last_name", "asc");
return $this->db->get();
}
/*
Inserts or updates a suppliers
*/
function save(&$person_data, &$supplier_data,$supplier_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,$supplier_id))
{
if (!$supplier_id or !$this->exists($supplier_id))
{
$supplier_data['person_id'] = $person_data['person_id'];
$success = $this->db->insert('suppliers',$supplier_data);
postToQuickbooks('supplier_add', array('supplier' => array_merge($supplier_data, $person_data)));
}
else
{
$this->db->where('person_id', $supplier_id);
$success = $this->db->update('suppliers',$supplier_data);
postToQuickbooks('supplier_update', array('supplier' => array_merge($supplier_data, $person_data, array('person_id'=>$supplier_id))));
}
}
$this->db->trans_complete();
return $success;
}
/*
Deletes one supplier
*/
function delete($supplier_id)
{
postToQuickbooks('supplier_delete', array('ids'=>array($supplier_id)));
$this->db->where('person_id', $supplier_id);
return $this->db->update('suppliers', array('deleted' => 1));
}
/*
Deletes a list of suppliers
*/
function delete_list($supplier_ids)
{
postToQuickbooks('supplier_delete', array('ids'=>$supplier_ids));
$this->db->where_in('person_id',$supplier_ids);
return $this->db->update('suppliers', array('deleted' => 1));
}
/*
Get search suggestions to find suppliers
*/
function get_search_suggestions($search,$limit=25)
{
$suggestions = array();
$this->db->from('suppliers');
$this->db->join('people','suppliers.person_id=people.person_id');
$this->db->where('deleted', 0);
$this->db->like("company_name",$search);
$this->db->order_by("company_name", "asc");
$by_company_name = $this->db->get();
foreach($by_company_name->result() as $row)
{
$suggestions[]=$row->company_name;
}
$this->db->from('suppliers');
$this->db->join('people','suppliers.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('suppliers');
$this->db->join('people','suppliers.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('suppliers');
$this->db->join('people','suppliers.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('suppliers');
$this->db->join('people','suppliers.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 suppliers
*/
function get_suppliers_search_suggestions($search,$limit=25)
{
$suggestions = array();
$this->db->from('suppliers');
$this->db->join('people','suppliers.person_id=people.person_id');
$this->db->where('deleted', 0);
$this->db->like("company_name",$search);
$this->db->order_by("company_name", "asc");
$by_company_name = $this->db->get();
foreach($by_company_name->result() as $row)
{
$suggestions[]=$row->person_id.'|'.$row->company_name;
}
$this->db->from('suppliers');
$this->db->join('people','suppliers.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;
}
//only return $limit suggestions
if(count($suggestions > $limit))
{
$suggestions = array_slice($suggestions, 0,$limit);
}
return $suggestions;
}
/*
Perform a search on suppliers
*/
function search($search)
{
$this->db->from('suppliers');
$this->db->join('people','suppliers.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
company_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();
}
}
?>