Topic: Tax

Hello There
  Please How i can customize the tax area in print invoice. i mean i want it like for example
total : 100
tax (5%): 5
final total : 105 
---------------------------------
now it is looks like
total:105
                 includes tax (5%) 5
final total: 105
i appreciated for support me.

Re: Tax

Open /reporting/rep107.php

than find line 270, it looks like this:

$rep->TextCol(3, 7, _("Included") . " " . $tax_type_name . _("Amount") . ": " . $DisplayTax, -2);

replace it with this:

$rep->TextCol(3, 6, _("Included") . " " . $tax_type_name . _("Amount") . ": " , -2);
$rep->TextCol(6, 7,  $DisplayTax, -2);

save the change

Re: Tax

Sales => Sales Types => Tax Incl. => Yes / No.

Re: Tax

Thanks stefan it works. and thanks apmuthu