Option to suppress tax rates on documents. To be used for tax on tax
[fa-stable.git] / reporting / rep107.php
index 11af3b832f90f83c7826ca50812cfc9a87761314..78a59495f1766e6d8818844e78914cb9f026e917 100644 (file)
@@ -32,7 +32,7 @@ print_invoices();
 
 function print_invoices()
 {
-       global $path_to_root, $alternative_tax_include_on_docs;
+       global $path_to_root, $alternative_tax_include_on_docs, $suppress_tax_rates;
        
        include_once($path_to_root . "/reporting/includes/pdf_report.inc");
 
@@ -173,6 +173,11 @@ function print_invoices()
                while ($tax_item = db_fetch($tax_items))
                {
                        $DisplayTax = number_format2($sign*$tax_item['amount'], $dec);
+                       
+                       if (isset($suppress_tax_rates) && $suppress_tax_rates == 1)
+                               $tax_type_name = $tax_item['tax_type_name'];
+                       else
+                               $tax_type_name = $tax_item['tax_type_name']." (".$tax_item['rate']."%) ";
 
                        if ($tax_item['included_in_price'])
                        {
@@ -184,19 +189,16 @@ function print_invoices()
                                                        $rep->TextCol(6, 7,     number_format2($sign*$tax_item['net_amount'], $dec), -2);
                                                        $rep->NewLine();
                                        }
-                                               $rep->TextCol(3, 6, $tax_item['tax_type_name'] . " (" .
-                                                       $tax_item['rate'] . "%)", -2);
+                                               $rep->TextCol(3, 6, $tax_type_name, -2);
                                                $rep->TextCol(6, 7,     $DisplayTax, -2);
                                                $first = false;
                                }
                                else
-                                               $rep->TextCol(3, 7, $doc_Included . " " . $tax_item['tax_type_name'] .
-                                                       " (" . $tax_item['rate'] . "%) " . $doc_Amount . ": " . $DisplayTax, -2);
+                                               $rep->TextCol(3, 7, $doc_Included . " " . $tax_type_name . $doc_Amount . ": " . $DisplayTax, -2);
                                }
                        else
                        {
-                                       $rep->TextCol(3, 6, $tax_item['tax_type_name'] . " (" .
-                                               $tax_item['rate'] . "%)", -2);
+                                       $rep->TextCol(3, 6, $tax_type_name, -2);
                                        $rep->TextCol(6, 7,     $DisplayTax, -2);
                                }
                                $rep->NewLine();