Print Links uses def_print_orientation value.
[fa-stable.git] / reporting / includes / reporting.inc
index 8dc119f6629dbd1cb924bf5aec88a44264511c8e..7077f83aa214d396cf3af976645601f515ca0379 100644 (file)
 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;
+       global $path_to_root, $def_print_orientation;
        include_once($path_to_root . "/includes/types.inc");
 
        $url = $path_to_root.'/reporting/prn_redirect.php?';
-
+       $def_orientation = (isset($def_print_orientation) && $def_print_orientation == 1 ? 1 : 0);
        switch ($type_no)
        {
                case ST_SALESQUOTE :
@@ -32,7 +32,8 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no,
                                'PARAM_1' => $doc_no, 
                                'PARAM_2' => '', 
                                'PARAM_3' => $email, 
-                               'PARAM_4' => '');
+                               'PARAM_4' => '',
+                               'PARAM_5' => $def_orientation);
                        break;
                case ST_SALESORDER :
                        $rep = 109;
@@ -43,7 +44,8 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no,
                                'PARAM_2' => '', 
                                'PARAM_3' => $email, 
                                'PARAM_4' => 0, 
-                               'PARAM_5' => '');
+                               'PARAM_5' => '',
+                               'PARAM_6' => $def_orientation);
                        break;
                case ST_CUSTDELIVERY :
                        $rep = 110;
@@ -52,7 +54,9 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no,
                                'PARAM_0' => $doc_no, 
                                'PARAM_1' => $doc_no, 
                                'PARAM_2' => $email,
-                               'PARAM_3' => $extra);
+                               'PARAM_3' => $extra,
+                               'PARAM_4' => '',
+                               'PARAM_5' => $def_orientation);
                        break;
                case ST_SALESINVOICE : // Sales Invoice
                case ST_CUSTCREDIT : // Customer Credit Note
@@ -65,7 +69,7 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no,
                                'PARAM_3' => $email, 
                                'PARAM_4' => '',
                                'PARAM_5' => '', 
-                               'PARAM_6' => $type_no);
+                               'PARAM_6' => $def_orientation);
                        break;
                case ST_PURCHORDER :
                        $rep = 209;
@@ -75,7 +79,8 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no,
                                'PARAM_1' => $doc_no, 
                                'PARAM_2' => '', 
                                'PARAM_3' => $email, 
-                               'PARAM_4' => '');
+                               'PARAM_4' => '',
+                               'PARAM_5' => $def_orientation);
                        break;
                case ST_CUSTPAYMENT :
                        $rep = 112;
@@ -84,7 +89,8 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no,
                                'PARAM_0' => $doc_no, 
                                'PARAM_1' => $doc_no, 
                                'PARAM_2' => '', 
-                               'PARAM_4' => '');
+                               'PARAM_3' => '', 
+                               'PARAM_4' => $def_orientation);
                        break;
                case ST_SUPPAYMENT :
                        $rep = 210;
@@ -94,17 +100,18 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no,
                                'PARAM_1' => $doc_no, 
                                'PARAM_2' => '', 
                                'PARAM_3' => $email, 
-                               'PARAM_4' => '');
+                               'PARAM_4' => '',
+                               'PARAM_5' => $def_orientation);
                        break;
                case ST_WORKORDER :
                        $rep = 409;
-                       // from, to, currency, bank acc, email, comments
+                       // from, to, currency, bank acc, email, comments, orientation
                        $ar = array(
                                'PARAM_0' => $doc_no, 
                                'PARAM_1' => $doc_no, 
                                'PARAM_2' => $email, 
                                'PARAM_3' => '', 
-                               'PARAM_4' => '');
+                               'PARAM_4' => $def_orientation);
                        break;
 //             default: $ar = array();
        }