Changed license type to GPLv3 in top of files
[fa-stable.git] / reporting / rep706.php
index 68b52f98ef8c0863730741ef6d403585678bdbeb..0788363a2531648469e40b858644f1bd178897c6 100644 (file)
@@ -1,5 +1,14 @@
 <?php
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
 $page_security = 2;
 // ----------------------------------------------------------------
 // $ Revision: 2.0 $
@@ -7,12 +16,12 @@ $page_security = 2;
 // date_:      2005-05-19
 // Title:      Balance Sheet
 // ----------------------------------------------------------------
-$path_to_root="../";
+$path_to_root="..";
 
-include_once($path_to_root . "includes/session.inc");
-include_once($path_to_root . "includes/date_functions.inc");
-include_once($path_to_root . "includes/data_checks.inc");
-include_once($path_to_root . "gl/includes/gl_db.inc");
+include_once($path_to_root . "/includes/session.inc");
+include_once($path_to_root . "/includes/date_functions.inc");
+include_once($path_to_root . "/includes/data_checks.inc");
+include_once($path_to_root . "/gl/includes/gl_db.inc");
 
 //----------------------------------------------------------------------------------------------------
 
@@ -26,7 +35,7 @@ function print_balance_sheet()
 {
        global $comp_path, $path_to_root;
 
-       include_once($path_to_root . "reporting/includes/pdf_report.inc");
+       include_once($path_to_root . "/reporting/includes/pdf_report.inc");
        $dim = get_company_pref('use_dimension');
        $dimension = $dimension2 = 0;
 
@@ -52,19 +61,19 @@ function print_balance_sheet()
        }
        if ($graphics)
        {
-               include_once($path_to_root . "reporting/includes/class.graphic.inc");
+               include_once($path_to_root . "/reporting/includes/class.graphic.inc");
                $pg = new graph();
-       }       
+       }
        $dec = 0;
 
        $cols = array(0, 50, 200, 350, 425,     500);
        //------------0--1---2----3----4----5--
-       
+
        $headers = array(_('Account'), _('Account Name'), _('Open Balance'), _('Period'),
                _('Close Balance'));
-       
+
        $aligns = array('left', 'left', 'right', 'right', 'right');
-    
+
     if ($dim == 2)
     {
        $params =   array(      0 => $comments,
@@ -104,6 +113,7 @@ function print_balance_sheet()
        $assetsopen = 0.0;
        $assetsperiod = 0.0;
        $assetsclose = 0.0;
+       $closeclass = false;
 
        $accounts = get_gl_accounts_all(1);
 
@@ -138,7 +148,7 @@ function print_balance_sheet()
                                {
                                        $pg->x[] = $group;
                                        $pg->y[] = abs($totalclose);
-                               }       
+                               }
                                $totalopen = $totalperiod = $totalclose = 0.0;
                                $rep->row -= ($rep->lineHeight + 4);
                                if ($closeclass)
@@ -215,7 +225,7 @@ function print_balance_sheet()
                        {
                                $pg->x[] = $group;
                                $pg->y[] = abs($totalclose);
-                       }       
+                       }
                        $rep->row -= ($rep->lineHeight + 4);
                        if ($closeclass)
                        {
@@ -233,7 +243,7 @@ function print_balance_sheet()
                                {
                                        $pg->x[] = _('Calculated Return');
                                        $pg->y[] = abs($calculateclose);
-                               }       
+                               }
                                $rep->row -= ($rep->lineHeight + 4);
 
                                $rep->Font('bold');
@@ -257,7 +267,7 @@ function print_balance_sheet()
                $pg->type      = $graphics;
                $pg->skin      = $graph_skin;
                $pg->built_in  = false;
-               $pg->fontfile  = $path_to_root . "reporting/fonts/Vera.ttf";
+               $pg->fontfile  = $path_to_root . "/reporting/fonts/Vera.ttf";
                $pg->latin_notation = ($decseps[$_SESSION["wa_current_user"]->prefs->dec_sep()] != ".");
                $filename =  $comp_path.'/'.user_company()."/pdf_files/test.png";
                $pg->display($filename, true);