66fbbf2abb8dffffd8e3eee0d3b5299c72e80947
[fa-stable.git] / reporting / rep601.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 = 2;
13 // ----------------------------------------------------------------
14 // $ Revision:  2.0 $
15 // Creator:     Joe Hunt
16 // date_:       2005-05-19
17 // Title:       Bank Accounts Transactions
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
26 //----------------------------------------------------------------------------------------------------
27
28 print_bank_transactions();
29
30 //----------------------------------------------------------------------------------------------------
31
32 function get_bank_balance_to($to, $account)
33 {
34         $to = date2sql($to);
35         $sql = "SELECT SUM(amount) FROM ".TB_PREF."bank_trans WHERE bank_act='$account'
36         AND trans_date < '$to'";
37         $result = db_query($sql, "The starting balance on hand could not be calculated");
38         $row = db_fetch_row($result);
39         return $row[0];
40 }
41
42 function get_bank_transactions($from, $to, $account)
43 {
44         $from = date2sql($from);
45         $to = date2sql($to);
46         $sql = "SELECT ".TB_PREF."bank_trans.* FROM ".TB_PREF."bank_trans
47                 WHERE ".TB_PREF."bank_trans.bank_act = '$account'
48                 AND trans_date >= '$from'
49                 AND trans_date <= '$to'
50                 ORDER BY trans_date,".TB_PREF."bank_trans.id";
51
52         return db_query($sql,"The transactions for '$account' could not be retrieved");
53 }
54
55 function print_bank_transactions()
56 {
57         global $path_to_root;
58
59         $acc = $_POST['PARAM_0'];
60         $from = $_POST['PARAM_1'];
61         $to = $_POST['PARAM_2'];
62         $comments = $_POST['PARAM_3'];
63         $destination = $_POST['PARAM_4'];
64         if ($destination)
65                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
66         else
67                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
68
69         $rep = new FrontReport(_('Bank Statement'), "BankStatement", user_pagesize());
70         $dec = user_price_dec();
71
72         $cols = array(0, 90, 110, 170, 225, 350, 400, 460, 520);
73
74         $aligns = array('left', 'left', 'left', 'left', 'left', 'right', 'right', 'right');
75
76         $headers = array(_('Type'),     _('#'), _('Reference'), _('Date'), _('Person/Item'),
77                 _('Debit'),     _('Credit'), _('Balance'));
78
79         $account = get_bank_account($acc);
80         $act = $account['bank_account_name']." - ".$account['bank_curr_code']." - ".$account['bank_account_number'];
81         $params =   array(      0 => $comments,
82             1 => array('text' => _('Period'), 'from' => $from, 'to' => $to),
83             2 => array('text' => _('Bank Account'),'from' => $act,'to' => ''));
84
85         $rep->Font();
86         $rep->Info($params, $cols, $headers, $aligns);
87         $rep->Header();
88
89
90         $prev_balance = get_bank_balance_to($from, $account["id"]);
91
92         $trans = get_bank_transactions($from, $to, $account['id']);
93
94         $rows = db_num_rows($trans);
95         if ($prev_balance != 0.0 || $rows != 0)
96         {
97                 $rep->Font('bold');
98                 $rep->TextCol(0, 3,     $act);
99                 $rep->TextCol(3, 5, _('Opening Balance'));
100                 if ($prev_balance > 0.0)
101                         $rep->AmountCol(5, 6, abs($prev_balance), $dec);
102                 else
103                         $rep->AmountCol(6, 7, abs($prev_balance), $dec);
104                 $rep->Font();
105                 $total = $prev_balance;
106                 $rep->NewLine(2);
107                 if ($rows > 0)
108                 {
109                         while ($myrow=db_fetch($trans))
110                         {
111                                 $total += $myrow['amount'];
112
113                                 $rep->TextCol(0, 1,     systypes::name($myrow["type"]));
114                                 $rep->TextCol(1, 2,     $myrow['trans_no']);
115                                 $rep->TextCol(2, 3,     $myrow['ref']);
116                                 $rep->DateCol(3, 4,     $myrow["trans_date"], true);
117                                 $rep->TextCol(4, 5,     payment_person_types::person_name($myrow["person_type_id"],$myrow["person_id"], false));
118                                 if ($myrow['amount'] > 0.0)
119                                         $rep->AmountCol(5, 6, abs($myrow['amount']), $dec);
120                                 else
121                                         $rep->AmountCol(6, 7, abs($myrow['amount']), $dec);
122                                 $rep->AmountCol(7, 8, $total, $dec);
123                                 $rep->NewLine();
124                                 if ($rep->row < $rep->bottomMargin + $rep->lineHeight)
125                                 {
126                                         $rep->Line($rep->row - 2);
127                                         $rep->Header();
128                                 }
129                         }
130                         $rep->NewLine();
131                 }
132                 $rep->Font('bold');
133                 $rep->TextCol(3, 5,     _("Ending Balance"));
134                 if ($total > 0.0)
135                         $rep->AmountCol(5, 6, abs($total), $dec);
136                 else
137                         $rep->AmountCol(6, 7, abs($total), $dec);
138                 $rep->Font();
139                 $rep->Line($rep->row - $rep->lineHeight + 4);
140                 $rep->NewLine(2, 1);
141         }
142         $rep->End();
143 }
144
145 ?>