Merged changes from main trunk up to 2.2.3
[fa-stable.git] / reporting / includes / reporting.inc
index f1da464eaabb1e333b21d9a8ea0d2d94d97b317a..4ce4d148d3a37f31b309795a31d2999f9d772c1e 100644 (file)
 <?php
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
+// Link to printing single document with bulk report template file.
+// Ex. label_cell(print_document_link($myrow['order_no'], _("Print")), $type);
+// or display_note(print_document_link($order_no, _("Print this order")));
+// You only need full parameter list for invoices/credit notes
 
-// Put this on the page only once, e.g. print_hidden_script(systypes::sales_order());
-
-function print_hidden_script($type_no)
+function print_document_link($doc_no, $link_text, $link=true, $type_no, 
+       $icon=false, $class='printlink', $id='', $email=0, $extra=0)
 {
        global $path_to_root;
        include_once($path_to_root . "/includes/types.inc");
-       $action = "";
-       $_POST['PARAM_0'] = $_POST['PARAM_1'] = 0; // the document no. is updated in print_document_link().
+
+       $url = $path_to_root.'/reporting/prn_redirect.php?';
 
        switch ($type_no)
        {
-               case systypes::sales_order() :
-                       $action = "$path_to_root/reporting/rep109.php";
-                       $_POST['PARAM_2'] = ""; // currency
-                       $_POST['PARAM_3'] = ""; // bank account
-                       $_POST['PARAM_4'] = 0; // email
-                       $_POST['PARAM_5'] = 0; // quote
-                       $_POST['PARAM_6'] = ""; // comments
-                       $params = 7;
+               case ST_SALESQUOTE :
+                       $rep = 111;
+                       // from, to, currency, bank acc, email, quote, comments
+                       $ar = array(
+                               'PARAM_0' => $doc_no, 
+                               'PARAM_1' => $doc_no, 
+                               'PARAM_2' => '', 
+                               'PARAM_3' => $email, 
+                               'PARAM_4' => '');
                        break;
-               case systypes::cust_dispatch() :
-                       $action = "$path_to_root/reporting/rep110.php";
-                       $_POST['PARAM_2'] = 0; // email
-                       $_POST['PARAM_3'] = ""; // comments
-                       $params = 4;
+               case ST_SALESORDER :
+                       $rep = 109;
+                       // from, to, currency, bank acc, email, quote, comments
+                       $ar = array(
+                               'PARAM_0' => $doc_no, 
+                               'PARAM_1' => $doc_no, 
+                               'PARAM_2' => '', 
+                               'PARAM_3' => $email, 
+                               'PARAM_4' => 0, 
+                               'PARAM_5' => '');
                        break;
-               case 10 : // Sales Invoice
-               case 11 : // Customer Credit Note
-                       $action = "$path_to_root/reporting/rep107.php";
-                       $_POST['PARAM_2'] = ""; // currency
-                       $_POST['PARAM_3'] = ""; // bank account
-                       $_POST['PARAM_4'] = 0; // email
-                       $_POST['PARAM_5'] = ""; // paylink
-                       $_POST['PARAM_6'] = ""; // comments
-                       $params = 7;
+               case ST_CUSTDELIVERY :
+                       $rep = 110;
+                       // from, to, email, comments
+                       $ar = array(
+                               'PARAM_0' => $doc_no, 
+                               'PARAM_1' => $doc_no, 
+                               'PARAM_2' => $email,
+                               'PARAM_3' => $extra);
                        break;
-               case systypes::po() :
-                       $action = "$path_to_root/reporting/rep209.php";
-                       $_POST['PARAM_2'] = ""; // currency
-                       $_POST['PARAM_3'] = ""; // bank account
-                       $_POST['PARAM_4'] = 0; // email
-                       $_POST['PARAM_5'] = ""; // comments
-                       $params = 6;
+               case ST_SALESINVOICE : // Sales Invoice
+               case ST_CUSTCREDIT : // Customer Credit Note
+                       $rep = 107;
+                       // from, to, currency, bank acc, email, paylink, comments, type
+                       $ar = array(
+                               'PARAM_0' => $doc_no, 
+                               'PARAM_1' => $doc_no, 
+                               'PARAM_2' => '', 
+                               'PARAM_3' => $email, 
+                               'PARAM_4' => '',
+                               'PARAM_5' => '', 
+                               'PARAM_6' => $type_no);
                        break;
+               case ST_PURCHORDER :
+                       $rep = 209;
+                       // from, to, currency, bank acc, email, comments
+                       $ar = array(
+                               'PARAM_0' => $doc_no, 
+                               'PARAM_1' => $doc_no, 
+                               'PARAM_2' => '', 
+                               'PARAM_3' => $email, 
+                               'PARAM_4' => '');
+                       break;
+               case ST_SUPPAYMENT :
+                       $rep = 210;
+                       // from, to, currency, bank acc, email, comments
+                       $ar = array(
+                               'PARAM_0' => $doc_no, 
+                               'PARAM_1' => $doc_no, 
+                               'PARAM_2' => '', 
+                               'PARAM_3' => $email, 
+                               'PARAM_4' => '');
+                       break;
+//             default: $ar = array();
        }
-       $st = "";
-       for ($i = 0; $i < $params; $i++)
-       {
-               $st .= "<input type='hidden' name='PARAM_".$i."' value='".$_POST['PARAM_'.$i]."' />";
-       }
-       $st = "<form method='post' name='pdf_form' action='$action'>" . $st . "</form>\n";
-       echo $st;
+       
+       return print_link($link_text, $rep, $ar, "", $icon, $class, $id);
 }
+//
+//     Universal link to any kind of report.
+//
+function print_link($link_text, $rep, $pars = array(), $dir = '', 
+       $icon=false, $class='printlink', $id='')
+{
+       global $path_to_root, $pdf_debug;
 
-// Ex. label_cell(print_document_link($myrow['order_no'], _("Print")));
-// or display_note(print_document_link($order_no, _("Print this order")));
-// or if a button
-// echo "<input type='button' name='button' value='"._("Print this order")."' onclick=\"".
-//             print_document_link($order_no, "", false)."\" class='inputsubmit' />\n";
+       $url = $dir == '' ?  $path_to_root.'/reporting/prn_redirect.php?' : $dir;
 
-function print_document_link($doc_no, $link_text, $link=true)
-{
-       $st = "document.pdf_form.PARAM_0.value = '$doc_no';";
-       $st .= "document.pdf_form.PARAM_1.value = '$doc_no';";
-       $st .= "window.open('','REP_WINDOW','toolbar=no,scrollbar=no,resizable=yes,menubar=no');
-               document.pdf_form.target='REP_WINDOW';
-               document.pdf_form.submit();\n";
-       if ($link)
-               return "<a href=\"javascript:$st\">" . $link_text . "</a>";
-       else
-               return "javascript:$st";
+       $id = default_focus($id);
+       foreach($pars as $par => $val) {
+               $pars[$par] = "$par=".urlencode($val);
+       }
+       $pars[] = 'REP_ID='.urlencode($rep);
+       $url .= implode ('&', $pars);
+
+       if ($class != '')
+               $class = $pdf_debug ? '' : " class='$class'";
+       if ($id != '')
+               $id = " id='$id'";
+       $pars = access_string($link_text);
+       if (user_graphic_links() && $icon)
+               $pars[0] = set_icon($icon, $pars[0]);
+       return "<a target='_blank' href='$url'$id$class $pars[1]>$pars[0]</a>";
 }
+
 ?>
\ No newline at end of file