Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
Quote:
Originally Posted by
xcooling
perfect, as i said earlier, easy fix.
using table orders_products instead of table orders_total will NOT fix the problem :P
BTW: every-time you use edit_orders v3.0 it corrupts your orders total table by overwriting the values.
Wont be an issue in 3.5
Hello,
I have the same or similar problem, even when i only want to edit an address line to add the number of the street, as soon as i click update it sort of recalculates the amount (despite the fact that products weren't even touched) and it will then have the wrong order total in the order.
Totally undesirable off course, do you have a pointer where i need to fix this?
I don't want any of the amounts touched when i don't update the products in the order preferably, if that is undoable based on the mechanisms of the original code i would like edit orders to at least take the correct amount of the order so the price doesn't change when i edit something in the address line.
Any (technical) help would be highly appreciated. (would prefer not to wait for a next version to fix this)
Thanks!
Jeroen
Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
its FIXED 3.5, my advice is to wait.
3.5 is almost done. Busy cleaning code, fixing bugs and adding enhancements my clients require.
Basically the the entire code block for updates will need to be rewritten +/- 1000 lines. Best would be to wait.
Below is an example of how you do it.
PHP Code:
if(isset($_POST['update_delivery_country'])){
if(($temp =zen_db_scrub_in($_POST['update_delivery_country'])) != zen_db_scrub_in($order->delivery['country'])){
$Query .= "delivery_country = '" . $temp . "', ";
}
}
Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
I'm very excited about v3.5 and looking forward to seeing it in action! Tons of thanks to Diva and xcooling for the effort and time spent developing and supporting such a wonderful tool that helps us run our businesses more smoothly and efficiently :clap:
Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
All thanks REALLY goes to xcooling for his hard work on this upcoming release.. I will only be doing UAT of the new version of the module and updating the readme files..:smile:
Quote:
Originally Posted by
ScriptJunkie
I'm very excited about v3.5 and looking forward to seeing it in action! Tons of thanks to Diva and xcooling for the effort and time spent developing and supporting such a wonderful tool that helps us run our businesses more smoothly and efficiently :clap:
Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
Quote:
Originally Posted by
xcooling
its FIXED 3.5, my advice is to wait.
3.5 is almost done. Busy cleaning code, fixing bugs and adding enhancements my clients require.
Basically the the entire code block for updates will need to be rewritten +/- 1000 lines. Best would be to wait.
I'll take your advice, appreciate the response, thanks
KNOWN ISSUES: Edit Orders and taxes
The issues with how Edit Orders currently handles taxes goes back a number of years (and module versions). It is my understanding that these issues were never fully addressed as the corrections required were a tad complex.. (though xcooling's work looks like it will address many of these issues..)
That said, I wanted to post all of the posts from the old support threads which center around theses known issues so it's FULLY documented (some of these issues have been recently reported here in this support thread as well)
Edit Orders issues regarding support for taxes:
In particular there is no support for split taxes and the shipping taxes do not calculate correctly.
The following threads speak to some of the current issues:
KNOWN ISSUES: Edit Orders and product attributes
The issues with how Edit Orders currently handles products attributes also goes back a number of years (and module versions). These outstanding issues were never fully addressed and I think it was probably a matter of time constraints on the part of previous contributors..
Edit Orders and product attributes
- Issue 1 - No support for "optional" attributes
Currently when adding products to an order, the first option value is selected by default with no options provided to not select an attribute at all. (Not all options are required in the storefront, and therefore this same optional attribute ability needs to be provided when you edit an order) - Issue 2 - Edit Orders lacks the ability to delete attributes from products
When editing an order, a store admin should be able to delete an attribute from a product. Current functionality includes an “Advanced Attributes Editor” which ONLY allows you to remove attribute pricing data, but the NOT attribute itself from the product.
Details on the attributes issues posted here:
Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
Quote:
Originally Posted by
DivaVocals
All thanks REALLY goes to xcooling for his hard work on this upcoming release.. I will only be doing UAT of the new version of the module and updating the readme files..:smile:
Yeah, but that doesn't discount the all the work you've done before, nor the ongoing support for the Mod :) Plus, you and I both know that writing a good ReadMe is actually more like writing a process document - it's very detailed, tedious, and time consuming work to make sure you've covered all your bases, gotten your steps in the correct order, didn't leave out any steps, is understandable to the masses, etc. And girl, your ReadMe's are fabulous! :clap:
Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
Quote:
Originally Posted by
ScriptJunkie
Yeah, but that doesn't discount the all the work you've done before, nor the ongoing support for the Mod :) Plus, you and I both know that writing a good ReadMe is actually more like writing a process document - it's very detailed, tedious, and time consuming work to make sure you've covered all your bases, gotten your steps in the correct order, didn't leave out any steps, is understandable to the masses, etc. And girl, your ReadMe's are fabulous! :clap:
Awwww thanks..:blush: I'm glad the effort is appreciated.. There are some contributors here who really write fabulous readme documents, and I took cues (and even document formats:laugh:) from them when crafting the readme files for this and Super Orders.. (Kuroi, Conor, and QHome to name a few) Trying to make things as "bullet proof" as possible for newbies in particular..
Off topic http://www.buddy-icons.info/img/smile/1704.gif:
This weekend, I'm gonna submit a minor update to IH2 (by the fabulous nagelkruid:smile:), and I plan to include a revamped IH2 readme document in the new update..
Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread