443ac0715911222cd17c58d6a47c33fda0225a48
[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         elseif ($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, 65, 105, 125, 175, 230, 272, 345, 405, 465, 525);
75         //------------0--1---2---3----4----5----6----7----8----9----10-------
76         //-----------------------dim1-dim2-----------------------------------
77         //-----------------------dim1----------------------------------------
78         //-------------------------------------------------------------------
79         $aligns = array('left', 'left', 'left', 'left', 'left', 'left', 'left', 'right', 'right', 'right');
80
81         if ($dim == 2)
82                 $headers = array(_('Type'),     _('Ref'), _('#'),       _('Date'), _('Dimension')." 1", _('Dimension')." 2",
83                         _('Person/Item'), _('Debit'),   _('Credit'), _('Balance'));
84         elseif ($dim == 1)
85                 $headers = array(_('Type'),     _('Ref'), _('#'),       _('Date'), _('Dimension'), "", _('Person/Item'),
86                         _('Debit'),     _('Credit'), _('Balance'));
87         else
88                 $headers = array(_('Type'),     _('Ref'), _('#'),       _('Date'), "", "", _('Person/Item'),
89                         _('Debit'),     _('Credit'), _('Balance'));
90
91         if ($dim == 2)
92         {
93         $params =   array(      0 => $comments,
94                                     1 => array('text' => _('Period'), 'from' => $from, 'to' => $to),
95                                     2 => array('text' => _('Accounts'),'from' => $fromacc,'to' => $toacc),
96                         3 => array('text' => _('Dimension')." 1", 'from' => get_dimension_string($dimension),
97                             'to' => ''),
98                         4 => array('text' => _('Dimension')." 2", 'from' => get_dimension_string($dimension2),
99                             'to' => ''));
100     }
101     elseif ($dim == 1)
102     {
103         $params =   array(      0 => $comments,
104                                     1 => array('text' => _('Period'), 'from' => $from, 'to' => $to),
105                                     2 => array('text' => _('Accounts'),'from' => $fromacc,'to' => $toacc),
106                         3 => array('text' => _('Dimension'), 'from' => get_dimension_string($dimension),
107                             'to' => ''));
108     }
109     else
110     {
111         $params =   array(      0 => $comments,
112                                     1 => array('text' => _('Period'), 'from' => $from, 'to' => $to),
113                                     2 => array('text' => _('Accounts'),'from' => $fromacc,'to' => $toacc));
114     }
115     if ($orientation == 'L')
116         recalculate_cols($cols);
117
118         $rep->Font();
119         $rep->Info($params, $cols, $headers, $aligns);
120         $rep->NewPage();
121
122         $accounts = get_gl_accounts($fromacc, $toacc);
123
124         while ($account=db_fetch($accounts))
125         {
126                 if (is_account_balancesheet($account["account_code"]))
127                         $begin = "";
128                 else
129                 {
130                         $begin = get_fiscalyear_begin_for_date($from);
131                         if (date1_greater_date2($begin, $from))
132                                 $begin = $from;
133                         $begin = add_days($begin, -1);
134                 }
135                 $prev_balance = get_gl_balance_from_to($begin, $from, $account["account_code"], $dimension, $dimension2);
136
137                 $trans = get_gl_transactions($from, $to, -1, $account['account_code'], $dimension, $dimension2);
138                 $rows = db_num_rows($trans);
139                 if ($prev_balance == 0.0 && $rows == 0)
140                         continue;
141                 $rep->Font('bold');
142                 $rep->TextCol(0, 4,     $account['account_code'] . " " . $account['account_name'], -2);
143                 $rep->TextCol(4, 6, _('Opening Balance'));
144                 if ($prev_balance > 0.0)
145                         $rep->AmountCol(7, 8, abs($prev_balance), $dec);
146                 else
147                         $rep->AmountCol(8, 9, abs($prev_balance), $dec);
148                 $rep->Font();
149                 $total = $prev_balance;
150                 $rep->NewLine(2);
151                 if ($rows > 0)
152                 {
153                         while ($myrow=db_fetch($trans))
154                         {
155                                 $total += $myrow['amount'];
156
157                                 $rep->TextCol(0, 1, $systypes_array[$myrow["type"]], -2);
158                                 $reference = get_reference($myrow["type"], $myrow["type_no"]);
159                                 $rep->TextCol(1, 2, $reference);
160                                 $rep->TextCol(2, 3,     $myrow['type_no'], -2);
161                                 $rep->DateCol(3, 4,     $myrow["tran_date"], true);
162                                 if ($dim >= 1)
163                                         $rep->TextCol(4, 5,     get_dimension_string($myrow['dimension_id']));
164                                 if ($dim > 1)
165                                         $rep->TextCol(5, 6,     get_dimension_string($myrow['dimension2_id']));
166                                 $txt = payment_person_name($myrow["person_type_id"],$myrow["person_id"], false);
167                                 $memo = $myrow['memo_'];
168                                 if ($txt != "")
169                                 {
170                                         if ($memo != "")
171                                                 $txt = $txt."/".$memo;
172                                 }
173                                 else
174                                         $txt = $memo;
175                                 $rep->TextCol(6, 7,     $txt, -2);
176                                 if ($myrow['amount'] > 0.0)
177                                         $rep->AmountCol(7, 8, abs($myrow['amount']), $dec);
178                                 else
179                                         $rep->AmountCol(8, 9, abs($myrow['amount']), $dec);
180                                 $rep->TextCol(9, 10, number_format2($total, $dec));
181                                 $rep->NewLine();
182                                 if ($rep->row < $rep->bottomMargin + $rep->lineHeight)
183                                 {
184                                         $rep->Line($rep->row - 2);
185                                         $rep->NewPage();
186                                 }
187                         }
188                         $rep->NewLine();
189                 }
190                 $rep->Font('bold');
191                 $rep->TextCol(4, 6,     _("Ending Balance"));
192                 if ($total > 0.0)
193                         $rep->AmountCol(7, 8, abs($total), $dec);
194                 else
195                         $rep->AmountCol(8, 9, abs($total), $dec);
196                 $rep->Font();
197                 $rep->Line($rep->row - $rep->lineHeight + 4);
198                 $rep->NewLine(2, 1);
199         }
200         $rep->End();
201 }
202