Bad conversion of timestamp value in report audit trail
[fa-stable.git] / reporting / rep710.php
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 $page_security = 'SA_GLANALYTIC';
13 // ----------------------------------------------------------------
14 // $ Revision:  2.0 $
15 // Creator:     Joe Hunt
16 // date_:       2005-05-19
17 // Title:       Audit Trail
18 // ----------------------------------------------------------------
19 $path_to_root="..";
20
21 include_once($path_to_root . "/includes/session.inc");
22 include_once($path_to_root . "/includes/date_functions.inc");
23 include_once($path_to_root . "/includes/data_checks.inc");
24 include_once($path_to_root . "/gl/includes/gl_db.inc");
25 include_once($path_to_root . "/includes/ui/ui_view.inc");
26
27 //----------------------------------------------------------------------------------------------------
28
29 print_audit_trail();
30
31 function getTransactions($from, $to, $type, $user)
32 {
33         $fromdate = date2sql($from) . " 00:00:00";
34         $todate = date2sql($to). " 23:59.59";
35
36         $sql = "SELECT a.*, 
37                 SUM(IF(ISNULL(g.amount), NULL, IF(g.amount > 0, g.amount, 0))) AS amount,
38                 u.user_id,
39                 DATE(a.stamp) as stamp,
40                 UNIX_TIMESTAMP(a.stamp) as unix_stamp
41                 FROM ".TB_PREF."audit_trail AS a JOIN ".TB_PREF."users AS u
42                 LEFT JOIN ".TB_PREF."gl_trans AS g ON (g.type_no=a.trans_no
43                         AND g.type=a.type)
44                 WHERE a.user = u.id ";
45         if ($type != -1)
46                 $sql .= "AND a.type=$type ";
47         if ($user != -1)        
48                 $sql .= "AND a.user='$user' ";
49         $sql .= "AND a.stamp >= '$fromdate'
50                         AND a.stamp <= '$todate'
51                 GROUP BY a.trans_no,a.gl_seq,a.stamp    
52                 ORDER BY a.stamp,a.gl_seq";
53     return db_query($sql,"No transactions were returned");
54 }
55 //----------------------------------------------------------------------------------------------------
56
57 function print_audit_trail()
58 {
59     global $path_to_root, $systypes_array;
60
61     $from = $_POST['PARAM_0'];
62     $to = $_POST['PARAM_1'];
63     $systype = $_POST['PARAM_2'];
64     $user = $_POST['PARAM_3'];
65     $comments = $_POST['PARAM_4'];
66         $destination = $_POST['PARAM_5'];
67         if ($destination)
68                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
69         else
70                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
71
72     $dec = user_price_dec();
73
74     $cols = array(0, 60, 120, 180, 240, 340, 400, 460, 520);
75
76     $headers = array(_('Date'), _('Time'), _('User'), _('Trans Date'),
77         _('Type'), _('#'), _('Action'), _('Amount'));
78
79     $aligns = array('left', 'left', 'left', 'left', 'left', 'left', 'left', 'right');
80
81         $usr = get_user($user);
82         $user_id = $usr['user_id'];
83     $params =   array(  0 => $comments,
84                                     1 => array('text' => _('Period'), 'from' => $from,'to' => $to),
85                         2 => array('text' => _('Type'), 'from' => ($systype != -1 ? $systypes_array[$systype] : _('All')), 'to' => ''),
86                         3 => array('text' => _('User'), 'from' => ($user != -1 ? $user_id : _('All')), 'to' => ''));
87
88     $rep = new FrontReport(_('Audit Trail'), "AuditTrail", user_pagesize());
89
90     $rep->Font();
91     $rep->Info($params, $cols, $headers, $aligns);
92     $rep->Header();
93
94     $trans = getTransactions($from, $to, $systype, $user);
95
96     while ($myrow=db_fetch($trans))
97     {
98         $rep->TextCol(0, 1, sql2date($myrow['stamp']));
99         if (user_date_format() == 0)
100                 $rep->TextCol(1, 2, date("h:i:s a", $myrow['unix_stamp']));
101         else    
102                 $rep->TextCol(1, 2, date("H:i:s", $myrow['unix_stamp']));
103         $rep->TextCol(2, 3, $myrow['user_id']);
104         $rep->TextCol(3, 4, sql2date($myrow['gl_date']));
105         $rep->TextCol(4, 5, $systypes_array[$myrow['type']]);
106         $rep->TextCol(5, 6, $myrow['trans_no']);
107         if ($myrow['gl_seq'] == null)
108                 $action = _('Changed');
109         else
110                 $action = _('Closed');
111         $rep->TextCol(6, 7, $action);
112         if ($myrow['amount'] != null)
113                 $rep->AmountCol(7, 8, $myrow['amount'], $dec);
114         $rep->NewLine(1, 2);
115     }
116     $rep->Line($rep->row  + 4);
117     $rep->End();
118 }
119
120 ?>