Zen Cart Logo
Forums / General Questions / Editing order details

Editing order details

Locked

Views: 28,371

Results 21 to 40 of 67
This thread is locked. New replies are disabled.
7 Jan 2007, 3:17 PM
#21
soapin_mama avatar

soapin_mama

New Zenner

Join Date:
Oct 2004
Location:
Sturgeon Bay, WI
Posts:
80
Plugin Contributions:
0

Editing order details

Sorry can't help with super orders. Just stand alone edit orders :(

8 Jan 2007, 1:06 AM
#22
tajul_ashyqin avatar

tajul_ashyqin

Zen Follower

Join Date:
Apr 2006
Location:
Labuan Island
Posts:
362
Plugin Contributions:
1

Re: Editing order details

hi all,

In the Downloads section, someone has uploaded a bug-fixed version of Edit Orders and its compatible with the latest Zen Cart. Check it out here! I installed it and its working BUT I didn't yet test the 'Notify Customer' function...

8 Jan 2007, 1:29 AM
#23
tajul_ashyqin avatar

tajul_ashyqin

Zen Follower

Join Date:
Apr 2006
Location:
Labuan Island
Posts:
362
Plugin Contributions:
1

Re: Editing order details

But still one issue though... EO did not display the attribute of one product! This is very important as we need to see also the product that we want to edit or delete...What happen if one particular order having products that has attributes on it and it would be difficult to determine if among the products are the same product but different attributes?! :wacko: ehm, I just noticed that the fixed EO was uploaded by soapin_mama! TQ for the hardwork...:D

8 Jan 2007, 3:38 AM
#24
tajul_ashyqin avatar

tajul_ashyqin

Zen Follower

Join Date:
Apr 2006
Location:
Labuan Island
Posts:
362
Plugin Contributions:
1

Re: Editing order details

Well, there were still a lot of issues to your EO soapin_mama! I used EO together with the built-in orders administration. When we adding a product that has attributes with prices, somehow the EO wont update the price to the existing order and causing the '**sub total' **and 'total' to display in $ sign, not the default currency. When I preview the order using the built-in orders admins, attribute is not displayed and the price shown is zero. [ see Image1 ].

8 Jan 2007, 3:55 AM
#25
tajul_ashyqin avatar

tajul_ashyqin

Zen Follower

Join Date:
Apr 2006
Location:
Labuan Island
Posts:
362
Plugin Contributions:
1

Re: Editing order details

tajul_ashyqin:

Well, there were still a lot of issues to your EO soapin_mama! I used EO together with the built-in orders administration. When we adding a product that has attributes with prices, somehow the EO wont update the price to the existing order and causing the '**sub total' **and 'total' to display in $ sign, not the default currency. When I preview the order using the built-in orders admins, attribute is not displayed and the price shown is zero. [ see Image1 ].

forgot to attach the image! :D

23 Jan 2007, 12:35 AM
#26
chris_rex avatar

chris_rex

New Zenner

Join Date:
Jan 2007
Posts:
8
Plugin Contributions:
0

Re: Editing order details

Hi guys,

I know you are working hard on this! Just wanted to confirm if the edit orders is working or not at the moment?

Thanks guys!

Best Regards,

Chris

23 Jan 2007, 8:44 AM
#27
tajul_ashyqin avatar

tajul_ashyqin

Zen Follower

Join Date:
Apr 2006
Location:
Labuan Island
Posts:
362
Plugin Contributions:
1

Re: Editing order details

as you can see on my previous posts, we need to fix a lot of bugs...:yes:

29 Jan 2007, 8:52 PM
#28
helshop avatar

helshop

New Zenner

Join Date:
Jan 2007
Location:
York
Posts:
34
Plugin Contributions:
0

Re: Editing order details

soapin_mama:

The old version of edit orders does infact work.

In the readme file you are instructed to find and replace in admin/orders.php don't use that info. Use the below

all you need to do is find line 770 or...

$contents[] = array('align' => 'center', 'text' => '<a href="' . zen_href_link(FILENAME_ORDERS, zen_get_all_get_params(array('oID', 'action')) . 'oID=' . $oInfo->orders_id . '&action=edit', 'NONSSL') . '">' . zen_image_button('button_edit.gif', IMAGE_EDIT) . '</a>');

