Page 1 of 2 12 LastLast
Results 1 to 10 of 1916

Hybrid View

  1. #1
    Join Date
    Jul 2010
    Posts
    37
    Plugin Contributions
    0

    Default Re: Edit Orders v4.0 Support Thread

    I am running 1.5.1
    I am having some issues with edit orders that I need fixed.
    I can delete/add products but I the subtotal doesn't adjust. I also can’t adjust the shipping total or add a discount coupon. I try, hit update and it goes to a blank page. When I go back and access order again, there is no change. I had a customer cancel part of an order so his shipping needs adjusted and I can’t do it. I tried both changing the shipping charge (didn’t work) and then I tried to do a discount coupon to adjust the total (again, didn’t work). Any ideas how to get this to work?

  2. #2
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by smurfy1 View Post
    I am running 1.5.1
    I am having some issues with edit orders that I need fixed.
    I can delete/add products but I the subtotal doesn't adjust. I also can’t adjust the shipping total or add a discount coupon. I try, hit update and it goes to a blank page. When I go back and access order again, there is no change. I had a customer cancel part of an order so his shipping needs adjusted and I can’t do it. I tried both changing the shipping charge (didn’t work) and then I tried to do a discount coupon to adjust the total (again, didn’t work). Any ideas how to get this to work?
    What version of Edit Orders??

    When you get a blank page there is likely an error log that was created.. what does the error log file say?? What other modules do you have installed??
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  3. #3
    Join Date
    Jul 2013
    Posts
    9
    Plugin Contributions
    0

    Default Re: Edit Orders v4.0 Support Thread

    Hello again,

    The cache fixed solved my problem. But I use table discounts to do 90 percent of our store.

    I am trying to take off $99 from an invoice. Which I was able to do. But with this new plugin my Table discounts dont show up right inside the invoices.

    Sub-Total: $2,915.50
    United States Postal Service (Priority Mail International®): $96.14
    Table Discounts: $1,356.00
    Discount Coupon: Credit : $99.00
    Total: $2,912.64

    That should be alot smaller of a total.

    Any ideas? I tried looking for a solution but cant seem to find one.

  4. #4
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by Maladi3 View Post
    Hello again,

    The cache fixed solved my problem. But I use table discounts to do 90 percent of our store.

    I am trying to take off $99 from an invoice. Which I was able to do. But with this new plugin my Table discounts dont show up right inside the invoices.

    Sub-Total: $2,915.50
    United States Postal Service (Priority Mail International®): $96.14
    Table Discounts: $1,356.00
    Discount Coupon: Credit : $99.00
    Total: $2,912.64

    That should be alot smaller of a total.

    Any ideas? I tried looking for a solution but cant seem to find one.
    helps if you tell us what you expect to see in the "Table Discounts"
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  5. #5
    Join Date
    Jul 2013
    Posts
    9
    Plugin Contributions
    0

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by DivaVocals View Post
    helps if you tell us what you expect to see in the "Table Discounts"
    It should take away from the subtotal. Instead its added in to the total. So instead of the total only being around $1000. Its almost $3000

    http://www.thatsoftwareguy.com/zenca...discounts.html

    Thank you,
    Rob

  6. #6
    Join Date
    Jul 2013
    Posts
    9
    Plugin Contributions
    0

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by DivaVocals View Post
    helps if you tell us what you expect to see in the "Table Discounts"
    Was my explanation clear enough? Is there anything else I could provide to help? Thank you!

  7. #7
    Join Date
    Sep 2010
    Posts
    32
    Plugin Contributions
    0

    Default Re: Edit Orders v4.0 Support Thread

    Hi,

    I have installed Edit order 4.0 in Zencart 1.5.1.

    I have Product Qty in Fraction. i.e. 0.5

    So when i edit any order having product ordered with QTY 0.5 and update that order, Product gets disappeared from order.

    Is this bug or what? How to fix?

  8. #8
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by nlinksolution View Post
    Hi,

    I have installed Edit order 4.0 in Zencart 1.5.1.

    I have Product Qty in Fraction. i.e. 0.5

    So when i edit any order having product ordered with QTY 0.5 and update that order, Product gets disappeared from order.

    Is this bug or what? How to fix?
    Start by upgrading to the latest version (4.1.2)
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  9. #9
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by stxmona View Post
    ... When we go to edit the quantity amount in an order, it will delete items from the order that have a .5 quantity amount. ...
    Quote Originally Posted by nlinksolution View Post
    ... I have Product Qty in Fraction. i.e. 0.5 ... So when i edit any order having product ordered with QTY 0.5 and update that order, Product gets disappeared from order. ...
    Try making the following change (to Edit Orders 4.1.2) and let us know if it solves the problem for you (if you report it fixes the issues - the code will be added to the next release of Edit Orders).

    Edit "/admin/edit_orders.php". Around line 245 change the int cast to a float cast. The original code looks like:
    Code:
    $_POST['update_products'] = zen_db_prepare_input($_POST['update_products']);
    foreach($_POST['update_products'] as $orders_products_id => $product_update) {
      $product_update['qty'] = (int) $product_update['qty'];
    After making your changes the code should look like:
    Code:
    $_POST['update_products'] = zen_db_prepare_input($_POST['update_products']);
    foreach($_POST['update_products'] as $orders_products_id => $product_update) {
      $product_update['qty'] = (float) $product_update['qty'];
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  10. #10
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by Maladi3 View Post
    ... I use table discounts to do 90 percent of our store. ... with this new plugin my Table discounts dont show up right inside the invoices.
    The "Table Discounts" module is commercial. I do not own a copy of the module and as such am not able to look at the source code to determine the exact cause of the problem.

    By default the order total values are passed to and from the Zen Cart database untouched... So if they are entered as negative they stay negative and if they are entered as positive they are left as positive... Which works for about 85% of order total modules.

    Some order total modules do need special handling if the modules expect certain global variables or session variables to be populated. It is possible "Table Discounts" is one of these modules will require some special handling. Without knowing the special handling required... It will be hard for us to help you.
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 817
    Last Post: 29 Apr 2026, 07:53 PM
  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

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