[-] PDF : Bug Fixed #PSCFV-2735 - Missing tax details in order slip

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16275 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
fBrignoli
2012-07-09 09:35:58 +00:00
parent fd02884d76
commit ce3e408315
5 changed files with 148 additions and 85 deletions
+2 -1
View File
@@ -321,7 +321,8 @@ class OrderInvoiceCore extends ObjectModel
if ($shipping_tax_amount > 0)
$taxes_breakdown[] = array(
'rate' => $order->carrier_tax_rate,
'total_amount' => $shipping_tax_amount
'total_amount' => $shipping_tax_amount,
'total_tax_excl' => $this->total_shipping_tax_excl
);
return $taxes_breakdown;