Zen Cart Logo
Forums / Currencies & Sales Taxes, VAT, GST, etc. / Local Sales Tax Mod - Support Thread

Local Sales Tax Mod - Support Thread

Views: 273,286

Results 361 to 380 of 659
2 Sep 2010, 2:21 AM
#361
fotofx avatar

fotofx

Zen Follower

Join Date:
Apr 2008
Location:
South Florida
Posts:
195
Plugin Contributions:
0

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 Sep 2010, 6:02 AM
#362
jasmel avatar

jasmel

Zen Follower

Join Date:
Feb 2008
Location:
Washington State
Posts:
230
Plugin Contributions:
0

Re: Local Sales Tax Mod - Support Thread

patternman:

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/showthread.php?p=727030#post727030
http://www.zen-cart.com/forum/showthread.php?p=901607#post901607
http://www.zen-cart.com/forum/showthread.php?p=908543#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

9 Sep 2010, 11:04 PM
#363
eric24v avatar

eric24v

New Zenner

Join Date:
Jul 2010
Posts:
15
Plugin Contributions:
0

Re: Local Sales Tax Mod - Support Thread

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

12 Sep 2010, 1:29 AM
#364
larryweiss avatar

larryweiss

New Zenner

Join Date:
Feb 2009
Posts:
23
Plugin Contributions:
0

Re: Local Sales Tax Mod - Support Thread

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

12 Sep 2010, 6:48 AM
#365
retched avatar

retched

Totally Zenned

Join Date:
Jun 2007
Location:
Bronx, New York, United States
Posts:
942
Plugin Contributions:
3

Re: Local Sales Tax Mod - Support Thread

larryweiss:

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.

15 Sep 2010, 8:17 PM
#366
fotofx avatar

fotofx

Zen Follower

Join Date:
Apr 2008
Location:
South Florida
Posts:
195
Plugin Contributions:
0

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?

16 Sep 2010, 12:13 AM
#367
ladyhlg avatar

ladyhlg

Zen Follower

Join Date:
May 2005
Posts:
361
Plugin Contributions:
1

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

16 Sep 2010, 12:25 AM
#368
fotofx avatar

fotofx

Zen Follower

Join Date:
Apr 2008
Location:
South Florida
Posts:
195
Plugin Contributions:
0

Re: Local Sales Tax Mod - Support Thread

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

22 Sep 2010, 2:43 PM
#369
ctotogo avatar

ctotogo

New Zenner

Join Date:
Sep 2010
Posts:
1
Plugin Contributions:
0

Re: Local Sales Tax Mod - Support Thread

retched:

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

24 Sep 2010, 7:55 PM
#370
tim_m avatar

tim_m

New Zenner

Join Date:
Jan 2009
Posts:
22
Plugin Contributions:
0

Re: Local Sales Tax Mod - Support Thread

Any update on this issue?

LadyHLG:

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

27 Sep 2010, 6:12 PM
#371
retched avatar

retched

Totally Zenned

Join Date:
Jun 2007
Location:
Bronx, New York, United States
Posts:
942
Plugin Contributions:
3

Re: Local Sales Tax Mod - Support Thread

ctotogo:

I would love to get access to that. Is there some way you can make it available? Thanks in advance.

-- Carlos

Here is the MySQL code for my table. You should be able to use the Install SQL Patches for it. If not, let me know and I'll help you with this. AGAIN, this is for New York State Only.

--
-- Table structure for table `tax_rates_local`
--
DROP TABLE IF EXISTS `tax_rates_local`;
CREATE TABLE IF NOT EXISTS `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` text 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`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ;
--
-- Dumping data for table `tax_rates_local`
--
INSERT INTO `tax_rates_local` (`local_tax_id`, `zone_id`, `local_fieldmatch`, `local_datamatch`, `local_tax_rate`, `local_tax_label`, `local_tax_shipping`, `local_tax_class_id`) VALUES
(1, 43, 'postcode', '10001;10002;10003;10004;10005;10006;10007;10008;10009;10010;10011;10012;10013;10014;10015;10016;10017;10018;10019;10020;10021;10022;10023;10024;10025;10026;10027;10028;10029;10030;10031;10032;10033;10034;10035;10036;10037;10038;10039;10040;10041;10043;10044;10045;10046;10047;10048;10055;10060;10069;10072;10079;10080;10081;10082;10087;10090;10094;10095;10096;10098;10099;10101;10102;10103;10104;10105;10106;10107;10108;10109;10110;10111;10112;10113;10114;10115;10116;10117;10118;10119;10120;10121;10122;10123;10124;10125;10126;10128;10129;10130;10131;10132;10133;10138;10149;10150;10151;10152;10153;10154;10155;10156;10157;10158;10159;10160;10161;10162;10163;10164;10165;10166;10167;10168;10169;10170;10171;10172;10173;10174;10175;10176;10177;10178;10179;10184;10185;10196;10197;10199;10203;10211;10212;10213;10242;10249;10256;10257;10258;10259;10260;10261;10265;10268;10269;10270;10271;10272;10273;10274;10275;10276;10277;10278;10279;10280;10281;10282;10285;10286;10292;10301;10302;10303;10304;10305;10306;10307;10308;10309;10310;10311;10312;10313;10314;10451;10452;10453;10454;10455;10456;10457;10458;10459;10460;10461;10462;10463;10464;10465;10466;10467;10468;10469;10470;10471;10472;10473;10474;10475;10499;11004;11005;11101;11102;11103;11104;11105;11106;11109;11120;11201;11202;11203;11204;11205;11206;11207;11208;11209;11210;11211;11212;11213;11214;11215;11216;11217;11218;11219;11220;11221;11222;11223;11224;11225;11226;11228;11229;11230;11231;11232;11233;11234;11235;11236;11237;11238;11239;11240;11241;11242;11243;11244;11245;11247;11248;11249;11251;11252;11254;11255;11256;11351;11352;11354;11355;11356;11357;11358;11359;11360;11361;11362;11363;11364;11365;11366;11367;11368;11369;11370;11371;11372;11373;11374;11375;11377;11378;11379;11380;11381;11385;11386;11390;11405;11411;11412;11413;11414;11415;11416;11417;11418;11419;11420;11421;11422;11423;11424;11425;11426;11427;11428;11429;11430;11431;11432;11433;11434;11435;11436;11439;11451;11484;11499;11690;11691;11692;11693;11694;11695;11697', 8.8750, 'New York City Sales Tax (8.875%)', 'false', 1),
(2, 43, 'postcode', '13054;13123;13157;13162;13301;13303;13304;13308;13309;13313;13316;13318;13319;13321;13322;13323;13328;13338;13341;13352;13354;13362;13363;13401;13403;13413;13417;13424;13425;13435;13438;13440;13441;13442;13449;13455;13456;13461;13469;13471;13476;13477;13478;13479;13480;13483;13486;13490;13492;13494;13495;13501;13502;13503;13504;13505;13599;14001;14004;14006;14010;14025;14026;14027;14030;14031;14032;14033;14034;14035;14038;14043;14047;14051;14052;14055;14057;14059;14061;14068;14069;14072;14075;14080;14085;14086;14091;14102;14110;14111;14112;14127;14134;14139;14140;14141;14150;14151;14169;14170;14201;14202;14203;14204;14205;14206;14207;14208;14209;14210;14211;14212;14213;14214;14215;14216;14217;14218;14219;14220;14221;14222;14223;14224;14225;14226;14227;14228;14231;14233;14240;14241;14260;14261;14263;14264;14265;14267;14269;14270;14272;14273;14276;14280', 8.7500, 'New York Sales Tax (Erie and Oneida Counties)', 'false', 1),
(3, 43, 'postcode', '00501;00544;06390;11001;11002;11003;11010;11020;11021;11022;11023;11024;11025;11026;11027;11030;11040;11041;11042;11043;11044;11050;11051;11052;11053;11054;11055;11096;11099;11501;11507;11509;11510;11514;11516;11518;11520;11530;11531;11535;11536;11542;11545;11547;11548;11549;11550;11551;11552;11553;11554;11555;11556;11557;11558;11559;11560;11561;11563;11564;11565;11566;11568;11569;11570;11571;11572;11575;11576;11577;11579;11580;11581;11582;11583;11588;11590;11592;11593;11594;11595;11596;11597;11598;11599;11701;11702;11703;11704;11705;11706;11707;11708;11709;11710;11713;11714;11715;11716;11717;11718;11719;11720;11721;11722;11724;11725;11726;11727;11729;11730;11731;11732;11733;11735;11736;11737;11738;11739;11740;11741;11742;11743;11745;11746;11747;11749;11750;11751;11752;11753;11754;11755;11756;11757;11758;11760;11762;11763;11764;11765;11766;11767;11768;11769;11770;11771;11772;11773;11774;11775;11776;11777;11778;11779;11780;11782;11783;11784;11786;11787;11788;11789;11790;11791;11792;11793;11794;11795;11796;11797;11798;11801;11802;11803;11804;11805;11815;11819;11853;11854;11855;11901;11930;11931;11932;11933;11934;11935;11937;11939;11940;11941;11942;11944;11946;11947;11948;11949;11950;11951;11952;11953;11954;11955;11956;11957;11958;11959;11960;11961;11962;11963;11964;11965;11967;11968;11969;11970;11971;11972;11973;11975;11976;11977;11978;11980', 8.6250, 'New York Sales Tax (Nassau and Suffolk Counties)', 'false', 1),
(4, 43, 'postcode', '14029;14707;14708;14709;14711;14714;14715;14717;14721;14727;14735;14739;14744;14745;14754;14774;14777;14786;14802;14803;14804;14806;14813;14822;14880;14884;14895;14897', 8.5000, 'New York Sales Tax (Allegany County)', 'false', 1),
(5, 43, 'postcode', '10509;10512;10516;10524;10537;10541;10542;10550;10551;10552;10553;10557;10558;10579;10701;10702;10703;10704;10705;10710;10801;10802;10804;10805;10901;10911;10913;10920;10923;10927;10931;10952;10954;10956;10960;10962;10964;10965;10968;10970;10974;10976;10977;10980;10982;10983;10984;10986;10989;10993;10994;12563', 8.3750, 'New York Sales Tax (Putnam and Rockland Counties, Mount Vernon, New Rochelle, Yonkers)', 'false', 1),
(6, 43, 'postcode', '13324;13329;13331;13340;13350;13357;13361;13365;13406;13407;13416;13420;13431;13454;13472;13475;13491', 8.2500, 'New York Sales Tax (Herkeimer County)', 'false', 1),
(7, 43, 'postcode', '10601;10602;10603;10605;10606;10607;10610;10650;10910;10912;10914;10915;10916;10917;10918;10919;10921;10922;10924;10925;10926;10928;10930;10932;10933;10940;10941;10943;10949;10950;10953;10958;10959;10963;10969;10973;10975;10979;10981;10985;10987;10988;10990;10992;10996;10997;10998;12501;12504;12506;12507;12508;12510;12511;12512;12514;12518;12520;12522;12524;12527;12531;12533;12537;12538;12540;12543;12545;12546;12549;12550;12551;12552;12553;12555;12564;12566;12567;12569;12570;12571;12572;12574;12575;12577;12578;12580;12581;12582;12583;12584;12585;12586;12590;12592;12594;12601;12602;12603;12604;12729;12746;12771;12780', 8.1250, 'New York Sales Tax (Dutchess Co., Orange Co., White Plains)', 'false', 1),
(8, 43, 'postcode', '12007;12008;12009;12010;12015;12016;12017;12018;12022;12023;12024;12025;12028;12029;12031;12032;12033;12035;12036;12037;12040;12041;12042;12043;12045;12046;12047;12050;12051;12052;12053;12054;12055;12056;12057;12058;12059;12060;12061;12062;12063;12064;12066;12067;12068;12069;12070;12071;12072;12073;12075;12076;12077;12078;12082;12083;12084;12085;12086;12087;12089;12090;12092;12093;12094;12095;12106;12107;12110;12111;12115;12116;12117;12120;12121;12122;12123;12124;12125;12128;12130;12131;12132;12133;12134;12136;12137;12138;12140;12141;12143;12144;12147;12149;12150;12153;12154;12155;12156;12157;12158;12159;12160;12161;12165;12166;12167;12168;12169;12172;12173;12174;12175;12176;12177;12179;12180;12181;12182;12183;12184;12185;12186;12187;12189;12192;12193;12194;12195;12196;12197;12198;12201;12202;12203;12204;12205;12206;12207;12208;12209;12210;12211;12212;12214;12220;12222;12223;12224;12225;12226;12227;12228;12229;12230;12231;12232;12233;12234;12235;12236;12237;12238;12239;12240;12241;12242;12243;12244;12245;12246;12247;12248;12249;12250;12252;12255;12256;12257;12260;12261;12262;12288;12301;12302;12303;12304;12305;12306;12307;12308;12309;12325;12345;12401;12402;12404;12405;12406;12407;12409;12410;12411;12412;12413;12414;12416;12417;12418;12419;12420;12421;12422;12423;12424;12427;12428;12429;12430;12431;12432;12433;12434;12435;12436;12438;12439;12440;12441;12442;12443;12444;12446;12448;12449;12450;12451;12452;12453;12454;12455;12456;12457;12458;12459;12460;12461;12463;12464;12465;12466;12468;12469;12470;12471;12472;12473;12474;12475;12477;12480;12481;12482;12483;12484;12485;12486;12487;12489;12490;12491;12492;12493;12494;12495;12496;12498;12502;12503;12513;12515;12516;12517;12521;12523;12525;12526;12528;12529;12530;12534;12541;12542;12544;12547;12548;12561;12565;12568;12588;12589;12593;12701;12719;12720;12721;12722;12723;12724;12725;12726;12727;12732;12733;12734;12736;12737;12738;12740;12741;12742;12743;12745;12747;12748;12749;12750;12751;12752;12754;12758;12759;12760;12762;12763;12764;12765;12766;12767;12768;12769;12770;12775;12776;12777;12778;12779;12781;12782;12783;12784;12785;12786;12787;12788;12789;12790;12791;12792;12901;12903;12910;12911;12912;12914;12915;12916;12917;12918;12919;12920;12921;12923;12924;12926;12929;12930;12933;12934;12935;12937;12939;12944;12945;12952;12953;12955;12957;12958;12959;12962;12966;12969;12970;12972;12976;12978;12979;12980;12981;12983;12985;12986;12989;12992;12995;13020;13021;13022;13024;13026;13027;13028;13029;13030;13031;13032;13033;13034;13035;13036;13037;13039;13040;13041;13042;13043;13044;13045;13051;13052;13053;13056;13057;13060;13061;13062;13063;13064;13065;13066;13068;13069;13071;13072;13073;13074;13076;13077;13078;13080;13081;13082;13083;13084;13087;13088;13089;13090;13092;13093;13101;13102;13103;13104;13107;13108;13110;13111;13112;13113;13114;13115;13116;13117;13118;13119;13120;13121;13122;13124;13126;13129;13131;13132;13134;13135;13136;13137;13138;13139;13140;13141;13142;13143;13144;13145;13146;13147;13148;13152;13153;13154;13155;13156;13158;13159;13160;13163;13164;13165;13166;13167;13201;13202;13203;13204;13205;13206;13207;13208;13209;13210;13211;13212;13214;13215;13217;13218;13219;13220;13221;13224;13225;13235;13244;13250;13251;13252;13260;13261;13290;13302;13310;13314;13315;13317;13320;13326;13332;13333;13334;13335;13337;13339;13342;13346;13348;13355;13364;13402;13408;13409;13410;13411;13415;13418;13421;13426;13428;13437;13439;13450;13452;13457;13459;13460;13464;13465;13468;13470;13482;13484;13485;13488;13493;13655;13730;13731;13732;13733;13734;13736;13737;13738;13739;13740;13743;13744;13745;13746;13747;13748;13749;13750;13751;13752;13753;13754;13755;13756;13757;13758;13760;13761;13762;13763;13774;13775;13776;13777;13778;13780;13782;13783;13784;13786;13787;13788;13790;13794;13795;13796;13797;13801;13802;13803;13804;13806;13807;13808;13809;13810;13811;13812;13813;13814;13815;13820;13825;13826;13827;13830;13832;13833;13834;13835;13837;13838;13839;13840;13841;13842;13843;13844;13845;13846;13847;13848;13849;13850;13851;13856;13859;13860;13861;13862;13863;13864;13865;13901;13902;13903;13904;13905;14003;14005;14008;14009;14011;14012;14013;14020;14021;14024;14028;14036;14037;14039;14040;14041;14042;14054;14056;14058;14060;14065;14066;14067;14070;14082;14083;14092;14094;14095;14098;14101;14103;14105;14107;14108;14109;14113;14120;14125;14126;14129;14130;14131;14132;14133;14138;14143;14144;14145;14167;14168;14171;14172;14173;14174;14301;14302;14303;14304;14305;14410;14411;14413;14414;14415;14416;14418;14420;14422;14423;14427;14428;14429;14430;14433;14435;14437;14441;14445;14449;14450;14452;14454;14462;14464;14466;14467;14468;14470;14472;14476;14477;14478;14479;14480;14481;14482;14485;14486;14487;14488;14489;14502;14505;14506;14507;14508;14510;14511;14513;14514;14515;14516;14517;14519;14520;14521;14522;14525;14526;14527;14529;14530;14533;14534;14536;14538;14539;14541;14542;14543;14544;14545;14546;14549;14550;14551;14555;14556;14557;14558;14559;14560;14563;14568;14569;14571;14572;14580;14586;14588;14589;14590;14591;14592;14601;14602;14603;14604;14605;14606;14607;14608;14609;14610;14611;14612;14613;14614;14615;14616;14617;14618;14619;14620;14621;14622;14623;14624;14625;14626;14627;14638;14639;14642;14643;14644;14645;14646;14647;14649;14650;14651;14652;14653;14660;14664;14673;14683;14692;14694;14706;14719;14726;14729;14730;14731;14737;14741;14743;14748;14751;14753;14755;14760;14766;14770;14772;14778;14779;14783;14788;14801;14805;14807;14808;14809;14810;14812;14814;14815;14816;14817;14818;14819;14820;14821;14823;14824;14825;14826;14827;14830;14831;14836;14837;14838;14839;14840;14841;14842;14843;14844;14845;14846;14847;14850;14851;14852;14853;14854;14855;14856;14857;14858;14859;14860;14861;14863;14864;14865;14867;14869;14870;14871;14872;14873;14874;14876;14877;14878;14879;14881;14882;14883;14885;14886;14887;14889;14891;14892;14893;14894;14898;14901;14902;14903;14904;14905;14925', 8.0000, 'New York Sales Tax (8% Counties)', 'false', 1),
(9, 43, 'postcode', '12851;12852;12855;12857;12858;12870;12872;12879;12883;12913;12928;12932;12936;12941;12942;12943;12946;12950;12956;12960;12961;12964;12974;12975;12977;12987;12993;12996;12997;12998;13305;13312;13325;13327;13343;13345;13367;13368;13404;13433;13473;13489;13601;13602;13603;13605;13606;13607;13608;13611;13612;13615;13616;13618;13619;13620;13622;13624;13626;13627;13628;13631;13632;13634;13636;13637;13638;13640;13641;13643;13648;13650;13651;13656;13657;13659;13661;13665;13671;13673;13674;13675;13679;13682;13685;13691;13692;13693;14048;14062;14063;14081;14135;14136;14166;14701;14702;14703;14704;14710;14712;14716;14718;14720;14722;14723;14724;14728;14732;14733;14736;14738;14740;14742;14747;14750;14752;14756;14757;14758;14767;14769;14775;14781;14782;14784;14785;14787', 7.7500, 'New York Sales Tax (Chautauqua Co., Essex Co., Jefferson Co., Lewis Co.)', 'false', 1),
(10, 43, 'postcode', '10501;10502;10503;10504;10505;10506;10507;10510;10511;10514;10517;10518;10519;10520;10521;10522;10523;10526;10527;10528;10530;10532;10533;10535;10536;10538;10540;10543;10545;10546;10547;10548;10549;10560;10562;10566;10567;10570;10571;10572;10573;10576;10577;10578;10580;10583;10587;10588;10589;10590;10591;10594;10595;10596;10597;10598;10604;10706;10707;10708;10709;10803', 7.3750, 'New York Sales Tax (Westchester County)', 'false', 1),
(11, 43, 'postcode', '14424;14425;14432;14443;14453;14456;14461;14463;14469;14471;14475;14504;14512;14518;14532;14537;14547;14548;14561;14564;14585', 7.5000, 'New York Sales Tax (Ontario County)', 'false', 1),
(12, 43, 'postcode', '12019;12020;12027;12065;12074;12108;12118;12139;12148;12151;12164;12170;12188;12190;12801;12803;12804;12808;12809;12810;12811;12812;12814;12815;12816;12817;12819;12820;12821;12822;12823;12824;12827;12828;12831;12832;12833;12834;12835;12836;12837;12838;12839;12841;12842;12843;12844;12845;12846;12847;12848;12849;12850;12853;12854;12856;12859;12860;12861;12862;12863;12864;12865;12866;12871;12873;12874;12878;12884;12885;12886;12887;12922;12927;12949;12965;12967;12973;13353;13360;13436;13613;13614;13617;13621;13623;13625;13630;13633;13635;13639;13642;13645;13646;13647;13649;13652;13654;13658;13660;13662;13664;13666;13667;13668;13669;13670;13672;13676;13677;13678;13680;13681;13683;13684;13687;13690;13694;13695;13696;13697;13699', 7.0000, 'New York Sales Tax (Hamilton Co., St. Lawrence Co., Saratoga Co., Warren Co., Washington Co.)', 'false', 1);
10 Nov 2010, 9:24 PM
#372
supersnow avatar

supersnow

Zen Follower

Join Date:
Apr 2007
Location:
California, USA
Posts:
233
Plugin Contributions:
0

Re: Local Sales Tax Mod - Support Thread

LadyHLG have you had any progress with 1.3.9 and this mod? As I am rebuilding our site and have been using the the local taxes very successfully on my 1.3.7 site but I need to upgrade to 1.3.9 ASAP.

Thank you in advance.

11 Nov 2010, 2:41 PM
#373
ladyhlg avatar

ladyhlg

Zen Follower

Join Date:
May 2005
Posts:
361
Plugin Contributions:
1

Re: Local Sales Tax Mod - Support Thread

supersnow & others,
I apologize for my lack of attention to this thread of late. But the new job leaves me very little time for work on personal development projects like this one.
I have begun work on 1.3.9 version of this, but the changes from 1.3.8 to 1.3.9 are significant enough that I really need to get more familiar with 1.3.9 before I can proceed.
I haven't given up on it and plan to devote some time to this today, after which I will give you all an update on the progress tonight or tomorrow.

LadyHLG

13 Nov 2010, 5:10 PM
#374
ladyhlg avatar

ladyhlg

Zen Follower

Join Date:
May 2005
Posts:
361
Plugin Contributions:
1

Re: Local Sales Tax Mod - Support Thread

Hey Zenners,
I am getting close to have the Local Sales Tax Mod for 1.3.9 ready.
Would there be any takers out there that would like to do some beta testing on the mod for me? I just dont have enough free time to do all the testing myself.
Please send me a PM if you are interested.
Thanks
LadyHLG

22 Nov 2010, 8:53 PM
#375
spembleton avatar

spembleton

Zen Follower

Join Date:
Jun 2010
Location:
Holland, MI
Posts:
232
Plugin Contributions:
0

Re: Local Sales Tax Mod - Support Thread

I am using ZenCart v1.3.9f and I believe I have Local Sales Tax Mod v2.0a (How do I tell?), I would like to upgrade to the 2.4 version so I can install the Tax Exempt patch. Should I do new install? If the add-on makes changes to my database, I want to ensure that that will not causes a problem to do it a second time.

24 Nov 2010, 7:12 PM
#376
supersnow avatar

supersnow

Zen Follower

Join Date:
Apr 2007
Location:
California, USA
Posts:
233
Plugin Contributions:
0

Re: Local Sales Tax Mod - Support Thread

Thanks for the update LadyHLG. Your the best!

Let me know when you are ready. I am working on a new install as I will be merging my active store into this new install once I have everything working. We did want to go live next week.

I have a customer Tax exempt module installed, COWOA and dual pricing. So I am not sure if I am a good candidate.

What files are affected? and I will see how much merging I will need to do.

Thanks again for the update!

24 Nov 2010, 11:16 PM
#377
ladyhlg avatar

ladyhlg

Zen Follower

Join Date:
May 2005
Posts:
361
Plugin Contributions:
1

Re: Local Sales Tax Mod - Support Thread

I will try to get the files to you after the holiday weekend.
I have not set this up to work with the tax exempt mod yet. I wanted to be sure it works with the new version of zen before I made any modifications beyond that.

Have a good Thanksgiving Everyone!
LadyHLG

30 Nov 2010, 1:43 AM
#378
jasmel avatar

jasmel

Zen Follower

Join Date:
Feb 2008
Location:
Washington State
Posts:
230
Plugin Contributions:
0

Re: Local Sales Tax Mod - Support Thread

kramergutt:

I am having the same issue as some of your other users where if I use a discount coupon with taxes, the coupon is not subtracted. If no taxes, the coupon is works fine. After changing the order to apply the coupon after the tax, it works in a confusing way.

Get total showing
and tax is based on that total correctly
then is shows the coupon subtracted at face value,
but with my settings it does correctly subtract the coupon and any tax on that amount. That is correct because you cannot tax on what they did not spend.

So overall the calculations are correct, but it will confuse the customer. Also, I am creating a summary tax report, and that becomes an issue because the tax showing is for the city and state, but the values are on the sub totals before any discounts. So the amounts showing on the report are incorrect since we did not collect say 4% on $45, but rather 4% on $20 because of a $25 coupon.

Has there been any progress on a possible fix? If I could apply the coupon before the tax, the tax would be calculated correctly and stored in the DB correctly and my customers would see the actual tax they were charged correctly.

Please Please Help, our site is live and I want them to be able to use discount coupons.

Zen 1.3.8a
Tax module 2.4

Thanks, and I do love the mod. Good work. :clap:

I have searched far a wide for this. Has this been addressed? Discount coupons work great for customers outside of WA state but local customers don't get to view the discount coupon.

It looks like this question didn't get answered. Or my searches aren't returning the answer.

I have a CyberMonday $20.00 off coupon code... and a few local customers calling our office.

30 Nov 2010, 1:58 AM
#379
ladyhlg avatar

ladyhlg

Zen Follower

Join Date:
May 2005
Posts:
361
Plugin Contributions:
1

Re: Local Sales Tax Mod - Support Thread

jasmel (kramergutt if you are still out there),
I'm sorry I never saw this post!
So I have to start by asking the obvious question, have you tried adjusting the sort order of the coupons and the local tax?

LadyHLG

30 Nov 2010, 2:04 AM
#380
jasmel avatar

jasmel

Zen Follower

Join Date:
Feb 2008
Location:
Washington State
Posts:
230
Plugin Contributions:
0

Re: Local Sales Tax Mod - Support Thread

LadyHLG:

jasmel (kramergutt if you are still out there),
I'm sorry I never saw this post!
So I have to start by asking the obvious question, have you tried adjusting the sort order of the coupons and the local tax?

LadyHLG

Sub-Total: $37.85
Discount Coupon: JMMCYBER20 : -$20.00
Free Shipping Options (Free USPS First-Class Mail (Domestic or International)): $0.00
Local sales tax: $1.16
98208-4368 Local Tax 1.80%: $0.68
Total: $39.69

(I guess they get to "view" it but not see the discount being applied to their cart)

It looks like I have the coupon code before the shipping and the tax info.

I haven't tried moving it around. Would you suggest having the coupon be placed after taxes?

*coupon code only good today.. so if anybody happens to come across it (no big deal)