News:

Support the VirtueMart project and become a member

Main Menu

total shipment price without tax

Started by teddyfresco, November 27, 2013, 14:33:27 PM

Previous topic - Next topic

teddyfresco

Hi, I am trying to display on confirmation emails and invoices the total shipment price without taxes, because currently it is showing price with taxes.
I've found responsible code in \components\com_virtuemart\views\invoice\tmpl\invoice_items.php
<?php echo $this->currency->priceDisplay($this->orderDetails['details']['BT']->order_shipment $this->orderDetails['details']['BT']->order_shipment_tax$this->currency); ?>
I've checked the correct variable under http://xref.vmitalia.net/vm20/nav.html?_variables/index.html
but I've only found "order_shipment", which doesn't seem to produce the correct result, the price is shown without tax but maybe multiplied for number of products in cart...
Does anyone know how to display the shipment without taxes?
thanks in advance

GJC Web Design

wouldn't be

<?php echo $this->currency->priceDisplay($this->orderDetails['details']['BT']->order_shipment, $this->currency); ?>
GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation

teddyfresco

Thank you very much, it was so simple and I couldn't figure it out.
Let's hope it can be useful for someone else.

GJC Web Design

GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation