Feature 5388: Print Invoices (documents) list gets too long. Fixed by default 180...
[fa-stable.git] / reporting / prn_redirect.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 /*
13         Print request redirector. This file is fired via print link or 
14         print button in reporting module. 
15 */
16 $path_to_root = "..";
17 global $page_security;
18 $page_security = 'SA_OPEN';     // this level is later overriden in rep file
19 include_once($path_to_root . "/includes/session.inc");
20
21 if (user_save_report_selections() > 0 && isset($_POST['REP_ID'])) {     // save parameters from Report Center
22         for($i=0; $i<12; $i++) { // 2013-01-16 Joe Hunt
23                 if (isset($_POST['PARAM_'.$i]) && !is_array($_POST['PARAM_'.$i])) {
24                         $rep = $_POST['REP_ID'];
25                         setcookie("select[$rep][$i]", $_POST['PARAM_'.$i], time()+60*60*24*user_save_report_selections()); // days from user_save_report_selections()
26                 }       
27         }
28 }       
29
30 if (isset($_GET['xls']) || isset($_GET['xml']))
31 {
32         $filename = $_GET['filename'];
33         $unique_name = preg_replace('/[^0-9_a-z.\-]/i', '', $_GET['unique']);
34         $path =  company_path(). '/pdf_files/';
35         header("Content-type: ". (isset($_GET['xls']) ? "application/vnd.ms-excel" : "text/xml"));
36         header("Content-Disposition: attachment; filename=$filename" );
37         header("Expires: 0");
38         header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
39         header("Pragma: public");
40         echo file_get_contents($path.$unique_name);
41         exit();
42 }
43
44 if (!isset($_POST['REP_ID'])) { // print link clicked
45         $def_pars = array(0, 0, '', '', 0, '', '', 0); //default values
46         $rep = $_POST['REP_ID'] = $_GET['REP_ID'];
47         for($i=0; $i<8; $i++) {
48                 $_POST['PARAM_'.$i] = isset($_GET['PARAM_'.$i]) 
49                         ? $_GET['PARAM_'.$i] : $def_pars[$i];
50         }
51 }
52
53 $rep = preg_replace('/[^a-z_0-9]/i', '', $_POST['REP_ID']);
54
55 $rep_file = find_custom_file("/reporting/rep$rep.php");
56
57 if ($rep_file) {
58         require($rep_file);
59 } else
60         display_error("Cannot find report file '$rep'");
61 exit();
62