I do not seem to have the Commercebuilder folder or the AbleCommerceTax.cs file. Is there another option?The fix is in back-end code. If you have full source code, find CalculateTaxForDelivery method inside CommerceBuilder/Services/Taxes/AbleCommerce
AbleCommerceTax.cs
Our Zip Code being entered in shipping information
Re: Our Zip Code being entered in shipping information
Rick Morris
Brewhaus (America) Inc.
Hot Sauce Depot
Brewhaus (America) Inc.
Hot Sauce Depot
Re: Our Zip Code being entered in shipping information
Hi Rick,
Your business is located in Texas, right? I did a little reading about taxation there, and from what I could tell, you should have your tax nexus set to Shipping Address instead of Billing Address. Please do your own research though because I can't be liable for giving out erroneous tax advice
Can you check because the bug here should be very uncommon. Most businesses charge sales tax depending on where the shipment will be sent. So, if I ordered some hot sauce from here in Florida, but had it shipped to my friend in Texas, then I would expect to pay sales tax. I think this is normal for most states, but there must be some that tax on the billing address since it is an available option in the tax rule configuration.
Let me know please. You might be able to solve the problem without any code changes.
Katie
Your business is located in Texas, right? I did a little reading about taxation there, and from what I could tell, you should have your tax nexus set to Shipping Address instead of Billing Address. Please do your own research though because I can't be liable for giving out erroneous tax advice

Can you check because the bug here should be very uncommon. Most businesses charge sales tax depending on where the shipment will be sent. So, if I ordered some hot sauce from here in Florida, but had it shipped to my friend in Texas, then I would expect to pay sales tax. I think this is normal for most states, but there must be some that tax on the billing address since it is an available option in the tax rule configuration.
Let me know please. You might be able to solve the problem without any code changes.
Katie
Thank you for choosing AbleCommerce!
http://help.ablecommerce.com - product support
http://wiki.ablecommerce.com - developer support
http://help.ablecommerce.com - product support
http://wiki.ablecommerce.com - developer support
Re: Our Zip Code being entered in shipping information
Hi Katie,
Yes, we tax based on the shipping address, not the billing address.
Rick
Yes, we tax based on the shipping address, not the billing address.
Rick
Rick Morris
Brewhaus (America) Inc.
Hot Sauce Depot
Brewhaus (America) Inc.
Hot Sauce Depot
Re: Our Zip Code being entered in shipping information
Oh sorry! I had this backwards. The bug is when the nexus is set to shipping and not billing. I will try to see if we can get a hot patch for R6. It might be a few days though.
Thanks
Thanks
Thank you for choosing AbleCommerce!
http://help.ablecommerce.com - product support
http://wiki.ablecommerce.com - developer support
http://help.ablecommerce.com - product support
http://wiki.ablecommerce.com - developer support
Re: Our Zip Code being entered in shipping information
No problem, Katie. I am having one of those days myself! 

Rick Morris
Brewhaus (America) Inc.
Hot Sauce Depot
Brewhaus (America) Inc.
Hot Sauce Depot
Re: Our Zip Code being entered in shipping information
Katie any progress on a patch for R6?
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
Re: Our Zip Code being entered in shipping information
I'm really sorry Joe. I meant to get a patch published, but totally forgot.
I do have the code change so you can fix this right away:
Changes are in AbleCommerce tax provider.
/CommerceBuilder/Services/Taxes/AbleCommerce/AbleCommerceTax.cs
Insert this code at line 491:
So, the final block of code will look like this:
I do have the code change so you can fix this right away:
Changes are in AbleCommerce tax provider.
/CommerceBuilder/Services/Taxes/AbleCommerce/AbleCommerceTax.cs
Insert this code at line 491:
Code: Select all
// CREATE A TEMPORARY ADDRESS FOR TAX CALCULATION ONLY
shippingAddress = new Address();
Code: Select all
// ENSURE SHIPPING ADDRESS IS VALID
if (!shippingAddress.IsValidForTax)
{
// CREATE A TEMPORARY ADDRESS FOR TAX CALCULATION ONLY
shippingAddress = new Address();
shippingAddress.CountryCode = billingAddress.CountryCode;
shippingAddress.Province = AddressHelper.GetProvinceName(billingAddress.ProvinceId);
shippingAddress.PostalCode = billingAddress.PostalCode;
}
Thank you for choosing AbleCommerce!
http://help.ablecommerce.com - product support
http://wiki.ablecommerce.com - developer support
http://help.ablecommerce.com - product support
http://wiki.ablecommerce.com - developer support
Re: Our Zip Code being entered in shipping information
Thanks. Unfortunately this client doesn't have full source. I can let them know a patch is in the works?
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
Re: Our Zip Code being entered in shipping information
Yes, I have requested patches for R6 and R7. It will be a couple days at most.
Thank you for choosing AbleCommerce!
http://help.ablecommerce.com - product support
http://wiki.ablecommerce.com - developer support
http://help.ablecommerce.com - product support
http://wiki.ablecommerce.com - developer support
Re: Our Zip Code being entered in shipping information
You ROCK !
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
Re: Our Zip Code being entered in shipping information
Is there anything more on this yet? We just had another of these orders today, and the customer was quite upset about the change in shipping charge (enough to say that they would not purchase from us again).
Rick Morris
Brewhaus (America) Inc.
Hot Sauce Depot
Brewhaus (America) Inc.
Hot Sauce Depot
Re: Our Zip Code being entered in shipping information
I'm really sorry about that Rick. The patches are linked below -
Gold R7 - ftp://ftp.ablecommerce.com/patches/Patc ... ulates.zip
Gold R6 - ftp://ftp.ablecommerce.com/patches/Patc ... ulates.zip
Inside the zip file is a new Commercebuilder.dll which goes in the \Bin\ folder.
PLEASE MAKE A BACKUP OF YOUR ORIGINAL. I wanted to get it to you right away, but I have not had a chance to do a final test on the changes yet.
Gold R7 - ftp://ftp.ablecommerce.com/patches/Patc ... ulates.zip
Gold R6 - ftp://ftp.ablecommerce.com/patches/Patc ... ulates.zip
Inside the zip file is a new Commercebuilder.dll which goes in the \Bin\ folder.
PLEASE MAKE A BACKUP OF YOUR ORIGINAL. I wanted to get it to you right away, but I have not had a chance to do a final test on the changes yet.
Thank you for choosing AbleCommerce!
http://help.ablecommerce.com - product support
http://wiki.ablecommerce.com - developer support
http://help.ablecommerce.com - product support
http://wiki.ablecommerce.com - developer support
Re: Our Zip Code being entered in shipping information
Thank you, Katie.
Rick Morris
Brewhaus (America) Inc.
Hot Sauce Depot
Brewhaus (America) Inc.
Hot Sauce Depot