Skip to content

Commit

Permalink
Fixed redundant $sign in reports Sales Order, Sales Quotation and Pur…
Browse files Browse the repository at this point in the history
…chase Order
  • Loading branch information
joe-hunt committed Jan 20, 2018
1 parent 009fd65 commit f31eca3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion reporting/rep109.php
Expand Up @@ -186,7 +186,7 @@ function print_sales_orders()
if ($first)
{
$rep->TextCol(3, 6, _("Total Tax Excluded"), -2);
$rep->TextCol(6, 7, number_format2($sign*$tax_item['net_amount'], $dec), -2);
$rep->TextCol(6, 7, number_format2($tax_item['net_amount'], $dec), -2);
$rep->NewLine();
}
$rep->TextCol(3, 6, $tax_type_name, -2);
Expand Down
2 changes: 1 addition & 1 deletion reporting/rep111.php
Expand Up @@ -183,7 +183,7 @@ function print_sales_quotations()
if ($first)
{
$rep->TextCol(3, 6, _("Total Tax Excluded"), -2);
$rep->TextCol(6, 7, number_format2($sign*$tax_item['net_amount'], $dec), -2);
$rep->TextCol(6, 7, number_format2($tax_item['net_amount'], $dec), -2);
$rep->NewLine();
}
$rep->TextCol(3, 6, $tax_type_name, -2);
Expand Down
2 changes: 1 addition & 1 deletion reporting/rep209.php
Expand Up @@ -188,7 +188,7 @@ function print_po()
if ($first)
{
$rep->TextCol(3, 6, _("Total Tax Excluded"), -2);
$rep->TextCol(6, 7, number_format2($sign*$tax_item['net_amount'], $dec), -2);
$rep->TextCol(6, 7, number_format2($tax_item['net_amount'], $dec), -2);
$rep->NewLine();
}
$rep->TextCol(3, 6, $tax_type_name, -2);
Expand Down

0 comments on commit f31eca3

Please sign in to comment.