
Originally Posted by
noyloza
I am trying to use this add on for zencart 1.51, specifically for san francisco sales tax which is higher than the California sales tax. I have it installed properly and am using these zip codes but its still not working:
94102;94103;94104;94105;94107;94108;94109;94110;94111;94112;94114;94115;94116;94 117;94118;94121;94122;94123;94124;94127;94129;94130;94131;94132;94133;94134;9415 8
and I have it set to zipcode. Can somebody tell me if they are having trouble with their add on?
If you do not already have the zone setup, this SQL should add the San Fran 1% additional tax to the table, make sure you verify the zip codes and additional sales tax before you use this:
Code:
INSERT INTO tax_rates_local (`zone_id`, `local_fieldmatch`, `local_datamatch`, `local_tax_rate`, `local_tax_label`, `local_tax_shipping`, `local_tax_class_id`)
VALUES
(12, 'postcode', '94102;94103;94104;94105;94107;94108;94109;94110;94111;94112;94114;94115;94116;94 117;94118;94121;94122;94123;94124;94127;94129;94130;94131;94132;94133;94134;94158', 1.0000, 'San Francisco (1.0%)', 'true', 1);
Make sure that you have turned this mod on (see previous post) and set the other items listed in the readme file.
If this does not work we will need more info as to what is happening to make suggestions.