and change the FILENAME_ORDERS to FILENAME_ORDER_EDIT

I also added this just below the above line which links to the order shipment tracking mod if you have it installed:
$contents[] = array('align' => 'center', 'text' => '<a href="' . zen_href_link(FILENAME_TRACK, zen_get_all_get_params(array('oID', 'action')) . 'oID=' . $oInfo->orders_id . '&action=edit', 'NONSSL') . '">' . zen_image_button('button_orders_tracking.gif', IMAGE_EDIT) . '</a>');

Thanks so much, I have just moved over from Cubecart which I have been using for about three years and the option of editing orders was vital, this has really saved my bacon. Tried to install it last night but needed this edit to get it to work.

As usual a great service from the forum - wish I had found Zen sooner!

H

17 Feb 2007, 8:09 PM
#29
buzzville avatar

buzzville

New Zenner

Join Date:
May 2006
Posts:
87
Plugin Contributions:
0

Re: Editing order details

Just checking in to see what the status on this mod is... sounds like just what I need, but also sounds as if there were some bugs. I downloaded the version dated 1/7/07, but looks as if this is the one that still has some issues. Thanks for any info - this would be great to use!

18 Feb 2007, 11:43 PM
#30
reuben avatar

reuben

New Zenner

Join Date:
Apr 2005
Location:
Traralgon
Posts:
51
Plugin Contributions:
0

Re: Editing order details

Has anyone else had trouble with edit orders not including tax in the subtotal?

19 Feb 2007, 12:32 AM
#31
reuben avatar

reuben

New Zenner

Join Date:
Apr 2005
Location:
Traralgon
Posts:
51
Plugin Contributions:
0

Re: Editing order details

The fix for me, to get edit orders to include Tax (GST Australia) is this:

edit admin/orders.php

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)));
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

19 Feb 2007, 2:35 AM
#32
reuben avatar

reuben

New Zenner

Join Date:
Apr 2005
Location:
Traralgon
Posts:
51
Plugin Contributions:
0

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

23 Feb 2007, 5:56 PM
#33
timpossible avatar

timpossible

New Zenner

Join Date:
Jan 2007
Posts:
5
Plugin Contributions:
0

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.

25 Feb 2007, 8:47 PM
#34
mkm avatar

mkm

New Zenner

Join Date:
Nov 2006
Posts:
18
Plugin Contributions:
0

Re: Editing order details

Anyone got this module work with stock by attribute and group discount?

Thanks!

28 Feb 2007, 3:24 AM
#35
khopek avatar

khopek

Totally Zenned

Join Date:
Aug 2006
Location:
portlandish, oregon
Posts:
795
Plugin Contributions:
0

Re: Editing order details

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?

4 Mar 2007, 6:09 PM
#36
frogster avatar

frogster

New Zenner

Join Date:
Feb 2006
Posts:
15
Plugin Contributions:
0

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:

11 Mar 2007, 1:36 AM
#37
darkwander avatar

darkwander

Zen Follower

Join Date:
May 2005
Location:
Australia
Posts:
321
Plugin Contributions:
0

Re: Editing order details

I am getting the following error with the Edit Order mod.

Parse error: parse error, unexpected $end in C:\Program Files\EasyPHP 2.0b1\www\Shop\admin\edit_orders.php on line 1312

require(DIR_WS_INCLUDES . 'application_bottom.php');
?>

15 Mar 2007, 8:08 PM
#38
khopek avatar

khopek

Totally Zenned

Join Date:
Aug 2006
Location:
portlandish, oregon
Posts:
795
Plugin Contributions:
0

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?

16 Mar 2007, 2:29 AM
#39
darkwander avatar

darkwander

Zen Follower

Join Date:
May 2005
Location:
Australia
Posts:
321
Plugin Contributions:
0

Re: Editing order details

Darkwander:

I am getting the following error with the Edit Order mod.

I am still having the same problem..

Anyone have any ideas?

18 Apr 2007, 12:23 PM
#40
mikeyg avatar

mikeyg

Totally Zenned

Join Date:
May 2005
Posts:
515
Plugin Contributions:
0

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.