Unnecesary direct access to user setting superseded by calls to user_* functions.
[fa-stable.git] / gl / inquiry / profit_loss.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 $path_to_root="../..";
14
15 include_once($path_to_root . "/includes/session.inc");
16
17 include_once($path_to_root . "/includes/date_functions.inc");
18 include_once($path_to_root . "/includes/ui.inc");
19 include_once($path_to_root . "/includes/data_checks.inc");
20
21 include_once($path_to_root . "/gl/includes/gl_db.inc");
22
23 $js = "";
24 if (user_use_date_picker())
25         $js = get_js_date_picker();
26
27 page(_($help_context = "Profit & Loss Drilldown"), false, false, "", $js);
28
29 //----------------------------------------------------------------------------------------------------
30 // Ajax updates
31
32 if (get_post('Show')) 
33 {
34         $Ajax->activate('pl_tbl');
35 }
36
37 if (isset($_GET["TransFromDate"]))
38         $_POST["TransFromDate"] = $_GET["TransFromDate"];       
39 if (isset($_GET["TransToDate"]))
40         $_POST["TransToDate"] = $_GET["TransToDate"];
41 if (isset($_GET["Compare"]))
42         $_POST["Compare"] = $_GET["Compare"];
43 if (isset($_GET["Dimension"]))
44         $_POST["Dimension"] = $_GET["Dimension"];
45 if (isset($_GET["Dimension2"]))
46         $_POST["Dimension2"] = $_GET["Dimension2"];
47 if (isset($_GET["AccGrp"]))
48         $_POST["AccGrp"] = $_GET["AccGrp"];
49
50 //----------------------------------------------------------------------------------------------------
51
52 function display_type ($type, $typename, $from, $to, $begin, $end, $compare, $convert,
53         &$dec, &$pdec, &$rep, $dimension=0, $dimension2=0, $drilldown, $path_to_root)
54 {
55         global $levelptr, $k;
56                 
57         $code_per_balance = 0;
58         $code_acc_balance = 0;
59         $per_balance_total = 0;
60         $acc_balance_total = 0;
61         unset($totals_arr);
62         $totals_arr = array();
63         
64         //Get Accounts directly under this group/type
65         $result = get_gl_accounts(null, null, $type);   
66                 
67         while ($account=db_fetch($result))
68         {
69                 $per_balance = get_gl_trans_from_to($from, $to, $account["account_code"], $dimension, $dimension2);
70
71                 if ($compare == 2)
72                         $acc_balance = get_budget_trans_from_to($begin, $end, $account["account_code"], $dimension, $dimension2);
73                 else
74                         $acc_balance = get_gl_trans_from_to($begin, $end, $account["account_code"], $dimension, $dimension2);
75                 if (!$per_balance && !$acc_balance)
76                         continue;
77                 
78                 if ($drilldown && $levelptr == 0)
79                 {
80                         $url = "<a href='$path_to_root/gl/inquiry/gl_account_inquiry.php?TransFromDate=" 
81                                 . $from . "&TransToDate=" . $to . "&Dimension=" . $dimension . "&Dimension2=" . $dimension2 
82                                 . "&account=" . $account['account_code'] . "'>" . $account['account_code'] 
83                                 ." ". $account['account_name'] ."</a>";                         
84                                 
85                         start_row("class='stockmankobg'");
86                         label_cell($url);
87                         amount_cell($per_balance * $convert);
88                         amount_cell($acc_balance * $convert);
89                         amount_cell(Achieve($per_balance, $acc_balance));
90                         end_row();
91                 }
92                         
93                 $code_per_balance += $per_balance;
94                 $code_acc_balance += $acc_balance;
95         }
96
97         $levelptr = 1;
98         
99         //Get Account groups/types under this group/type
100         $result = get_account_types(false, false, $type);
101         while ($accounttype=db_fetch($result))
102         {       
103                 $totals_arr = display_type($accounttype["id"], $accounttype["name"], $from, $to, $begin, $end, 
104                         $compare, $convert, $dec, $pdec, $rep, $dimension, $dimension2, $drilldown, $path_to_root);
105                 $per_balance_total += $totals_arr[0];
106                 $acc_balance_total += $totals_arr[1];
107         }
108
109         //Display Type Summary if total is != 0 
110         if (($code_per_balance + $per_balance_total + $code_acc_balance + $acc_balance_total) != 0)
111         {
112                 if ($drilldown && $type == $_POST["AccGrp"])
113                 {               
114                         start_row("class='inquirybg' style='font-weight:bold'");
115                         label_cell(_('Total') . " " . $typename);
116                         amount_cell(($code_per_balance + $per_balance_total) * $convert);
117                         amount_cell(($code_acc_balance + $acc_balance_total) * $convert);
118                         amount_cell(Achieve(($code_per_balance + $per_balance_total), ($code_acc_balance + $acc_balance_total)));
119                         end_row();
120                 }
121                 //START Patch#1 : Display  only direct child types
122                 $acctype1 = get_account_type($type);
123                 $parent1 = $acctype1["parent"];
124                 if ($drilldown && $parent1 == $_POST["AccGrp"])
125                 //END Patch#2           
126                 //elseif ($drilldown && $type != $_POST["AccGrp"])
127                 {       
128                         $url = "<a href='$path_to_root/gl/inquiry/profit_loss.php?TransFromDate=" 
129                                 . $from . "&TransToDate=" . $to . "&Compare=" . $compare . "&Dimension=" . $dimension . "&Dimension2=" . $dimension2
130                                 . "&AccGrp=" . $type ."'>" . $type . " " . $typename ."</a>";
131                                 
132                         alt_table_row_color($k);
133                         label_cell($url);
134                         amount_cell(($code_per_balance + $per_balance_total) * $convert);
135                         amount_cell(($code_acc_balance + $acc_balance_total) * $convert);
136                         amount_cell(Achieve(($code_per_balance + $per_balance_total), ($code_acc_balance + $acc_balance_total)));
137                         end_row();
138                 }
139         }
140         
141         $totals_arr[0] = $code_per_balance + $per_balance_total;
142         $totals_arr[1] = $code_acc_balance + $acc_balance_total;
143         return $totals_arr;
144 }       
145         
146 function Achieve($d1, $d2)
147 {
148         if ($d1 == 0 && $d2 == 0)
149                 return 0;
150         elseif ($d2 == 0)
151                 return 999;
152         $ret = ($d1 / $d2 * 100.0);
153         if ($ret > 999)
154                 $ret = 999;
155         return $ret;
156 }
157
158 function inquiry_controls()
159 {  
160         $dim = get_company_pref('use_dimension');
161     start_table(TABLESTYLE_NOBORDER);
162     
163         $date = today();
164         if (!isset($_POST['TransToDate']))
165                 $_POST['TransToDate'] = end_month($date);
166         if (!isset($_POST['TransFromDate']))
167                 $_POST['TransFromDate'] = add_days(end_month($date), -user_transaction_days());
168     date_cells(_("From:"), 'TransFromDate');
169         date_cells(_("To:"), 'TransToDate');
170         
171         $sel = array(_("Accumulated"), _("Period Y-1"), _("Budget"));   
172         echo "<td>"._("Compare to").":</td>\n";
173         echo "<td>";
174         echo array_selector('Compare', null, $sel);
175         echo "</td>\n"; 
176         if ($dim >= 1)
177                 dimensions_list_cells(_("Dimension")." 1:", 'Dimension', null, true, " ", false, 1);
178         if ($dim > 1)
179                 dimensions_list_cells(_("Dimension")." 2:", 'Dimension2', null, true, " ", false, 2);
180         
181         submit_cells('Show',_("Show"),'','', 'default');
182     end_table();
183
184         hidden('AccGrp');
185
186         return $sel[get_post('Compare')];
187 }
188
189 //----------------------------------------------------------------------------------------------------
190
191 function display_profit_and_loss($compare)
192 {
193         global $path_to_root;
194
195         if (!isset($_POST['Dimension']))
196                 $_POST['Dimension'] = 0;
197         if (!isset($_POST['Dimension2']))
198                 $_POST['Dimension2'] = 0;
199         $dimension = $_POST['Dimension'];
200         $dimension2 = $_POST['Dimension2'];
201
202         $from = $_POST['TransFromDate'];
203         $to = $_POST['TransToDate'];
204         
205         if (isset($_POST["AccGrp"]) && (strlen($_POST['AccGrp']) > 0))
206                 $drilldown = 1; // Deeper Level
207         else
208                 $drilldown = 0; // Root level
209         
210         $dec = 0;
211         $pdec = user_percent_dec();
212
213         if ($compare == 0 || $compare == 2)
214         {
215                 $end = $to;
216                 if ($compare == 2)
217                 {
218                         $begin = $from;
219                 }
220                 else
221                         $begin = begin_fiscalyear();
222         }
223         elseif ($compare == 1)
224         {
225                 $begin = add_months($from, -12);
226                 $end = add_months($to, -12);
227         }
228         
229         div_start('pl_tbl');
230
231         start_table(TABLESTYLE, "width=50%");
232
233         $tableheader =  "<tr>
234         <td class='tableheader'>" . _("Group/Account Name") . "</td>
235         <td class='tableheader'>" . _("Period") . "</td>
236                 <td class='tableheader'>" . $compare . "</td>
237                 <td class='tableheader'>" . _("Achieved %") . "</td>
238         </tr>"; 
239         
240         if (!$drilldown) //Root Level
241         {
242                 $parent = -1;
243                 $classper = 0.0;
244                 $classacc = 0.0;
245                 $salesper = 0.0;
246                 $salesacc = 0.0;        
247         
248                 //Get classes for PL
249                 $classresult = get_account_classes(false, 0);
250                 while ($class = db_fetch($classresult))
251                 {
252                         $class_per_total = 0;
253                         $class_acc_total = 0;
254                         $convert = get_class_type_convert($class["ctype"]);             
255                         
256                         //Print Class Name      
257                         table_section_title($class["class_name"],4);    
258                         echo $tableheader;
259                         
260                         //Get Account groups/types under this group/type
261                         $typeresult = get_account_types(false, $class['cid'], -1);
262                         while ($accounttype=db_fetch($typeresult))
263                         {
264                                 $TypeTotal = display_type($accounttype["id"], $accounttype["name"], $from, $to, $begin, $end, $compare, $convert, 
265                                         $dec, $pdec, $rep, $dimension, $dimension2, $drilldown, $path_to_root);
266                                 $class_per_total += $TypeTotal[0];
267                                 $class_acc_total += $TypeTotal[1];      
268
269                                 if ($TypeTotal[0] != 0 || $TypeTotal[1] != 0 )
270                                 {
271                                         $url = "<a href='$path_to_root/gl/inquiry/profit_loss.php?TransFromDate=" 
272                                                 . $from . "&TransToDate=" . $to . "&Compare=" . $compare . "&Dimension=" . $dimension . "&Dimension2=" . $dimension2
273                                                 . "&AccGrp=" . $accounttype['id'] ."'>" . $accounttype['id'] . " " . $accounttype['name'] ."</a>";
274                                                 
275                                         alt_table_row_color($k);
276                                         label_cell($url);
277                                         amount_cell($TypeTotal[0] * $convert);
278                                         amount_cell($TypeTotal[1] * $convert);
279                                         amount_cell(Achieve($TypeTotal[0], $TypeTotal[1]));
280                                         end_row();
281                                 }
282                         }
283                         
284                         //Print Class Summary
285                         
286                         start_row("class='inquirybg' style='font-weight:bold'");
287                         label_cell(_('Total') . " " . $class["class_name"]);
288                         amount_cell($class_per_total * $convert);
289                         amount_cell($class_acc_total * $convert);
290                         amount_cell(Achieve($class_per_total, $class_acc_total));
291                         end_row();                      
292                         
293                         $salesper += $class_per_total;
294                         $salesacc += $class_acc_total;
295                 }
296                 
297                 start_row("class='inquirybg' style='font-weight:bold'");
298                 label_cell(_('Calculated Return'));
299                 amount_cell($salesper *-1);
300                 amount_cell($salesacc * -1);
301                 amount_cell(achieve($salesper, $salesacc));
302                 end_row();              
303
304         }
305         else 
306         {
307                 //Level Pointer : Global variable defined in order to control display of root 
308                 global $levelptr;
309                 $levelptr = 0;
310                 
311                 $accounttype = get_account_type($_POST["AccGrp"]);
312                 $classid = $accounttype["class_id"];
313                 $class = get_account_class($classid);
314                 $convert = get_class_type_convert($class["ctype"]); 
315                 
316                 //Print Class Name      
317                 table_section_title($_POST["AccGrp"] . " " . get_account_type_name($_POST["AccGrp"]),4);        
318                 echo $tableheader;
319                 
320                 $classtotal = display_type($accounttype["id"], $accounttype["name"], $from, $to, $begin, $end, $compare, $convert, 
321                         $dec, $pdec, $rep, $dimension, $dimension2, $drilldown, $path_to_root);
322                 
323         }
324                 
325
326         end_table(1); // outer table
327         div_end();
328 }
329
330 //----------------------------------------------------------------------------------------------------
331
332 start_form();
333
334 $sel = inquiry_controls();
335
336 display_profit_and_loss($sel);
337
338 end_form();
339
340 end_page();
341