06d5c8779a207b0f3ce0ca551e3a3d0b6b5be56b
[fa-stable.git] / purchasing / includes / db / invoice_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 include_once($path_to_root . "/purchasing/includes/db/invoice_items_db.inc");
13 include_once($path_to_root . "/admin/db/attachments_db.inc");
14
15 //--------------------------------------------------------------------------------------------------
16
17 function read_supplier_details_to_trans(&$supp_trans, $supplier_id)
18 {
19         $sql = "SELECT supp.supp_name, terms.terms, terms.days_before_due, supp.dimension_id, supp.dimension2_id,
20                 terms.day_in_following_month, supp.tax_included,
21                 supp.tax_group_id, tax_group.name AS tax_group_name,
22                 supp.credit_limit - Sum((ov_amount + ov_gst + ov_discount)) as cur_credit, curr_code
23                 FROM ".TB_PREF."suppliers supp LEFT JOIN "
24                         .TB_PREF."supp_trans trans ON supp.supplier_id = trans.supplier_id, "
25                         .TB_PREF."payment_terms terms, "
26                         .TB_PREF."tax_groups tax_group
27                 WHERE supp.tax_group_id = tax_group.id
28                 AND supp.payment_terms=terms.terms_indicator
29                 AND supp.supplier_id = ".db_escape($supplier_id)." GROUP BY supp.supp_name";
30
31         $result = db_query($sql, "The supplier record selected: " . $supplier_id . " cannot be retrieved");
32
33         $myrow = db_fetch($result);
34
35     if ($supp_trans->tran_date == "")
36     {
37                 $supp_trans->tran_date = Today();
38
39                 if (!is_date_in_fiscalyear($supp_trans->tran_date))
40                         $supp_trans->tran_date = end_fiscalyear();
41         }
42         if ($supp_trans->supplier_id != $supplier_id)
43             get_duedate_from_terms($supp_trans);
44
45     $supp_trans->supplier_id = $supplier_id;
46     $supp_trans->tax_included = $myrow['tax_included'];
47     $supp_trans->supplier_name = $myrow['supp_name'];
48         $supp_trans->terms = array( 
49                 'description' => $myrow['terms'],
50                 'days_before_due' => $myrow['days_before_due'], 
51                 'day_in_following_month' => $myrow['day_in_following_month'] );
52
53         $supp_trans->credit = $myrow['cur_credit'];
54
55         $supp_trans->tax_description = $myrow['tax_group_name'];
56         $supp_trans->tax_group_id = $myrow['tax_group_id'];
57         $supp_trans->dimension = $myrow['dimension_id'];
58         $supp_trans->dimension2 = $myrow['dimension2_id'];
59         $supp_trans->currency = $myrow['curr_code'];
60  
61 }
62
63 //-------------------------------------------------------------------------------------------------
64 //      Updates invoiced quantity in PO and GRN line, and act_price in PO
65 //  Returns:
66 // if chg_price is set:  previous act_price, delivery date and unit_price from PO
67 //
68 function update_supp_received_items_for_invoice($id, $po_detail_item, $qty_invoiced, $chg_price=null)
69 {
70         if ($chg_price != null)
71         {
72                 $sql = "SELECT act_price, unit_price FROM ".TB_PREF."purch_order_details WHERE
73                         po_detail_item = ".db_escape($po_detail_item);
74                 $result = db_query($sql, "The old actual price of the purchase order line could not be retrieved");
75                 $row = db_fetch($result);
76                 $ret = $row['act_price'];
77
78                 $unit_price = $row['unit_price']; //Added by Rasmus
79
80                 $sql = "SELECT delivery_date 
81                         FROM ".TB_PREF."grn_batch grn,"
82                                 .TB_PREF."grn_items line
83                         WHERE
84                                 grn.id = line.grn_batch_id AND line.id=".db_escape($id);
85                 $result = db_query($sql, "The old delivery date from the received record cout not be retrieved");
86                 $row = db_fetch($result);
87                 $date = $row['delivery_date'];
88         }
89         else
90         {
91                 $ret = 0;
92                 $date = "";
93                 $unit_price = 0; // Added by Rasmus
94         }
95     $sql = "UPDATE ".TB_PREF."purch_order_details
96                 SET qty_invoiced = qty_invoiced + ".db_escape($qty_invoiced);
97
98         if ($chg_price != null)
99                 $sql .= " , act_price = ".db_escape($chg_price);
100
101         $sql .= " WHERE po_detail_item = ".db_escape($po_detail_item);
102     db_query($sql, "The quantity invoiced of the purchase order line could not be updated");
103
104     $sql = "UPDATE ".TB_PREF."grn_items
105         SET quantity_inv = quantity_inv + ".db_escape($qty_invoiced)."
106         WHERE id = ".db_escape($id);
107         db_query($sql, "The quantity invoiced off the items received record could not be updated");
108         return array($ret, $date, $unit_price);
109 }
110
111 function get_diff_in_home_currency($supplier, $old_date, $date, $amount1, $amount2)
112 {
113         $dec = user_price_dec();
114         price_decimal_format($amount2, $dec);
115         $currency = get_supplier_currency($supplier);
116         $ex_rate = get_exchange_rate_to_home_currency($currency, $old_date);
117         $amount1 = $amount1 / $ex_rate;
118         $ex_rate = get_exchange_rate_to_home_currency($currency, $date);
119         $amount2 = $amount2 / $ex_rate;
120         $diff = $amount2 - $amount1;
121         //return round2($diff, $dec);
122         return $diff;
123 }
124 //----------------------------------------------------------------------------------------
125
126 function add_supp_invoice(&$supp_trans)
127 {
128         global $Refs;
129
130         //$company_currency = get_company_currency();
131         $trans_no = $supp_trans->trans_no;
132         $trans_type = $supp_trans->trans_type;
133         $supplier = get_supplier($supp_trans->supplier_id);
134     $dim = !empty($supp_trans->dimension) ? $supp_trans->dimension :
135         ($supplier['dimension_id'] ? $supplier['dimension_id'] : 0);
136     $dim2 = !empty($supp_trans->dimension2) ? $supp_trans->dimension2 :
137         ($supplier['dimension2_id'] ? $supplier['dimension2_id'] : 0);
138
139         begin_transaction();
140         hook_db_prewrite($supp_trans, $trans_type);
141         $tax_total = 0;
142     $taxes = $supp_trans->get_taxes($supp_trans->tax_group_id);
143         if ($trans_no) {
144                 $allocs = get_payments_for($trans_no, $trans_type, $supp_trans->supplier_id); // save allocations
145                 void_transaction($trans_type, $trans_no, Today(), _("Document reentered."));
146                 $Refs->restore_last($trans_type, $trans_no);
147         } else
148                 $allocs = get_po_prepayments($supp_trans);
149
150         add_new_exchange_rate($supp_trans->currency, $supp_trans->tran_date, $supp_trans->ex_rate);
151
152     foreach ($taxes as $n => $taxitem)
153     {
154                 $taxes[$n]['Value'] =  round2($taxitem['Value'], user_price_dec());
155         $tax_total += $taxes[$n]['Value'];
156     }
157
158         $invoice_items_total = $supp_trans->get_items_total();
159
160         $item_added_tax = 0;
161     if (!$supp_trans->tax_included)
162     {
163             $taxes = $supp_trans->get_taxes($supp_trans->tax_group_id);
164             foreach ($taxes as $n => $taxitem)
165                         $item_added_tax += isset($taxitem['Override']) ? $taxitem['Override'] : round2($taxitem['Value'], user_price_dec());
166         }
167
168         if ($trans_type == ST_SUPPCREDIT)
169         {
170                 // let's negate everything because it's a credit note
171                 $invoice_items_total = -$invoice_items_total;
172                 $tax_total = -$tax_total;
173                 $supp_trans->ov_discount = -$supp_trans->ov_discount; // this isn't used at all...
174                 $item_added_tax = -$item_added_tax;
175         }
176
177     $date_ = $supp_trans->tran_date;
178         $ex_rate = get_exchange_rate_from_home_currency($supp_trans->currency, $date_);
179
180     /*First insert the invoice into the supp_trans table*/
181         $invoice_id = write_supp_trans($trans_type, 0, $supp_trans->supplier_id, $date_, $supp_trans->due_date,
182                 $supp_trans->reference, $supp_trans->supp_reference,
183                 $invoice_items_total, $item_added_tax, $supp_trans->ov_discount, "", 0, $supp_trans->tax_included);
184
185         if ($trans_no)
186                 move_trans_attachments($trans_type, $trans_no, $invoice_id);
187
188         $supp_trans->trans_no = $invoice_id;
189
190         $total = 0;
191
192     /* Now the TAX account */
193     $taxes = $supp_trans->get_taxes($supp_trans->tax_group_id, 0, false);
194         $net_diff = 0;
195
196     foreach ($taxes as $taxitem)
197     {
198                 if ($taxitem['Net'] != 0)
199                 {
200                         if (isset($taxitem['Override'])) {
201                                 if ($supp_trans->tax_included) { // if tax included, fix net amount to preserve overall line price
202                                         $net_diff += $taxitem['Override'] - $taxitem['Value'];
203                                         $taxitem['Net'] += $taxitem['Override'] - $taxitem['Value'];
204                                 }
205                                 $taxitem['Value'] = $taxitem['Override'];
206                         }
207                         add_trans_tax_details($trans_type, $invoice_id, 
208                                 $taxitem['tax_type_id'], $taxitem['rate'], $supp_trans->tax_included, $taxitem['Value'],
209                                 $taxitem['Net'], $ex_rate, $date_, $supp_trans->supp_reference, TR_INPUT);
210
211                         if (isset($taxitem['purchasing_gl_code']))
212                         {
213                                 if ($trans_type == ST_SUPPCREDIT)
214                                         $taxitem['Value'] = -$taxitem['Value'];
215                                 $total += add_gl_trans_supplier($trans_type, $invoice_id, $date_,
216                                         $taxitem['purchasing_gl_code'], $dim, $dim2, $taxitem['Value'],
217                                         $supp_trans->supplier_id,
218                                         "A general ledger transaction for the tax amount could not be added");
219                         }
220                 }
221     }
222     if ($trans_type == ST_SUPPCREDIT)
223                 $net_diff = -$net_diff;
224
225     /* Now the AP account */
226     $total += add_gl_trans_supplier($trans_type, $invoice_id, $date_, $supplier["payable_account"], $dim, $dim2,
227                 -($invoice_items_total +  $item_added_tax + $supp_trans->ov_discount),
228                 $supp_trans->supplier_id,
229                 "The general ledger transaction for the control total could not be added");
230
231         $to_allocate = ($invoice_items_total + $item_added_tax + $supp_trans->ov_discount);
232
233     foreach ($supp_trans->gl_codes as $entered_gl_code)
234     {
235             /*GL Items are straight forward - just do the debit postings to the GL accounts specified -
236             the credit is to creditors control act  done later for the total invoice value + tax*/
237
238                 if ($trans_type == ST_SUPPCREDIT)
239                         $entered_gl_code->amount = -$entered_gl_code->amount;
240
241                 $memo_ = $entered_gl_code->memo_;
242                 $total += add_gl_trans_supplier($trans_type, $invoice_id, $date_, $entered_gl_code->gl_code,
243                         $entered_gl_code->gl_dim, $entered_gl_code->gl_dim2, $entered_gl_code->amount, $supp_trans->supplier_id, "", 0, $memo_);
244
245                 add_supp_invoice_gl_item($trans_type, $invoice_id, $entered_gl_code->gl_code, $entered_gl_code->amount, $memo_,
246                         $entered_gl_code->gl_dim, $entered_gl_code->gl_dim2);
247
248                 // store tax details if the gl account is a tax account
249                 if ($trans_type == ST_SUPPCREDIT)
250                         $entered_gl_code->amount = -$entered_gl_code->amount;
251                 add_gl_tax_details($entered_gl_code->gl_code, 
252                         $trans_type, $invoice_id, $entered_gl_code->amount,
253                         $ex_rate, $date_, $supp_trans->supp_reference, $supp_trans->tax_included);
254     }
255
256     $clearing_act = get_company_pref('grn_clearing_act');
257     foreach ($supp_trans->grn_items as $line_no => $entered_grn)
258     {
259
260         if ($trans_type == ST_SUPPCREDIT)
261         {
262                         $entered_grn->this_quantity_inv = -$entered_grn->this_quantity_inv;
263                         set_grn_item_credited($entered_grn, $supp_trans->supplier_id, $invoice_id, $date_);
264         }
265
266                 // For tax included pricelist the net price is calculated down from tax_included price.
267                 // To avoid rounding errors we have to operate on line value instead of price
268                 // Additionally we have to take into account differences in net value
269                 // due to variations in tax calculations on supplier side. More over there is no direct relation between
270                 // taxes and sales accounts, so we add net_diff just to first posted net value. This is _ugly_hack_
271                 // which save us from rewriting whole routine, and works right only for small tax differences.
272
273                 $taxfree_line = get_tax_free_price_for_item($entered_grn->item_code, $entered_grn->this_quantity_inv * $entered_grn->chg_price, 
274                           $supp_trans->tax_group_id, $supp_trans->tax_included) - $net_diff; $net_diff = 0;
275
276                 $line_tax = get_full_price_for_item($entered_grn->item_code,
277                         $entered_grn->this_quantity_inv * $entered_grn->chg_price, 0, $supp_trans->tax_included) - $taxfree_line;
278
279                 $stock_gl_code = get_stock_gl_code($entered_grn->item_code);
280
281                 $dim = !empty($supp_trans->dimension) ? $supp_trans->dimension :
282                         ($supplier['dimension_id'] ? $supplier['dimension_id'] : $stock_gl_code['dimension_id']);
283                 $dim2 = !empty($supp_trans->dimension2) ? $supp_trans->dimension2 :
284                         ($supplier['dimension2_id'] ? $supplier['dimension2_id'] : $stock_gl_code['dimension2_id']);
285         if ($trans_type == ST_SUPPCREDIT)
286                 {
287                         $iv_act = (is_inventory_item($entered_grn->item_code) ? $stock_gl_code["inventory_account"] : 
288                                 ($supplier["purchase_account"] ? $supplier["purchase_account"] : $stock_gl_code["cogs_account"]));
289                         $total += add_gl_trans_supplier($trans_type, $invoice_id, $date_, $iv_act,
290                                 $dim, $dim2, $taxfree_line, $supp_trans->supplier_id);
291                 }
292         else
293         {
294                 // -------------- if price changed since po received.
295                         $iv_act = is_inventory_item($entered_grn->item_code) ? ($clearing_act ? $clearing_act : $stock_gl_code["inventory_account"]) : 
296                                 ($supplier["purchase_account"] ? $supplier["purchase_account"] : $stock_gl_code["cogs_account"]);
297                 $old = update_supp_received_items_for_invoice($entered_grn->id, $entered_grn->po_detail_item,
298                         $entered_grn->this_quantity_inv, $entered_grn->chg_price);
299
300                         // Since the standard cost is always calculated on basis of the po unit_price,
301                         // this is also the price that should be the base of calculating the price diff.
302                         // In cases where there is two different po invoices on the same delivery with different unit prices this will not work either
303
304                         $old_price = $old[2];
305
306                         $old_date = sql2date($old[1]);
307                         if (!is_inventory_item($entered_grn->item_code))
308                                 $total += add_gl_trans_supplier($trans_type, $invoice_id, $date_, $iv_act,
309                                         $dim, $dim2, $taxfree_line, $supp_trans->supplier_id);
310                         else
311                         {
312                                 $ex_rate = get_exchange_rate_from_home_currency($supp_trans->currency, $old_date);
313                                 $old_value = get_tax_free_price_for_item($entered_grn->item_code, $entered_grn->this_quantity_inv * $old_price, 
314                                           $supp_trans->tax_group_id, $supp_trans->tax_included);
315
316                                 $currency = get_supplier_currency($supp_trans->supplier_id);
317
318                                 $total += add_gl_trans_supplier($trans_type, $invoice_id, $date_, $iv_act,
319                                         $dim, $dim2, $old_value, $supp_trans->supplier_id, "", $ex_rate);
320                                 $diff = get_diff_in_home_currency($supp_trans->supplier_id, $old_date, $date_, $old_value, 
321                                         $taxfree_line);
322
323                                 $mat_cost = update_average_material_cost(null, $entered_grn->item_code,
324                                         $diff/$entered_grn->this_quantity_inv, $entered_grn->this_quantity_inv, null, true);
325
326                                 //Add GL transaction for GRN Provision in case of difference
327                                 if ($diff != 0)
328                                 {
329                                         $total += add_gl_trans($trans_type, $invoice_id, $date_, $stock_gl_code["inventory_account"],
330                                                 $dim, $dim2, 'GRN Provision', $diff, null, null, null,
331                                                 "The general ledger transaction could not be added for the GRN of the inventory item");
332
333                                         //If QOH is 0 or negative then update_average_material_cost will be skipped
334                                         //Thus difference in PO and Supp Invoice should be handled separately
335                                         $qoh = get_qoh_on_date($entered_grn->item_code);
336                                         if ($qoh <= 0)
337                                         {
338                                                 global $Refs;
339
340                                                 $id = get_next_trans_no(ST_JOURNAL);
341                                                 $ref = $Refs->get_next(ST_JOURNAL, null, $date_);
342                                                 add_journal(ST_JOURNAL, $id, $diff, $date_, get_company_currency(), $ref);
343                                                 $stock_id = $entered_grn->item_code;
344                                                 $stock_gl_code = get_stock_gl_code($stock_id);
345                                                 $memo = _("Supplier invoice adjustment for zero inventory of ").$stock_id." "._("Invoice")." ".$supp_trans->reference;
346                                                 //Reverse the inventory effect if $qoh <=0
347                                                 add_gl_trans_std_cost(ST_JOURNAL, $id, $date_, 
348                                                         $stock_gl_code["inventory_account"],
349                                                         $dim, $dim2, $memo, -$diff);
350                                                 //GL Posting to inventory adjustment account
351                                                 add_gl_trans_std_cost(ST_JOURNAL, $id, $date_, 
352                                                         $stock_gl_code["adjustment_account"],
353                                                         $dim, $dim2, $memo, $diff);
354
355                                                 add_audit_trail(ST_JOURNAL, $id, $date_);
356                                                 add_comments(ST_JOURNAL, $id, $date_, $memo);
357                                                 $Refs->save(ST_JOURNAL, $id, $ref);
358                                         }
359                                 }
360                         }
361                         add_or_update_purchase_data($supp_trans->supplier_id, $entered_grn->item_code, $entered_grn->chg_price); 
362                 }
363                 update_purchase_value($entered_grn->item_code, $entered_grn->chg_price * $ex_rate);
364                 add_supp_invoice_item($trans_type, $invoice_id, $entered_grn->item_code,
365                         $entered_grn->item_description, 0,      $entered_grn->chg_price, $line_tax/$entered_grn->this_quantity_inv,
366                         $entered_grn->this_quantity_inv, $entered_grn->id, $entered_grn->po_detail_item, "");
367     } /* end of GRN postings */
368
369         /*Post a balance post if $total != 0 */
370         add_gl_balance($trans_type, $invoice_id, $date_, -$total, PT_SUPPLIER, $supp_trans->supplier_id); // ??
371
372         add_comments($trans_type, $invoice_id, $date_, $supp_trans->Comments);
373
374         $Refs->save($trans_type, $invoice_id, $supp_trans->reference);
375
376         if (count($supp_trans->src_docs) == 1)
377         {
378                 $invoice_no = key($supp_trans->src_docs);
379                 $invoice_alloc_balance = get_supp_trans_allocation_balance(ST_SUPPINVOICE, $supp_trans->src_docs);
380                 if ($invoice_alloc_balance > 0) 
381                 {       //the invoice is not already fully allocated 
382
383                         $trans = get_supp_trans($invoice_id, ST_SUPPCREDIT);
384                         $total = -$trans['Total'];
385
386                         $allocate_amount = ($invoice_alloc_balance > $total) ? $total : $invoice_alloc_balance;
387
388                         /*Now insert the allocation record if > 0 */
389                         if ($allocate_amount != 0) 
390                         {
391                                 add_supp_allocation($allocate_amount, ST_SUPPCREDIT, $invoice_id, ST_SUPPINVOICE, $invoice_no,
392                                         $supp_trans->supplier_id, $date_);
393                                 update_supp_trans_allocation(ST_SUPPINVOICE, $invoice_no, $supp_trans->supplier_id);
394                                 update_supp_trans_allocation(ST_SUPPCREDIT, $invoice_id, $supp_trans->supplier_id);
395
396                                 exchange_variation(ST_SUPPCREDIT, $invoice_id, ST_SUPPINVOICE, $supp_trans->src_docs, $date_,
397                                         $allocate_amount, PT_SUPPLIER);
398                         }
399                 }
400         }
401
402         reallocate_payments($invoice_id, ST_SUPPINVOICE, $date_, $to_allocate, $allocs, $supp_trans->supplier_id);
403         $supp_trans->trans_no = $invoice_id;
404         hook_db_postwrite($supp_trans, $supp_trans->trans_type);
405     commit_transaction();
406
407     return $invoice_id;
408 }
409
410 //----------------------------------------------------------------------------------------
411
412 // get all the invoices/credits for a given PO - quite long route to get there !
413
414 function get_po_invoices_credits($po_number)
415 {
416         $sql = "SELECT DISTINCT trans.trans_no, trans.type,     ov_amount+ov_discount+ov_gst AS Total,
417                                 trans.tran_date
418                         FROM ".TB_PREF."supp_trans trans,"
419                                 .TB_PREF."supp_invoice_items line,"
420                                 .TB_PREF."purch_order_details poline,"
421                                 .TB_PREF."purch_orders po
422                 WHERE line.supp_trans_no = trans.trans_no
423                         AND line.supp_trans_type = trans.type
424                         AND line.po_detail_item_id = poline.po_detail_item
425                         AND po.supplier_id = trans.supplier_id
426                         AND po.order_no = poline.order_no
427                         AND poline.order_no = ".db_escape($po_number);
428
429         return db_query($sql, "The invoices/credits for the po $po_number could not be retreived");
430 }
431
432 //----------------------------------------------------------------------------------------
433 //
434 // Retrieve tax ovverides from tax register.
435 //
436 function get_tax_overrides($trans_type, $trans_no)
437 {
438         $tax_overrides = array();
439         $sql = "SELECT amount, tax_type_id as id, rate
440                 FROM ".TB_PREF."trans_tax_details details
441                 WHERE trans_type=".db_escape($trans_type)." AND trans_no=".db_escape($trans_no)
442                 ." AND amount>0"; // skip reposting of nondeductible VAT
443
444         $result = db_query($sql, 'Cannot retrieve tax overrides');
445         while($row = db_fetch($result))
446         {
447                 $tax_overrides[$row['id']] = $row['amount'];
448         }
449
450         return $tax_overrides;
451 }
452 //----------------------------------------------------------------------------------------
453
454 function read_supp_invoice($trans_no, $trans_type, &$supp_trans)
455 {
456         $sql = "SELECT trans.*, supp_name, dimension_id, dimension2_id, curr_code
457                 FROM ".TB_PREF."supp_trans trans,"
458                         .TB_PREF."suppliers sup
459                 WHERE trans_no = ".db_escape($trans_no)." AND type = ".db_escape($trans_type)."
460                 AND sup.supplier_id=trans.supplier_id";
461
462         $result = db_query($sql, "Cannot retreive a supplier transaction");
463
464         if (db_num_rows($result) == 1)
465         {
466                 $trans_row = db_fetch($result);
467
468                 $supp_trans->supplier_id = $trans_row["supplier_id"];
469                 $supp_trans->supplier_name = $trans_row["supp_name"];
470                 $supp_trans->tran_date = sql2date($trans_row["tran_date"]);
471                 $supp_trans->due_date = sql2date($trans_row["due_date"]);
472                 $supp_trans->Comments = get_comments_string($trans_type, $trans_no);
473                 $supp_trans->reference = $trans_row["reference"];
474                 $supp_trans->supp_reference = $trans_row["supp_reference"];
475                 $supp_trans->ov_amount = $trans_row["ov_amount"];
476                 $supp_trans->ov_discount = $trans_row["ov_discount"];
477                 $supp_trans->ov_gst = $trans_row["ov_gst"];
478                 $supp_trans->tax_included = $trans_row["tax_included"];
479                 $supp_trans->dimension = $trans_row["dimension_id"];
480                 $supp_trans->dimension2 = $trans_row["dimension2_id"];
481                 $supp_trans->currency = $trans_row["curr_code"];
482
483                 $id = $trans_row["trans_no"];
484
485                 $result = get_supp_invoice_items($trans_type, $id);
486
487                 if (db_num_rows($result) > 0)
488                 {
489
490             while ($details_row = db_fetch($result))
491             {
492
493                 if ($details_row["gl_code"] == 0)
494                 {
495                         $supp_trans->add_grn_to_trans($details_row["grn_item_id"], $details_row["po_detail_item_id"], $details_row["stock_id"],
496                                         $details_row["description"], 
497                                         $details_row['qty_recd'],
498                                         $details_row['quantity_inv']-$details_row["quantity"],
499                                         $details_row["quantity"], 0, $details_row["FullUnitPrice"],
500                                         0, 0);
501                 }
502                 else
503                 {
504                         $supp_trans->add_gl_codes_to_trans($details_row["gl_code"], get_gl_account_name($details_row["gl_code"]), 
505                                 $details_row["dimension_id"], $details_row["dimension2_id"],
506                                         $details_row["FullUnitPrice"], $details_row["memo_"]);
507                 }
508             }
509                         $supp_trans->tax_overrides = get_tax_overrides($trans_type, $trans_no);
510         }
511         else
512         {
513                         return display_db_error("Invalid supptrans details for supptrans number : $trans_no and type : $trans_type", $sql, true);
514                 }
515
516         }
517         else
518         {
519                 return display_db_error("Invalid supptrans number : $trans_no and type : $trans_type", $sql, true);
520         }
521 }
522
523 //----------------------------------------------------------------------------------------
524
525 function get_matching_invoice_item($stock_id, $po_item_id)
526 {
527         $sql = "SELECT *, tran_date
528                 FROM ".TB_PREF."supp_invoice_items,"
529                         .TB_PREF."supp_trans
530                 WHERE supp_trans_type = ".ST_SUPPINVOICE." AND stock_id = "
531                 .db_escape($stock_id)." AND po_detail_item_id = ".db_escape($po_item_id)."
532                 AND supp_trans_no = trans_no";
533         $result = db_query($sql, "Cannot retreive supplier transaction detail records");
534         return db_fetch($result);  
535 }
536
537 function void_supp_invoice($type, $type_no)
538 {
539         begin_transaction();
540
541         hook_db_prevoid($type, $type_no);
542         $trans = get_supp_trans($type_no, $type);
543
544         void_bank_trans($type, $type_no, true);
545
546         void_gl_trans($type, $type_no, true);
547
548         void_supp_allocations($type, $type_no);
549
550         void_supp_trans($type, $type_no);
551
552         $result = get_supp_invoice_items($type, $type_no);
553
554         // now remove this invoice/credit from any GRNs/POs that it's related to
555         if (db_num_rows($result) > 0)
556         {
557                 $date_ = Today();
558         while ($details_row = db_fetch($result))
559         {
560                 if ((int)$details_row["grn_item_id"] > 0) // it can be empty for GL items
561                 {
562                         // Changed 2008-10-17 by Joe Hunt to get the avg. material cost updated
563                                 $old = update_supp_received_items_for_invoice($details_row["grn_item_id"],
564                                         $details_row["po_detail_item_id"], -$details_row["quantity"], $details_row["FullUnitPrice"]); 
565                                 
566                                 //$diff = $details_row["FullUnitPrice"] - $old[2];
567                                 $old_date = sql2date($old[1]);
568                                 
569                                 $batch = get_grn_batch_from_item($details_row["grn_item_id"]);  
570                                 $grn = get_grn_batch($batch);
571                         if ($type == ST_SUPPCREDIT) // credit note 2009-06-14 Joe Hunt Must restore the po and grn
572                         {       // We must get the corresponding invoice item to check for price chg.
573                                         $match = get_matching_invoice_item($details_row["stock_id"], $details_row["po_detail_item_id"]);
574                                         //Chaitanya : Skipped costing block & handle in void_stock_move
575                                         // We must get the corresponding invoice item to check for price chg.
576                                         /*if ($match !== false)
577                                                 $mat_cost = update_average_material_cost($grn["supplier_id"], $details_row["stock_id"],  
578                                                         $match["unit_price"], -$details_row["quantity"], sql2date($match['tran_date']), $match['tran_date'] !== $trans['tran_date']);
579                                         else            
580                                                 $mat_cost = update_average_material_cost($grn["supplier_id"], $details_row["stock_id"],  
581                                                         $details_row["FullUnitPrice"], -$details_row["quantity"], $old_date, $old[1] !== $trans['tran_date']);*/
582
583                                         $sql = "UPDATE ".TB_PREF."purch_order_details
584                                         SET quantity_ordered = quantity_ordered + ".-$details_row["quantity"].", ";
585                                 if ($match !== false)
586                                         $sql .= "act_price=".$match['unit_price'].", ";
587                                 $sql .= "quantity_received = quantity_received + ".-$details_row["quantity"]."
588                                     WHERE po_detail_item = ".$details_row["po_detail_item_id"];
589                                         db_query($sql, "a purchase order details record could not be updated. This receipt of goods has not been processed ");
590                                         $sql = "UPDATE ".TB_PREF."grn_items SET qty_recd=qty_recd+".-$details_row["quantity"]."
591                                                 WHERE id=".$details_row["grn_item_id"];
592                                         db_query($sql);
593                         }
594                         else
595                         {
596                                         $diff = get_diff_in_home_currency($grn["supplier_id"], $old_date, sql2date($trans['tran_date']), $old[2], 
597                                                 $details_row["FullUnitPrice"]);
598                                         // Only adjust the avg for the diff
599                                         $mat_cost = update_average_material_cost(null, $details_row["stock_id"],
600                                                 $diff, -$details_row["quantity"], $old_date, true);
601                                                 
602                                         //Chaitanya : Reverse effect
603                                         //If QOH is 0 or negative then update_average_material_cost will be skipped
604                                         //Thus difference in PO and Supp Invoice should be handled separately
605                                         
606                                         $qoh = get_qoh_on_date($details_row["stock_id"]);
607                                         if ($diff*$details_row["quantity"] !=0 && $qoh <= 0)
608                                         {
609                                                 global $Refs;
610
611                                                 //Chaitanya : Post a journal entry
612                                                 $id = get_next_trans_no(ST_JOURNAL);
613                                                 $ref = $Refs->get_next(ST_JOURNAL, null, $date_);
614                                                 add_journal(ST_JOURNAL, $id, $details_row["quantity"] * $diff, $old_date, get_company_currency(), $ref);
615                                                 $stock_id = $details_row["stock_id"];
616                                                 $stock_gl_code = get_stock_gl_code($stock_id);
617                                                 $memo = "Reversing Supplier invoice adjustment for zero inventory of ".$stock_id." Invoice: ".$trans['reference'];
618                                                 //Reverse the inventory effect if $qoh <=0
619                                                 add_gl_trans_std_cost(ST_JOURNAL, $id, $old_date, 
620                                                         $stock_gl_code["inventory_account"],
621                                                         $dim, $dim2, $memo, $details_row["quantity"] * $diff);
622                                                 //GL Posting to inventory adjustment account
623                                                 add_gl_trans_std_cost(ST_JOURNAL, $id, $old_date, 
624                                                         $stock_gl_code["adjustment_account"],
625                                                         $dim, $dim2, $memo, -$details_row["quantity"] * $diff);
626                                                 
627                                                 add_audit_trail(ST_JOURNAL, $id, $old_date);
628                                                 add_comments(ST_JOURNAL, $id, $old_date, $memo);
629                                                 $Refs->save(ST_JOURNAL, $id, $ref);
630                                         }
631                                 }
632                 }
633         }
634         }
635
636         if ($type == ST_SUPPCREDIT) // void the credits in stock moves
637                 void_stock_move($type, $type_no); 
638         void_supp_invoice_items($type, $type_no);
639         void_trans_tax_details($type, $type_no);
640
641         commit_transaction();
642 }
643
644 //----------------------------------------------------------------------------------------
645 function get_gl_account_info($acc)
646 {
647         $sql = "SELECT account_code, account_name FROM ".TB_PREF."chart_master WHERE account_code=".db_escape($acc);
648         return db_query($sql,"get account information");
649 }
650
651 function is_reference_already_there($supplier_id, $supp_reference, $trans_no=0)
652 {
653         $sql = "SELECT COUNT(*) FROM ".TB_PREF."supp_trans WHERE supplier_id="
654                 .db_escape($supplier_id) . " AND supp_reference=" 
655                 .db_escape($supp_reference) 
656                 . " AND ov_amount!=0"; // ignore voided invoice references
657         if ($trans_no)
658                 $sql .= " AND trans_no!=$trans_no";
659         $result=db_query($sql,"The sql to check for the previous entry of the same invoice failed");
660
661         $myrow = db_fetch_row($result);
662         return $myrow[0] > 0;
663 }
664
665 function remove_not_invoice_item($id)
666 {
667         begin_transaction();
668
669     $myrow = get_grn_item_detail($id);
670
671     $grn = get_grn_batch($myrow['grn_batch_id']);
672
673     $supp = get_supplier($grn["supplier_id"]);
674
675         $sql = "UPDATE ".TB_PREF."purch_order_details
676                 SET quantity_received = qty_invoiced, quantity_ordered = qty_invoiced WHERE po_detail_item = ".$myrow["po_detail_item"];
677         db_query($sql, "The quantity invoiced of the purchase order line could not be updated");
678
679     $sql = "UPDATE ".TB_PREF."grn_items
680         SET qty_recd = quantity_inv WHERE id = ".$myrow["id"];
681     db_query($sql, "The quantity invoiced off the items received record could not be updated");
682
683     update_average_material_cost($grn["supplier_id"], $myrow["item_code"],
684         $myrow["unit_price"], -$myrow["QtyOstdg"], Today());
685
686     $price = $myrow['unit_price'];
687     if ($supp['tax_included'])
688         $price = get_tax_free_price_for_item($myrow['item_code'], $myrow['unit_price'], $supp['tax_group_id'], $supp['tax_included']);        
689
690     add_stock_move(ST_SUPPRECEIVE, $myrow["item_code"], $myrow['grn_batch_id'], $grn['loc_code'], sql2date($grn["delivery_date"]), "",
691         -$myrow["QtyOstdg"], $myrow['std_cost_unit'], $price);
692
693     $clearing_act = get_company_pref('grn_clearing_act');
694     if ($clearing_act) {    // otherwise GRN clearing account is not used
695         if (is_inventory_item($myrow['item_code']))
696         {
697             $total = 0;
698             $stock_gl_code = get_stock_gl_code($myrow['item_code']);
699             $date = sql2date($grn["delivery_date"]);
700             $total += add_gl_trans_supplier(ST_SUPPRECEIVE, $myrow['grn_batch_id'], $date, $stock_gl_code["inventory_account"],
701                 $stock_gl_code['dimension_id'], $stock_gl_code['dimension2_id'],
702                 -$myrow['QtyOstdg'] * $price, $grn["supplier_id"], "", 0, _("GRN Removal"));
703             $total += add_gl_trans_supplier(ST_SUPPRECEIVE, $myrow['grn_batch_id'], $date, $clearing_act,
704                 0, 0, -$total, null, "", 0, _("GRN Removal"));
705         }
706     }
707
708     commit_transaction();
709 }
710
711 function find_src_invoices($cart)
712 {
713         $invoices = $po_ids = array();
714         foreach($cart->grn_items as $item)
715                 $po_ids[] = "'$item->po_detail_item'";  // credit item lines
716
717         if (count($po_ids)) {
718                 $sql = "SELECT DISTINCT trans.trans_no, trans.reference, trans.supp_reference
719                         FROM ".TB_PREF."supp_invoice_items items
720                         LEFT JOIN ".TB_PREF."supp_trans trans ON trans.trans_no=items.supp_trans_no AND trans.`type`=items.supp_trans_type
721                         WHERE items.po_detail_item_id IN (" . implode(',', $po_ids). ")"." AND items.supp_trans_type=20";
722                 $result = db_query($sql, "cannot find source invoice details");
723                 while ($rec = db_fetch($result))
724                 {
725                         $invoices[$rec['trans_no']] = $rec['supp_reference']; // array($rec['reference'], $rec['supp_reference']);
726                 }
727         }
728         return $invoices;
729 }