Tax algorithm handling on supplier side is reverted as unpractical.
[fa-stable.git] / purchasing / includes / db / supp_trans_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 //      FIXME - this should be revised for transaction update case.
15 //
16 function write_supp_trans($type, $trans_no, $supplier_id, $date_, $due_date, $reference, $supp_reference,
17         $amount, $amount_tax, $discount, $err_msg="", $rate=0, $included=0)
18 {
19         $new = $trans_no==0;
20         $date = date2sql($date_);
21         if ($due_date == "")
22                 $due_date = "0000-00-00";
23         else
24                 $due_date = date2sql($due_date);
25
26         if ($new)
27                 $trans_no = get_next_trans_no($type);
28
29         $curr = get_supplier_currency($supplier_id);
30         
31         if ($rate == 0)
32                 $rate = get_exchange_rate_from_home_currency($curr, $date_);
33
34
35         $sql = "INSERT INTO ".TB_PREF."supp_trans (trans_no, type, supplier_id, tran_date, due_date,
36                 reference, supp_reference, ov_amount, ov_gst, rate, ov_discount, tax_included) ";
37         $sql .= "VALUES (".db_escape($trans_no).", ".db_escape($type)
38         .", ".db_escape($supplier_id).", '$date', '$due_date',
39                 ".db_escape($reference).", ".db_escape($supp_reference).", ".db_escape($amount)
40                 .", ".db_escape($amount_tax).", ".db_escape($rate).", ".db_escape($discount).", ".db_escape($included).")";
41
42         if ($err_msg == "")
43                 $err_msg = "Cannot insert a supplier transaction record";
44
45         db_query($sql, $err_msg);
46         add_audit_trail($type, $trans_no, $date_);
47
48         return $trans_no;
49 }
50
51 //-------------------------------------------------------------------------------------------------------------
52
53 function get_supp_trans($trans_no, $trans_type=-1, $supplier_id=null)
54 {
55         $sql = "SELECT ".TB_PREF."supp_trans.*, (".TB_PREF."supp_trans.ov_amount+".TB_PREF."supp_trans.ov_gst+".TB_PREF."supp_trans.ov_discount) AS Total,
56                 ".TB_PREF."suppliers.supp_name AS supplier_name, ".TB_PREF."suppliers.curr_code AS curr_code ";
57
58         if ($trans_type == ST_SUPPAYMENT || $trans_type == ST_BANKPAYMENT)
59         {
60                 // it's a payment so also get the bank account
61                 $sql .= ", ".TB_PREF."bank_accounts.bank_name, ".TB_PREF."bank_accounts.bank_account_name, ".TB_PREF."bank_accounts.bank_curr_code,
62                         ".TB_PREF."bank_accounts.account_type AS BankTransType, ".TB_PREF."bank_trans.amount AS bank_amount,
63                         ".TB_PREF."bank_trans.ref ";
64         }
65
66         $sql .= " FROM ".TB_PREF."supp_trans, ".TB_PREF."suppliers ";
67
68         if ($trans_type == ST_SUPPAYMENT || $trans_type == ST_BANKPAYMENT)
69         {
70                 // it's a payment so also get the bank account
71                 $sql .= ", ".TB_PREF."bank_trans, ".TB_PREF."bank_accounts";
72         }
73
74         $sql .= " WHERE ".TB_PREF."supp_trans.trans_no=".db_escape($trans_no)."
75                 AND ".TB_PREF."supp_trans.supplier_id=".TB_PREF."suppliers.supplier_id";
76
77         if (isset($supplier_id))
78                 $sql .= " AND ".TB_PREF."supp_trans.supplier_id=".db_escape($supplier_id);
79
80         if ($trans_type > -1)
81                 $sql .= " AND ".TB_PREF."supp_trans.type=".db_escape($trans_type);
82
83         if ($trans_type == ST_SUPPAYMENT || $trans_type == ST_BANKPAYMENT)
84         {
85                 // it's a payment so also get the bank account
86                 $sql .= " AND ".TB_PREF."bank_trans.trans_no =".db_escape($trans_no)."
87                         AND ".TB_PREF."bank_trans.type=".db_escape($trans_type)."
88                         AND ".TB_PREF."bank_accounts.id=".TB_PREF."bank_trans.bank_act ";
89         }
90
91         $result = db_query($sql, "Cannot retreive a supplier transaction");
92
93     if (db_num_rows($result) == 0)
94     {
95        // can't return nothing
96        display_db_error("no supplier trans found for given params", $sql, true);
97        exit;
98     }
99
100     if (db_num_rows($result) > 1)
101     {
102        // can't return multiple
103        display_db_error("duplicate supplier transactions found for given params", $sql, true);
104        exit;
105     }
106     return db_fetch($result);
107 }
108
109
110 //----------------------------------------------------------------------------------------
111
112 function exists_supp_trans($type, $type_no)
113 {
114         if ($type == ST_SUPPRECEIVE)
115                 return exists_grn($type_no);
116
117         $sql = "SELECT trans_no FROM ".TB_PREF."supp_trans WHERE type=".db_escape($type)."
118                 AND trans_no=".db_escape($type_no);
119         $result = db_query($sql, "Cannot retreive a supplier transaction");
120
121     return (db_num_rows($result) > 0);
122 }
123
124 //----------------------------------------------------------------------------------------
125
126 function void_supp_trans($type, $type_no)
127 {
128         $sql = "UPDATE ".TB_PREF."supp_trans SET ov_amount=0, ov_discount=0, ov_gst=0,
129                 alloc=0 WHERE type=".db_escape($type)." AND trans_no=".db_escape($type_no);
130
131         db_query($sql, "could not void supp transactions for type=$type and trans_no=$type_no");
132 }
133
134 //----------------------------------------------------------------------------------------
135
136 function clear_supp_trans($type, $type_no)
137 {
138         $sql = "DELETE FROM ".TB_PREF."supp_trans 
139                         WHERE type=".db_escape($type)." AND trans_no=".db_escape($type_no);
140
141         db_query($sql, "could not clear supp transactions for type=$type and trans_no=$type_no");
142 }
143 //----------------------------------------------------------------------------------------
144
145 function post_void_supp_trans($type, $type_no)
146 {
147         if ($type == ST_SUPPAYMENT)
148         {
149                 void_supp_payment($type, $type_no);
150                 return true;
151         }
152
153         if ($type == ST_SUPPINVOICE || $type == ST_SUPPCREDIT)
154         {
155                 void_supp_invoice($type, $type_no);
156                 return true;
157         }
158
159         if ($type == ST_SUPPRECEIVE)
160         {
161                 return void_grn($type_no);
162         }
163
164         return false;
165 }
166
167 //----------------------------------------------------------------------------------------
168
169 function get_sql_for_supplier_inquiry($filter, $after_date, $to_date, $supplier_id=ALL_TEXT)
170 {
171     $date_after = date2sql($after_date);
172     $date_to = date2sql($to_date);
173
174     $sql = "SELECT trans.type, 
175                 trans.trans_no,
176                 trans.reference, 
177                 supplier.supp_name, 
178                 trans.supp_reference,
179         trans.tran_date, 
180                 trans.due_date,
181                 supplier.curr_code, 
182         (trans.ov_amount + trans.ov_gst  + trans.ov_discount) AS TotalAmount, 
183                 trans.alloc AS Allocated,
184                 ((trans.type = ".ST_SUPPINVOICE." OR trans.type = ".ST_SUPPCREDIT.") AND trans.due_date < '" . date2sql(Today()) . "') AS OverDue,
185         (ABS(trans.ov_amount + trans.ov_gst  + trans.ov_discount) - trans.alloc <= ".FLOAT_COMP_DELTA.") AS Settled
186         FROM ".TB_PREF."supp_trans as trans, ".TB_PREF."suppliers as supplier
187         WHERE supplier.supplier_id = trans.supplier_id
188         AND trans.tran_date >= '$date_after'
189         AND trans.tran_date <= '$date_to'
190                 AND trans.ov_amount != 0";      // exclude voided transactions
191
192         $sql2 = "SELECT ".ST_SUPPRECEIVE." as type, 
193                 trans.id as trans_no,
194                 trans.reference, 
195                 supplier.supp_name, 
196                 po.requisition_no AS supp_reference,
197         delivery_date as tran_date, 
198                 '' as due_date,
199                 supplier.curr_code, 
200         '' AS TotalAmount,
201                 '' AS Allocated,
202                 0 as OverDue,
203         1 as Settled
204         FROM ".TB_PREF."grn_batch as trans, ".TB_PREF."suppliers as supplier, ".TB_PREF."purch_orders as po
205         WHERE supplier.supplier_id = trans.supplier_id
206         AND trans.purch_order_no = po.order_no
207         AND trans.delivery_date >= '$date_after'
208         AND trans.delivery_date <= '$date_to'";
209
210         if ($supplier_id != ALL_TEXT) {
211                 $sql .= " AND trans.supplier_id = ".db_escape($supplier_id);
212                 $sql2 .= " AND trans.supplier_id = ".db_escape($supplier_id);
213         }
214         if (($filter == '6')) 
215         {
216                         $sql = $sql2;
217         } 
218         elseif (!isset($filter) || $filter == ALL_TEXT || $filter == '6') {
219                 $sql = "SELECT * FROM (($sql) UNION ($sql2)) as tr WHERE 1";
220         }
221
222         if (isset($filter) && $filter != ALL_TEXT)
223         {
224                 if (($filter == '1')) 
225                 {
226                         $sql .= " AND (trans.type = ".ST_SUPPINVOICE." OR trans.type = ".ST_BANKDEPOSIT.")";
227                 } 
228                 elseif (($filter == '2')) 
229                 {
230                         $sql .= " AND trans.type = ".ST_SUPPINVOICE." ";
231                 } 
232                 elseif ($filter == '3') 
233                 {
234                         $sql .= " AND (trans.type = ".ST_SUPPAYMENT." OR trans.type = ".ST_BANKPAYMENT.") ";
235                 } 
236                 elseif (($filter == '4') || ($filter == '5')) 
237                 {
238                         $sql .= " AND trans.type = ".ST_SUPPCREDIT."  ";
239                 }
240
241                 if (($filter == '2') || ($filter == '5')) 
242                 {
243                         $today =  date2sql(Today());
244                         $sql .= " AND trans.due_date < '$today' ";
245                 }
246         }
247         return $sql;
248 }