Fixed allocation date for customer payments entry, additional fixes for strict sql...
[fa-stable.git] / includes / db / audit_trail_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 function add_audit_trail($trans_type, $trans_no, $trans_date, $descr='')
14 {
15         begin_transaction();
16
17         $date = date2sql($trans_date);
18         $sql = "INSERT INTO ".TB_PREF."audit_trail"
19                 . " (type, trans_no, user, gl_date, description, stamp)
20                         VALUES(".db_escape($trans_type).", ".db_escape($trans_no).","
21                         . $_SESSION["wa_current_user"]->user . ","
22                         . "'$date',". db_escape($descr). ", CURRENT_TIMESTAMP)";
23
24         db_query($sql, "Cannot add audit info");
25         // all audit records beside just inserted one should have gl_seq set to NULL
26         // to avoid need for subqueries (not existing in MySQL 3) all over the code
27         $sql = "UPDATE ".TB_PREF."audit_trail audit LEFT JOIN ".TB_PREF."fiscal_year year ON year.begin<='$date' AND year.end>='$date'
28                 SET audit.gl_seq = IF(audit.id=".db_insert_id().", 0, NULL),"
29                 ."audit.fiscal_year=year.id, stamp=CURRENT_TIMESTAMP"
30                 . " WHERE type=".db_escape($trans_type)." AND trans_no="
31                 . db_escape($trans_no);
32
33         db_query($sql, "Cannot update audit gl_seq");
34         commit_transaction();
35 }
36
37 function get_audit_trail_all($trans_type, $trans_no)
38 {
39         $sql = "SELECT * FROM ".TB_PREF."audit_trail"
40                 ." WHERE type=".db_escape($trans_type)." AND trans_no="
41                 .db_escape($trans_no);
42
43         return db_query($sql, "Cannot get all audit info for transaction");
44 }
45
46 function get_audit_trail_last($trans_type, $trans_no)
47 {
48         $sql = "SELECT * FROM ".TB_PREF."audit_trail"
49                 ." WHERE type=".db_escape($trans_type).
50                         " AND trans_no=".db_escape($trans_no)." AND NOT ISNULL(gl_seq)";
51
52         $res = db_query($sql, "Cannot get last audit info for transaction");
53         if ($res)
54                 $row = db_fetch($res);
55
56         return $row;
57 }
58
59 /*
60         Confirm and close for edition all transactions up to date $todate, 
61         and reindex     journal.
62 */
63 function close_transactions($todate) {
64
65         begin_transaction();
66
67         $errors = 0;
68         // select only those audit trail records which produce any GL postings
69         $sql = "SELECT a.id, gl.tran_date, a.fiscal_year, a.gl_seq,
70                  gl.tran_date <= '". date2sql($todate) ."' as closed"
71                 ." FROM ".TB_PREF."gl_trans gl"
72                 ." LEFT JOIN ". TB_PREF."audit_trail a ON 
73                         (gl.type=a.type AND gl.type_no=a.trans_no)"
74                 . " WHERE NOT ISNULL(a.gl_seq) AND gl.amount!=0"        // skip old audit records and voided transactions
75                 . " GROUP BY  a.id, gl.tran_date, a.fiscal_year, a.gl_seq ORDER BY a.fiscal_year, gl.tran_date, a.id";
76
77         $result = db_query($sql, "Cannot select transactions for closing");
78
79         if (db_num_rows($result)) {
80                 $last_year = 0;
81
82                 while ($row = db_fetch($result)) {
83                         if ($row['fiscal_year'] == null) {
84                                 $errors = 1; continue;
85                         }
86                         if ($last_year != $row['fiscal_year']) {
87                                 $last_year = $row['fiscal_year'];
88                                 $counter = 0; // reset counter on fiscal year change
89                         }
90
91                         $seq = $row['closed'] ? ++$counter : 0;
92                         if ($row['gl_seq'] != $seq)     { // update transaction status only when gl_seq has changed
93                                 $sql2 = "UPDATE ".TB_PREF."audit_trail SET"
94                                         . " gl_seq=$seq"
95                                         . " WHERE id=".$row['id'];
96                                 db_query($sql2, "Cannot reindex journal");
97                         }
98                 }
99         }
100
101         if ($errors) 
102                 display_warning(_("Some transactions journal GL postings were not indexed due to lack of audit trail record."));
103         else
104                 update_company_prefs(array('gl_closing_date'=> date2sql($todate)));
105         commit_transaction();
106
107         return $errors;
108 }
109
110 function get_journal_number($type, $trans_no) {
111
112         $cdate = get_company_pref('gl_closing_date');
113         if (!$cdate)
114                 return false;
115
116 // FIXME: gl_date can be badly entered for some transactions due to bug in previous FA versions 
117         $sql = "SELECT  MAX(gl_seq) as gl_seq  FROM ".TB_PREF."audit_trail"
118                 . " WHERE type=".db_escape($type)
119                 ." AND trans_no=".db_escape($trans_no)
120                 ." AND gl_date<='$cdate'"; // date is stored in sql format
121 //              ." AND (gl_date<='$cdate'" // some transaction can be not sequenced due to 0 amount, however after edition this could change
122 //              ." OR gl_seq>0)";
123         $res = db_query($sql, "Cannot check transaction");
124         if (db_num_rows($res))
125         {
126                 $myrow =db_fetch($res);
127                 return $myrow['gl_seq'] ? $myrow['gl_seq'] : _('None');
128         }
129         return "-";
130 }
131
132 /*
133         Closed transactions have gl_seq number assigned.
134 */
135 function is_closed_trans($type, $trans_no) {
136
137         return get_journal_number($type, $trans_no) > 0;
138 }
139