10cent per product tax magento - 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.

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.

Magento : Different Tax Based On Shipping State

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.

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.

Override tax calculation management in Magento

I need to override the way magento calculates taxes.
I need to change a customer's tax class on the fly, when he changes his addresses o fills a VAT number.
To do this i figured out that rewriting the Customer method getTaxClassId() was enough but it is not. I found out that to make its calculations Magento uses the customer's tax class and also his group's tax class.
To calculate the right rate, group and customer tax class must be the same.
The problem is that I can't override group's tax class ID because when you do
Mage::getModel("customer/group")->getTaxClassId($groupID)
I can't determine what customer it is referencing to.
So maybe I can try another approach: I was thinking to rewrite the tax rule calculation class. The goal is to redefine tax rules on a Product Tax Class, CUSTOMER Tax Class but I'm unable to understand where Magento does this.
Can anyone help me?
Thank you!

Magento - How can I add a non-taxable fee to a taxable product?

We are using Magento EE 1.12. We have associated fees with individual products that cannot be taxed, however the product itself can be. The desired solution will be similar to a custom option where the fee is included on the same line item as the product and included in the product's price and therefore in the order subtotal. The only problem with a custom option is that the fee is taxed along with the product.
We've gone through several scenarios but I think the most likely solution is to use a custom option, but after the tax has been calculated we will reduce the tax to the correct amount. We tax on the subtotal and shipping. We will have access to the amount of fees so we can get the tax on that total and reduce the order tax amount.
Does this seem like a good solution? Does anyone have other ideas?
Make it a bundle product, and put in a product which is not taxable.

Resources