The fix for me, to get edit orders to include Tax (GST Australia) is this:
edit admin/orders.php
Code:
Find:
$RunningSubTotal += $products_details["qty"] * $products_details["final_price"];
Replace:
$RunningSubTotal += $products_details["qty"] * ($products_details["final_price"] + ($products_details["final_price"] * ($products_details["tax"]/100)));
Code:
Find:
$RunningSubTotal += ($order->products[$i]['qty'] * $order->products[$i]['final_price']);
Replace:
$RunningSubTotal += ($order->products[$i]['qty'] * ($order->products[$i]['final_price'] + ($order->products[$i]['final_price'] * ($order->products[$i]['tax'] / 100))));
Hope this helps someone.
Reuben
Bookmarks