Changed all numeric constants to the new defined constants. A huge task.
[fa-stable.git] / reporting / includes / reporting.inc
index a5dd5f2e58f8271c2d7640fad96f204f05c3029d..e38ed6a225119a276ea76359fa7bc65f1a4505b9 100644 (file)
@@ -15,7 +15,7 @@
 // You only need full parameter list for invoices/credit notes
 
 function print_document_link($doc_no, $link_text, $link=true, $type_no, 
-       $icon=false, $class='', $id='')
+       $icon=false, $class='printlink', $id='', $email=0)
 {
        global $path_to_root;
        include_once($path_to_root . "/includes/types.inc");
@@ -24,7 +24,18 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no,
 
        switch ($type_no)
        {
-               case systypes::sales_order() :
+               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' => get_first_bank_account(), 
+                               'PARAM_4' => $email, 
+                               'PARAM_5' => "");
+                       break;
+               case ST_SALESORDER :
                        $rep = 109;
                        // from, to, currency, bank acc, email, quote, comments
                        $ar = array(
@@ -32,21 +43,21 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no,
                                'PARAM_1' => $doc_no, 
                                'PARAM_2' => "", 
                                'PARAM_3' => get_first_bank_account(), 
-                               'PARAM_4' => 0
+                               'PARAM_4' => $email
                                'PARAM_5' => 0, 
                                'PARAM_6' => "");
                        break;
-               case systypes::cust_dispatch() :
+               case ST_CUSTDELIVERY :
                        $rep = 110;
                        // from, to, email, comments
                        $ar = array(
                                'PARAM_0' => $doc_no, 
                                'PARAM_1' => $doc_no, 
-                               'PARAM_2' => 0
+                               'PARAM_2' => $email
                                'PARAM_3' => "");
                        break;
-               case 10 : // Sales Invoice
-               case 11 : // Customer Credit Note
+               case ST_SALESINVOICE : // Sales Invoice
+               case ST_CUSTCREDIT : // Customer Credit Note
                        $rep = 107;
                        // from, to, currency, bank acc, email, paylink, comments, type
                        $ar = array(
@@ -54,12 +65,12 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no,
                                'PARAM_1' => $doc_no, 
                                'PARAM_2' => "", 
                                'PARAM_3' => get_first_bank_account(), 
-                               'PARAM_4' => 0
+                               'PARAM_4' => $email
                                'PARAM_5' => "",
                                'PARAM_6' => "", 
                                'PARAM_7' => $type_no);
                        break;
-               case systypes::po() :
+               case ST_PURCHORDER :
                        $rep = 209;
                        // from, to, currency, bank acc, email, comments
                        $ar = array(
@@ -67,7 +78,7 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no,
                                'PARAM_1' => $doc_no, 
                                'PARAM_2' => "", 
                                'PARAM_3' => get_first_bank_account(), 
-                               'PARAM_4' => 0
+                               'PARAM_4' => $email
                                'PARAM_5' => "");
                        break;
 //             default: $ar = array();
@@ -79,7 +90,7 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no,
 //     Universal link to any kind of report.
 //
 function print_link($link_text, $rep, $pars = array(), $dir = '', 
-       $icon=false, $class='', $id='')
+       $icon=false, $class='printlink', $id='')
 {
        global $path_to_root, $pdf_debug;