Cleanup, $SysPrefs.
[fa-stable.git] / reporting / rep111.php
index 0bbf04259a95c54020e85e5feb1ce2d21aeb361c..02c398153d77e29f1af1424a66956a69d9dbc233 100644 (file)
@@ -31,7 +31,7 @@ print_sales_quotations();
 
 function print_sales_quotations()
 {
-       global $path_to_root, $print_as_quote, $print_invoice_no, $no_zero_lines_amount, $print_item_images_on_quote, $pic_height;
+       global $path_to_root, $print_as_quote, $SysPrefs, $pic_height;
 
        include_once($path_to_root . "/reporting/includes/pdf_report.inc");
 
@@ -47,7 +47,7 @@ function print_sales_quotations()
        $orientation = ($orientation ? 'L' : 'P');
        $dec = user_price_dec();
 
-       $pictures = (isset($print_item_images_on_quote) && $print_item_images_on_quote==1);
+       $pictures = $SysPrefs->print_item_images_on_quote();
        // If you want a larger image, then increase $pic_height f.i.
        // $pic_height += 25;
        
@@ -74,7 +74,7 @@ function print_sales_quotations()
                if ($email == 1)
                {
                        $rep = new FrontReport("", "", user_pagesize(), 9, $orientation);
-                       if ($print_invoice_no == 1)
+                       if ($SysPrefs->print_invoice_no() == 1)
                                $rep->filename = "SalesQuotation" . $i . ".pdf";
                        else    
                                $rep->filename = "SalesQuotation" . $myrow['reference'] . ".pdf";
@@ -111,14 +111,14 @@ function print_sales_quotations()
                        $rep->TextColLines(1, 2, $myrow2['description'], -2);
                        $newrow = $rep->row;
                        $rep->row = $oldrow;
-                       if ($Net != 0.0 || !is_service($myrow2['mb_flag']) || !isset($no_zero_lines_amount) || $no_zero_lines_amount == 0)
+                       if ($Net != 0.0 || !is_service($myrow2['mb_flag']) || !$SysPrefs->no_zero_lines_amount())
                        {
                                $rep->TextCol(2, 3,     $DisplayQty, -2);
                                $rep->TextCol(3, 4,     $myrow2['units'], -2);
                                $rep->TextCol(4, 5,     $DisplayPrice, -2);
                                $rep->TextCol(5, 6,     $DisplayDiscount, -2);
                                $rep->TextCol(6, 7,     $DisplayNet, -2);
-                       }       
+                       }
                        $rep->row = $newrow;
                        
                        if ($pictures)
@@ -176,7 +176,7 @@ function print_sales_quotations()
 
                        if ($myrow['tax_included'])
                        {
-                               if (isset($alternative_tax_include_on_docs) && $alternative_tax_include_on_docs == 1)
+                               if ($SysPrefs->alternative_tax_include_on_docs() == 1)
                                {
                                        if ($first)
                                        {
@@ -215,7 +215,7 @@ function print_sales_quotations()
                $rep->Font();
                if ($email == 1)
                {
-                       if ($print_invoice_no == 1)
+                       if ($SysPrefs->print_invoice_no() == 1)
                                $myrow['reference'] = $i;
                        $rep->End($email);
                }