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