Minor bug Prifit & Loss Statement
[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         $group = '';
145         $totalper = 0.0;
146         $totalacc = 0.0;
147         $classper = 0.0;
148         $classacc = 0.0;
149         $salesper = 0.0;
150         $salesacc = 0.0;
151         $convert = 1;
152
153         $accounts = get_gl_accounts_all(0);
154
155         while ($account=db_fetch($accounts))
156         {
157                 $per_balance = get_gl_trans_from_to($from, $to, $account["account_code"], $dimension, $dimension2);
158
159                 if ($compare == 2)
160                         $acc_balance = get_budget_trans_from_to($begin, $end, $account["account_code"], $dimension, $dimension2);
161                 else
162                         $acc_balance = get_gl_trans_from_to($begin, $end, $account["account_code"], $dimension, $dimension2);
163                 if (!$per_balance && !$acc_balance)
164                         continue;
165
166                 if ($account['AccountClassName'] != $classname)
167                 {
168                         if ($classname != '')
169                         {
170                                 $closeclass = true;
171                         }
172                 }
173
174                 if ($account['AccountTypeName'] != $group)
175                 {
176                         if ($group != '')
177                         {
178                                 $rep->row += 6;
179                                 $rep->Line($rep->row);
180                                 $rep->NewLine();
181                                 $rep->TextCol(0, 2,     _('Total') . " " . $group);
182                                 $rep->AmountCol(2, 3, $totalper * $convert, $dec);
183                                 $rep->AmountCol(3, 4, $totalacc * $convert, $dec);
184                                 $rep->AmountCol(4, 5, Achieve($totalper, $totalacc), $pdec);
185                                 if ($graphics)
186                                 {
187                                         $pg->x[] = $group;
188                                         $pg->y[] = abs($totalper);
189                                         $pg->z[] = abs($totalacc);
190                                 }
191                                 $totalper = $totalacc = 0.0;
192                                 $rep->NewLine();
193                                 if ($closeclass)
194                                 {
195                                         $rep->row += 6;
196                                         $rep->Line($rep->row);
197                                         $rep->NewLine();
198                                         $rep->Font('bold');
199                                         $rep->TextCol(0, 2,     _('Total') . " " . $classname);
200                                         $rep->AmountCol(2, 3, $classper * $convert, $dec);
201                                         $rep->AmountCol(3, 4, $classacc * $convert, $dec);
202                                         $rep->AmountCol(4, 5, Achieve($classper, $classacc), $pdec);
203                                         $rep->Font();
204                                         $salesper += $classper;
205                                         $salesacc += $classacc;
206                                         $classper = $classacc = 0.0;
207                                         $rep->NewLine(2);
208                                         $closeclass = false;
209                                 }
210                         }
211                         if ($account['AccountClassName'] != $classname)
212                         {
213                                 $rep->Font('bold');
214                                 $rep->TextCol(0, 5, $account['AccountClassName']);
215                                 $rep->Font();
216                                 $rep->NewLine();
217                         }
218                         $group = $account['AccountTypeName'];
219                         if (get_sign_convert($account['account_type']))
220                                 $convert = -1;
221                         else
222                                 $convert = 1;
223                         $rep->row -= 4;
224                         $rep->TextCol(0, 5, $account['AccountTypeName']);
225                         $rep->row -= 4;
226                         $rep->Line($rep->row);
227                         $rep->NewLine();
228                 }
229                 $classname = $account['AccountClassName'];
230
231                 $per_balance *= -1;
232                 $acc_balance *= -1;
233                 $totalper += $per_balance;
234                 $totalacc += $acc_balance;
235                 $classper += $per_balance;
236                 $classacc += $acc_balance;
237                 $rep->TextCol(0, 1,     $account['account_code']);
238                 $rep->TextCol(1, 2,     $account['account_name']);
239
240                 $rep->AmountCol(2, 3, $per_balance * $convert, $dec);
241                 $rep->AmountCol(3, 4, $acc_balance * $convert, $dec);
242                 $rep->AmountCol(4, 5, Achieve($per_balance, $acc_balance), $pdec);
243
244                 $rep->NewLine();
245
246                 if ($rep->row < $rep->bottomMargin + 3 * $rep->lineHeight)
247                 {
248                         $rep->Line($rep->row - 2);
249                         $rep->Header();
250                 }
251         }
252         if ($account['AccountClassName'] != $classname)
253         {
254                 if ($classname != '')
255                 {
256                         $closeclass = true;
257                 }
258         }
259         if ($account['AccountTypeName'] != $group)
260         {
261                 if ($group != '')
262                 {
263                         $rep->row += 6;
264                         $rep->Line($rep->row);
265                         $rep->NewLine();
266                         $rep->TextCol(0, 2,     _('Total') . " " . $group);
267                         $rep->AmountCol(2, 3, $totalper * $convert, $dec);
268                         $rep->AmountCol(3, 4, $totalacc * $convert, $dec);
269                         $rep->AmountCol(4, 5, Achieve($totalper, $totalacc), $pdec);
270                         if ($graphics)
271                         {
272                                 $pg->x[] = $group;
273                                 $pg->y[] = abs($totalper);
274                                 $pg->z[] = abs($totalacc);
275                         }
276                         $rep->NewLine();
277                         if ($closeclass)
278                         {
279                                 $rep->Line($rep->row + 6);
280                                 $calculateper = $salesper + $classper;
281                                 $calculateacc = $salesacc + $classacc;
282                                 $rep->row += 6;
283                                 $rep->Line($rep->row);
284                                 $rep->NewLine();
285
286                                 $rep->Font('bold');
287                                 $rep->TextCol(0, 2,     _('Total') . " " . $classname);
288                                 $rep->AmountCol(2, 3, $classper * $convert, $dec);
289                                 $rep->AmountCol(3, 4, $classacc * $convert, $dec);
290                                 $rep->AmountCol(4, 5, Achieve($classper, $classacc), $pdec);
291
292                                 $rep->NewLine(2);
293                                 $rep->TextCol(0, 2,     _('Calculated Return'));
294                                 $rep->AmountCol(2, 3, $calculateper, $dec);
295                                 $rep->AmountCol(3, 4, $calculateacc, $dec);
296                                 $rep->AmountCol(4, 5, Achieve($calculateper, $calculateacc), $pdec);
297                                 if ($graphics)
298                                 {
299                                         $pg->x[] = _('Calculated Return');
300                                         $pg->y[] = abs($calculateper);
301                                         $pg->z[] = abs($calculateacc);
302                                 }
303
304                                 $rep->Font();
305
306                                 $rep->NewLine();
307                         }
308                 }
309         }
310         $rep->Line($rep->row);
311         if ($graphics)
312         {
313                 global $decseps, $graph_skin;
314                 $pg->title     = $rep->title;
315                 $pg->axis_x    = _("Group");
316                 $pg->axis_y    = _("Amount");
317                 $pg->graphic_1 = $headers[2];
318                 $pg->graphic_2 = $headers[3];
319                 $pg->type      = $graphics;
320                 $pg->skin      = $graph_skin;
321                 $pg->built_in  = false;
322                 $pg->fontfile  = $path_to_root . "/reporting/fonts/Vera.ttf";
323                 $pg->latin_notation = ($decseps[$_SESSION["wa_current_user"]->prefs->dec_sep()] != ".");
324                 $filename = $comp_path.'/'.user_company(). "/pdf_files/test.png";
325                 $pg->display($filename, true);
326                 $w = $pg->width / 1.5;
327                 $h = $pg->height / 1.5;
328                 $x = ($rep->pageWidth - $w) / 2;
329                 $rep->NewLine(2);
330                 if ($rep->row - $h < $rep->bottomMargin)
331                         $rep->Header();
332                 $rep->AddImage($filename, $x, $rep->row - $h, $w, $h);
333         }
334         $rep->End();
335 }
336
337 ?>