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