Page 1 of 3 123 LastLast
Results 1 to 10 of 22
  1. #1
    Join Date
    Jul 2006
    Location
    Perth, Australia
    Posts
    42
    Plugin Contributions
    0

    Default Net and Gross price problem

    This is probably been asked a million times but I cannot find any real answers. In my catalogue even though I have taxable goods selected it does not show the net and the gross price as being different. I have put the show tax in admin as true, then false, then change price based on shipping/billing/store, I have rechecked changed and rechecked again with no avail. PLEASE HELP! I am running ver 1.3.8a


  2. #2
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Net and Gross price problem

    The tax showing the Net/Gross on the Price is based on Store Address ... and the configured Tax Rates that you have setup ...

    Make sure that you have defined the Zones correctly and that the priority is set to 1 ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  3. #3
    Join Date
    Jul 2006
    Location
    Perth, Australia
    Posts
    42
    Plugin Contributions
    0

    Default Re: Net and Gross price problem

    Quote Originally Posted by Ajeh View Post
    The tax showing the Net/Gross on the Price is based on Store Address ... and the configured Tax Rates that you have setup ...

    Make sure that you have defined the Zones correctly and that the priority is set to 1 ...
    I have done all of the above and nothing has changed????? Any other ideas?? Please

  4. #4
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Net and Gross price problem

    You are setting the Product as:
    Tax Class: TAXABLE GOODS

    And your Shop is in the same Zone as your defined Tax Zone?

    And your defined Tax Zone does have a Tax Rate set up for it?

    Do you see tax "anywhere" in the Admin or Catalog of your site?

    What Tax Zone did you define and at what rate?

    What are your settings in the Configuration ... My Store ... for the Taxes? Defaults are:
    Tax Decimal Places 0
    Display Prices with Tax false
    Display Prices with Tax in Admin false
    Basis of Product Tax Shipping
    Basis of Shipping Tax Shipping
    Sales Tax Display Status 0
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  5. #5
    Join Date
    Jan 2007
    Posts
    6
    Plugin Contributions
    0

    Default Re: Net and Gross price problem

    Hi,

    We also seem to have the same problem - v1.3.7

    The tax is calculating correctly but the price(inc) and total(inc) columns on the invoice are showing the net values. The tax amount on the totals line at the bottom is right.

    The problem is possibly on the following line on invoice .php?

    ' <td class="dataTableContent" align="right" valign="top"><b>' .
    $currencies->format(zen_add_tax($order->products[$i]['final_price'], $order->products[$i]['tax']), true, $order->info['currency'], $order->info['currency_value']) .
    ($order->products[$i]['onetime_charges'] != 0 ? '<br />' . $currencies->format(zen_add_tax($order->products[$i]['onetime_charges'], $order->products[$i]['tax']), true, $order->info['currency'], $order->info['currency_value']) : '') .
    '</b></td>' . "\n" .


    Cheers

  6. #6
    Join Date
    Jan 2007
    Posts
    6
    Plugin Contributions
    0

    bug Re: Net and Gross price problem

    Digging a little deeper - the functions_taxes file -


    // Add tax to a products price based on whether we are displaying tax "in" the price
    function zen_add_tax($price, $tax) {
    global $currencies;
    if ( (DISPLAY_PRICE_WITH_TAX == 'true') && ($tax > 0) ) {
    return zen_round($price, $currencies->currencies[DEFAULT_CURRENCY]['decimal_places']) + zen_calculate_tax($price, $tax);
    } else {
    return zen_round($price, $currencies->currencies[DEFAULT_CURRENCY]['decimal_places']);
    }
    }

    always seems to return the else condition....

    thus DISPLAY_PRICE_WITH_TAX == 'true' must not be true...

    Slightly off topic

    tax and discount completely mess up....

  7. #7
    Join Date
    Jul 2006
    Location
    Perth, Australia
    Posts
    42
    Plugin Contributions
    0

    Default Re: Net and Gross price problem

    Quote Originally Posted by Ajeh View Post
    You are setting the Product as:
    Tax Class: TAXABLE GOODS

    And your Shop is in the same Zone as your defined Tax Zone?

    And your defined Tax Zone does have a Tax Rate set up for it?

    Do you see tax "anywhere" in the Admin or Catalog of your site?

    What Tax Zone did you define and at what rate?

    What are your settings in the Configuration ... My Store ... for the Taxes? Defaults are:
    I have changed all the above and it still doesn't show net and gross prices as being any different. I am really at wits end and don't know how to fix it, everything seems the same in tax zones, store zones etc.

  8. #8
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Net and Gross price problem

    What is the Zone for your Shop?

    What is the Zone for your Taxes?

    Also check that the Priority is set to 1 ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  9. #9
    Join Date
    Jul 2006
    Location
    Perth, Australia
    Posts
    42
    Plugin Contributions
    0

    Default Re: Net and Gross price problem

    Quote Originally Posted by Ajeh View Post
    What is the Zone for your Shop?

    What is the Zone for your Taxes?

    Also check that the Priority is set to 1 ...
    Zone Shop = Australia
    Tax Zone = Australia
    Priority = 1



  10. #10
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Net and Gross price problem

    What are your details for your Australia Zone?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

 

 
Page 1 of 3 123 LastLast

Similar Threads

  1. v151 Net price showing and not caculating Gross price
    By Debbie2014 in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 3
    Last Post: 14 Dec 2015, 02:56 PM
  2. Displaying net and gross price on product listing page
    By brashud in forum General Questions
    Replies: 1
    Last Post: 31 Aug 2011, 11:32 AM
  3. Problem with value in "Products Price (Net):" and "Products Price (Gross)
    By doubletiger in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 5
    Last Post: 4 Mar 2011, 01:22 PM
  4. Net and Gross price the same when entering product price
    By Craig Robbo in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 1
    Last Post: 6 Feb 2009, 09:47 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