Page 155 of 179 FirstFirst ... 55105145153154155156157165 ... LastLast
Results 1,541 to 1,550 of 1787
  1. #1541
    Join Date
    Oct 2008
    Posts
    27
    Plugin Contributions
    0

    Default Re: Edit Orders v4.0 Support Thread

    Honestly being nice was to give an HINT on how to solve the problem...

    I don't need a ready-to-go solution. Just an opinion.

    Unfortunately for my store upgrading is not an option, otherwise I would not be here asking for that.

  2. #1542
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,296
    Plugin Contributions
    22

    Default Re: Edit Orders v4.0 Support Thread

    Forgive me if this has been addressed before but the instructions state "We do not recommend clicking "edit" on completed orders." So exactly what is meant by completed? Final status change / actual payment taken? The cart is using the old CEON cc mod on purpose so that the owner can edit the order and add charges for shipping and discounts. So in his mind the order isn't completed until he does exactly that and then he changes the order status to shipped. What is the reality?
    The full-time Zen Cart Guru. WizTech4ZC.com

  3. #1543
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,495
    Plugin Contributions
    88

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by delia View Post
    Forgive me if this has been addressed before but the instructions state "We do not recommend clicking "edit" on completed orders." So exactly what is meant by completed? Final status change / actual payment taken? The cart is using the old CEON cc mod on purpose so that the owner can edit the order and add charges for shipping and discounts. So in his mind the order isn't completed until he does exactly that and then he changes the order status to shipped. What is the reality?
    That wording is carry-over from the v4.1.4 version of EO that I started with. I suppose that DivaVocals was just being cautious in her wording.

    Things that can go wrong:
    - A product in an old order is no longer stocked by the store.
    - A product-option in an old order is no longer available for a product in the order.

  4. #1544
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,296
    Plugin Contributions
    22

    Default Re: Edit Orders v4.0 Support Thread

    so in other words, the longer you wait to edit an order, the more problematic it could possibly be. Perhaps changing the wording in the instructions? Is this in github?
    The full-time Zen Cart Guru. WizTech4ZC.com

  5. #1545
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,495
    Plugin Contributions
    88

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by delia View Post
    so in other words, the longer you wait to edit an order, the more problematic it could possibly be. Perhaps changing the wording in the instructions? Is this in github?
    You bet: https://github.com/lat9/edit_orders

  6. #1546
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,699
    Plugin Contributions
    123

    Default Re: Edit Orders v4.0 Support Thread

    EO 4.5.0, Zen Cart 1.5.6. It appears that orders with a tax line item have the tax order total entry removed after an order update.
    Is this an integration problem on my end or have others seen it?
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  7. #1547
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,495
    Plugin Contributions
    88

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by swguy View Post
    EO 4.5.0, Zen Cart 1.5.6. It appears that orders with a tax line item have the tax order total entry removed after an order update.
    Is this an integration problem on my end or have others seen it?
    zc156, no suffix? What are you using for the product-pricing method?

    I'm not seeing this on zc156c/eo450.

  8. #1548
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,699
    Plugin Contributions
    123

    Default Re: Edit Orders v4.0 Support Thread

    Sorry, 156c. Product Pricing - tested manual and auto, both had the same issue. OK I will dig in on my side.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  9. #1549
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,699
    Plugin Contributions
    123

    Default Re: Edit Orders v4.0 Support Thread

    Investigating ...

    admin/includes/functions/extra_functions/edit_orders_functions.php lines 1429-1445 you are referencing $order->totals[$i]['class'].
    This should be $order->totals[$i]['code'] shouldn't it?

    (lines are same between EO 4.5.0 and 4.5.1)
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  10. #1550
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,699
    Plugin Contributions
    123

    Default Re: Edit Orders v4.0 Support Thread

    The root cause of the deleted tax line is in the block that handles the "rogue" ot_tax value.
    (Around 1449 of ./includes/functions/extra_functions/edit_orders_functions.php).

    My tax title is Sales tax (if any) + Shipping Tax (0.0000%) + Tax:

    which does not work for the clause

    `title` NOT IN ($tax_groups)

    Perhaps a LIKE would be better - something like

    Code:
    foreach ($tax_groups as &$tax_group) {
       $tax_group = '%' . $db->prepareInput($tax_group) .'%'. ':';
    }
    $tax_groups = "'" . implode("', '", $tax_groups) . "'";
    ...
    $query = 
                    "DELETE FROM " . TABLE_ORDERS_TOTAL . "
                      WHERE orders_id = $oID
                        AND `class` = 'ot_tax'
                        AND `title` NOT IN (";  
    for ($i = 0; $i < count($tax_groups); $i++) {
       if ($i > 0) $query .= ","; 
       $query .= $tax_groups[$i]; 
    }
    $query .= ")";
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

 

 

Similar Threads

  1. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 797
    Last Post: 23 Mar 2024, 06:51 AM
  2. v150 Orders Status History -- Updated By [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 34
    Last Post: 29 Jul 2019, 07:05 PM
  3. Edit Orders v3.0 for ZC 1.3.9 [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 656
    Last Post: 18 Apr 2016, 06:28 PM
  4. v139h Super Orders v3.0 Support Thread (for ZC v1.3.9)
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1018
    Last Post: 28 Apr 2014, 11:38 PM
  5. RE: Super Orders v3.0 Support Thread
    By Johnnyd in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Jun 2011, 09:28 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR