fe174800d495ebfbf19e2c0ee5dc07df44c7973f
[fa-stable.git] / purchasing / includes / purchasing_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/supp_trans_class.inc");
13
14 include_once($path_to_root . "/includes/banking.inc");
15 include_once($path_to_root . "/includes/inventory.inc");
16
17 include_once($path_to_root . "/includes/date_functions.inc");
18
19 include_once($path_to_root . "/includes/db/allocations_db.inc");
20
21 include_once($path_to_root . "/purchasing/includes/db/supp_trans_db.inc");
22 include_once($path_to_root . "/purchasing/includes/db/po_db.inc");
23 include_once($path_to_root . "/purchasing/includes/db/grn_db.inc");
24 include_once($path_to_root . "/purchasing/includes/db/invoice_db.inc");
25 include_once($path_to_root . "/purchasing/includes/db/suppalloc_db.inc");
26 include_once($path_to_root . "/purchasing/includes/db/supp_payment_db.inc");
27 include_once($path_to_root . "/purchasing/includes/db/suppliers_db.inc");
28
29 //-------------------------------------------------------------------------------------------------------------
30
31 // add a supplier-related gl transaction
32 // $date_ is display date (non-sql)
33 // $amount is in SUPPLIERS'S currency
34
35 function add_gl_trans_supplier($type, $type_no, $date_, $account, $dimension, $dimension2,  
36         $amount, $supplier_id, $err_msg="", $rate=0, $memo="")
37 {
38         if ($err_msg == "")
39                 $err_msg = "The supplier GL transaction could not be inserted"; 
40                 
41         return add_gl_trans($type, $type_no, $date_, $account, $dimension, $dimension2, $memo, 
42                 $amount, get_supplier_currency($supplier_id), 
43                 PT_SUPPLIER, $supplier_id, $err_msg, $rate);
44 }
45
46 //----------------------------------------------------------------------------------------
47
48 function get_purchase_price($supplier_id, $stock_id)
49 {
50         $sql = "SELECT price, conversion_factor FROM ".TB_PREF."purch_data 
51                 WHERE supplier_id = ".db_escape($supplier_id) . " 
52                 AND stock_id = ".db_escape($stock_id);
53         $result = db_query($sql, "The supplier pricing details for " . $stock_id . " could not be retrieved");    
54
55         if (db_num_rows($result) == 1)
56         {
57                 $myrow = db_fetch($result);
58                 return $myrow["price"] / $myrow['conversion_factor'];
59         } 
60         else 
61         {
62                 return 0;
63         }       
64 }
65
66 function get_purchase_conversion_factor($supplier_id, $stock_id)
67 {
68         $sql = "SELECT conversion_factor FROM ".TB_PREF."purch_data 
69                 WHERE supplier_id = ".db_escape($supplier_id)." 
70                 AND stock_id = ".db_escape($stock_id);
71         $result = db_query($sql, "The supplier pricing details for " . $stock_id . " could not be retrieved");    
72
73         if (db_num_rows($result) == 1)
74         {
75                 $myrow = db_fetch($result);
76                 return $myrow['conversion_factor'];
77         } 
78         else 
79         {
80                 return 1;
81         }       
82 }
83 //----------------------------------------------------------------------------------------
84
85 function get_purchase_data($supplier_id, $stock_id)
86 {
87         $sql = "SELECT * FROM ".TB_PREF."purch_data 
88                 WHERE supplier_id = ".db_escape($supplier_id) . "
89                 AND stock_id = ".db_escape($stock_id);
90         $result = db_query($sql, "The supplier pricing details for " . $stock_id . " could not be retrieved");    
91
92         return db_fetch($result);
93 }
94
95 function add_or_update_purchase_data($supplier_id, $stock_id, $price, $description="", $uom="")
96 {
97         $data = get_purchase_data($supplier_id, $stock_id);
98         if ($data === false)
99         {
100                 $sql = "INSERT INTO ".TB_PREF."purch_data (supplier_id, stock_id, price, suppliers_uom,
101                         conversion_factor, supplier_description) VALUES (".db_escape($supplier_id)
102                         .", ".db_escape($stock_id).", ".db_escape($price).", "
103                         .db_escape($uom).", 1, ".db_escape($description).")";
104                 db_query($sql,"The supplier purchasing details could not be added");
105                 return;
106         }       
107         $price = round($price * $data['conversion_factor'], user_price_dec());
108         $sql = "UPDATE ".TB_PREF."purch_data SET price=".db_escape($price);
109         if ($uom != "")
110                 $sql .= ",suppliers_uom=".db_escape($uom);
111         if ($description != "") 
112                 $sql .= ",supplier_description=".db_escape($description);
113         $sql .= " WHERE stock_id=".db_escape($stock_id)." AND supplier_id=".db_escape($supplier_id);
114         db_query($sql,"The supplier purchasing details could not be updated");
115         return true;
116 }
117
118 function get_po_prepayments($supp_trans)
119 {
120         // collect purchase order line ids
121         $allocations = array();
122         $line_ids = array();
123         foreach($supp_trans->grn_items as $item)
124                 if ($item->po_detail_item)
125                         $line_ids[] = $item->po_detail_item;
126
127         if (!count($line_ids))
128                 return $allocations;
129
130         $sql = "SELECT DISTINCT allocs.*
131                 FROM ".TB_PREF."supp_allocations allocs 
132                         LEFT JOIN ".TB_PREF."purch_order_details line ON line.order_no=allocs.trans_no_to AND trans_type_to=".ST_PURCHORDER."
133                 WHERE line.po_detail_item IN(".implode(',', array_values($line_ids)).")";
134
135         $result = db_query($sql, "Cannot retrieve po prepayments");
136
137         while($dat = db_fetch($result))
138         {
139                 $allocations[] = $dat;
140         }
141
142         return $allocations;
143 }
144
145 //---------------------------------------------------------------------------------------------------
146 //
147 //      Add Purchase Order, GRN or Purchase Invoice with parent auto documents (if any)
148 //
149 function add_direct_supp_trans($cart)
150 {
151         global $Refs, $type_shortcuts;
152
153         if ($cart->trans_type != ST_PURCHORDER) {
154                 // for direct grn/invoice set same dates for lines as for whole document
155                 foreach ($cart->line_items as $line_no =>$line)
156                         $cart->line_items[$line_no]->req_del_date = $cart->orig_order_date;
157         }
158
159         $ref = $cart->reference;
160         if ($cart->trans_type != ST_PURCHORDER) {
161                 $cart->reference = 'auto';
162                 begin_transaction();    // all db changes as single transaction for direct document
163         }
164         $order_no = add_po($cart);
165         $cart->order_no = $order_no;
166
167         if ($cart->trans_type == ST_PURCHORDER)
168                 return $order_no;
169
170         //Direct GRN
171         if ($cart->trans_type == ST_SUPPRECEIVE)
172                 $cart->reference = $ref;
173         if ($cart->trans_type != ST_SUPPINVOICE)
174                 $cart->Comments = $cart->reference; //grn does not hold supp_ref
175         foreach($cart->line_items as $key => $line)
176                 $cart->line_items[$key]->receive_qty = $line->quantity;
177         $grn_no = add_grn($cart);
178         if ($cart->trans_type == ST_SUPPRECEIVE) {
179                 commit_transaction(); // save PO+GRN
180                 return $grn_no;
181         }
182         //      Direct Purchase Invoice
183         $inv = new supp_trans(ST_SUPPINVOICE);
184         $inv->Comments = $cart->Comments;
185         $inv->supplier_id = $cart->supplier_id;
186         $inv->tran_date = $cart->orig_order_date;
187         $inv->due_date = $cart->due_date;
188         $inv->dimension = $cart->dimension;
189         $inv->dimension2 = $cart->dimension2;
190         $inv->reference = $ref;
191         $inv->supp_reference = $cart->supp_ref;
192         $inv->tax_included = $cart->tax_included;
193         $supp = get_supplier($cart->supplier_id);
194         $inv->tax_group_id = $supp['tax_group_id'];
195         $inv->ov_amount = $inv->ov_gst = $inv->ov_discount = 0;
196         $total = 0;
197                 foreach($cart->line_items as $key => $line) {
198                 $inv->add_grn_to_trans($line->grn_item_id, $line->po_detail_rec, $line->stock_id,
199                         $line->item_description, $line->receive_qty, 0, $line->receive_qty,
200                         $line->price, $line->price, true, get_unit_cost($line->stock_id), '');
201                 $total += round2(($line->receive_qty * $line->price), user_price_dec());
202         }
203         $inv->tax_overrides = $cart->tax_overrides;
204         if (!$inv->tax_included) {
205                 $taxes = $inv->get_taxes($inv->tax_group_id, 0, false);
206                 foreach( $taxes as $taxitem) {
207                         $total += isset($taxitem['Override']) ? $taxitem['Override'] : $taxitem['Value'];
208                 }
209         }
210         $inv->ex_rate = $cart->ex_rate;
211
212         $inv_no = add_supp_invoice($inv);
213
214         if ($cart->cash_account) {
215                 $pmt_no = write_supp_payment(0, $inv->supplier_id, $cart->cash_account, $inv->tran_date, $Refs->get_next(ST_SUPPAYMENT, null, $inv->tran_date), 
216                         $total, 0, _('Payment for:').$inv->supp_reference .' ('.$type_shortcuts[ST_SUPPINVOICE].$inv_no.')' . ' ' . $cart->Comments, $cart->dimension, $cart->dimension2);
217                 add_supp_allocation($total, ST_SUPPAYMENT, $pmt_no, ST_SUPPINVOICE, $inv_no, $inv->supplier_id, $inv->tran_date);
218                 update_supp_trans_allocation(ST_SUPPINVOICE, $inv_no, $inv->supplier_id);
219                 update_supp_trans_allocation(ST_SUPPAYMENT, $pmt_no, $inv->supplier_id);
220         }
221         commit_transaction(); // save PO+GRN+PI(+SP)
222         return $inv_no;
223 }
224