Removed obsolete stock_moves.visible field; changed add_stock_move() prototype.
[fa-stable.git] / purchasing / includes / db / grn_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 //------------------- update average material cost ------------------------------------------ Joe Hunt Mar-03-2008
13 function update_average_material_cost($supplier, $stock_id, $price, $qty, $date, $adj_only=false)
14 {
15         // probably this function should be optimized
16         // passing transaction cart as argument. This would
17         // save a couple of db calls like get_supplier()
18         
19         $supp = get_supplier($supplier);
20         if ($supplier != null)
21                 $currency = $supp['curr_code'];
22         else
23                 $currency = null;
24
25         if ($supp['tax_included'])
26                 $price = get_tax_free_price_for_item($stock_id, $price, $supp['tax_group_id'],
27                         $supp['tax_included']);
28
29         if ($currency != null)
30         {
31                 $ex_rate = get_exchange_rate_to_home_currency($currency, $date);
32                 $price_in_home_currency = $price / $ex_rate;
33         }       
34         else
35                 $price_in_home_currency = $price;
36
37         $price_in_home_currency_ = $price_in_home_currency;
38
39         //Handle if inventory will become negative
40     //8-OCT-2011 : Skip negative inventory adjustment for case of adjust_only
41     if (is_inventory_item($stock_id) && !$adj_only) 
42         handle_negative_inventory($stock_id, $qty, $price_in_home_currency, $date);
43         
44         $sql = "SELECT mb_flag, material_cost, labour_cost, overhead_cost FROM ".TB_PREF."stock_master WHERE stock_id=".db_escape($stock_id);
45         $result = db_query($sql);
46         $myrow = db_fetch($result);
47         $material_cost = $myrow['material_cost'];
48         
49         //Price adjustment for manufactured item
50         if (!$adj_only && $myrow['mb_flag'] == 'M') 
51         {
52                 $standard_cost = get_standard_cost($stock_id);
53                 //reduce overhead_cost and labour_cost from price as those will remain as is
54                 $price_in_home_currency = $price_in_home_currency - $myrow['labour_cost'] - $myrow['overhead_cost'];
55         }
56
57         if ($adj_only)
58                 $exclude = ST_CUSTDELIVERY;
59         else
60                 $exclude = 0;
61         $cost_adjust = false;
62
63         $qoh = get_qoh_on_date($stock_id);
64
65         if ($adj_only)
66         {
67                 if ($qoh > 0)
68                         $material_cost = ($qoh * $material_cost + $qty * $price_in_home_currency) /     $qoh;
69         }
70         else
71         {
72                 if ($qoh < 0)
73                 {
74                         if ($qoh + $qty >= 0)
75                                 $cost_adjust = true;
76                         $qoh = 0;
77                 }
78                 if ($qoh + $qty > 0)
79                         $material_cost = ($qoh * $material_cost + $qty * $price_in_home_currency) /     ($qoh + $qty);
80         }
81
82         if ($cost_adjust) // new 2010-02-10 //Chaitanya : Material_cost replaced with price
83                 adjust_deliveries($stock_id, $price_in_home_currency_, $date);
84         $sql = "UPDATE ".TB_PREF."stock_master SET material_cost=".db_escape($material_cost)."
85                 WHERE stock_id=".db_escape($stock_id);
86
87         db_query($sql,"The cost details for the inventory item could not be updated");
88         return $material_cost;
89 }
90
91 //-------------------------------------------------------------------------------------------------------------
92
93 function add_grn(&$po)
94 {
95         global $Refs;
96
97         $date_ = $po->orig_order_date;
98
99         begin_transaction();
100         hook_db_prewrite($po, ST_SUPPRECEIVE);
101
102         if (!is_company_currency($po->curr_code))
103         {
104                 if (!$po->ex_rate)
105                         $po->ex_rate = get_date_exchange_rate($po->curr_code, $date_);
106                 else
107                         add_new_exchange_rate($po->curr_code, $date_, $po->ex_rate);
108         } else
109                 $po->ex_rate = 1;
110
111         $grn = add_grn_batch($po->order_no, $po->supplier_id, $po->reference, $po->Location, $date_, $po->ex_rate);
112
113     $clearing_act = get_company_pref('grn_clearing_act');
114         if ($clearing_act) {    // otherwise GRN clearing account is not used
115             $total = 0;
116         }
117         foreach ($po->line_items as $line_no => $order_line)
118         {
119                 if ($order_line->receive_qty != 0 && $order_line->receive_qty != "" && isset($order_line->receive_qty))
120                 {
121                         $stock_gl_code = get_stock_gl_code($order_line->stock_id);
122
123                         /*Update sales_order_details for the new quantity received and the standard cost used for postings to GL and recorded in the stock movements for FIFO/LIFO stocks valuations*/
124                         //------------------- update average material cost and clearing account ----- Joe Hunt Mar-03-2008
125                         if (is_inventory_item($order_line->stock_id))
126                         {
127                                 if ($clearing_act)
128                                         $total += add_gl_trans_supplier(ST_SUPPRECEIVE, $grn, $date_, $stock_gl_code["inventory_account"],
129                                                 $stock_gl_code['dimension_id'], $stock_gl_code['dimension2_id'],
130                                                 $order_line->receive_qty * $order_line->taxfree_charge_price($po), $po->supplier_id, '', 0, $order_line->stock_id);
131                                 update_average_material_cost($po->supplier_id, $order_line->stock_id, $order_line->price,
132                                         $order_line->receive_qty, $date_);
133                         }
134                         //----------------------------------------------------------------------------------------------------------------
135                         if ($order_line->qty_received == 0)
136                         {
137                                 /*This must be the first receipt of goods against this line */
138                                 /*Need to get the standard cost as it is now so we can process GL jorunals later*/
139                                 $order_line->standard_cost = get_standard_cost($order_line->stock_id);
140                         }
141                         // added 2008-12-08 Joe Hunt. Update the purchase data table
142                         add_or_update_purchase_data($po->supplier_id, $order_line->stock_id, $order_line->price, 
143                                 $order_line->item_description); 
144
145                         /*Need to insert a grn item */ // also need to check for over-receive.(within allowance)
146                         if ($order_line->receive_qty + $order_line->qty_received > $order_line->quantity)
147                                 $order_line->quantity = $order_line->receive_qty + $order_line->qty_received;
148                         $grn_item = add_grn_detail_item($grn, $order_line->po_detail_rec,
149                                 $order_line->stock_id, $order_line->item_description,
150                                 $order_line->standard_cost,     $order_line->receive_qty, $order_line->price, $order_line->quantity);
151
152                         $po->line_items[$line_no]->grn_item_id = $grn_item;
153                         /* Update location stock records - NB  a po cannot be entered for a service/kit parts done automatically */
154                         add_stock_move(ST_SUPPRECEIVE, $order_line->stock_id, $grn, $po->Location, $date_, "",
155                                 $order_line->receive_qty, $order_line->standard_cost,
156                         $po->supplier_id, $order_line->taxfree_charge_price($po));
157
158                 } /*quantity received is != 0 */
159         } /*end of order_line loop */
160
161         if ($clearing_act && $total != 0.0) {
162                 $total += add_gl_trans_supplier(ST_SUPPRECEIVE, $grn, $date_, $clearing_act,
163                         0, 0, -$total, null);
164         }
165         $Refs->save(ST_SUPPRECEIVE, $grn, $po->reference);
166
167         add_audit_trail(ST_SUPPRECEIVE, $grn, $date_);
168
169         $po->trans_no = $grn;
170         hook_db_postwrite($po, ST_SUPPRECEIVE);
171         commit_transaction();
172
173         return $grn;
174 }
175
176 //----------------------------------------------------------------------------------------
177
178 function add_grn_batch($po_number, $supplier_id, $reference, $location, $date_, $rate)
179 {
180         $date = date2sql($date_);
181
182         $sql = "INSERT INTO ".TB_PREF."grn_batch (purch_order_no, delivery_date, supplier_id, reference, loc_code, rate)
183                         VALUES (".db_escape($po_number).", ".db_escape($date).", "
184                         .db_escape($supplier_id).", ".db_escape($reference).", ".db_escape($location).", ".db_escape($rate).")";
185
186         db_query($sql, "A grn batch record could not be inserted.");
187
188         return db_insert_id();
189 }
190
191 //-------------------------------------------------------------------------------------------------------------
192
193 function add_grn_detail_item($grn_batch_id, $po_detail_item, $item_code, $description, $standard_unit_cost,
194         $quantity_received, $price, $quantity)
195 {
196         $sql = "UPDATE ".TB_PREF."purch_order_details
197         SET quantity_received = quantity_received + ".db_escape($quantity_received).",
198         std_cost_unit=".db_escape($standard_unit_cost).",
199         quantity_ordered=".db_escape($quantity).",
200         act_price=".db_escape($price)."
201         WHERE po_detail_item = ".db_escape($po_detail_item);
202
203         db_query($sql, "a purchase order details record could not be updated. This receipt of goods has not been processed ");
204
205         $sql = "INSERT INTO ".TB_PREF."grn_items (grn_batch_id, po_detail_item, item_code, description, qty_recd)
206                 VALUES (".db_escape($grn_batch_id).", "
207                 .db_escape($po_detail_item).", ".db_escape($item_code).", ".db_escape($description)
208                 .", ".db_escape($quantity_received).")";
209
210         db_query($sql, "A GRN detail item could not be inserted.");
211
212         return db_insert_id();
213 }
214
215 //----------------------------------------------------------------------------------------
216 function get_grn_batch_from_item($item)
217 {
218         $sql = "SELECT grn_batch_id FROM ".TB_PREF."grn_items WHERE id=".db_escape($item);
219         $result = db_query($sql, "Could not retreive GRN batch id");
220         $row = db_fetch_row($result);
221         return $row[0];
222 }
223
224 function get_grn_batch($grn)
225 {
226         $sql = "SELECT * FROM ".TB_PREF."grn_batch WHERE id=".db_escape($grn);
227         $result = db_query($sql, "Could not retreive GRN batch id");
228         return db_fetch($result);
229 }
230
231 function set_grn_item_credited(&$entered_grn, $supplier, $transno, $date)
232 {
233         $mcost = update_average_material_cost($supplier, $entered_grn->item_code,
234                 $entered_grn->chg_price, $entered_grn->this_quantity_inv, $date);
235
236         $sql = "SELECT ".TB_PREF."grn_batch.*, ".TB_PREF."grn_items.*
237         FROM ".TB_PREF."grn_batch, ".TB_PREF."grn_items
238         WHERE ".TB_PREF."grn_items.grn_batch_id=".TB_PREF."grn_batch.id
239                 AND ".TB_PREF."grn_items.id=".db_escape($entered_grn->id)."
240         AND ".TB_PREF."grn_items.item_code=".db_escape($entered_grn->item_code);
241         $result = db_query($sql, "Could not retreive GRNS");
242         $myrow = db_fetch($result);
243
244         $sql = "UPDATE ".TB_PREF."purch_order_details
245         SET quantity_received = quantity_received + "
246                 .db_escape($entered_grn->this_quantity_inv).",
247         quantity_ordered = quantity_ordered + "
248         .db_escape($entered_grn->this_quantity_inv).",
249         qty_invoiced = qty_invoiced + ".db_escape($entered_grn->this_quantity_inv).",
250         std_cost_unit=".db_escape($mcost).",
251         act_price=".db_escape($entered_grn->chg_price)."
252         WHERE po_detail_item = ".$myrow["po_detail_item"];
253         db_query($sql, "a purchase order details record could not be updated. This receipt of goods has not been processed ");
254
255         //$sql = "UPDATE ".TB_PREF."grn_items SET qty_recd=0, quantity_inv=0 WHERE id=$entered_grn->id";
256         $sql = "UPDATE ".TB_PREF."grn_items SET qty_recd=qty_recd+".db_escape($entered_grn->this_quantity_inv)
257         .",quantity_inv=quantity_inv+".db_escape($entered_grn->this_quantity_inv)
258         ." WHERE id=".db_escape($entered_grn->id);
259         db_query($sql);
260
261     add_stock_move(ST_SUPPCREDIT, $entered_grn->item_code, $transno, $myrow['loc_code'], $date, "",
262         $entered_grn->this_quantity_inv, $mcost, $supplier, $entered_grn->chg_price);
263 }
264
265 function get_grn_items($grn_batch_id=0, $supplier_id="", $outstanding_only=false,
266         $is_invoiced_only=false, $invoice_no=0, $begin="", $end="")
267 {
268     $sql = "SELECT grn.*, grn_item.*,
269                 grn_item.quantity_inv".($invoice_no ? "-invoice_item.quantity" : '')."  quantity_inv,
270         po_item.unit_price,
271         po_item.act_price,
272         po_item.quantity_ordered,
273         po_item.std_cost_unit, units
274         FROM    ".TB_PREF."grn_batch grn, "
275                         .TB_PREF."purch_order_details po_item, "
276                         .TB_PREF."stock_master stock_item,"
277                                 .TB_PREF."grn_items grn_item ";
278  
279     if ($invoice_no != 0) {
280         $sql .= " LEFT JOIN ".TB_PREF."supp_invoice_items invoice_item ON ";
281
282                 $inv_cond = "invoice_item.supp_trans_type=".ST_SUPPINVOICE." AND invoice_item.supp_trans_no ";
283                 if (is_array($invoice_no))
284                         $inv_cond .= " IN (".implode(',' , $invoice_no) . ")";
285                 else
286                         $inv_cond .= " = $invoice_no";
287                 $sql .= "($inv_cond) AND grn_item.id=invoice_item.grn_item_id";
288         }
289     $sql .= " WHERE grn_item.grn_batch_id=grn.id
290                 AND grn_item.po_detail_item=po_item.po_detail_item";
291
292         if ($outstanding_only)
293         $sql .= " AND (".($invoice_no ? "$inv_cond OR ":'')."grn_item.qty_recd - grn_item.quantity_inv > 0)";
294
295         $sql .= " AND stock_item.stock_id=grn_item.item_code ";
296
297         if ($begin != "")
298                 $sql .= " AND grn.delivery_date>='".date2sql($begin)."'";
299         if ($end != "")
300                 $sql .= " AND grn.delivery_date<='".date2sql($end)."'";
301         if ($grn_batch_id != 0)
302                 $sql .= " AND grn.id=".db_escape($grn_batch_id)
303                         ." AND grn_item.grn_batch_id=".db_escape($grn_batch_id);
304
305         if ($is_invoiced_only)
306                 $sql .= " AND grn_item.quantity_inv > 0";
307
308         if ($supplier_id != "")
309                 $sql .= " AND grn.supplier_id =".db_escape($supplier_id);
310
311         $sql .= " ORDER BY grn.delivery_date, grn.id, grn_item.id";
312
313         return db_query($sql, "Could not retreive GRNS");
314 }
315
316 //----------------------------------------------------------------------------------------
317
318 // get the details for a given grn item
319
320 function get_grn_item_detail($grn_item_no)
321 {
322         $sql = "SELECT ".TB_PREF."grn_items.*, ".TB_PREF."purch_order_details.unit_price,
323         ".TB_PREF."grn_items.qty_recd - ".TB_PREF."grn_items.quantity_inv AS QtyOstdg,
324         ".TB_PREF."purch_order_details.std_cost_unit
325                 FROM ".TB_PREF."grn_items, ".TB_PREF."purch_order_details, ".TB_PREF."stock_master
326                 WHERE ".TB_PREF."grn_items.po_detail_item=".TB_PREF."purch_order_details.po_detail_item
327                         AND ".TB_PREF."stock_master.stock_id=".TB_PREF."grn_items.item_code
328                         AND ".TB_PREF."grn_items.id=".db_escape($grn_item_no);
329
330         $result = db_query($sql, "could not retreive grn item details");
331         return db_fetch($result);
332 }
333
334 //----------------------------------------------------------------------------------------
335
336 function read_grn_items_to_order($grn_batch, &$order)
337 {
338         $result = get_grn_items($grn_batch);
339
340         if (db_num_rows($result) > 0)
341         {
342
343                 while ($myrow = db_fetch($result))
344                 {
345                         if ($myrow['qty_recd'] == 0 && $myrow['quantity_inv'] == 0)
346                                 continue; // 2011-01-18 Joe Hunt. We will not have empty credited rows.
347                         if (is_null($myrow["units"]))
348                         {
349                                 $units = "";
350                         }
351                         else
352                         {
353                                 $units = $myrow["units"];
354                         }
355
356                         $order->add_to_order($order->lines_on_order, $myrow["item_code"],
357                                 $myrow["qty_recd"],$myrow["description"], $myrow["unit_price"],$units,
358                                 sql2date($myrow["delivery_date"]), $myrow["quantity_inv"],
359                                 $myrow["qty_recd"]);
360
361                         $order->line_items[$order->lines_on_order-1]->po_detail_rec = $myrow["po_detail_item"];
362                 } /* line po from purchase order details */
363         } //end of checks on returned data set
364 }
365
366 //----------------------------------------------------------------------------------------
367
368 // read a grn into an order class
369
370 function read_grn($grn_batch, &$order)
371 {
372         $sql= "SELECT * FROM ".TB_PREF."grn_batch WHERE id=".db_escape($grn_batch);
373
374         $result = db_query($sql, "The grn sent is not valid");
375
376         $row = db_fetch($result);
377         $po_number = $row["purch_order_no"];
378         $order->ex_rate = $row["rate"];
379
380         $result = read_po_header($po_number, $order);
381
382         if ($result)
383         {
384
385                 $order->trans_type = ST_SUPPRECEIVE;
386                 $order->orig_order_date = sql2date($row["delivery_date"]);
387                 $order->Location = $row["loc_code"];
388                 $order->reference = $row["reference"];
389
390                 read_grn_items_to_order($grn_batch, $order);
391         }
392 }
393
394 //----------------------------------------------------------------------------------------------------------
395
396 // get the GRNs (batch info not details) for a given po number
397
398 function get_po_grns($po_number)
399 {
400     $sql = "SELECT * FROM ".TB_PREF."grn_batch WHERE purch_order_no=".db_escape($po_number);
401
402         return db_query($sql, "The grns for the po $po_number could not be retreived");
403 }
404
405 //----------------------------------------------------------------------------------------------------------
406
407 function exists_grn($grn_batch)
408 {
409         $sql = "SELECT id FROM ".TB_PREF."grn_batch WHERE id=".db_escape($grn_batch);
410         $result = db_query($sql, "Cannot retreive a grn");
411
412     return (db_num_rows($result) > 0);
413 }
414
415 //----------------------------------------------------------------------------------------------------------
416
417 function exists_grn_on_invoices($grn_batch)
418 {
419         $sql = "SELECT ".TB_PREF."supp_invoice_items.id FROM ".TB_PREF."supp_invoice_items,".TB_PREF."grn_items
420                 WHERE ".TB_PREF."supp_invoice_items.grn_item_id=".TB_PREF."grn_items.id
421                 AND quantity != 0
422                 AND grn_batch_id=".db_escape($grn_batch);
423         $result = db_query($sql, "Cannot query GRNs");
424
425     return (db_num_rows($result) > 0);
426 }
427
428 //----------------------------------------------------------------------------------------------------------
429
430 function void_grn($grn_batch)
431 {
432         // if this grn is references on any invoices/credit notes, then it
433         // can't be voided
434         if (exists_grn_on_invoices($grn_batch))
435                 return false;
436
437         begin_transaction();
438         hook_db_prevoid(ST_SUPPRECEIVE, $grn_batch);
439
440         void_bank_trans(ST_SUPPRECEIVE, $grn_batch, true);
441         void_gl_trans(ST_SUPPRECEIVE, $grn_batch, true);
442
443         // clear the quantities of the grn items in the POs and invoices
444         $result = get_grn_items($grn_batch);
445
446     if (db_num_rows($result) > 0)
447     {
448
449         while ($myrow = db_fetch($result))
450         {
451
452                 $sql = "UPDATE ".TB_PREF."purch_order_details
453                 SET quantity_received = quantity_received - " . $myrow["qty_recd"] . "
454                 WHERE po_detail_item = " . $myrow["po_detail_item"];
455
456                 db_query($sql, "a purchase order details record could not be voided.");
457         }
458     }
459
460         // clear the quantities in the grn items
461         $sql = "UPDATE ".TB_PREF."grn_items SET qty_recd=0, quantity_inv=0
462                 WHERE grn_batch_id=".db_escape($grn_batch);
463
464         db_query($sql, "A grn detail item could not be voided.");
465
466     // clear the stock move items
467     void_stock_move(ST_SUPPRECEIVE, $grn_batch);
468
469         commit_transaction();
470
471         return true;
472 }
473
474 //----------------------------------------------------------------------------------------------------------
475