Cleanup: removed all closing tags in php files.
[fa-stable.git] / purchasing / includes / db / invoice_items_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 add_supp_invoice_item($supp_trans_type, $supp_trans_no, $stock_id, $description,
15         $gl_code, $unit_price, $unit_tax, $quantity, $grn_item_id, $po_detail_item_id, $memo_,
16         $err_msg="")
17 {
18         $sql = "INSERT INTO ".TB_PREF."supp_invoice_items (supp_trans_type, supp_trans_no, stock_id, description, gl_code, unit_price, unit_tax, quantity,
19                 grn_item_id, po_detail_item_id, memo_) ";
20         $sql .= "VALUES (".db_escape($supp_trans_type).", ".db_escape($supp_trans_no).", "
21                 .db_escape($stock_id).
22         ", ".db_escape($description).", ".db_escape($gl_code).", ".db_escape($unit_price)
23         .", ".db_escape($unit_tax).", ".db_escape($quantity).",
24                 ".db_escape($grn_item_id).", ".db_escape($po_detail_item_id).", ".db_escape($memo_).")";
25
26         if ($err_msg == "")
27                 $err_msg = "Cannot insert a supplier transaction detail record";
28
29         db_query($sql, $err_msg);
30
31         return db_insert_id();
32 }
33
34 //-------------------------------------------------------------------------------------------------------------
35
36 function add_supp_invoice_gl_item($supp_trans_type, $supp_trans_no, $gl_code, $amount, $memo_, $err_msg="")
37 {
38         return add_supp_invoice_item($supp_trans_type, $supp_trans_no,  "", "", $gl_code, $amount,
39                 0, 0, /*$grn_item_id*/0, /*$po_detail_item_id*/0, $memo_, $err_msg);
40 }
41
42
43 //----------------------------------------------------------------------------------------
44
45 function get_supp_invoice_items($supp_trans_type, $supp_trans_no)
46 {
47         $sql = "SELECT *, unit_price AS FullUnitPrice FROM "
48                 .TB_PREF."supp_invoice_items inv LEFT JOIN ".TB_PREF."grn_items grn ON grn.id =inv.grn_item_id
49                 WHERE supp_trans_type = ".db_escape($supp_trans_type)."
50                 AND supp_trans_no = ".db_escape($supp_trans_no)
51                 ." ORDER BY inv.id";
52         return db_query($sql, "Cannot retreive supplier transaction detail records");
53 }
54
55 //----------------------------------------------------------------------------------------
56
57 function void_supp_invoice_items($type, $type_no)
58 {
59         $sql = "UPDATE ".TB_PREF."supp_invoice_items SET quantity=0, unit_price=0
60                 WHERE supp_trans_type = ".db_escape($type)." AND supp_trans_no=".db_escape($type_no);
61         db_query($sql, "could not void supptrans details");
62 }
63