Hi, I have customised the module and installed it with no problems. Thanks for a great module!
There is just one problem, and that is that the "Includes GST" amount of the order (during checkout process) is not being updated to include the GST portion of shipping.
I think that the GST portion of the shipping needs to be stored to the database field "order_shipping_tax" so that it can be referenced throughout the checkout process, the order process, and invoice process.
Eg it is referenced, but I do not think it is being set?
$shipping_total = $db->f("order_shipping");
if ($auth["show_price_including_tax"] == 1)
$shipping_total += $db->f("order_shipping_tax");
$tax_total = $db->f("order_tax") + $db->f("order_shipping_tax");
Can you tell me where to update the code so that this is done?
Thanks.