Page 37 of 64 FirstFirst ... 27353637383947 ... LastLast
Results 361 to 370 of 635
  1. #361
    Join Date
    Apr 2008
    Location
    South Florida
    Posts
    197
    Plugin Contributions
    0

    Default Re: Local Sales Tax Mod - Support Thread

    Very strange indeed. I even pulled the query out and ran it in Navicat and it brought up the countries just fine. Seems to not work in Zen Cart with the query factory.

  2. #362
    Join Date
    Feb 2008
    Location
    Washington State
    Posts
    236
    Plugin Contributions
    0

    Default Re: Local Sales Tax Mod - Support Thread

    Quote Originally Posted by patternman View Post
    Hi jasmel,

    Please check out my previous posts to get a firm grasp of what I have implemented with my site:
    http://www.zen-cart.com/forum/showth...030#post727030
    http://www.zen-cart.com/forum/showth...607#post901607
    http://www.zen-cart.com/forum/showth...543#post908543

    For Washington State, I just kept the zone id the same = 62.
    The rate should be 6.5%.
    The local sales tax rate is added on top of the state tax rate.

    Hope this helps.
    -Jason
    Great help! **Just got an email from WA about the new rates for Oct-Dec
    ~ jasmel : My Store Using Contributions: Wallet Theme | Simple Google | Quantity Discounts | Godaddy | FAQ's | Confirm Email Address Entry | Admin login as customer | Newsletter Subscribe | CampaingMonitor

  3. #363
    Join Date
    Jul 2010
    Posts
    15
    Plugin Contributions
    0

    Default Re: Local Sales Tax Mod - Support Thread

    Has anyone installed this on version 1.3.9d and got it to work?

  4. #364
    Join Date
    Feb 2009
    Posts
    22
    Plugin Contributions
    0

    Default Problem implementing the New York State Tax Table

    I have installed the Local Sales Tax Mod. The setup for New York State tax rates is monstrous.

    In the several threads regarding this mod, there is a suggestion to use The "New York State Tax Table" from b-u-s-h-k-i-l-l-f-a-r-m-e-s dot com

    The table seems like just the thing to cut a weeks work to a minutes work. The problem is, I don't understand it's use. It is probably a simple cut and paste using phpMyAdmin, but I am clueless as to how to do it. Can anyone advise me.

    Can someone tell me EXACTLY what to do here?

    The file begins with:

    zen cart local sales tax - NY county tax by zip code
    -- compiled by edited.com-- Please report errors to [email protected]
    --
    -- Table structure for table `tax_rates_local`
    -- Remove Old Table First

    DROP TABLE IF EXISTS `tax_rates_local`;

    CREATE TABLE `tax_rates_local` (
    `local_tax_id` int(11) NOT NULL auto_increment COMMENT 'tax id',
    `zone_id` int(11) default NULL COMMENT 'zen cart zone to apply tax',
    `local_fieldmatch` varchar(100) default NULL COMMENT 'name of field from delivery table to match',
    `local_datamatch` varchar(100) default NULL COMMENT 'Data to match delievery field',
    `local_tax_rate` decimal(7,4) default '0.0000' COMMENT 'local tax rate',
    `local_tax_label` varchar(100) default NULL COMMENT 'Label for checkout',
    `local_tax_shipping` varchar(5) default 'false' COMMENT 'Apply this tax to shipping',
    `local_tax_class_id` int(1) default NULL COMMENT 'Apply to products in what tax class',
    PRIMARY KEY (`local_tax_id`),
    UNIQUE KEY `local_datamatch` (`local_datamatch`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2263 ;

    --
    -- Dumping data for table `tax_rates_local`
    --

    INSERT INTO `tax_rates_local` VALUES (1, 43, 'postcode', '00501', 4.6300, 'Suffolk County Sales Tax', 'true', 1);
    INSERT INTO `tax_rates_local` VALUES (2, 43, 'postcode', '00544', 4.6300, 'Suffolk County Sales Tax', 'true', 1);
    INSERT INTO `tax_rates_local` VALUES (3, 43, 'postcode', '06390', 4.6300, 'Suffolk County Sales Tax', 'true', 1);
    INSERT INTO `tax_rates_local` VALUES (4, 43, 'postcode', '10001', 4.3750, 'New York County Sales Tax', 'true', 1);


    And then goes on with hundreds of similar lines.

    Please help

  5. #365
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    532
    Plugin Contributions
    3

    Default Re: Problem implementing the New York State Tax Table

    Quote Originally Posted by larryweiss View Post
    I have installed the Local Sales Tax Mod. The setup for New York State tax rates is monstrous.

    In the several threads regarding this mod, there is a suggestion to use The "New York State Tax Table" from b-u-s-h-k-i-l-l-f-a-r-m-e-s dot com

    The table seems like just the thing to cut a weeks work to a minutes work. The problem is, I don't understand it's use. It is probably a simple cut and paste using phpMyAdmin, but I am clueless as to how to do it. Can anyone advise me.

    Can someone tell me EXACTLY what to do here?

    The file begins with:

    zen cart local sales tax - NY county tax by zip code
    -- compiled by edited.com-- Please report errors to [email protected]
    --
    -- Table structure for table `tax_rates_local`
    -- Remove Old Table First

    DROP TABLE IF EXISTS `tax_rates_local`;

    CREATE TABLE `tax_rates_local` (
    `local_tax_id` int(11) NOT NULL auto_increment COMMENT 'tax id',
    `zone_id` int(11) default NULL COMMENT 'zen cart zone to apply tax',
    `local_fieldmatch` varchar(100) default NULL COMMENT 'name of field from delivery table to match',
    `local_datamatch` varchar(100) default NULL COMMENT 'Data to match delievery field',
    `local_tax_rate` decimal(7,4) default '0.0000' COMMENT 'local tax rate',
    `local_tax_label` varchar(100) default NULL COMMENT 'Label for checkout',
    `local_tax_shipping` varchar(5) default 'false' COMMENT 'Apply this tax to shipping',
    `local_tax_class_id` int(1) default NULL COMMENT 'Apply to products in what tax class',
    PRIMARY KEY (`local_tax_id`),
    UNIQUE KEY `local_datamatch` (`local_datamatch`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2263 ;

    --
    -- Dumping data for table `tax_rates_local`
    --

    INSERT INTO `tax_rates_local` VALUES (1, 43, 'postcode', '00501', 4.6300, 'Suffolk County Sales Tax', 'true', 1);
    INSERT INTO `tax_rates_local` VALUES (2, 43, 'postcode', '00544', 4.6300, 'Suffolk County Sales Tax', 'true', 1);
    INSERT INTO `tax_rates_local` VALUES (3, 43, 'postcode', '06390', 4.6300, 'Suffolk County Sales Tax', 'true', 1);
    INSERT INTO `tax_rates_local` VALUES (4, 43, 'postcode', '10001', 4.3750, 'New York County Sales Tax', 'true', 1);


    And then goes on with hundreds of similar lines.

    Please help
    Essentially it is, although, i wouldn't go about using it in THAT manner. However, I would recommend using the Install SQL Patch, after you fully backup your SQL table. I have Local Sales Tax Mod with the New York State tables already defined if you want to use it. It groups the tax rates by rate, then by local zip code. You might find it handle, and a lot less cumbersome then each zip getting its own row in that table.

  6. #366
    Join Date
    Apr 2008
    Location
    South Florida
    Posts
    197
    Plugin Contributions
    0

    Default Re: Local Sales Tax Mod - Support Thread

    Has anyone had a problem with it doubling the tax?

    Sub Total $2800.00
    6% Tax $168.00

    1.00% Local Tax should be $28.00 but comes up as $56.00


    Any thoughts?

  7. #367
    Join Date
    May 2005
    Posts
    361
    Plugin Contributions
    2

    Default Re: Local Sales Tax Mod - Support Thread

    fotofx,
    Doubling can occur if you have two local taxes that are identical.
    Have you turned on the debugging option to see if this is happening?

    LadyHLG

  8. #368
    Join Date
    Apr 2008
    Location
    South Florida
    Posts
    197
    Plugin Contributions
    0

    Default Re: Local Sales Tax Mod - Support Thread

    That is what it was .. Had a few zip codes that were in two zones.

  9. #369
    Join Date
    Sep 2010
    Posts
    1
    Plugin Contributions
    0

    Default Re: Problem implementing the New York State Tax Table

    Quote Originally Posted by retched View Post
    I have Local Sales Tax Mod with the New York State tables already defined if you want to use it. It groups the tax rates by rate, then by local zip code. You might find it handle, and a lot less cumbersome then each zip getting its own row in that table.
    I would *love* to get access to that. Is there some way you can make it available? Thanks in advance.

    -- Carlos

  10. #370
    Join Date
    Jan 2009
    Posts
    22
    Plugin Contributions
    0

    Default Re: Local Sales Tax Mod - Support Thread

    Any update on this issue?

    Quote Originally Posted by LadyHLG View Post
    Hey Zenners!
    Apparently there are some issues with the local tax mod and zen cart version 1.3.9. I have not yet figured out what is going on (it really is only evident when gift certs are involved as far as I know, but I have not done extensive testing as yet.)
    Until I figure out what is happening, I can not recommend the use of the Local Tax Mod with Zen Cart version 1.3.9.
    When i have more to report I will let everyone know.

    LadyHLG

 

 
Page 37 of 64 FirstFirst ... 27353637383947 ... LastLast

Similar Threads

  1. v151 Tax getting added twice after installing Local Sales Tax mod
    By RFree190 in forum General Questions
    Replies: 0
    Last Post: 19 Mar 2013, 05:10 AM
  2. v150 Problem with Local Sales Tax mod
    By pwithers in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 18 Jun 2012, 10:16 PM
  3. local sales tax mod not working
    By sharpie82 in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 2
    Last Post: 12 Dec 2011, 11:43 AM
  4. New York State Sales Tax by Zip Full Database for Local Sales Tax Mod 2011
    By SCHNiKEN in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 0
    Last Post: 11 Apr 2011, 04:51 AM
  5. Local Sales Tax Mod and Reward Points Mod
    By retched in forum Addon Payment Modules
    Replies: 1
    Last Post: 9 Feb 2011, 02:09 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