a948cf3e70a1b955547a471a4f5806aa54baf6ff
[fa-stable.git] / admin / db / transactions_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
15 function get_sql_for_view_transactions($filtertype, $from, $to, &$trans_ref)
16 {
17         $db_info = get_systype_db_info($filtertype);
18
19         if ($db_info == null)
20                 return "";
21
22         $table_name = $db_info[0];
23         $type_name = $db_info[1];
24         $trans_no_name = $db_info[2];
25         $trans_ref = $db_info[3];
26         $trans_date = $db_info[4];
27
28         $sql = "SELECT t.$trans_no_name as trans_no";
29
30         if ($trans_ref)
31                 $sql .= " ,t.$trans_ref as ref ";
32         else
33                 $sql .= ", r.reference as ref";
34         if ($trans_date)
35                 $sql .= ",t.$trans_date as trans_date";
36         if ($type_name)
37                 $sql .= ", t.$type_name as type";
38         $sql .= " FROM $table_name t LEFT JOIN ".TB_PREF."voided v ON"
39                 ." t.$trans_no_name=v.id AND v.type=".db_escape($filtertype);
40
41         $sql .= " WHERE ISNULL(v.`memo_`)";
42         if ($from != null && $to != null)
43         {
44                 $sql .= " AND t.$trans_no_name >= ".db_escape($from). "
45                         AND  t.$trans_no_name <= ".db_escape($to);
46                 if ($type_name != null)
47                         $sql .= " AND t.`$type_name` = ".db_escape($filtertype);
48         }
49         elseif ($type_name != null)
50                 $sql .= " AND t.`$type_name` = ".db_escape($filtertype);
51
52         // the ugly hack below is necessary to exclude old gl_trans records lasting after edition,
53         // otherwise old data transaction can be retrieved instead of current one.
54         if ($table_name==TB_PREF.'gl_trans')
55                 $sql .= " AND t.`amount` <> 0";
56
57         $sql .= " GROUP BY ".($type_name ? "t.$type_name," : '')." t.$trans_no_name";
58         $sql .= " ORDER BY t.$trans_no_name DESC";
59         return $sql;
60 }
61
62 function transaction_exists($trans_type, $trans_no)
63 {
64         return db_num_rows(db_query(get_sql_for_view_transactions($trans_type, $trans_no, $trans_no, $dummy)));
65 }
66
67 //
68 //      Returns counterparty (supplier/customer) name for selected transaction.
69 //
70 function get_counterparty_name($trans_type, $trans_no, $full=true)
71 {
72         switch($trans_type)
73         {
74                 case ST_SALESORDER:
75                 case ST_SALESQUOTE:
76                         $sql = "SELECT order.customer_id as person_id, debtor.name as name
77                         FROM ".TB_PREF."sales_orders order, ".TB_PREF."debtors_master debtor
78                         WHERE order_no=".db_escape($trans_no)." AND trans_type=".db_escape($trans_type)
79                         ." AND order.debtor_no=debtor.debtor_no";
80                         break;
81
82                 case ST_SALESINVOICE :
83                 case ST_CUSTCREDIT :
84                 case ST_CUSTPAYMENT :
85                 case ST_CUSTDELIVERY :
86                         $sql = "SELECT trans.debtor_no as person_id, debtor.name as name
87                         FROM ".TB_PREF."debtor_trans trans, ".TB_PREF."debtors_master debtor
88                         WHERE trans_no=".db_escape($trans_no)." AND type=".db_escape($trans_type)
89                         ." AND trans.debtor_no=debtor.debtor_no";
90                         break;
91
92                 case ST_PURCHORDER :
93                         $sql = "SELECT order.supplier_id as person_id, supp.supp_name as name
94                         FROM ".TB_PREF."purch_orders order, ".TB_PREF."suppliers supp
95                         WHERE order_no=".db_escape($trans_no)
96                         ." AND order.supplier_id=supp.supplier_id";
97                         break;
98
99                 case ST_SUPPINVOICE :
100                 case ST_SUPPCREDIT :
101                 case ST_SUPPAYMENT :
102                         $sql = "SELECT trans.supplier_id as person_id, supp.supp_name as name
103                         FROM ".TB_PREF."supp_trans trans, ".TB_PREF."suppliers supp
104                         WHERE trans_no=".db_escape($trans_no)." AND type=".db_escape($trans_type)
105                         ." AND trans.supplier_id=supp.supplier_id";
106                         break;
107
108                 case ST_SUPPRECEIVE :
109                         $sql = "SELECT trans.supplier_id as person_id, supp.supp_name as name
110                         FROM ".TB_PREF."grn_batch trans, ".TB_PREF."suppliers supp
111                         WHERE id=".db_escape($trans_no)
112                         ." AND trans.supplier_id=supp.supplier_id";
113                         break;
114
115                 case ST_BANKPAYMENT :
116                 case ST_BANKDEPOSIT :
117                         $sql = "SELECT trans.debtor_no as person_id, debtor.name as name
118                         FROM ".TB_PREF."debtor_trans trans, ".TB_PREF."debtors_master debtor
119                         WHERE trans_no=".db_escape($trans_no)." AND type=".db_escape($trans_type)
120                         ." AND trans.debtor_no=debtor.debtor_no
121                         UNION
122                                 SELECT trans.supplier_id as person_id, supp.supp_name as name
123                         FROM ".TB_PREF."supp_trans trans, ".TB_PREF."suppliers supp
124                         WHERE trans_no=".db_escape($trans_no)." AND type=".db_escape($trans_type)
125                         ." AND trans.supplier_id=supp.supplier_id";
126                         break;
127
128                 case ST_JOURNAL:        // FIXME - this one can have multiply counterparties of various types depending on person_type_id
129
130                 default: 
131                 /*      // internal operations
132                 case ST_WORKORDER :
133                 case ST_INVADJUST : // GRN/DN returns ?
134                 case ST_BANKTRANSFER :
135                 case ST_LOCTRANSFER :
136                 case ST_MANUISSUE :
137                 case ST_MANURECEIVE :
138                 case ST_COSTUPDATE :
139                 */
140                         return null;
141         }
142
143         $result = db_query($sql, 'cannot retrieve counterparty name');
144         if (db_num_rows($result))
145         {
146                 $row = db_fetch($result);
147                 return sprintf("[%05s] %s", $row['person_id'], $row['name']);
148         }
149
150         return '';
151 }
152
153
154 //-----------------------------------------------------------------------------------------
155 //      Returns next transaction number.
156 //      Used only for transactions stored in tables without autoincremented key.
157 //
158
159 function get_next_trans_no ($trans_type){
160
161         $st = get_systype_db_info($trans_type);
162
163         if (!($st && $st[0] && $st[2])) {
164                 // this is in fact internal error condition.
165                 display_error('Internal error: invalid type passed to get_next_trans_no()');
166                 return 0;
167         }
168         $sql1 = "SELECT MAX(`$st[2]`) as last_no FROM $st[0]";
169         if ($st[1] != null)
170                  $sql1 .= " WHERE `$st[1]`=".db_escape($trans_type);
171
172         // check also in voided transactions (some transactions like location transfer are removed completely)
173         $sql2 = "SELECT MAX(`id`) as last_no FROM ".TB_PREF."voided WHERE `type`=".db_escape($trans_type);
174
175         $sql = "SELECT max(last_no) last_no FROM ($sql1 UNION $sql2) a";
176     $result = db_query($sql,"The next transaction number for $trans_type could not be retrieved");
177     $myrow = db_fetch_row($result);
178
179     return $myrow[0] + 1;
180 }
181
182 //-----------------------------------------------------------------------------
183
184 function get_systype_db_info($type)
185 {
186         switch ($type)
187         {
188         case     ST_JOURNAL      : return array(TB_PREF."journal", "type", "trans_no", "reference", "tran_date");
189         case     ST_BANKPAYMENT  : return array(TB_PREF."bank_trans", "type", "trans_no", "ref", "trans_date");
190         case     ST_BANKDEPOSIT  : return array(TB_PREF."bank_trans", "type", "trans_no", "ref", "trans_date");
191         case     3               : return null;
192         case     ST_BANKTRANSFER : return array(TB_PREF."bank_trans", "type", "trans_no", "ref", "trans_date");
193         case     ST_SALESINVOICE : return array(TB_PREF."debtor_trans", "type", "trans_no", "reference", "tran_date");
194         case     ST_CUSTCREDIT   : return array(TB_PREF."debtor_trans", "type", "trans_no", "reference", "tran_date");
195         case     ST_CUSTPAYMENT  : return array(TB_PREF."debtor_trans", "type", "trans_no", "reference", "tran_date");
196         case     ST_CUSTDELIVERY : return array(TB_PREF."debtor_trans", "type", "trans_no", "reference", "tran_date");
197         case     ST_LOCTRANSFER  : return array(TB_PREF."stock_moves", "type", "trans_no", "reference", "tran_date");
198         case     ST_INVADJUST    : return array(TB_PREF."stock_moves", "type", "trans_no", "reference", "tran_date");
199         case     ST_PURCHORDER   : return array(TB_PREF."purch_orders", null, "order_no", "reference", "ord_date");
200         case     ST_SUPPINVOICE  : return array(TB_PREF."supp_trans", "type", "trans_no", "reference", "tran_date");
201         case     ST_SUPPCREDIT   : return array(TB_PREF."supp_trans", "type", "trans_no", "reference", "tran_date");
202         case     ST_SUPPAYMENT   : return array(TB_PREF."supp_trans", "type", "trans_no", "reference", "tran_date");
203         case     ST_SUPPRECEIVE  : return array(TB_PREF."grn_batch", null, "id", "reference", "delivery_date");
204         case     ST_WORKORDER    : return array(TB_PREF."workorders", null, "id", "wo_ref", "released_date");
205         case     ST_MANUISSUE    : return array(TB_PREF."wo_issues", null, "issue_no", "reference", "issue_date");
206         case     ST_MANURECEIVE  : return array(TB_PREF."wo_manufacture", null, "id", "reference", "date_");
207         case     ST_SALESORDER   : return array(TB_PREF."sales_orders", "trans_type", "order_no", "reference", "ord_date");
208         case     31              : return array(TB_PREF."service_orders", null, "order_no", "cust_ref", "date");
209         case     ST_SALESQUOTE   : return array(TB_PREF."sales_orders", "trans_type", "order_no", "reference", "ord_date");
210         case     ST_DIMENSION    : return array(TB_PREF."dimensions", null, "id", "reference", "date_");
211         case     ST_COSTUPDATE   : return array(TB_PREF."journal", "type", "trans_no", "reference", "tran_date");
212
213         case     ST_CUSTOMER    : return array(TB_PREF."debtors_master", null, "debtor_no", "debtor_ref", null);
214         case     ST_SUPPLIER    : return array(TB_PREF."suppliers", null, "supplier_id", "supp_ref", null);
215         }
216
217         display_db_error("invalid type ($type) sent to get_systype_db_info", "", true);
218 }