Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 5 of 5

Thread: Tax Rates

  1. #1
    chrismartz is offline Senior Member
    Join Date
    Apr 2010
    Posts
    339

    Default Tax Rates

    One of our stores is located in OH so we have to charge OH tax. The problem is that OH taxes are by county and not zip because some zip's cross counties. I am trying to write a resolution to this.

    I will be adding a drop-down with a list of counties only for the OH option. My question is, where is the actual tax calculation done so I can add my logic to it?

  2. #2
    AspDotNetStorefront Staff - Scott's Avatar
    AspDotNetStorefront Staff - Scott is offline Administrator
    Join Date
    Mar 2007
    Location
    Ashland, OR
    Posts
    2,390

    Default

    If you're on ML8 or earlier, that's in the GetCartSubtotalAndTax stored procedure. On ML9, check the Prices class in ASPDSNFCore.

  3. #3
    chrismartz is offline Senior Member
    Join Date
    Apr 2010
    Posts
    339

    Default

    I'm kind of wishing it was in the stored procedure like in v8 but I'm in v9

    I'm looking at prices but i don't see any calls to the database (StateTaxRate table). I thought there would be but I'm not seeing any.
    Last edited by chrismartz; 04-28-2010 at 11:45 AM.

  4. #4
    chrismartz is offline Senior Member
    Join Date
    Apr 2010
    Posts
    339

    Default

    Does the cart use the two getStateTaxRate and getStateTaxRateByID stored procedures to calculate tax for what is shown when checking out and part of the total?

  5. #5
    AspDotNetStorefront Staff - Scott's Avatar
    AspDotNetStorefront Staff - Scott is offline Administrator
    Join Date
    Mar 2007
    Location
    Ashland, OR
    Posts
    2,390

    Default

    We use those sprocs to look up tax rates to use in calculations, yes.