d562218b5d5e2896cef02b6f13db6e3fbaffe06e
[fa-stable.git] / reporting / rep707.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 = 2;
13 // ----------------------------------------------------------------
14 // $ Revision:  2.0 $
15 // Creator:     Joe Hunt
16 // date_:       2005-05-19
17 // Title:       Profit and Loss Statement
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 print_profit_and_loss_statement();
29
30 //----------------------------------------------------------------------------------------------------
31
32 function Achieve($d1, $d2)
33 {
34         if ($d1 == 0 && $d2 == 0)
35                 return 0;
36         elseif ($d2 == 0)
37                 return 999;
38         $ret = ($d1 / $d2 * 100.0);
39         if ($ret > 999)
40                 $ret = 999;
41         return $ret;
42 }
43
44 //----------------------------------------------------------------------------------------------------
45
46 function print_profit_and_loss_statement()
47 {
48         global $comp_path, $path_to_root;
49
50         $dim = get_company_pref('use_dimension');
51         $dimension = $dimension2 = 0;
52
53         $from = $_POST['PARAM_0'];
54         $to = $_POST['PARAM_1'];
55         $compare = $_POST['PARAM_2'];
56         if ($dim == 2)
57         {
58                 $dimension = $_POST['PARAM_3'];
59                 $dimension2 = $_POST['PARAM_4'];
60                 $graphics = $_POST['PARAM_5'];
61                 $comments = $_POST['PARAM_6'];
62                 $destination = $_POST['PARAM_7'];
63         }
64         else if ($dim == 1)
65         {
66                 $dimension = $_POST['PARAM_3'];
67                 $graphics = $_POST['PARAM_4'];
68                 $comments = $_POST['PARAM_5'];
69                 $destination = $_POST['PARAM_6'];
70         }
71         else
72         {
73                 $graphics = $_POST['PARAM_3'];
74                 $comments = $_POST['PARAM_4'];
75                 $destination = $_POST['PARAM_5'];
76         }
77         if ($destination)
78                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
79         else
80                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
81         if ($graphics)
82         {
83                 include_once($path_to_root . "/reporting/includes/class.graphic.inc");
84                 $pg = new graph();
85         }
86         $dec = 0;
87         $pdec = user_percent_dec();
88
89         $cols = array(0, 50, 200, 350, 425,     500);
90         //------------0--1---2----3----4----5--
91
92         $headers = array(_('Account'), _('Account Name'), _('Period'), _('Accumulated'), _('Achieved %'));
93
94         $aligns = array('left', 'left', 'right', 'right', 'right');
95
96     if ($dim == 2)
97     {
98         $params =   array(      0 => $comments,
99                                     1 => array('text' => _('Period'),'from' => $from, 'to' => $to),
100                         2 => array('text' => _('Dimension')." 1",
101                             'from' => get_dimension_string($dimension), 'to' => ''),
102                         3 => array('text' => _('Dimension')." 2",
103                             'from' => get_dimension_string($dimension2), 'to' => ''));
104     }
105     else if ($dim == 1)
106     {
107         $params =   array(      0 => $comments,
108                                     1 => array('text' => _('Period'),'from' => $from, 'to' => $to),
109                         2 => array('text' => _('Dimension'),
110                             'from' => get_dimension_string($dimension), 'to' => ''));
111     }
112     else
113     {
114         $params =   array(      0 => $comments,
115                                     1 => array('text' => _('Period'),'from' => $from, 'to' => $to));
116     }
117
118
119         if ($compare == 0 || $compare == 2)
120         {
121                 $end = $to;
122                 if ($compare == 2)
123                 {
124                         $begin = $from;
125                         $headers[3] = _('Budget');
126                 }
127                 else
128                         $begin = begin_fiscalyear();
129         }
130         elseif ($compare == 1)
131         {
132                 $begin = add_months($from, -12);
133                 $end = add_months($to, -12);
134                 $headers[3] = _('Period Y-1');
135         }
136
137         $rep = new FrontReport(_('Profit and Loss Statement'), "ProfitAndLoss", user_pagesize());
138
139         $rep->Font();
140         $rep->Info($params, $cols, $headers, $aligns);
141         $rep->Header();
142
143         $classname = '';
144         
145         $typeper = array(0,0,0,0,0,0,0,0,0,0);
146         $typeacc = array(0,0,0,0,0,0,0,0,0,0);
147         $typename = array('','','','','','','','','','');
148         $parent = array(-1,-1,-1,-1,-1,-1,-1,-1,-1,-1);
149         $level = 0;
150
151         $classper = 0.0;
152         $classacc = 0.0;
153         $salesper = 0.0;
154         $salesacc = 0.0;
155
156         $accounts = get_gl_accounts_all(0);
157
158         while ($account=db_fetch($accounts))
159         {
160                 $per_balance = get_gl_trans_from_to($from, $to, $account["account_code"], $dimension, $dimension2);
161
162                 if ($compare == 2)
163                         $acc_balance = get_budget_trans_from_to($begin, $end, $account["account_code"], $dimension, $dimension2);
164                 else
165                         $acc_balance = get_gl_trans_from_to($begin, $end, $account["account_code"], $dimension, $dimension2);
166                 if (!$per_balance && !$acc_balance)
167                         continue;
168
169                 if ($account['AccountClassName'] != $classname)
170                 {
171                         if ($classname != '')
172                         {
173                                 $closeclass = true;
174                         }
175                 }
176
177                 if ($account['AccountTypeName'] != $typename[$level])
178                 {
179                         if ($typename[$level] != '' && $account['parent'] == -1)
180                         {
181                                 for ( ; $level >= 0; $level--)
182                                 {
183                                         $rep->row += 6;
184                                         $rep->Line($rep->row);
185                                         $rep->NewLine();
186                                         $rep->TextCol(0, 2,     _('Total') . " " . $typename[$level]);
187                                         $rep->AmountCol(2, 3, $typeper[$level], $dec);
188                                         $rep->AmountCol(3, 4, $typeacc[$level], $dec);
189                                         $rep->AmountCol(4, 5, Achieve($typeper[$level], $typeacc[$level]), $pdec);
190                                         $typeper[$level] = $typeacc[$level] = 0.0;
191                                         if ($parent[$level] == -1)
192                                                 break;
193                                         $rep->NewLine();
194                                 }
195                                 if ($graphics)
196                                 {
197                                         $pg->x[] = $typename[$level];
198                                         $pg->y[] = abs($typeper[$level]);
199                                         $pg->z[] = abs($typeacc[$level]);
200                                 }
201                                 $rep->NewLine();
202                                 if ($closeclass)
203                                 {
204                                         $rep->row += 6;
205                                         $rep->Line($rep->row);
206                                         $rep->NewLine();
207                                         $rep->Font('bold');
208                                         $rep->TextCol(0, 2,     _('Total') . " " . $classname);
209                                         $rep->AmountCol(2, 3, $classper, $dec);
210                                         $rep->AmountCol(3, 4, $classacc, $dec);
211                                         $rep->AmountCol(4, 5, Achieve($classper, $classacc), $pdec);
212                                         $rep->Font();
213                                         $salesper += $classper;
214                                         $salesacc += $classacc;
215                                         $classper = $classacc = 0.0;
216                                         $rep->NewLine(2);
217                                         $closeclass = false;
218                                 }
219                         }
220                         if ($account['AccountClassName'] != $classname)
221                         {
222                                 $rep->Font('bold');
223                                 $rep->TextCol(0, 5, $account['AccountClassName']);
224                                 $rep->Font();
225                                 $rep->NewLine();
226                         }
227                         if ($account['parent'] != -1 && $account['parent'] != $parent[$level])
228                                 $level++;
229                         $typename[$level] = $account['AccountTypeName'];
230                         $rep->row -= 4;
231                         $rep->TextCol(0, 5, $account['AccountTypeName']);
232                         $rep->row -= 4;
233                         $rep->Line($rep->row);
234                         $rep->NewLine();
235                 }
236                 $classname = $account['AccountClassName'];
237                 $parent[$level] = $account['parent'];   
238
239                 $per_balance *= -1;
240                 $acc_balance *= -1;
241                 
242                 for ($i = 0; $i <= $level; $i++)
243                 {
244                         $typeper[$i] += $per_balance;
245                         $typeacc[$i] += $acc_balance;
246                 }
247                 $classper += $per_balance;
248                 $classacc += $acc_balance;
249                 $rep->TextCol(0, 1,     $account['account_code']);
250                 $rep->TextCol(1, 2,     $account['account_name']);
251
252                 $rep->AmountCol(2, 3, $per_balance, $dec);
253                 $rep->AmountCol(3, 4, $acc_balance, $dec);
254                 $rep->AmountCol(4, 5, Achieve($per_balance, $acc_balance), $pdec);
255
256                 $rep->NewLine();
257
258                 if ($rep->row < $rep->bottomMargin + 3 * $rep->lineHeight)
259                 {
260                         $rep->Line($rep->row - 2);
261                         $rep->Header();
262                 }
263         }
264         if ($account['AccountClassName'] != $classname)
265         {
266                 if ($classname != '')
267                 {
268                         $closeclass = true;
269                 }
270         }
271         if ($account['AccountTypeName'] != $typename[$level])
272         {
273                 if ($typename[$level] != '')
274                 {
275                         for ( ; $level >= 0; $level--)
276                         {
277                                 $rep->row += 6;
278                                 $rep->Line($rep->row);
279                                 $rep->NewLine();
280                                 $rep->TextCol(0, 2,     _('Total') . " " . $typename[$level]);
281                                 $rep->AmountCol(2, 3, $typeper[$level], $dec);
282                                 $rep->AmountCol(3, 4, $typeacc[$level], $dec);
283                                 $rep->AmountCol(4, 5, Achieve($typeper[$level], $typeacc[$level]), $pdec);
284                                 $typeper[$level] = $typeacc[$level] = 0.0;
285                                 if ($parent[$level] == -1)
286                                         break;
287                                 $rep->NewLine();
288                         }
289                         if ($graphics)
290                         {
291                                 $pg->x[] = $typename[$level];
292                                 $pg->y[] = abs($typeper[$level]);
293                                 $pg->z[] = abs($typeacc[$level]);
294                         }
295                         $rep->NewLine();
296                         if ($closeclass)
297                         {
298                                 $rep->Line($rep->row + 6);
299                                 $calculateper = $salesper + $classper;
300                                 $calculateacc = $salesacc + $classacc;
301                                 $rep->row += 6;
302                                 $rep->Line($rep->row);
303                                 $rep->NewLine();
304
305                                 $rep->Font('bold');
306                                 $rep->TextCol(0, 2,     _('Total') . " " . $classname);
307                                 $rep->AmountCol(2, 3, $classper, $dec);
308                                 $rep->AmountCol(3, 4, $classacc, $dec);
309                                 $rep->AmountCol(4, 5, Achieve($classper, $classacc), $pdec);
310
311                                 $rep->NewLine(2);
312                                 $rep->TextCol(0, 2,     _('Calculated Return'));
313                                 $rep->AmountCol(2, 3, $calculateper, $dec);
314                                 $rep->AmountCol(3, 4, $calculateacc, $dec);
315                                 $rep->AmountCol(4, 5, Achieve($calculateper, $calculateacc), $pdec);
316                                 if ($graphics)
317                                 {
318                                         $pg->x[] = _('Calculated Return');
319                                         $pg->y[] = abs($calculateper);
320                                         $pg->z[] = abs($calculateacc);
321                                 }
322
323                                 $rep->Font();
324
325                                 $rep->NewLine();
326                         }
327                 }
328         }
329         $rep->Line($rep->row);
330         if ($graphics)
331         {
332                 global $decseps, $graph_skin;
333                 $pg->title     = $rep->title;
334                 $pg->axis_x    = _("Group");
335                 $pg->axis_y    = _("Amount");
336                 $pg->graphic_1 = $headers[2];
337                 $pg->graphic_2 = $headers[3];
338                 $pg->type      = $graphics;
339                 $pg->skin      = $graph_skin;
340                 $pg->built_in  = false;
341                 $pg->fontfile  = $path_to_root . "/reporting/fonts/Vera.ttf";
342                 $pg->latin_notation = ($decseps[$_SESSION["wa_current_user"]->prefs->dec_sep()] != ".");
343                 $filename = $comp_path.'/'.user_company(). "/pdf_files/test.png";
344                 $pg->display($filename, true);
345                 $w = $pg->width / 1.5;
346                 $h = $pg->height / 1.5;
347                 $x = ($rep->pageWidth - $w) / 2;
348                 $rep->NewLine(2);
349                 if ($rep->row - $h < $rep->bottomMargin)
350                         $rep->Header();
351                 $rep->AddImage($filename, $x, $rep->row - $h, $w, $h);
352         }
353         $rep->End();
354 }
355
356 ?>