Re: Local Sales Tax Mod - Support Thread
Lady HLG,
Thank you for your work on this mod.
I just installed it but the taxes aren't showing up in checkout, all that is there is a : (as in Tax : %).
I have verified that I have my zone and zone definition correctly set for US, CA.
The tax class is correctly set for Taxable Goods (which all of my products are).
There are no problems entering data into the mod; all of the files were correctly uploaded.
When I turn on debugging, nothing different happens. It seems as though the db table just isn't being read. I installed the SQL patch directly via phpmyadmin and have double-checked that all the data I'm entering via ZenCart is being inputted correctly.
It's just not getting back to ZC. I even tested adding it to a tax rate entered into ZC tax; that rate showed and was added correctly into the checkout total, but not the mod rate.
I've also verified that, in my test sales, I typed each city (which I'm doing my taxes by) exactly how I entered it in.
I'm running ZC 1.3.9h.
If you could offer some help, I would appreciate it. I looked through this thread and didn't seem to find this problem (but I might have overlooked it through bleary eyes :\
Thanks!!
Re: Local Sales Tax Mod - Support Thread
wendyandmilo,
There are a few other setting that can effect how the mod behaves. Check you settings for how taxes are displayed (There is a new setting for combining or splitting taxes) I believe these are under Configuration -> My Store.
Also, have you checked your sort order for the mod?
Have a look and let us know if any of these setting resolve your issue.
Good Luck
LadyHLG
Re: Local Sales Tax Mod - Support Thread
I'm trying to get this to work correctly, but having some trouble. I've got it set to apply taxes based upon zip codes. There are 12 different tax rates. Under Locations/Taxes>Local Sales Taxes I've got all 12 set-up. Tax Zone is California, Apply to is postcode, Look for is the zip codes, Tax Rate is set (each is different), Tax Description is Local Tax, Tax Shipping is false and Tax Class is Taxable Goods.
The problem is that it's charging all 12 taxes to the item, not just the one based upon the shipping zip code.
Thanks!
Re: Local Sales Tax Mod - Support Thread
Lady HLG,
Nothing is working.
Like you asked, I verified that the taxes are set to show up. I couldn't find where there was the option of splitting or combined so I'm not sure about that.
I've also changed the mod order several time, and nothing works.
I'm really at a loss.
Re: Local Sales Tax Mod - Support Thread
wendyandmilo,
Look under Configuration -> My Store and tell me what you have for the following:
Tax Decimal Places
Basis of Product Tax Shipping
Basis of Shipping Tax Shipping
Sales Tax Display Status
Show Split Tax Lines
jeking,
Need more information, what version of the cart are you on, what version of the mod do you have? Have you tried turning on debugging? What does it show you?
LadyHLG
Re: Local Sales Tax Mod - Support Thread
Thanks LadyHLG,
Zen is v1.3.9h and the mod is 2.5
I have turned on debugging and it shows all the tax rates being applied. :-)
It's a test site but the url is zenbug.blissfulwebdesigns DOT com/index.php?main_page=index&cPath=71 Maybe seeing is better than me explaining.
Thanks!
1 Attachment(s)
Re: Local Sales Tax Mod - Support Thread
Lady HLG,
Here is My Store -> Config. I do not have an option for split tax lines. Is that another mod that I need?
Perhaps I just need to revert to a non-sales tax mod version, and re-install?
Re: Local Sales Tax Mod - Support Thread
LadyHLG,
Ok so finally had some time to work this issue regarding the local taxes and the customer tax exempt and why it was working and now no local taxes show for any customer.
So on my test site I reinstalled the local taxes module without any local tax modified files for the tax exempt files. And the local taxes appear again and worked for all customers. The tax exempt customers shows the local taxes but not the normal states taxes as I thought would happen. And the normal customers showed the correct local and correct state tax.
So now the problem is to get the local taxes not to show with the tax exempt set to ALL.
Then I uploaded the two files you gave me to work with the tax exempt from the extra functions folder and the order total folder. Then the local taxes disappear from all customers again.
So I think something is not working with the check_exempt_mod() in functions_local_taxes.php:
Code:
//check for exempt mod
function check_exempt_mod(){
// get customer exempt status
global $db;
if ($_SESSION['customer_id']) {
$customers_id = $_SESSION['customer_id'];
$customer_check = $db->Execute("select * from " . TABLE_CUSTOMERS . " where customers_id = '$customers_id'");
}
if ($customer_check->fields['customers_tax_exempt'] = "ALL") {
return false;
}else{
return true;
}
}
I really would love for this to work. Thanks again for such a great mod!
Re: Local Sales Tax Mod - Support Thread
Also noticed something else. If a customer is in the state but NOT in the local tax zip code, the local zipcode shows up but with a $0 in the order total.
But if the customer is out of the state then no stat tax shows and no local sales tax shows.
Not sure why that is showing for the in state customer even though they are not in the county /zipcode that I need collect the extra tax for? I know that is not charging them as it is a $0 amount but it shouldn't even be showing that line - should it?
Re: Local Sales Tax Mod - Support Thread
Quote:
Originally Posted by
LadyHLG
Hi Debra,
I only recently found out about the Tax Cloud myself. I haven't had the time to investigate it much, but it looks very promising. I too had looked at Avalara quite some time ago, but the cost was ridiculous for a small business. I can only hope that Tax Cloud remains free or low cost otherwise it will be just like Avalara.
Ultimately, it would be nice if my mod became obsolete and everyone could move over to the Tax Cloud method.
My suggestion is to really take a look through their site and maybe set up a test site and try out the mod and see how it works.
If you do, drop us a note and let us know how it goes.
Good Luck,
LadyHLG
Hi, Lady HLG,
I've been talking to TaxCloud. They will figure the sales tax for any of the 13,000 taxing jurisdictions. They will collect and remit to the states only in the 24 streamlined states for free. Those states are set up to foot the remittance fee.They say that there are 4 more states with bills in legislature at this time. Since we are in one of the 24 states that they remit to we might just go that direction. But I sure have learned a lot from this thread. Thank you.
I'll keep in touch.
DebraM.