Changed Balance Sheets/PL Statements to be recursive
[fa-stable.git] / reporting / rep706.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, Chaitanya for the recursive version 2009-02-05.
16 // date_:       2005-05-19
17 // Title:       Balance Sheet
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 function display_type ($type, $typename, $from, $to, $convert, &$dec, &$rep, $dimension, $dimension2, &$pg, $graphics)
29 {
30         $code_open_balance = 0;
31         $code_period_balance = 0;
32         $open_balance_total = 0;
33         $period_balance_total = 0;
34         unset($totals_arr);
35         $totals_arr = array();
36
37         $printtitle = 0; //Flag for printing type name  
38         
39         //Get Accounts directly under this group/type
40         $result = get_gl_accounts(null, null, $type);   
41         while ($account=db_fetch($result))
42         {
43                 $prev_balance = get_gl_balance_from_to("", $from, $account["account_code"], $dimension, $dimension2);
44
45                 $curr_balance = get_gl_trans_from_to($from, $to, $account["account_code"], $dimension, $dimension2);
46
47                 if (!$prev_balance && !$curr_balance)
48                         continue;
49                 
50                 //Print Type Title if it has atleast one non-zero account       
51                 if (!$printtitle)
52                 {
53                         $printtitle = 1;
54                         $rep->row -= 4;
55                         $rep->TextCol(0, 5, $typename);
56                         $rep->row -= 4;
57                         $rep->Line($rep->row);
58                         $rep->NewLine();                
59                 }                       
60
61                 $rep->TextCol(0, 1,     $account['account_code']);
62                 $rep->TextCol(1, 2,     $account['account_name']);
63
64                 $rep->AmountCol(2, 3, $prev_balance * $convert, $dec);
65                 $rep->AmountCol(3, 4, $curr_balance * $convert, $dec);
66                 $rep->AmountCol(4, 5, ($prev_balance + $curr_balance) * $convert, $dec);
67
68                 $rep->NewLine();
69
70                 $code_open_balance += $prev_balance;
71                 $code_period_balance += $curr_balance;
72         }
73                 
74         //Get Account groups/types under this group/type
75         $result = get_account_types(false, false, $type);
76         while ($accounttype=db_fetch($result))
77         {
78                 //Print Type Title if has sub types and not previously printed
79                 if (!$printtitle)
80                 {
81                         $printtitle = 1;
82                         $rep->row -= 4;
83                         $rep->TextCol(0, 5, $typename);
84                         $rep->row -= 4;
85                         $rep->Line($rep->row);
86                         $rep->NewLine();                
87                 }
88
89                 $totals_arr = display_type($accounttype["id"], $accounttype["name"], $from, $to, $convert, $dec, 
90                         $rep, $dimension, $dimension2, $pg, $graphics);
91                 $open_balance_total += $totals_arr[0];
92                 $period_balance_total += $totals_arr[1];
93         }
94
95         //Display Type Summary if total is != 0 OR head is printed (Needed in case of unused hierarchical COA) 
96         if (($code_open_balance + $open_balance_total + $code_period_balance + $period_balance_total) != 0 || $printtitle)
97         {
98                 $rep->row += 6;
99                 $rep->Line($rep->row);
100                 $rep->NewLine();
101                 $rep->TextCol(0, 2,     _('Total') . " " . $typename);
102                 $rep->AmountCol(2, 3, ($code_open_balance + $open_balance_total) * $convert, $dec);
103                 $rep->AmountCol(3, 4, ($code_period_balance + $period_balance_total) * $convert, $dec);
104                 $rep->AmountCol(4, 5, ($code_open_balance + $open_balance_total + $code_period_balance + $period_balance_total) * $convert, $dec);              
105                 if ($graphics)
106                 {
107                         $pg->x[] = $typename;
108                         $pg->y[] = abs($code_open_balance + $open_balance_total);
109                         $pg->z[] = abs($code_period_balance + $period_balance_total);
110                 }
111                 $rep->NewLine();
112         }
113         
114         $totals_arr[0] = $code_open_balance + $open_balance_total;
115         $totals_arr[1] = $code_period_balance + $period_balance_total;
116         return $totals_arr;
117 }
118
119 print_balance_sheet();
120
121 //----------------------------------------------------------------------------------------------------
122
123 function print_balance_sheet()
124 {
125         global $comp_path, $path_to_root;
126
127         $dim = get_company_pref('use_dimension');
128         $dimension = $dimension2 = 0;
129
130         $from = $_POST['PARAM_0'];
131         $to = $_POST['PARAM_1'];
132         if ($dim == 2)
133         {
134                 $dimension = $_POST['PARAM_2'];
135                 $dimension2 = $_POST['PARAM_3'];
136                 $graphics = $_POST['PARAM_4'];
137                 $comments = $_POST['PARAM_5'];
138                 $destination = $_POST['PARAM_6'];
139         }
140         else if ($dim == 1)
141         {
142                 $dimension = $_POST['PARAM_2'];
143                 $graphics = $_POST['PARAM_3'];
144                 $comments = $_POST['PARAM_4'];
145                 $destination = $_POST['PARAM_5'];
146         }
147         else
148         {
149                 $graphics = $_POST['PARAM_2'];
150                 $comments = $_POST['PARAM_3'];
151                 $destination = $_POST['PARAM_4'];
152         }
153         if ($destination)
154                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
155         else
156                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
157         if ($graphics)
158         {
159                 include_once($path_to_root . "/reporting/includes/class.graphic.inc");
160                 $pg = new graph();
161         }
162         $dec = 0;
163
164         $cols = array(0, 50, 200, 350, 425,     500);
165         //------------0--1---2----3----4----5--
166
167         $headers = array(_('Account'), _('Account Name'), _('Open Balance'), _('Period'),
168                 _('Close Balance'));
169
170         $aligns = array('left', 'left', 'right', 'right', 'right');
171
172     if ($dim == 2)
173     {
174         $params =   array(      0 => $comments,
175                                     1 => array('text' => _('Period'),'from' => $from, 'to' => $to),
176                         2 => array('text' => _('Dimension')." 1",
177                             'from' => get_dimension_string($dimension), 'to' => ''),
178                         3 => array('text' => _('Dimension')." 2",
179                             'from' => get_dimension_string($dimension2), 'to' => ''));
180     }
181     else if ($dim == 1)
182     {
183         $params =   array(      0 => $comments,
184                                     1 => array('text' => _('Period'),'from' => $from, 'to' => $to),
185                         2 => array('text' => _('Dimension'),
186                             'from' => get_dimension_string($dimension), 'to' => ''));
187     }
188     else
189     {
190         $params =   array(      0 => $comments,
191                                     1 => array('text' => _('Period'),'from' => $from, 'to' => $to));
192     }
193
194         $rep = new FrontReport(_('Balance Sheet'), "BalanceSheet", user_pagesize());
195         $rep->Font();
196         $rep->Info($params, $cols, $headers, $aligns);
197         $rep->Header();
198
199         $calc_open = $calc_period = 0.0;
200         $equity_open = $equity_period = 0.0;
201         $liability_open = $liability_period = 0.0;
202         $econvert = $lconvert = 0;
203         
204         $classresult = get_account_classes(false, 1);
205         while ($class = db_fetch($classresult))
206         {
207                 $class_open_total = 0;
208                 $class_period_total = 0;
209                 $convert = get_class_type_convert($class["ctype"]);             
210                 
211                 //Print Class Name      
212                 $rep->Font('bold');
213                 $rep->TextCol(0, 5, $class["class_name"]);
214                 $rep->Font();
215                 $rep->NewLine();
216                 
217                 //Get Account groups/types under this group/type with no parents
218                 $typeresult = get_account_types(false, $class['cid'], -1);
219                 while ($accounttype=db_fetch($typeresult))
220                 {
221                         $classtotal = display_type($accounttype["id"], $accounttype["name"], $from, $to, $convert, $dec, 
222                                 $rep, $dimension, $dimension2, $pg, $graphics);
223                         $class_open_total += $classtotal[0];
224                         $class_period_total += $classtotal[1];                  
225                 }
226                 
227                 //Print Class Summary   
228                 $rep->row += 6;
229                 $rep->Line($rep->row);
230                 $rep->NewLine();
231                 $rep->Font('bold');
232                 $rep->TextCol(0, 2,     _('Total') . " " . $class["class_name"]);
233                 $rep->AmountCol(2, 3, $class_open_total * $convert, $dec);
234                 $rep->AmountCol(3, 4, $class_period_total * $convert, $dec);
235                 $rep->AmountCol(4, 5, ($class_open_total + $class_period_total) * $convert, $dec);
236                 $rep->Font();
237                 $rep->NewLine(2);       
238
239                 $calc_open += $class_open_total;
240                 $calc_period += $class_period_total;
241                 if ($class['ctype'] == CL_EQUITY)
242                 {
243                         $equity_open += $class_open_total;
244                         $equity_period += $class_period_total;
245                         $econvert = $convert;
246                 }
247                 elseif ($class['ctype'] == CL_LIABILITIES)
248                 {
249                         $liability_open += $class_open_total;
250                         $liability_period += $class_period_total;
251                         $lconvert = $convert;
252                 }
253         }
254         $rep->Font();   
255         $rep->TextCol(0, 2,     _('Calculated Return'));
256         if ($lconvert == 1)
257         {
258                 $calc_open *= -1;
259                 $calc_period *= -1;
260         }       
261         $rep->AmountCol(2, 3, $calc_open, $dec); // never convert
262         $rep->AmountCol(3, 4, $calc_period, $dec);
263         $rep->AmountCol(4, 5, $calc_open + $calc_period, $dec);
264         $rep->NewLine(2);
265
266         $rep->Font('bold');     
267         $rep->TextCol(0, 2,     _('Total') . " " . _('Liabilities') . _(' and ') . _('Equities'));
268         $topen = $equity_open * $econvert + $liability_open * $lconvert + $calc_open;
269         $tperiod = $equity_period * $econvert + $liability_period * $lconvert + $calc_period;
270         $tclose = $topen + $tperiod;
271         $rep->AmountCol(2, 3, $topen, $dec);
272         $rep->AmountCol(3, 4, $tperiod, $dec);
273         $rep->AmountCol(4, 5, $tclose, $dec);
274         
275         $rep->Font();
276         $rep->NewLine();
277         $rep->Line($rep->row);
278         if ($graphics)
279         {
280                 $pg->x[] = _('Calculated Return');
281                 $pg->y[] = abs($calc_open);
282                 $pg->z[] = abs($calc_period);
283                 global $decseps, $graph_skin;
284                 $pg->title     = $rep->title;
285                 $pg->axis_x    = _("Group");
286                 $pg->axis_y    = _("Amount");
287                 $pg->graphic_1 = $headers[2];
288                 $pg->graphic_2 = $headers[3];
289                 $pg->type      = $graphics;
290                 $pg->skin      = $graph_skin;
291                 $pg->built_in  = false;
292                 $pg->fontfile  = $path_to_root . "/reporting/fonts/Vera.ttf";
293                 $pg->latin_notation = ($decseps[$_SESSION["wa_current_user"]->prefs->dec_sep()] != ".");
294                 $filename = $comp_path.'/'.user_company(). "/pdf_files/test.png";
295                 $pg->display($filename, true);
296                 $w = $pg->width / 1.5;
297                 $h = $pg->height / 1.5;
298                 $x = ($rep->pageWidth - $w) / 2;
299                 $rep->NewLine(2);
300                 if ($rep->row - $h < $rep->bottomMargin)
301                         $rep->Header();
302                 $rep->AddImage($filename, $x, $rep->row - $h, $w, $h);
303         }
304         $rep->End();
305 }
306
307 ?>