New files from unstable branch
[fa-stable.git] / reporting / rep701.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:       Chart of GL Accounts
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, &$dec, &$rep, $showbalance)
29 {
30         $printtitle = 0; //Flag for printing type name  
31         
32         //Get Accounts directly under this group/type
33         $result = get_gl_accounts(null, null, $type);   
34         while ($account=db_fetch($result))
35         {
36                 //Print Type Title if it has atleast one non-zero account       
37                 if (!$printtitle)
38                 {
39                         $printtitle = 1;
40                         $rep->row -= 4;
41                         $rep->Font('bold');
42                         $rep->TextCol(0, 1, $type);
43                         $rep->TextCol(1, 4, $typename);
44                         $rep->Font();
45                         $rep->row -= 4;
46                         $rep->Line($rep->row);
47                         $rep->NewLine();                
48                 }                       
49                 if ($showbalance == 1)
50                 {
51                         $begin = begin_fiscalyear();
52                         if (is_account_balancesheet($account["account_code"]))
53                                 $begin = "";
54                         $balance = get_gl_trans_from_to($begin, ToDay(), $account["account_code"], 0);
55                 }
56                 $rep->TextCol(0, 1,     $account['account_code']);
57                 $rep->TextCol(1, 2,     $account['account_name']);
58                 $rep->TextCol(2, 3,     $account['account_code2']);
59                 if ($showbalance == 1)  
60                         $rep->AmountCol(3, 4, $balance, $dec);
61                 $rep->NewLine();
62         }
63                 
64         //Get Account groups/types under this group/type
65         $result = get_account_types(false, false, $type);
66         while ($accounttype=db_fetch($result))
67         {
68                 //Print Type Title if has sub types and not previously printed
69                 if (!$printtitle)
70                 {
71                         $printtitle = 1;
72                         $rep->row -= 4;
73                         $rep->TextCol(0, 1, $type);
74                         $rep->TextCol(1, 4, $typename);
75                         $rep->row -= 4;
76                         $rep->Line($rep->row);
77                         $rep->NewLine();                
78                 }
79
80                 display_type($accounttype["id"], $accounttype["name"], $dec, $rep, $showbalance);
81         }
82 }
83
84 //----------------------------------------------------------------------------------------------------
85
86 print_Chart_of_Accounts();
87
88 //----------------------------------------------------------------------------------------------------
89
90 function print_Chart_of_Accounts()
91 {
92         global $path_to_root;
93
94         $showbalance = $_POST['PARAM_0'];
95         $comments = $_POST['PARAM_1'];
96         $destination = $_POST['PARAM_2'];
97         if ($destination)
98                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
99         else
100                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
101
102         $dec = 0;
103
104         $cols = array(0, 50, 300, 425, 500);
105
106         $headers = array(_('Account'), _('Account Name'), _('Account Code'), _('Balance'));
107         
108         $aligns = array('left', 'left', 'left', 'right');
109         
110         $params = array(0 => $comments);
111
112         $rep = new FrontReport(_('Chart of Accounts'), "ChartOfAccounts", user_pagesize());
113         
114         $rep->Font();
115         $rep->Info($params, $cols, $headers, $aligns);
116         $rep->NewPage();
117
118         $classresult = get_account_classes(false);
119         while ($class = db_fetch($classresult))
120         {
121                 $rep->Font('bold');
122                 $rep->TextCol(0, 1, $class['cid']);
123                 $rep->TextCol(1, 4, $class['class_name']);
124                 $rep->Font();
125                 $rep->NewLine();
126
127                 //Get Account groups/types under this group/type with no parents
128                 $typeresult = get_account_types(false, $class['cid'], -1);
129                 while ($accounttype=db_fetch($typeresult))
130                 {
131                         display_type($accounttype["id"], $accounttype["name"], $dec, $rep, $showbalance);
132                 }
133                 $rep->NewLine();
134         }
135         $rep->Line($rep->row + 10);
136         $rep->End();
137 }
138
139 ?>