4863: Dimension not defaulted on po entry, po modify. @Braath Waate and @joe fixed
[fa-stable.git] / purchasing / includes / db / po_db.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 // ------------------------------------------------------------------------------
13
14 function get_supplier_details_to_order(&$order, $supplier_id)
15 {
16         $sql = "SELECT curr_code, supp_name, tax_group_id, supp.tax_included, dimension_id, dimension2_id,
17                         supp.credit_limit - Sum(IFNULL(IF(trans.type=".ST_SUPPCREDIT.", -1, 1) 
18                                 * (ov_amount + ov_gst + ov_discount),0)) as cur_credit,
19                                 terms.terms, terms.days_before_due, terms.day_in_following_month
20                 FROM ".TB_PREF."suppliers supp
21                          LEFT JOIN ".TB_PREF."supp_trans trans ON supp.supplier_id = trans.supplier_id
22                          LEFT JOIN ".TB_PREF."payment_terms terms ON supp.payment_terms=terms.terms_indicator
23                 WHERE supp.supplier_id = ".db_escape($supplier_id)."
24                 GROUP BY
25                           supp.supp_name";
26
27         $result = db_query($sql, "The supplier details could not be retreived");
28         $myrow = db_fetch($result);
29
30         $order->credit = $myrow["cur_credit"];
31         $order->terms = array( 
32                 'description' => $myrow['terms'],
33                 'days_before_due' => $myrow['days_before_due'], 
34                 'day_in_following_month' => $myrow['day_in_following_month'] );
35
36         $_POST['supplier_id'] = $supplier_id;
37         $_POST['supplier_name'] = $myrow["supp_name"];
38         $_POST['curr_code'] = $myrow["curr_code"];
39         $_POST['dimension'] = $myrow["dimension_id"];
40         $_POST['dimension2'] = $myrow["dimension2_id"];
41
42         $order->set_supplier($supplier_id, $myrow["supp_name"], $myrow["curr_code"], 
43                 $myrow["tax_group_id"], $myrow["tax_included"]);
44 }
45
46 //----------------------------------------------------------------------------------------
47
48 function delete_po($po)
49 {
50         global $Refs;
51
52         begin_transaction();
53         hook_db_prevoid($po, ST_PURCHORDER);
54         $sql = "DELETE FROM ".TB_PREF."purch_orders WHERE order_no=".db_escape($po);
55         db_query($sql, "The order header could not be deleted");
56
57         $sql = "DELETE FROM ".TB_PREF."purch_order_details WHERE order_no =".db_escape($po);
58         db_query($sql, "The order detail lines could not be deleted");
59
60         $Refs->restore_last(ST_PURCHORDER, $po);
61         commit_transaction();
62 }
63
64 //----------------------------------------------------------------------------------------
65
66 function add_po(&$po_obj)
67 {
68         global $Refs;
69
70         begin_transaction();
71         hook_db_prewrite($po_obj, ST_PURCHORDER);
72
73      /*Insert to purchase order header record */
74      $sql = "INSERT INTO ".TB_PREF."purch_orders (supplier_id, Comments, ord_date, reference, 
75         requisition_no, into_stock_location, delivery_address, total, tax_included, prep_amount) VALUES(";
76      $sql .= db_escape($po_obj->supplier_id) . "," .
77          db_escape($po_obj->Comments) . ",'" .
78          date2sql($po_obj->orig_order_date) . "', " .
79                  db_escape($po_obj->reference) . ", " .
80          db_escape($po_obj->supp_ref) . ", " .
81          db_escape($po_obj->Location) . ", " .
82          db_escape($po_obj->delivery_address) . ", " .
83          db_escape($po_obj->get_trans_total()). ", " .
84          db_escape($po_obj->tax_included). ", " .
85          db_escape($po_obj->prep_amount). ")";
86
87         db_query($sql, "The purchase order header record could not be inserted");
88
89      /*Get the auto increment value of the order number created from the sql above */
90      $po_obj->order_no = db_insert_id();
91
92      /*Insert the purchase order detail records */
93      foreach ($po_obj->line_items as $line_no => $po_line)
94      {
95                 $sql = "INSERT INTO ".TB_PREF."purch_order_details (order_no, item_code, description, delivery_date,    unit_price,     quantity_ordered) VALUES (";
96                 $sql .= $po_obj->order_no . ", " . db_escape($po_line->stock_id). "," .
97                 db_escape($po_line->item_description). ",'" .
98                 date2sql($po_line->req_del_date) . "'," .
99                 db_escape($po_line->price) . ", " .
100                 db_escape($po_line->quantity). ")";
101                 db_query($sql, "One of the purchase order detail records could not be inserted");
102                 $po_obj->line_items[$line_no]->po_detail_rec = db_insert_id();
103      }
104
105         $Refs->save(ST_PURCHORDER, $po_obj->order_no, $po_obj->reference);
106
107         add_audit_trail(ST_PURCHORDER, $po_obj->order_no, $po_obj->orig_order_date);
108         hook_db_postwrite($po_obj, ST_PURCHORDER);
109         commit_transaction();
110
111         return $po_obj->order_no;
112 }
113
114 //----------------------------------------------------------------------------------------
115
116 function update_po(&$po_obj)
117 {
118         begin_transaction();
119         hook_db_prewrite($po_obj, ST_PURCHORDER);
120
121     /*Update the purchase order header with any changes */
122     $sql = "UPDATE ".TB_PREF."purch_orders SET Comments=" . db_escape($po_obj->Comments) . ",
123                 requisition_no= ". db_escape( $po_obj->supp_ref). ",
124                 into_stock_location=" . db_escape($po_obj->Location). ",
125                 ord_date='" . date2sql($po_obj->orig_order_date) . "',
126                 delivery_address=" . db_escape($po_obj->delivery_address).",
127                 total=". db_escape($po_obj->get_trans_total()).",
128                 prep_amount=". db_escape($po_obj->prep_amount).",
129                 tax_included=". db_escape($po_obj->tax_included);
130     $sql .= " WHERE order_no = " . $po_obj->order_no;
131         db_query($sql, "The purchase order could not be updated");
132
133         $sql = "DELETE FROM ".TB_PREF."purch_order_details WHERE order_no="
134                 .db_escape($po_obj->order_no);
135         db_query($sql, "could not delete old purch order details");
136
137     /*Now Update the purchase order detail records */
138     foreach ($po_obj->line_items as $po_line)
139     {
140         $sql = "INSERT INTO ".TB_PREF."purch_order_details (po_detail_item, order_no, item_code, 
141                 description, delivery_date, unit_price, quantity_ordered, quantity_received) VALUES ("
142                         .db_escape($po_line->po_detail_rec ? $po_line->po_detail_rec : 0). ","
143                         .$po_obj->order_no . ","
144                         .db_escape($po_line->stock_id). ","
145                         .db_escape($po_line->item_description). ",'"
146                         .date2sql($po_line->req_del_date) . "',"
147                         .db_escape($po_line->price) . ", "
148                         .db_escape($po_line->quantity) . ", "
149                         .db_escape($po_line->qty_received) . ")";
150                 db_query($sql, "One of the purchase order detail records could not be updated");
151     }
152
153         reallocate_payments($po_obj->order_no, ST_PURCHORDER, $po_obj->orig_order_date, $po_obj->get_trans_total(), $po_obj->prepayments, $po_obj->supplier_id);
154
155         add_audit_trail($po_obj->trans_type, $po_obj->order_no, Today(), _("Updated."));
156         hook_db_postwrite($po_obj, ST_PURCHORDER);
157         commit_transaction();
158
159         return $po_obj->order_no;
160 }
161
162 //----------------------------------------------------------------------------------------
163
164 function read_po_header($order_no, &$order)
165 {
166         $sql = "SELECT po.*, supplier.*, loc.location_name 
167                 FROM ".TB_PREF."purch_orders po,"
168                         .TB_PREF."suppliers supplier,"
169                         .TB_PREF."locations loc
170                 WHERE po.supplier_id = supplier.supplier_id
171                 AND loc.loc_code = into_stock_location
172                 AND po.order_no = ".db_escape($order_no);
173
174         $result = db_query($sql, "The order cannot be retrieved");
175
176         if (db_num_rows($result) == 1)
177         {
178
179         $myrow = db_fetch($result);
180
181         $order->trans_type = ST_PURCHORDER;
182         $order->order_no = $order_no;
183
184         $order->set_supplier($myrow["supplier_id"], $myrow["supp_name"], $myrow["curr_code"],
185                 $myrow['tax_group_id'], $myrow["tax_included"]);
186
187                 $order->credit = get_current_supp_credit($order->supplier_id);
188
189         $order->orig_order_date = sql2date($myrow["ord_date"]);
190         $order->Comments = $myrow["comments"];
191         $order->Location = $myrow["into_stock_location"];
192         $order->supp_ref = $myrow["requisition_no"];
193         $order->reference = $myrow["reference"];
194         $order->delivery_address = $myrow["delivery_address"];
195         $order->alloc = $myrow["alloc"];
196         $order->prep_amount = $myrow["prep_amount"];
197         $order->prepayments = get_payments_for($order_no, ST_PURCHORDER, $myrow["supplier_id"]);
198
199         return true;
200         }
201
202         display_db_error("FATAL : duplicate purchase order found", "", true);
203         return false;
204 }
205
206 //----------------------------------------------------------------------------------------
207
208 function read_po_items($order_no, &$order, $open_items_only=false)
209 {
210         /*now populate the line po array with the purchase order details records */
211
212         $sql = "SELECT poline.*, units
213                 FROM ".TB_PREF."purch_order_details poline
214                         LEFT JOIN ".TB_PREF."stock_master item  ON poline.item_code=item.stock_id
215                 WHERE order_no =".db_escape($order_no);
216
217     if ($open_items_only)
218                 $sql .= " AND (poline.quantity_ordered > poline.quantity_received) ";
219
220         $sql .= " ORDER BY po_detail_item";
221
222         $result = db_query($sql, "The lines on the purchase order cannot be retrieved");
223
224     if (db_num_rows($result) > 0)
225     {
226                 while ($myrow = db_fetch($result))
227         {
228                 $data = get_purchase_data($order->supplier_id, $myrow['item_code']);
229                 if ($data !== false)
230                 {
231                         if ($data['supplier_description'] != "")
232                                 $myrow['description'] = $data['supplier_description'];
233                 }               
234             if (is_null($myrow["units"]))
235             {
236                         $units = "";
237             }
238             else
239             {
240                 $units = $myrow["units"];
241             }
242
243             if ($order->add_to_order($order->lines_on_order, $myrow["item_code"],
244                 $myrow["quantity_ordered"],$myrow["description"],
245                 $myrow["unit_price"],$units, sql2date($myrow["delivery_date"]),
246                 $myrow["qty_invoiced"], $myrow["quantity_received"])) {
247                                 $order->line_items[$order->lines_on_order-1]->po_detail_rec = $myrow["po_detail_item"];
248                         }
249         } /* line po from purchase order details */
250     } //end of checks on returned data set
251 }
252
253 //----------------------------------------------------------------------------------------
254
255 function read_po($order_no, &$order, $open_items_only=false)
256 {
257         $result = read_po_header($order_no, $order);
258
259         if ($result)
260                 read_po_items($order_no, $order, $open_items_only);
261 }
262
263 //----------------------------------------------------------------------------------------
264
265 function get_po_items($order_no)
266 {
267         $sql = "SELECT item_code, quantity_ordered, quantity_received, qty_invoiced
268                 FROM ".TB_PREF."purch_order_details
269                 WHERE order_no=".db_escape($order_no)
270                 ." ORDER BY po_detail_item";
271
272         $result = db_query($sql, "could not query purch order details");
273     check_db_error("Could not check that the details of the purchase order had not been changed by another user ", $sql);
274     return $result;
275 }
276 //----------------------------------------------------------------------------------------
277
278 function get_short_info($stock_id)
279 {
280         $sql = "SELECT description, units, mb_flag
281                 FROM ".TB_PREF."stock_master WHERE stock_id = ".db_escape($stock_id);
282
283         return db_query($sql,"The stock details for " . $stock_id . " could not be retrieved");
284 }
285
286 function get_sql_for_po_search_completed($from, $to, $supplier_id=ALL_TEXT, $location=ALL_TEXT,
287         $order_number = '', $stock_id = '', $also_closed=false)
288 {
289         $sql = "SELECT 
290                 porder.order_no, 
291                 porder.reference, 
292                 supplier.supp_name, 
293                 location.location_name,
294                 porder.requisition_no, 
295                 porder.ord_date, 
296                 supplier.curr_code, 
297                 Sum(line.unit_price*line.quantity_ordered) AS OrderValue,
298                 porder.into_stock_location,
299                 chk.isopen
300                 FROM ".TB_PREF."purch_orders as porder
301                                 LEFT JOIN (
302                                         SELECT order_no, SUM(quantity_ordered-quantity_received + quantity_ordered-qty_invoiced) isopen
303                                         FROM ".TB_PREF."purch_order_details
304                                         GROUP BY order_no
305                                 ) chk ON chk.order_no=porder.order_no,"
306                         .TB_PREF."purch_order_details as line, "
307                         .TB_PREF."suppliers as supplier, "
308                         .TB_PREF."locations as location
309                 WHERE porder.order_no = line.order_no
310                 AND porder.supplier_id = supplier.supplier_id
311                 AND location.loc_code = porder.into_stock_location ";
312
313         if ($supplier_id != ALL_TEXT)
314                 $sql .= "AND supplier.supplier_id=".$supplier_id." ";
315         if ($order_number != "")
316         {
317                 $sql .= "AND porder.reference LIKE ".db_escape('%'. $order_number . '%');
318         }
319         else
320         {
321
322                 $data_after = date2sql($from);
323                 $date_before = date2sql($to);
324
325                 $sql .= " AND porder.ord_date >= '$data_after'";
326                 $sql .= " AND porder.ord_date <= '$date_before'";
327
328                 if ($location != ALL_TEXT)
329                 {
330                         $sql .= " AND porder.into_stock_location = ".db_escape($location);
331                 }
332                 if ($stock_id !== '')
333                 {
334                         $sql .= " AND line.item_code=".db_escape($stock_id);
335                 }
336                 if ($supplier_id != ALL_TEXT)
337                         $sql .= " AND supplier.supplier_id=".db_escape($supplier_id);
338
339         }
340
341         if (!$also_closed)
342                 $sql .= " AND isopen";
343         $sql .= " GROUP BY porder.order_no";
344         return $sql;
345 }
346
347 function get_sql_for_po_search($from, $to, $supplier_id=ALL_TEXT, $location=ALL_TEXT, $order_number='', $stock_id='')
348 {
349         $sql = "SELECT 
350                 porder.order_no, 
351                 porder.reference,
352                 supplier.supp_name, 
353                 location.location_name,
354                 porder.requisition_no, 
355                 porder.ord_date,
356                 supplier.curr_code,
357                 Sum(line.unit_price*line.quantity_ordered) AS OrderValue,
358                 Sum(line.delivery_date < '". date2sql(Today()) ."'
359                 AND (line.quantity_ordered > line.quantity_received)) As OverDue
360                 FROM ".TB_PREF."purch_orders as porder,"
361                         .TB_PREF."purch_order_details as line, "
362                         .TB_PREF."suppliers as supplier, "
363                         .TB_PREF."locations as location
364                 WHERE porder.order_no = line.order_no
365                 AND porder.supplier_id = supplier.supplier_id
366                 AND location.loc_code = porder.into_stock_location
367                 AND (line.quantity_ordered > line.quantity_received) ";
368
369         if ($order_number != "")
370         {
371                 $sql .= "AND porder.reference LIKE ".db_escape('%'. $order_number . '%');
372         }
373         else
374         {
375                 $data_after = date2sql($from);
376                 $data_before = date2sql($to);
377
378                 $sql .= "  AND porder.ord_date >= '$data_after'";
379                 $sql .= "  AND porder.ord_date <= '$data_before'";
380
381                 if ($location != ALL_TEXT)
382                 {
383                         $sql .= " AND porder.into_stock_location = ".db_escape($location);
384                 }
385
386                 if ($stock_id != '')
387                 {
388                         $sql .= " AND line.item_code=".db_escape($stock_id);
389                 }
390                 if ($supplier_id != ALL_TEXT)
391                         $sql .= " AND supplier.supplier_id=".db_escape($supplier_id);
392         } //end not order number selected
393
394         $sql .= " GROUP BY porder.order_no";
395         return $sql;
396 }
397