Page 37 of 85 FirstFirst ... 27353637383947 ... LastLast
Results 361 to 370 of 849
  1. #361
    Join Date
    Jan 2009
    Location
    Vegas Baby!
    Posts
    332
    Plugin Contributions
    0

    Default Re: Quantity Discounts for 1.3

    Quote Originally Posted by swguy View Post
    There's a bug in your syntax. Instead of

    Code:
            switch($category) {
               case 14:
    15:
    16:
    17:
    etc.
    you want

    Code:
            switch($category) {
               case 14:
    case 15:
    case 16:
    case 17:
    etc.

    OH, ok thanks!!!

  2. #362
    Join Date
    Oct 2008
    Posts
    85
    Plugin Contributions
    0

    help question Re: Quantity Discounts for 1.3

    hi, i have quantity discount installed, but i met the problem when checkout

    - i check out 2 items (price 20 + 30), total shipping cost 15.90, quantity discount 5%, tax 19.6%,
    - i set the price with tax, and shipping cost no tax.
    - i set the sort order which i want in module:
    sub-total -- 200
    shipping cost -- 210
    quantity discount -- 220
    taxes -- 230
    total -- 240

    ----------------------------------------
    which i should get is :

    sub-total: 50.00
    shipping cost: 15.90
    quantity discount: -2.50
    tax: 7.78
    total: 63.40 [ total = 50+15.9-2.5 = 63.40 ]

    ----------------------------------------
    But, no matter how i set up, its not what i want:

    i set quantity discount: include tax - true, re-calculate tax - standard, i get

    sub-total: 50.00
    shipping cost: 15.90
    quantity discount: -2.50 [ 2 items 41.81*0.05=2.09 (include tax = 2.50) ]
    tax: 7.70
    total: 62.91
    ----------------------------------------
    i set quantity discount: include tax - true, re-calculate tax - none, i get

    sub-total: 50.00
    shipping cost: 15.90
    quantity discount: -2.50 [ 2 items 41.81*0.05=2.09 (include tax = 2.50) ]
    tax: 8.19
    total: 63.40
    ----------------------------------------
    i set quantity discount: include tax - false, re-calculate tax - none, i get

    sub-total: 50.00
    shipping cost: 15.90
    quantity discount: -2.09 [ 2 items 41.81*0.05=2.09 ]
    tax: 8.19
    total: 63.81
    ----------------------------------------
    i set quantity discount: include tax - false, re-calculate tax - standard, i get

    sub-total: 50.00
    shipping cost: 15.90
    quantity discount: -2.09 [ 2 items 41.81*0.05=2.09 ]
    tax: 7.78
    total: 63.40
    ----------------------------------------

    if i add more items, the amount would be more outrageous

    when i turn off quantity discount, everything calculates correctly.

    i'm using 1.38a

    how do i fix the problem ? i like this module very much, i dont want to loos it. thanks
    Last edited by myworld20091; 28 Jan 2009 at 07:51 PM.

  3. #363
    Join Date
    Oct 2008
    Posts
    85
    Plugin Contributions
    0

    help question Re: Quantity Discounts for 1.3

    Quote Originally Posted by myworld20091 View Post
    hi, i have quantity discount installed, but i met the problem when checkout

    - i check out 2 items (price 20 + 30), total shipping cost 15.90, quantity discount 5%, tax 19.6%,
    - i set the price with tax, and shipping cost no tax.
    - i set the sort order which i want in module:
    sub-total -- 200
    shipping cost -- 210
    quantity discount -- 220
    taxes -- 230
    total -- 240

    ----------------------------------------
    what i should get is :

    sub-total include tax: 50.00
    shipping cost: 15.90 [ // for all my products, i set price with tax and shipping cost no tax ]
    quantity discount: -2.50 [ // 2 items 41.81*0.05=2.09 (include tax = 2.50) ]
    tax: 7.78
    total include tax: 63.40 [ // total = 50+15.9-2.5 = 63.40 ]

    ----------------------------------------
    But, no matter how i set up, its not what i want:

    i set quantity discount: include tax - true, re-calculate tax - standard, i get

    sub-total: 50.00
    shipping cost: 15.90
    quantity discount: -2.50
    tax: 7.70
    total: 62.91

    ----------------------------------------
    i set quantity discount: include tax - true, re-calculate tax - none, i get

    sub-total: 50.00
    shipping cost: 15.90
    quantity discount: -2.50
    tax: 8.19
    total: 63.40

    ----------------------------------------
    i set quantity discount: include tax - false, re-calculate tax - none, i get

    sub-total: 50.00
    shipping cost: 15.90
    quantity discount: -2.09
    tax: 8.19
    total: 63.81

    ----------------------------------------
    i set quantity discount: include tax - false, re-calculate tax - standard, i get

    sub-total: 50.00
    shipping cost: 15.90
    quantity discount: -2.09
    tax: 7.78
    total: 63.40

    ----------------------------------------

    if i add more items, the amount would be more outrageous

    i'm using 1.38a

    how do i fix the problem ? i like this module very much, i dont want to loos it. thanks
    any ideas ?

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

    Default Re: Quantity Discounts for 1.3

    It seems the setting you wish is not available. You are welcome to modify the code or to hire someone to do it for you.
    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. #365
    Join Date
    Oct 2008
    Posts
    85
    Plugin Contributions
    0

    help question Re: Quantity Discounts for 1.3

    hello,

    here's my invoice with quantity discounts on

    sub-total: 50.00
    shipping cost: 15.90
    quantity discounts: -2.50
    tax: 7.70
    total: 62.91

    the total calculation is not correct

    total = sub total + shipping cost - quantity dissounts
    = 50+15.9-2.5 =63.4

    but i have no idea why 62.91

  6. #366
    Join Date
    Oct 2008
    Posts
    85
    Plugin Contributions
    0

    Default Re: Quantity Discounts for 1.3

    what i want is using quantity discounts, and calculation correct

  7. #367
    Join Date
    Oct 2008
    Posts
    85
    Plugin Contributions
    0

    help question Re: Quantity Discounts for 1.3

    i do not have any special requirements, i just want the quantity discounts working on my zencart 1.38, but now the calculation is not correct
    any help would be appreciated

  8. #368
    Join Date
    Oct 2008
    Posts
    85
    Plugin Contributions
    0

    help question Re: Quantity Discounts for 1.3

    Quote Originally Posted by swguy View Post
    It seems the setting you wish is not available. You are welcome to modify the code or to hire someone to do it for you.
    hi swguy,

    they are not the settings i wish but the settings i have tried, i have tried perhaps all settings cause the calculation is not correct in the invoice, i dont know which setting is correct, thats why i posted them here.

    i do not have any special requirements, i just want the quantity discounts working on my zencart 1.38, but now the calculation is not correct.

    here's my invoice when i turn quantity discounts on

    sub-total: 50.00
    shipping cost: 15.90
    quantity discounts: -2.50
    tax: 7.70
    total: 62.91

    according to the invoice, it should be :
    total = sub total + shipping cost - quantity dissounts
    = 50 + 15.9 - 2.5
    = 63.4

    but now the total is 62.91, its obviously wrong, but i have no idea how to fix this problem.

    could you help me? thanks.

  9. #369
    Join Date
    Oct 2006
    Posts
    62
    Plugin Contributions
    0

    Default Re: Quantity Discounts for 1.3

    I Installed this mod and the preview feature in 1.3.8a. Works fine in every test I run. Today had a user checkout using paypal express checkout bypassing the checkout on my site. Discount was not applied. I assume this is because even though the preview can show the discount in the cart, it does not pass this discount to express checkout? Is there a way to apply the discount to users who choose the paypal express checkout method from the cart page?

  10. #370
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,291
    Plugin Contributions
    125

    Default Re: Quantity Discounts for 1.3

    I have not heard of this problem. Does it happen on every express checkout? Are you certain the user qualified for a discount with the items they had? Can you reproduce the problem?
    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.

 

 
Page 37 of 85 FirstFirst ... 27353637383947 ... LastLast

Similar Threads

  1. v153 quantity discounts for attributes
    By delia in forum General Questions
    Replies: 1
    Last Post: 14 Oct 2014, 02:34 PM
  2. v150 Quantity Discounts for shipping 1.5
    By jpmill in forum Built-in Shipping and Payment Modules
    Replies: 7
    Last Post: 7 Apr 2013, 05:28 PM
  3. v150 Quantity Discounts for 1.5?
    By mobishelf in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 21 Feb 2012, 12:40 AM
  4. Hide quantity discounts for general customers, show for groups only?
    By swamyg1 in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 3
    Last Post: 16 Nov 2009, 09:22 PM
  5. Quantity Discounts for Sets?
    By mwlahn in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 1
    Last Post: 30 Mar 2008, 07:39 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