979ca2e1e4a45bffa0d9e871a8627e209f11b8b7
[fa-stable.git] / reporting / rep708.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
16 // date_:       2005-05-19
17 // Title:       Trial Balance
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/ui.inc");
24 include_once($path_to_root . "/includes/date_functions.inc");
25 include_once($path_to_root . "/includes/data_checks.inc");
26 include_once($path_to_root . "/gl/includes/gl_db.inc");
27
28 $pdeb = $pcre = $cdeb = $ccre = $tdeb = $tcre = $pbal = $cbal = $tbal = 0;
29
30 //----------------------------------------------------------------------------------------------------
31
32 function display_type ($type, $typename, &$dec, &$rep, $from, $to, $zero, $balances, $dimension, $dimension2)
33 {
34         global $pdeb, $pcre, $cdeb, $ccre, $tdeb, $tcre, $pbal, $cbal, $tbal;
35         
36         $printtitle = 0; //Flag for printing type name  
37         
38         //Get Accounts directly under this group/type
39         $accounts = get_gl_accounts(null, null, $type); 
40         
41         $begin = get_fiscalyear_begin_for_date($from);
42         if (date1_greater_date2($begin, $from))
43                 $begin = $from;
44         $begin = add_days($begin, -1);
45         while ($account=db_fetch($accounts))
46         {
47                 //Print Type Title if it has atleast one non-zero account       
48                 if (!$printtitle)
49                 {       
50                         $rep->row -= 4;
51                         $rep->TextCol(0, 8, _("Group")." - ".$type ." - ".$typename);   
52                         $printtitle = 1;
53                         $rep->row -= 4;
54                         $rep->Line($rep->row);
55                         $rep->NewLine();                        
56                 }
57                 
58                 $prev = get_balance($account["account_code"], $dimension, $dimension2, $begin, $from, false, false);
59                 $curr = get_balance($account["account_code"], $dimension, $dimension2, $from, $to, true, true);
60                 $tot = get_balance($account["account_code"], $dimension, $dimension2, $begin, $to, false, true);
61
62                 if ($zero == 0 && !$prev['balance'] && !$curr['balance'] && !$tot['balance'])
63                         continue;
64                 $rep->TextCol(0, 1, $account['account_code']);
65                 $rep->TextCol(1, 2,     $account['account_name']);
66                 if ($balances != 0)
67                 {
68                         if ($prev['balance'] >= 0.0)
69                                 $rep->AmountCol(2, 3, $prev['balance'], $dec);
70                         else
71                                 $rep->AmountCol(3, 4, abs($prev['balance']), $dec);
72                         if ($curr['balance'] >= 0.0)
73                                 $rep->AmountCol(4, 5, $curr['balance'], $dec);
74                         else
75                                 $rep->AmountCol(5, 6, abs($curr['balance']), $dec);
76                         if ($tot['balance'] >= 0.0)
77                                 $rep->AmountCol(6, 7, $tot['balance'], $dec);
78                         else
79                                 $rep->AmountCol(7, 8, abs($tot['balance']), $dec);
80                 }
81                 else
82                 {
83                         $rep->AmountCol(2, 3, $prev['debit'], $dec);
84                         $rep->AmountCol(3, 4, $prev['credit'], $dec);
85                         $rep->AmountCol(4, 5, $curr['debit'], $dec);
86                         $rep->AmountCol(5, 6, $curr['credit'], $dec);
87                         $rep->AmountCol(6, 7, $tot['debit'], $dec);
88                         $rep->AmountCol(7, 8, $tot['credit'], $dec);
89                         $pdeb += $prev['debit'];
90                         $pcre += $prev['credit'];
91                         $cdeb += $curr['debit'];
92                         $ccre += $curr['credit'];
93                         $tdeb += $tot['debit'];
94                         $tcre += $tot['credit'];
95                 }       
96
97                 $pbal += $prev['balance'];
98                 $cbal += $curr['balance'];
99                 $tbal += $tot['balance'];
100                 $rep->NewLine();
101
102                 if ($rep->row < $rep->bottomMargin + $rep->lineHeight)
103                 {
104                         $rep->Line($rep->row - 2);
105                         $rep->NewPage();
106                 }
107         }
108                 
109         //Get Account groups/types under this group/type
110         $result = get_account_types(false, false, $type);
111         while ($accounttype=db_fetch($result))
112         {
113                 //Print Type Title if has sub types and not previously printed
114                 if (!$printtitle)
115                 {
116                         $rep->row -= 4;
117                         $rep->TextCol(0, 8, _("Group")." - ".$type ." - ".$typename);   
118                         $printtitle = 1;
119                         $rep->row -= 4;
120                         $rep->Line($rep->row);
121                         $rep->NewLine();                
122                 }
123                 display_type($accounttype["id"], $accounttype["name"].' ('.$typename.')', $dec, $rep, $from, $to, $zero, $balances, $dimension, $dimension2);
124         }
125 }
126
127 //----------------------------------------------------------------------------------------------------
128
129 print_trial_balance();
130
131 //----------------------------------------------------------------------------------------------------
132
133 function print_trial_balance()
134 {
135         global $path_to_root;
136         global $pdeb, $pcre, $cdeb, $ccre, $tdeb, $tcre, $pbal, $cbal, $tbal;
137
138         $dim = get_company_pref('use_dimension');
139         $dimension = $dimension2 = 0;
140
141         $from = $_POST['PARAM_0'];
142         $to = $_POST['PARAM_1'];
143         $zero = $_POST['PARAM_2'];
144         $balances = $_POST['PARAM_3'];
145         if ($dim == 2)
146         {
147                 $dimension = $_POST['PARAM_4'];
148                 $dimension2 = $_POST['PARAM_5'];
149                 $comments = $_POST['PARAM_6'];
150                 $destination = $_POST['PARAM_7'];
151         }
152         else if ($dim == 1)
153         {
154                 $dimension = $_POST['PARAM_4'];
155                 $comments = $_POST['PARAM_5'];
156                 $destination = $_POST['PARAM_6'];
157         }
158         else
159         {
160                 $comments = $_POST['PARAM_4'];
161                 $destination = $_POST['PARAM_5'];
162         }
163         if ($destination)
164                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
165         else
166                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
167         $dec = user_price_dec();
168
169         $cols2 = array(0, 50, 190, 310, 430, 530);
170         //-------------0--1---2----3----4----5--
171
172         $headers2 = array('', '', _('Brought Forward'), _('This Period'), _('Balance'));
173
174         $aligns2 = array('left', 'left', 'left', 'left', 'left');
175
176         $cols = array(0, 50, 150, 210, 270,     330, 390, 450, 510,     570);
177         //------------0--1---2----3----4----5----6----7----8--
178
179         $headers = array(_('Account'), _('Account Name'), _('Debit'), _('Credit'), _('Debit'),
180                 _('Credit'), _('Debit'), _('Credit'));
181
182         $aligns = array('left', 'left', 'right', 'right', 'right', 'right',     'right', 'right');
183
184     if ($dim == 2)
185     {
186         $params =   array(      0 => $comments,
187                                     1 => array('text' => _('Period'),'from' => $from, 'to' => $to),
188                         2 => array('text' => _('Dimension')." 1",
189                             'from' => get_dimension_string($dimension), 'to' => ''),
190                         3 => array('text' => _('Dimension')." 2",
191                             'from' => get_dimension_string($dimension2), 'to' => ''));
192     }
193     else if ($dim == 1)
194     {
195         $params =   array(      0 => $comments,
196                                     1 => array('text' => _('Period'),'from' => $from, 'to' => $to),
197                         2 => array('text' => _('Dimension'),
198                             'from' => get_dimension_string($dimension), 'to' => ''));
199     }
200     else
201     {
202         $params =   array(      0 => $comments,
203                                     1 => array('text' => _('Period'),'from' => $from, 'to' => $to));
204     }
205
206         $rep = new FrontReport(_('Trial Balance'), "TrialBalance", user_pagesize());
207
208         $rep->Font();
209         $rep->Info($params, $cols, $headers, $aligns, $cols2, $headers2, $aligns2);
210         $rep->NewPage();
211         
212         $classresult = get_account_classes(false);
213         while ($class = db_fetch($classresult))
214         {
215                 $rep->Font('bold');
216                 $rep->TextCol(0, 1, $class['cid']);
217                 $rep->TextCol(1, 4, $class['class_name']);
218                 $rep->Font();
219                 $rep->NewLine();
220
221                 //Get Account groups/types under this group/type with no parents
222                 $typeresult = get_account_types(false, $class['cid'], -1);
223                 while ($accounttype=db_fetch($typeresult))
224                 {
225                         display_type($accounttype["id"], $accounttype["name"], $dec, $rep, $from, $to,  $zero, $balances, $dimension, $dimension2);
226                 }
227                 $rep->NewLine();
228         }
229         $rep->Line($rep->row);
230         $rep->NewLine();
231         $rep->Font('bold');
232
233         if ($balances == 0)
234         {
235                 $rep->TextCol(0, 2, _("Total"));
236                 $rep->AmountCol(2, 3, $pdeb, $dec);
237                 $rep->AmountCol(3, 4, $pcre, $dec);
238                 $rep->AmountCol(4, 5, $cdeb, $dec);
239                 $rep->AmountCol(5, 6, $ccre, $dec);
240                 $rep->AmountCol(6, 7, $tdeb, $dec);
241                 $rep->AmountCol(7, 8, $tcre, $dec);
242                 $rep->NewLine();
243         }       
244         $rep->TextCol(0, 2, _("Ending Balance"));
245
246         if ($pbal >= 0.0)
247                 $rep->AmountCol(2, 3, $pbal, $dec);
248         else
249                 $rep->AmountCol(3, 4, abs($pbal), $dec);
250         if ($cbal >= 0.0)
251                 $rep->AmountCol(4, 5, $cbal, $dec);
252         else
253                 $rep->AmountCol(5, 6, abs($cbal), $dec);
254         if ($tbal >= 0.0)
255                 $rep->AmountCol(6, 7, $tbal, $dec);
256         else
257                 $rep->AmountCol(7, 8, abs($tbal), $dec);
258         $rep->NewLine();
259                 
260         $rep->Line($rep->row + 10);
261         if (($pbal = round2($pbal, $dec)) != 0.0 && $dimension == 0 && $dimension2 == 0)
262         {
263                 $rep->NewLine(2);
264                 $rep->Font();
265                 $rep->TextCol(0, 8, _("The Opening Balance is not in balance, probably due to a non closed Previous Fiscalyear."));
266         }       
267         $rep->End();
268 }
269
270 ?>