Added option to print delivery notes as packing slip in reports and links.
[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, $extra=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                                 'PARAM_3' => $extra);
56                         break;
57                 case ST_SALESINVOICE : // Sales Invoice
58                 case ST_CUSTCREDIT : // Customer Credit Note
59                         $rep = 107;
60                         // from, to, currency, bank acc, email, paylink, comments, type
61                         $ar = array(
62                                 'PARAM_0' => $doc_no, 
63                                 'PARAM_1' => $doc_no, 
64                                 'PARAM_2' => '', 
65                                 'PARAM_3' => $email, 
66                                 'PARAM_4' => '',
67                                 'PARAM_5' => '', 
68                                 'PARAM_6' => $type_no);
69                         break;
70                 case ST_PURCHORDER :
71                         $rep = 209;
72                         // from, to, currency, bank acc, email, comments
73                         $ar = array(
74                                 'PARAM_0' => $doc_no, 
75                                 'PARAM_1' => $doc_no, 
76                                 'PARAM_2' => '', 
77                                 'PARAM_3' => $email, 
78                                 'PARAM_4' => '');
79                         break;
80 //              default: $ar = array();
81         }
82         
83         return print_link($link_text, $rep, $ar, "", $icon, $class, $id);
84 }
85 //
86 //      Universal link to any kind of report.
87 //
88 function print_link($link_text, $rep, $pars = array(), $dir = '', 
89         $icon=false, $class='printlink', $id='')
90 {
91         global $path_to_root, $pdf_debug;
92
93         $url = $dir == '' ?  $path_to_root.'/reporting/prn_redirect.php?' : $dir;
94
95         $id = default_focus($id);
96         foreach($pars as $par => $val) {
97                 $pars[$par] = "$par=".urlencode($val);
98         }
99         $pars[] = 'REP_ID='.urlencode($rep);
100         $url .= implode ('&', $pars);
101
102         if ($class != '')
103                 $class = $pdf_debug ? '' : " class='$class'";
104         if ($id != '')
105                 $id = " id='$id'";
106         $pars = access_string($link_text);
107         if (user_graphic_links() && $icon)
108                 $pars[0] = set_icon($icon, $pars[0]);
109         return "<a target='_blank' href='$url'$id$class $pars[1]>$pars[0]</a>";
110 }
111
112 ?>