Added currency defualt bank accounts used in reporting instead of manually selected...
[fa-stable.git] / reporting / includes / reporting.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 // Link to printing single document with bulk report template file.
13 // Ex. label_cell(print_document_link($myrow['order_no'], _("Print")), $type);
14 // or display_note(print_document_link($order_no, _("Print this order")));
15 // You only need full parameter list for invoices/credit notes
16
17 function print_document_link($doc_no, $link_text, $link=true, $type_no, 
18         $icon=false, $class='printlink', $id='', $email=0)
19 {
20         global $path_to_root;
21         include_once($path_to_root . "/includes/types.inc");
22
23         $url = $path_to_root.'/reporting/prn_redirect.php?';
24
25         switch ($type_no)
26         {
27                 case ST_SALESQUOTE :
28                         $rep = 111;
29                         // from, to, currency, bank acc, email, quote, comments
30                         $ar = array(
31                                 'PARAM_0' => $doc_no, 
32                                 'PARAM_1' => $doc_no, 
33                                 'PARAM_2' => '', 
34                                 'PARAM_3' => $email, 
35                                 'PARAM_4' => '');
36                         break;
37                 case ST_SALESORDER :
38                         $rep = 109;
39                         // from, to, currency, bank acc, email, quote, comments
40                         $ar = array(
41                                 'PARAM_0' => $doc_no, 
42                                 'PARAM_1' => $doc_no, 
43                                 'PARAM_2' => '', 
44                                 'PARAM_3' => $email, 
45                                 'PARAM_4' => 0, 
46                                 'PARAM_5' => '');
47                         break;
48                 case ST_CUSTDELIVERY :
49                         $rep = 110;
50                         // from, to, email, comments
51                         $ar = array(
52                                 'PARAM_0' => $doc_no, 
53                                 'PARAM_1' => $doc_no, 
54                                 'PARAM_2' => $email);
55                         break;
56                 case ST_SALESINVOICE : // Sales Invoice
57                 case ST_CUSTCREDIT : // Customer Credit Note
58                         $rep = 107;
59                         // from, to, currency, bank acc, email, paylink, comments, type
60                         $ar = array(
61                                 'PARAM_0' => $doc_no, 
62                                 'PARAM_1' => $doc_no, 
63                                 'PARAM_2' => '', 
64                                 'PARAM_3' => $email, 
65                                 'PARAM_4' => '',
66                                 'PARAM_5' => '', 
67                                 'PARAM_6' => $type_no);
68                         break;
69                 case ST_PURCHORDER :
70                         $rep = 209;
71                         // from, to, currency, bank acc, email, comments
72                         $ar = array(
73                                 'PARAM_0' => $doc_no, 
74                                 'PARAM_1' => $doc_no, 
75                                 'PARAM_2' => '', 
76                                 'PARAM_3' => $email, 
77                                 'PARAM_4' => '');
78                         break;
79 //              default: $ar = array();
80         }
81         
82         return print_link($link_text, $rep, $ar, "", $icon, $class, $id);
83 }
84 //
85 //      Universal link to any kind of report.
86 //
87 function print_link($link_text, $rep, $pars = array(), $dir = '', 
88         $icon=false, $class='printlink', $id='')
89 {
90         global $path_to_root, $pdf_debug;
91
92         $url = $dir == '' ?  $path_to_root.'/reporting/prn_redirect.php?' : $dir;
93
94         $id = default_focus($id);
95         foreach($pars as $par => $val) {
96                 $pars[$par] = "$par=".urlencode($val);
97         }
98         $pars[] = 'REP_ID='.urlencode($rep);
99         $url .= implode ('&', $pars);
100
101         if ($class != '')
102                 $class = $pdf_debug ? '' : " class='$class'";
103         if ($id != '')
104                 $id = " id='$id'";
105         $pars = access_string($link_text);
106         if (user_graphic_links() && $icon)
107                 $pars[0] = set_icon($icon, $pars[0]);
108         return "<a target='_blank' href='$url'$id$class $pars[1]>$pars[0]</a>";
109 }
110
111 ?>