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