Magento : Different Tax Based On Shipping State - magento

I want set different tax for different state based on customer shipping address state.
I have added Tax class from admin for different tax and it's working. but I want product price should not change.
If the product price is 100 (incl. tax) than tax should be deducted from the base price. Means for state 1 if the tax is 10% product price should be 90(excl. tax) and 10 for tax. For state 2 if tax is 5% then price should be 95 and 5 for tax.
Can Any One Have Idea.

If I understood you correctly, Magento allows this out of the box.
Under System -> Configuration -> Sales -> Tax -> Calculation Settings, you can set Catalog Prices to Including Tax.
This means that prices that you assign to products already include tax. Magento will than calculation tax amount based on products tax class. For different tax rates tax amount will be different, but price including tax will always be same.

Related

Prestashop - Default VAT rate for visitors that are not connected

I have set up a shop using Prestashop. I created a tax rule for my products and entered the VAT rates of all EU countries we sell to. When a user orders a product the VAT amount is calculated according to the address/country he entered in the checkout process, this works fine.
Unfortunately the VAT rate when the user is not connected is wrong. It should be 19% and not 17%, thus the products in the shop show wrong prices, e.g. 59,97 € instead of 60 €.
I haven't found out how the Prestashop frontend determines the VAT rate to be used to calculate the product price. There is no default VAT rate setting and the first rate in the table (lowest ID) has a VAT rate of 19%.
Does anybody know how that works ?
Thank you very much.
You can set default tax rule for each product, when editing a product in back office.
You have the ability to decide if a visitor/guest customer group should see the prices with/without
taxes applied by using the setting in Shop Parameters > Customer Settings > Groups
(there's a "Price display method" selector there).
If you want your visitor's context country being set without having them to actually enter an address,
you should enable native Geolocation (International > Localization > Geolocation).
I found out how this works. Under International -> Localization you can set the store's default country. Set it to the country you like and the prices will be shown with the vat rate of that country if configured in the tax rules.

How to set County Vise Tax in Magento

I want to have magento store running in Nevada USA, Nevada have different sales tax rate for different counties, please see this URL for tax rates.
To achieve this, I have done below things
Setup Tax Zones and Rates (SALES >> TAX >> Manage Tax Zones & Rates)
Setup Product Tax Class (SALES >> TAX >> Product Tax Classes)
Setup Customer Tax Class (SALES >> TAX >> Customer Tax Classes)
Imported Tax Rates (SALES >> TAX >> Import / Export Tax Rates)
here is the screenshots for TAX ZONES & RATES SETUP and tax rates in CSV
The Issue is this setup is not working, it works for only last zipcode of county in CSV sheet.
Please help me if anyone have any idea
You can check Magento Cigar Tax Manager extension that allows admin to set Taxes on product categories at State, County, City levels.
It calculates / sum-up Tax value on each product/category in the cart based on State, County, City entered in shipping address by a customer.
If a product is assigned to category which is not assigned any State/County/City Tax values, in such cases, that product will be assigned with default tax values.

Tax and discount setting in Magento

Magento : 1.6 is My version.
I am facing some tax related setting issue and no configuration looks like working.
Here is the explanation.
Tax on product 20%.
Product cost 25(exclusive tax).
On site all prices are displayed inclusive tax.
Product cost inclusive tax is 30.
If 2 qty is purchased.
Here on cart page.
30 * 2 = 60 subtotal.
Discount 10%(calculated on Total) : 6
Want Tax to be on discounted price but it shows 10 ( should be 9 as calcuate tax after discount is set.)
Total : 54 this is right.
My problem is that on cart and elsewhere Tax is displayed as 10 where as it should be 9.
I want to eliminate this.
Any configuration(didnt find one) or code modification will be ok.
Did you try back-end Tax settings?
Under Sales >Tax > Calculation Settings:
Apply Customer Tax - Before Discount or After Discount
Apply Discount on Prices - Excluding Tax or Including Tax
For My above question I looked into various post.
Also I did go through magento code.
Finally after going through a post by Alan storm I conculded that If one wants to achieve results as per My query then following should be done:
1. Set tax exclusive.
2. overwrite all blocks so that at needed places tax is displayed as inclusive but for magento calculation it is exclusive.This alone will give result as needed.
3. This means overriding lots of blocks with magento.

Magento - VAT for shipping

I'm trying to figure out where to locate the function(s) that set the VAT for the shipping in Magento; both in the checkout and in the order made by the customer. If possible, the last function that is run that calculates the final VAT for the shipping might be the best one to override. The thing is that I want to make the VAT for shipping vary depending on the VAT on the products in the cart.
Take for example two products that cost 100$ each.
One product has a 25% VAT, while the other product has a 12.5% VAT.
Now, what I'd like to do is to calculate the VAT of the shipping by running the following calculation:
((100*25)+(12.5*100))/200 = 18.75
This would mean that the VAT on the shipping would be 18.75%.
While I'm on it, I also wonder how to get the VAT for each product in the cart, since each product can have a different tax-class.

10cent per product tax magento

I would like to apply a flat 10 cent per product tax to my magento store, is there a way to set this up within the system already?
Read this article about setting up tax rules in Magento. Another resource here.
Create Product Tax Class (Sales->Tax->Product Tax Classes)
Create Tax Rate (Sales->Tax->Manage Tax Zones & Rates)
Create Tax Rule (Sales->Tax->Manage Tax Rules)
While creating product, apply that Product Tax Class to the product.

Resources