2 Attachment(s)
Re: Edit Orders v4.0 Support Thread
Hi,
I'm using Zen Cart 1.5 and I'm having an issue with Edit Orders (v.4.1.2) and the module Order Total.
Here's the problem, when I edit an order (example add a product) Edit Orders recalcul my tax in a wrong way.
Here what I'm having before the update : Attachment 13282
And what happend after the update : Attachment 13283
Any idea how to resolve that ? I'm at your disposal if you need more information. Thank you in advance for your answer.
Re: Edit Orders v4.0 Support Thread
Small defect in comment handling - if no other changes are made, comments are not saved. Fix for version 4.1.2 is in admin/edit_orders.php line 147 - add a check of $comments to the conditional clause:
Code:
if(($check_status->fields['orders_status'] != $status) || zen_not_null($track_id) || zen_not_null($comments)) {
Re: Edit Orders v4.0 Support Thread
Yup, that change is already integrated in the next version (still beta). The posted comment fix and the fix for fractional quantities are falling a bit behind in this thread!
Hoping to find time to at least look into passing through upload attributes (not full support) before the next release...
Re: Edit Orders v4.0 Support Thread
Defects in handling attributes which are grids: If you use Absolute's Product Attributes Grid module
http://www.zen-cart.com/downloads.php?do=file&id=618
You need to make two changes in admin/edit_orders.php. Search in that file for PRODUCTS_OPTIONS_TYPE_SELECT:
Right after it, add the line
case 23997: // GRID
So you'll have
Code:
case PRODUCTS_OPTIONS_TYPE_SELECT:
case 23997: // GRID
Line numbers for Edit Orders 4.1.2 are 895 and 1474.
Re: Edit Orders v4.0 Support Thread
Maintainers of Edit Orders: To make my stuff (Better Together, Quantity Discounts, Table Discounts, etc.) work with Edit Orders, you need to populate the cart. Right now $_SESSION['cart']->get_products(); returns an empty array. I traced this from edit_orders_functions.php l 1090.
Re: Edit Orders v4.0 Support Thread
Just installed COWOA and merged all core files however now my edit orders screen is completely blank. Any ideas or has anyone had this issue? Running Zen Cart 1.5.0 and edit orders 4.1.2.
Thanks
Re: Edit Orders v4.0 Support Thread
I am running both on zen 1.5.1 and have no issues. Maybe check proper placement of all files.
Re: Edit Orders v4.0 Support Thread
I have done that. I am going to try and restore from my backup before COWOA and see if I was having the problem and just didn't realize it.
From what I can see the two mods only share one common file admin/orders.php
Re: Edit Orders v4.0 Support Thread
Quote:
Originally Posted by
scotthead1st
I have done that. I am going to try and restore from my backup before COWOA and see if I was having the problem and just didn't realize it.
From what I can see the two mods only share one common file admin/orders.php
Blank screen means an error log was probably generated. Check your /cache folder.
Re: Edit Orders v4.0 Support Thread
Okay so I have uploaded the backup before I installed COWOA and it fixed the problem. Sounds like they aren't wanting to play nice with each other. I'm going to check the error logs as suggested.