Adde integration of custom/extended reports; optimizations.
[fa-stable.git] / reporting / includes / reports_classes.inc
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 class BoxReports
13 {
14         var $ar_classes;
15
16         function ReportClasses()
17         {
18                 $this->ar_classes = array();
19         }
20
21         function addReportClass($class_name)
22         {
23                 $this->ar_classes[$class_name] = array();
24         }
25
26         function addReport($class_name, $id, $rep_name, $params=null)
27         {
28                 unset($this->ar_classes[$class_name][$id]); // unset std report if any
29                 $this->ar_classes[$class_name][$id] = new Report($id, $rep_name, $params);
30         }
31
32         function getDisplay($class=null)
33         {
34                 global $table_style2, $comp_path, $path_to_root, $pdf_debug, $Ajax;
35
36
37                 $temp = array_values($this->ar_classes);
38                 $display_class = $class==null ? $temp[0] : $this->ar_classes[$class];
39                 $class_counter = 0;
40                 $rep_counter = 0;
41                 $st_reports = "";
42                 $st_params = "";
43                 $st_classes = "<b>" . _("Report Classes:") . "</b><br>";
44                 foreach($this->ar_classes as $key=>$value)
45                 {
46                         $style = $class_counter==$_REQUEST['Class'] ? '' : "style='display:none'";
47                         $acc = access_string($key);
48                         $st_classes .= "<a href='"
49                                 .$_SERVER['PHP_SELF']."?Class=$class_counter'"
50                                 ." class='menu_option' id='".default_focus()."'"
51                                 ." onclick='return showClass($class_counter);'$acc[1]>$acc[0]</a> <br>";
52                         $st_reports .= "<table id='TAB_" . $class_counter ."' $style cellpadding=0 cellspacing=0 border=0 width='100%'><tr><td><b>" . _("Reports For Class: ") . "&nbsp;$key</b></td></tr>\n";
53                         foreach($value as $report)
54                         {
55                                 $acc = access_string($report->name);
56                                 $st_reports .= "<tr><td><a class='printlink' href='"
57                                         .$_SERVER['PHP_SELF']."?Class=$class_counter&rep_id=$report->id'"
58                                         ." id='".default_focus()."'"
59                                         ."$acc[1]>$acc[0]</a><tr><td>\n";
60                                 if (isset($_REQUEST['rep_id']) && $_REQUEST['rep_id']==$report->id) {
61
62                                         $action = $path_to_root.'/reporting/prn_redirect.php';
63         
64                                         $st_params = "<table border=0><tr><td>\n"
65                                                 . "<form method='POST' action='$action' target='_blank'>\n";
66                                         $st_params .= hidden('REP_ID', $report->id, false);
67                                         $st_params .= submit('Rep'.$report->id,  
68                                                 _("Display: ") . access_string($report->name, true),
69                                                 false, '', $pdf_debug ? false : 'default') . '<br><br>';
70                                         $st_params .= $this->getOptions($report->get_controls());
71                                         $st_params .= "\n</form></td></tr></table>\n";
72                                         set_focus('Rep'.$report->id);
73                                         $Ajax->addUpdate(true, 'rep_form', $st_params);
74                                 }
75                         }
76                         $st_reports .= "</table>";
77                         $class_counter++;
78                 }
79
80                 $st_params = "<div id='rep_form'>".
81                         "$st_params</div>";
82                 
83
84                 $st =   "<script language='javascript'>
85                                         function showClass(pClass) {
86                                                 for(i=0; i<$class_counter; i++) {
87                                                         document.getElementById(\"TAB_\" + i).style.display=
88                                                         i==pClass ? \"block\" : \"none\";
89                                                 }
90                                                 document.getElementById('rep_form').innerHTML = '';
91 //                                              document.getElementById('rep_form').style.display = 'none';
92                                                 return false;
93                                         }
94                                         function checkDate(pObj) {
95                                                 var re = /^(3[01]|0[1-9]|[12]\d)\/(0[1-9]|1[012])\/\d{4}/;
96                                                 if (re.test(pObj.value)==false) {
97                                                         alert('" . _("Invalid date format") . "')
98                                                 }
99                                         }
100                                 </script>
101                                 ";
102                 $st .= "<table align='center' width='80%' $table_style2><tr valign='top'>";
103                 $st .= "<td width='30%'>$st_classes</td>";
104                 $st .= "<td width='35%'>$st_reports</td>";
105                 $st .= "<td width='35%'>$st_params</td>";
106                 $st .= "</tr></table><br>";
107
108                 return $st;
109         }
110
111         function getOptions($controls)
112         {
113                 $st = '';
114                 if ($controls == null)
115                         return "";
116
117                 $cnt = 0;
118                 foreach($controls as $title => $type)
119                 {
120                         $ctrl = '';
121                         foreach($this->ctrl_handlers as $fun) { // first check for non-standard controls
122                                 $ctrl = $fun('PARAM_'.$cnt, $type);
123                                 if ($ctrl) break;
124                         }
125                         if ($ctrl == '') {
126                                 $ctrl = $this->get_ctrl('PARAM_'.$cnt, $type);
127                         }
128                         if ($ctrl != '')  {
129                                 $st .= $title . ':<br>';
130                                 $st .= $ctrl;
131                                 $st .= "<br><br>";
132                         } else {
133                                 display_error(_('Unknown report parameter type:').$type);
134                         }
135                         $cnt++;
136                 }
137                 return $st;
138         }
139
140         //
141         //      Register additional control handler
142         // $handle - name of global function f($name, $type) returning html code for control
143         function register_controls($handler) {
144                 $this->ctrl_handlers[] = $handler;
145         }
146         //
147         //      Returns html code for input control $name of type $type 
148         //
149         function get_ctrl($name, $type)
150         {
151                 global $path_to_root, $use_date_picker, $pdf_debug, $print_invoice_no;
152
153                 $st = '';
154                         switch ($type)
155                         {
156                                 case 'CURRENCY':
157                                         $sql = "SELECT curr_abrev, concat(curr_abrev,' - ', currency) AS name FROM ".TB_PREF."currencies";
158                                         return combo_input($name, '', $sql, 'curr_abrev', 'name',array('spec_option'=>_("No Currency Filter"),'spec_id'=>ALL_TEXT,'order'=>false));
159
160                                 case 'DATE':
161                                 case 'DATEBEGIN':
162                                 case 'DATEEND':
163                                 case 'DATEBEGINM':
164                                 case 'DATEENDM':
165                                 case 'DATEBEGINTAX':
166                                 case 'DATEENDTAX':
167                                         if ($type == 'DATEBEGIN')
168                                                 $date = begin_fiscalyear();
169                                         elseif ($type == 'DATEEND')
170                                                 $date = end_fiscalyear();
171                                         else
172                                                 $date = Today();
173                                         if ($type == 'DATEBEGINM')
174                                                 $date = begin_month($date);
175                                         elseif ($type == 'DATEENDM')
176                                                 $date = end_month($date);
177                                         elseif ($type == 'DATEBEGINTAX' || $type == 'DATEENDTAX')
178                                         {
179                                                 $row = get_company_prefs();
180                                                 $edate = add_months($date, -$row['tax_last']);
181                                                 $edate = end_month($edate);
182                                                 if ($type == 'DATEENDTAX')
183                                                         $date = $edate;
184                                                 else
185                                                 {
186                                                         $bdate = begin_month($edate);
187                                                         $bdate = add_months($bdate, -$row['tax_prd'] + 1);
188                                                         $date = $bdate;
189                                                 }
190                                         }
191
192                                         $st = "<input type='text' name='$name' value='$date'>";
193                                         if ($use_date_picker)
194                                                 $st .= "<a href=\"javascript:date_picker(document.forms[0].$name);\">"
195                                                 . "     <img src='$path_to_root/themes/default/images/cal.gif' width='16' height='16' border='0' alt='"._('Click Here to Pick up the date')."'></a>\n";
196                                         return $st;
197                                         break;
198
199                                 case 'YES_NO':
200                                         return yesno_list($name);
201
202                                 case 'PAYMENT_LINK':
203                                         $sel = array(_("No payment Link"), "PayPal");
204                                         return array_selector($name, null, $sel);
205
206                                 case 'DESTINATION':
207                                         $sel = array(_("PDF/Printer"), "Excel");
208                                         return array_selector($name, null, $sel);
209
210                                 case 'COMPARE':
211                                         $sel = array(_("Accumulated"), _("Period Y-1"), _("Budget"));
212                                         return array_selector($name, null, $sel);
213
214                                 case 'GRAPHIC':
215                                         $sel = array(_("No Graphics"), _("Vertical bars"), _("Horizontal bars"), 
216                                                                 _("Dots"), _("Lines"), _("Pie"), _("Donut"));
217                                         return array_selector($name, null, $sel);
218
219                                 case 'SYS_TYPES':
220                                         return gl_systypes_list($name, null, _("No Type Filter"));
221
222                                 case 'SYS_TYPES_ALL':
223                                         return systypes_list($name, null, _("No Type Filter"));
224
225                                 case 'TEXT':
226                                         return "<input type='text' name='$name'>";
227
228                                 case 'TEXTBOX':
229                                         return "<textarea rows=4 cols=30 name='$name'></textarea>";
230
231                                 case 'ACCOUNTS': // not used
232 //                                      $sql = "SELECT id, name FROM ".TB_PREF."chart_types";
233 //                                      return combo_input($name, '', $sql, 'id', 'name',array('spec_option'=>_("No Account Group Filter"),'spec_id'=>ALL_NUMERIC));
234                                         return gl_account_types_list($name, null, _("No Account Group Filter"), true);
235
236                                 case 'ACCOUNTS_NO_FILTER': // not used
237                                         return gl_account_types_list($name);
238
239                                 case 'GL_ACCOUNTS':
240                                         return gl_all_accounts_list($name);
241
242                                 case 'BANK_ACCOUNTS':
243                                         return bank_accounts_list($name);
244                                         
245                                 case 'DIMENSION':
246                                         return dimensions_list($name, null, false, ' ', false, true, 0);
247                                         
248                                 case 'DIMENSIONS':
249                                         return dimensions_list($name, null, true, _("No Dimension Filter"), false, true, 0);
250
251                                 case 'DIMENSION1':
252                                         return dimensions_list($name, null, false, ' ', false, true, 1);
253
254                                 case 'DIMENSIONS1':
255                                         return dimensions_list($name, null, true, _("No Dimension Filter"), false, true, 1);
256
257                                 case 'DIMENSION2':
258                                         return dimensions_list($name, null, false, ' ', false, true, 2);
259
260                                 case 'DIMENSIONS2':
261                                         return dimensions_list($name, null, true, _("No Dimension Filter"), false, true, 2);
262
263                                 case 'CUSTOMERS_NO_FILTER':
264                                 case 'CUSTOMERS':
265                                         $sql = "SELECT debtor_no, name FROM ".TB_PREF."debtors_master";
266                                         if ($type == 'CUSTOMERS_NO_FILTER')
267                                                 return combo_input($name, '', $sql, 'debtor_no', 'name',array('spec_option'=>_("No Customer Filter"),'spec_id'=>ALL_NUMERIC));
268 // FIX allitems numeric!
269 //                                              return customer_list($name, null, _("No Customer Filter"));
270                                         else
271                                                 return combo_input($name, '', $sql, 'debtor_no', 'name', null);
272 //                                              return customer_list($name);
273
274                                 case 'SUPPLIERS_NO_FILTER':
275                                 case 'SUPPLIERS':
276                                         $sql = "SELECT supplier_id, supp_name FROM ".TB_PREF."suppliers";
277                                         if ($type == 'SUPPLIERS_NO_FILTER')
278                                                 return combo_input($name, '', $sql, 'supplier_id', 'supp_name',array('spec_option'=>_("No Supplier Filter"),'spec_id'=>ALL_NUMERIC));
279 // FIX allitems numeric!
280 //                                              return supplier_list($name, null, _("No Supplier Filter"));
281                                         else
282                                                 return combo_input($name, '', $sql, 'supplier_id', 'supp_name', null);
283 //                                              return supplier_list($name);
284
285                                 case 'INVOICE':
286                                         $IV = _("IV");
287                                         $CN = _("CN");
288                                         $ref = ($print_invoice_no == 1 ? "trans_no" : "reference");
289                                         $sql = "SELECT concat(".TB_PREF."debtor_trans.trans_no, '-',
290                                                 ".TB_PREF."debtor_trans.type) AS TNO, concat(".TB_PREF."debtor_trans.$ref, if (type=".ST_SALESINVOICE.", ' $IV ', ' $CN '), ".TB_PREF."debtors_master.name) as IName
291                                                 FROM ".TB_PREF."debtors_master, ".TB_PREF."debtor_trans WHERE (type=".ST_SALESINVOICE." OR type=".ST_CUSTCREDIT.") AND ".TB_PREF."debtors_master.debtor_no=".TB_PREF."debtor_trans.debtor_no ORDER BY ".TB_PREF."debtor_trans.trans_no DESC";
292                                         return combo_input($name, '', $sql, 'TNO', 'IName',array('order'=>false));
293
294                                 case 'DELIVERY':
295                                         $DN = _("DN");
296                                         $sql = "SELECT
297                                         concat(".TB_PREF."debtor_trans.trans_no, '-', ".TB_PREF."debtor_trans.type) AS TNO, concat(".TB_PREF."debtor_trans.trans_no, ' $DN ',
298                                          ".TB_PREF."debtors_master.name) as IName
299                                                 FROM ".TB_PREF."debtors_master, ".TB_PREF."debtor_trans
300                                                 WHERE type=".ST_CUSTDELIVERY." AND ".TB_PREF."debtors_master.debtor_no=".
301                                                 TB_PREF."debtor_trans.debtor_no ORDER BY ".TB_PREF."debtor_trans.trans_no DESC";
302                                         return combo_input($name, '', $sql, 'TNO', 'IName',array('order'=>false));
303
304                                 case 'ORDERS':
305                                         $ref = ($print_invoice_no == 1 ? "order_no" : "reference");
306                                         $sql = "SELECT ".TB_PREF."sales_orders.order_no, concat(".TB_PREF."sales_orders.$ref, '-',
307                                                 ".TB_PREF."debtors_master.name) as IName
308                                                 FROM ".TB_PREF."debtors_master, ".TB_PREF."sales_orders WHERE ".TB_PREF."debtors_master.debtor_no=".TB_PREF."sales_orders.debtor_no 
309                                                 AND ".TB_PREF."sales_orders.trans_type=".ST_SALESORDER." ORDER BY ".TB_PREF."sales_orders.order_no DESC";
310                                         return combo_input($name, '', $sql, 'order_no', 'IName',array('order'=>false));
311
312                                 case 'QUOTATIONS':
313                                         $ref = ($print_invoice_no == 1 ? "order_no" : "reference");
314                                         $sql = "SELECT ".TB_PREF."sales_orders.order_no, concat(".TB_PREF."sales_orders.$ref, '-',
315                                                 ".TB_PREF."debtors_master.name) as IName
316                                                 FROM ".TB_PREF."debtors_master, ".TB_PREF."sales_orders WHERE ".TB_PREF."debtors_master.debtor_no=".TB_PREF."sales_orders.debtor_no 
317                                                 AND ".TB_PREF."sales_orders.trans_type=".ST_SALESQUOTE." ORDER BY ".TB_PREF."sales_orders.order_no DESC";
318                                         return combo_input($name, '', $sql, 'order_no', 'IName',array('order'=>false));
319
320                                 case 'PO':
321                                         $ref = ($print_invoice_no == 1 ? "order_no" : "reference");
322                                         $sql = "SELECT ".TB_PREF."purch_orders.order_no, concat(".TB_PREF."purch_orders.$ref, '-',
323                                                 ".TB_PREF."suppliers.supp_name) as IName
324                                                 FROM ".TB_PREF."suppliers, ".TB_PREF."purch_orders WHERE ".TB_PREF."suppliers.supplier_id=".TB_PREF."purch_orders.supplier_id ORDER BY ".TB_PREF."purch_orders.order_no DESC";
325                                         return combo_input($name, '', $sql, 'order_no', 'IName',array('order'=>false));
326
327                                 case 'ITEMS':
328                                         return stock_manufactured_items_list($name);
329
330                                 case 'WORKORDER':
331                                         $sql = "SELECT ".TB_PREF."workorders.id, concat(".TB_PREF."workorders.id, '-',
332                                                 ".TB_PREF."stock_master.description) as IName
333                                                 FROM ".TB_PREF."stock_master, ".TB_PREF."workorders WHERE ".TB_PREF."stock_master.stock_id=".TB_PREF."workorders.stock_id ORDER BY ".TB_PREF."workorders.id DESC";
334                                         return combo_input($name, '', $sql, 'id', 'IName',array('order'=>false));
335
336                                 case 'LOCATIONS':
337                                         return  locations_list($name, null, _("No Location Filter"));
338
339                                 case 'CATEGORIES':
340                                         return stock_categories_list($name, null, _("No Category Filter"));
341
342                                 case 'SALESTYPES':
343                                         return sales_types_list($name);
344
345                                 case 'AREAS':
346                                         return sales_areas_list($name);
347
348                                 case 'SALESMEN':
349                                         return sales_persons_list($name, null, _("No Sales Folk Filter"));
350                                         
351                                 case 'TRANS_YEARS':
352                                         $sql = "SELECT DISTINCT YEAR(tran_date) AS tran_date, YEAR(tran_date) AS tran_date2 FROM ".TB_PREF."gl_trans";
353                                         return combo_input($name, '', $sql, 'tran_date', 'tran_date2',array('order'=>array('tran_date')));
354 // FIX shouldn't it be fiscal year selector?
355 //                                      return fiscalyears_list($name);
356
357                                 case 'USERS':
358                                         $sql = "SELECT id, user_id FROM ".TB_PREF."users";
359                                         return combo_input($name, '', $sql, 'id', 'user_id',array('spec_option'=>_("No Users Filter"),'spec_id'=>ALL_NUMERIC));
360
361                                 case 'ACCOUNTTAGS':
362                                 case 'DIMENSIONTAGS':
363                                         if ($type == 'ACCOUNTTAGS')
364                                                 $tag_type = TAG_ACCOUNT;
365                                         else
366                                                 $tag_type = TAG_DIMENSION;
367                                         return tag_list($name, 5, $tag_type, true, _("No tags"));
368
369                         }
370                 return '';
371         }
372 }
373
374 class Report
375 {
376         var $id;
377         var $name;
378         var $ar_params;
379         var $controls;
380         var $ctrl_handlers = array();
381         
382         function Report($id, $name, $ar_params = null)
383         {
384                 $this->id = $id;
385                 $this->name = $name;
386                 if ($ar_params) $this->set_controls($ar_params);
387         }
388         
389         function set_controls($ar_params) {
390                 $this->controls = $ar_params;
391         }
392         
393         function get_controls() {
394                 return $this->controls;
395         }
396         
397 }
398
399 //------------------------------------------------------------------------------------------------
400 function gl_systypes_list($name, $value=null, $spec_opt=false)
401 {
402         global $systypes_array;
403         
404         $types = $systypes_array;
405         
406         foreach(array(ST_LOCTRANSFER, ST_PURCHORDER, ST_SUPPRECEIVE, ST_MANUISSUE,
407                                 ST_MANURECEIVE, ST_SALESORDER, ST_SALESQUOTE, ST_DIMENSION) as $type)
408                 unset($types[$type]);
409
410         return array_selector($name, $value, $types, 
411                 array( 
412                         'spec_option'=> $spec_opt,
413                         'spec_id' => ALL_NUMERIC,
414                         'async' => false,
415                         )
416         );
417 }
418
419 function add_custom_reports(&$reports)
420 {
421         global $installed_extensions, $path_to_root, $comp_path;
422         
423         // include reports installed inside extension modules
424         if (count($installed_extensions) > 0)
425         {
426                 $extensions = $installed_extensions;
427                 foreach ($extensions as $ext)
428                         if (($ext['active'] && $ext['type'] == 'module')) {
429                                 $file = $path_to_root.'/'.$ext['path']."/reporting/reports_custom.php";
430                                 if (file_exists($file))
431                                         include_once($file);
432                         }
433         }
434         $file = $comp_path.'/'.user_company()."/reporting/reports_custom.php";
435         if (file_exists($file))
436                 include_once($file);
437 }
438
439 ?>