Cleanup: removed all closing tags in php files.
[fa-stable.git] / reporting / rep704.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_GLREP';
13 // ----------------------------------------------------------------
14 // $ Revision:  2.0 $
15 // Creator:     Joe Hunt
16 // date_:       2005-05-19
17 // Title:       GL Accounts Transactions
18 // ----------------------------------------------------------------
19 $path_to_root="..";
20
21 include_once($path_to_root . "/includes/session.inc");
22 include_once($path_to_root . "/admin/db/fiscalyears_db.inc");
23 include_once($path_to_root . "/includes/date_functions.inc");
24 include_once($path_to_root . "/includes/data_checks.inc");
25 include_once($path_to_root . "/gl/includes/gl_db.inc");
26
27 //----------------------------------------------------------------------------------------------------
28
29 print_GL_transactions();
30
31 //----------------------------------------------------------------------------------------------------
32
33 function print_GL_transactions()
34 {
35         global $path_to_root, $systypes_array;
36
37         $dim = get_company_pref('use_dimension');
38         $dimension = $dimension2 = 0;
39
40         $from = $_POST['PARAM_0'];
41         $to = $_POST['PARAM_1'];
42         $fromacc = $_POST['PARAM_2'];
43         $toacc = $_POST['PARAM_3'];
44         if ($dim == 2)
45         {
46                 $dimension = $_POST['PARAM_4'];
47                 $dimension2 = $_POST['PARAM_5'];
48                 $comments = $_POST['PARAM_6'];
49                 $orientation = $_POST['PARAM_7'];
50                 $destination = $_POST['PARAM_8'];
51         }
52         else if ($dim == 1)
53         {
54                 $dimension = $_POST['PARAM_4'];
55                 $comments = $_POST['PARAM_5'];
56                 $orientation = $_POST['PARAM_6'];
57                 $destination = $_POST['PARAM_7'];
58         }
59         else
60         {
61                 $comments = $_POST['PARAM_4'];
62                 $orientation = $_POST['PARAM_5'];
63                 $destination = $_POST['PARAM_6'];
64         }
65         if ($destination)
66                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
67         else
68                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
69         $orientation = ($orientation ? 'L' : 'P');
70
71         $rep = new FrontReport(_('GL Account Transactions'), "GLAccountTransactions", user_pagesize(), 9, $orientation);
72         $dec = user_price_dec();
73
74   //$cols = array(0, 80, 100, 150, 210, 280, 340, 400, 450, 510, 570);
75         $cols = array(0, 65, 105, 125, 175, 230, 290, 345, 405, 465, 525);
76         //------------0--1---2---3----4----5----6----7----8----9----10-------
77         //-----------------------dim1-dim2-----------------------------------
78         //-----------------------dim1----------------------------------------
79         //-------------------------------------------------------------------
80         $aligns = array('left', 'left', 'left', 'left', 'left', 'left', 'left', 'right', 'right', 'right');
81
82         if ($dim == 2)
83                 $headers = array(_('Type'),     _('Ref'), _('#'),       _('Date'), _('Dimension')." 1", _('Dimension')." 2",
84                         _('Person/Item'), _('Debit'),   _('Credit'), _('Balance'));
85         elseif ($dim == 1)
86                 $headers = array(_('Type'),     _('Ref'), _('#'),       _('Date'), _('Dimension'), "", _('Person/Item'),
87                         _('Debit'),     _('Credit'), _('Balance'));
88         else
89                 $headers = array(_('Type'),     _('Ref'), _('#'),       _('Date'), "", "", _('Person/Item'),
90                         _('Debit'),     _('Credit'), _('Balance'));
91
92         if ($dim == 2)
93         {
94         $params =   array(      0 => $comments,
95                                     1 => array('text' => _('Period'), 'from' => $from, 'to' => $to),
96                                     2 => array('text' => _('Accounts'),'from' => $fromacc,'to' => $toacc),
97                         3 => array('text' => _('Dimension')." 1", 'from' => get_dimension_string($dimension),
98                             'to' => ''),
99                         4 => array('text' => _('Dimension')." 2", 'from' => get_dimension_string($dimension2),
100                             'to' => ''));
101     }
102     else if ($dim == 1)
103     {
104         $params =   array(      0 => $comments,
105                                     1 => array('text' => _('Period'), 'from' => $from, 'to' => $to),
106                                     2 => array('text' => _('Accounts'),'from' => $fromacc,'to' => $toacc),
107                         3 => array('text' => _('Dimension'), 'from' => get_dimension_string($dimension),
108                             'to' => ''));
109     }
110     else
111     {
112         $params =   array(      0 => $comments,
113                                     1 => array('text' => _('Period'), 'from' => $from, 'to' => $to),
114                                     2 => array('text' => _('Accounts'),'from' => $fromacc,'to' => $toacc));
115     }
116     if ($orientation == 'L')
117         recalculate_cols($cols);
118
119         $rep->Font();
120         $rep->Info($params, $cols, $headers, $aligns);
121         $rep->NewPage();
122
123         $accounts = get_gl_accounts($fromacc, $toacc);
124
125         while ($account=db_fetch($accounts))
126         {
127                 if (is_account_balancesheet($account["account_code"]))
128                         $begin = "";
129                 else
130                 {
131                         $begin = get_fiscalyear_begin_for_date($from);
132                         if (date1_greater_date2($begin, $from))
133                                 $begin = $from;
134                         $begin = add_days($begin, -1);
135                 }
136                 $prev_balance = get_gl_balance_from_to($begin, $from, $account["account_code"], $dimension, $dimension2);
137
138                 $trans = get_gl_transactions($from, $to, -1, $account['account_code'], $dimension, $dimension2);
139                 $rows = db_num_rows($trans);
140                 if ($prev_balance == 0.0 && $rows == 0)
141                         continue;
142                 $rep->Font('bold');
143                 $rep->TextCol(0, 4,     $account['account_code'] . " " . $account['account_name'], -2);
144                 $rep->TextCol(4, 6, _('Opening Balance'));
145                 if ($prev_balance > 0.0)
146                         $rep->AmountCol(7, 8, abs($prev_balance), $dec);
147                 else
148                         $rep->AmountCol(8, 9, abs($prev_balance), $dec);
149                 $rep->Font();
150                 $total = $prev_balance;
151                 $rep->NewLine(2);
152                 if ($rows > 0)
153                 {
154                         while ($myrow=db_fetch($trans))
155                         {
156                                 $total += $myrow['amount'];
157
158                                 $rep->TextCol(0, 1, $systypes_array[$myrow["type"]], -2);
159                                 $reference = get_reference($myrow["type"], $myrow["type_no"]);
160                                 $rep->TextCol(1, 2, $reference);
161                                 $rep->TextCol(2, 3,     $myrow['type_no'], -2);
162                                 $rep->DateCol(3, 4,     $myrow["tran_date"], true);
163                                 if ($dim >= 1)
164                                         $rep->TextCol(4, 5,     get_dimension_string($myrow['dimension_id']));
165                                 if ($dim > 1)
166                                         $rep->TextCol(5, 6,     get_dimension_string($myrow['dimension2_id']));
167                                 $txt = payment_person_name($myrow["person_type_id"],$myrow["person_id"], false);
168                                 $memo = $myrow['memo_'];
169                                 if ($txt != "")
170                                 {
171                                         if ($memo != "")
172                                                 $txt = $txt."/".$memo;
173                                 }
174                                 else
175                                         $txt = $memo;
176                                 $rep->TextCol(6, 7,     $txt, -2);
177                                 if ($myrow['amount'] > 0.0)
178                                         $rep->AmountCol(7, 8, abs($myrow['amount']), $dec);
179                                 else
180                                         $rep->AmountCol(8, 9, abs($myrow['amount']), $dec);
181                                 $rep->TextCol(9, 10, number_format2($total, $dec));
182                                 $rep->NewLine();
183                                 if ($rep->row < $rep->bottomMargin + $rep->lineHeight)
184                                 {
185                                         $rep->Line($rep->row - 2);
186                                         $rep->NewPage();
187                                 }
188                         }
189                         $rep->NewLine();
190                 }
191                 $rep->Font('bold');
192                 $rep->TextCol(4, 6,     _("Ending Balance"));
193                 if ($total > 0.0)
194                         $rep->AmountCol(7, 8, abs($total), $dec);
195                 else
196                         $rep->AmountCol(8, 9, abs($total), $dec);
197                 $rep->Font();
198                 $rep->Line($rep->row - $rep->lineHeight + 4);
199                 $rep->NewLine(2, 1);
200         }
201         $rep->End();
202 }
203