Tax 0.00%

27.09.2015 11:55
#1
bios86
Joomshopping forum user no avatar
Name: ios
21.09.2015
Posts: 1
Quote
Tax 0.00%

goodmorning to all, i have a problem with the setting of the tax, i would like to set a 0.00% tax and show it on the invoice, this because i selling outside of my country and i dont have to put tax on the purchase of my customer, but in the same time i have to show it on the invoice that there is 0.00% of tax, how i have to do? when i put 0.00% tax it will not show any voice of tax on the invoice.

thanks


Joomla: 3
JoomShopping: 4
 
28.09.2015 08:07
#2
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25919
Quote
Aw: Tax 0.00%

components\com_jshopping\lib\generete_pdf_order.php

if (!$jshopConfig->hide_tax){
foreach($order->order_tax_list as $percent=>$value){
$pdf->SetXY(20,$y + 10);
$pdf->Rect(20,$y + 10,170,5,'F');
$text = displayTotalCartTaxName($order->display_price);
if ($show_percent_tax) $text = $text." ".formattax($percent)."%";
$pdf->MultiCell(130,5,$text ,'1','R');
$pdf->SetXY(150,$y + 10);
$pdf->MultiCell(40,5,formatprice($value, $order->currency_code, 0, -1).$order->_pdf_ext_tax[$percent],'1','R');
$y = $y + 5;
}
}

change to


$pdf->SetXY(20,$y + 10);
$pdf->Rect(20,$y + 10,170,5,'F');
$text = displayTotalCartTaxName($order->display_price);
if ($show_percent_tax) $text = $text." ".formattax($percent)."%";
$pdf->MultiCell(130,5,$text ,'1','R');
$pdf->SetXY(150,$y + 10);
$pdf->MultiCell(40,5,formatprice($value, $order->currency_code, 0, -1).$order->_pdf_ext_tax[$percent],'1','R');
$y = $y + 5;

 


Copyrights MAXXmarketing GmbH. Alle Rechte vorbehalten
Durch die Nutzung dieser Website stimme ich zu, dass Cookies zur optimalen Gestaltung der Website sowie zur Analyse der Nutzung der Website verwendet werden. Weiterführende Informationen finden Sie hier. OK, einverstanden.