Re: Editing order details
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
Re: Editing order details
Issues that I can see with this contrib are:
- defaults to ex tax price
- if you change price to incl. tax price during edit, you get incorrect final_price in orders_products_table
- doesn't observe specials
Is anyone else having these problems with EO?
Reuben
Re: Editing order details
I noticed also that Edit Orders does not deduct funds from a customer's gift certificate if you modify the gift certificate amount from the edit orders window.
Re: Editing order details
Anyone got this module work with stock by attribute and group discount?
Thanks!
Re: Editing order details
Quote:
Originally Posted by
mkm
Anyone got this module work with stock by attribute and group discount?
Thanks!
I installed this mod yesterday. Worked perfect. I then installed the Stock by Attribute mod and now Edit Orders does not work. Hopefully someone knows how to fix this?
Re: Editing order details
Anyone got this module work with stock by attribute and Super Orders? I install this mod and it won't work at all. Using Zen Cart 1.3.7. If anyone has this working inlighten me please.:blush:
Re: Editing order details
I am getting the following error with the Edit Order mod.
Quote:
Parse error: parse error, unexpected $end in C:\Program Files\EasyPHP 2.0b1\www\Shop\admin\edit_orders.php on line 1312
Quote:
require(DIR_WS_INCLUDES . 'application_bottom.php');
?>
Re: Editing order details
One problem I have with this mod....It doesn't show me the customer credit card number so I can actually process the order. It shows me the last 4 but that doesn't exactly help, since I only get sent the middle digits in email. So where do I find the credit card number now?
Re: Editing order details
Quote:
Originally Posted by
Darkwander
I am getting the following error with the Edit Order mod.
I am still having the same problem..
Anyone have any ideas?
Re: Editing order details
Darkwander,
I have had the same issue but at line 929. ( I know that does not solve the problem). I also noted that that file Orders.php does not have that many lines
I have been back through my files this morning doing a compare and removing several mods and agree it does seem to be this mod causing the problem. Originally it seemed to fall over when adding a product with attributes, now it fails to get to the first page.
Have you had any joy?
MG
p.s. frogster, Khopek agree it relates to stock by attributes as my compare software pulled all those elements out of the orders.php file I had.