Page 113 of 188 FirstFirst ... 1363103111112113114115123163 ... LastLast
Results 1,121 to 1,130 of 1873
  1. #1121
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,347
    Plugin Contributions
    94

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by swguy View Post
    Latest EO also has a bug which shows up editing an order which uses an order total module with recalculate taxes = Standard. You can dup with Group Pricing.

    Original Order:
    Sub-Total: $499.00S
    Shipping: $0.00
    Group Discount: -$53.39
    Tax 7.0%: $31.44
    Total: $477.05

    After EO:
    Sub-Total: $499.00S
    Shipping: $0.00
    Group Discount: -$53.04 (** error)
    Tax 7.0%: $31.44
    Total: $473.91 (** error)
    @swguy, any idea where that trailing S on the sub-total is coming from? I'm guessing that that could be part of the issue.

  2. #1122
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,290
    Plugin Contributions
    125

    Default Re: Edit Orders v4.0 Support Thread

    Sorry - that was copy & paste cruft. Fixed.
    That Software Guy. My Store: Zen Cart Support
    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.

  3. #1123
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,347
    Plugin Contributions
    94

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by swguy View Post
    Latest EO also has a bug which shows up editing an order which uses an order total module with recalculate taxes = Standard. You can dup with Group Pricing.

    Original Order:
    Sub-Total: $499.00
    Shipping: $0.00
    Group Discount: -$53.39
    Tax 7.0%: $31.44
    Total: $477.05

    After EO:
    Sub-Total: $499.00
    Shipping: $0.00
    Group Discount: -$53.04 (** error)
    Tax 7.0%: $31.44
    Total: $473.91 (** error)
    @swguy, would you enable EO debug, update that order and send me the generated EO log file via direct email?

  4. #1124
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,290
    Plugin Contributions
    125

    Default Re: Edit Orders v4.0 Support Thread

    Just completed and sent.
    That Software Guy. My Store: Zen Cart Support
    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.

  5. #1125
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,347
    Plugin Contributions
    94

    Default Re: Edit Orders v4.0 Support Thread

    ... and I've replicated the issue locally. I'll post back when I've identified the root-cause.

  6. #1126
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,290
    Plugin Contributions
    125

    Default Re: Edit Orders v4.0 Support Thread

    Fix needed for virtual orders with no shipping address: such orders will show the message WARNING_ADDRESS_COUNTRY_NOT_FOUND
    ("Warning: One or more of the customer address fields contains a country name unknown to Zen Cart...")

    edit_orders.php line ~ 677 change

    Code:
          if(!is_array($order->customer['country']) || !array_key_exists('id', $order->customer['country']) ||
            !is_array($order->billing['country']) || !array_key_exists('id', $order->billing['country']) ||
            !is_array($order->delivery['country']) || !array_key_exists('id', $order->delivery['country'])) {
            $messageStack->add(WARNING_ADDRESS_COUNTRY_NOT_FOUND, 'warning');
          }
    to

    Code:
          if(!is_array($order->customer['country']) || !array_key_exists('id', $order->customer['country']) ||
            !is_array($order->billing['country']) || !array_key_exists('id', $order->billing['country'])) {
            $messageStack->add(WARNING_ADDRESS_COUNTRY_NOT_FOUND, 'warning');
          } else if ($order->delivery !== false && !empty($order->delivery['country'])) {
            if (!is_array($order->delivery['country']) || !array_key_exists('id', $order->delivery['country'])) {
               $messageStack->add(WARNING_ADDRESS_COUNTRY_NOT_FOUND, 'warning');
            }
          }
    That Software Guy. My Store: Zen Cart Support
    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. #1127
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,347
    Plugin Contributions
    94

    Default Re: Edit Orders v4.0 Support Thread

    @swguy, what version of EO are you running? That message being displayed for virtual orders was corrected last year via this GitHub commit for EO 4.1.6.

    The code segment that you refer to currently reads (edit_orders.php, line 623):
    Code:
            if (!$eo->eoOrderIsVirtual ($order) &&
                   ( !is_array($order->customer['country']) || !array_key_exists('id', $order->customer['country']) ||
                     !is_array($order->billing['country']) || !array_key_exists('id', $order->billing['country']) ||
                     !is_array($order->delivery['country']) || !array_key_exists('id', $order->delivery['country']) )) {
                $messageStack->add(WARNING_ADDRESS_COUNTRY_NOT_FOUND, 'warning');
            }

  8. #1128
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,290
    Plugin Contributions
    125

    Default Re: Edit Orders v4.0 Support Thread

    Ah ok thanks I have 4.1.5-beta2.
    That Software Guy. My Store: Zen Cart Support
    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. #1129
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,347
    Plugin Contributions
    94

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by swguy View Post
    Ah ok thanks I have 4.1.5-beta2.
    Current version is 4.2.3.

  10. #1130
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,347
    Plugin Contributions
    94

    Default Re: Edit Orders v4.0 Support Thread

    I've just submitted v4.3.0 of Edit Orders to the Zen Cart plugins for review. That release contains changes associated with the following GitHub issues:

    #50: Correct product.products_ordered calculation (thanks @siliconforks!).
    #52: Correct PHP warning when an order-total doesn't include a "TAX_CLASS" setting.
    #53: Additional notifiers for address-field insertions.
    #54: Invalid value used in "Mock Cart" processing.
    #55: Correct PHP "notify" issues.
    #56: Correct order-total calculations when order-totals re-compute tax (e.g. group pricing), as reported by @swguy here.
    #57: Properly report missing notifiers

    I'll post back here once the download is available.

 

 

Similar Threads

  1. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 804
    Last Post: 18 Apr 2025, 12:04 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