Magento Tax Prices Display - magento

Currently my site displays product prices both including and excluding VAT (tax). i.e. exc Vat £100, inc Vat £120.
I find on non taxable products, it is a bit unnecessary to have, exc VAT £100, inc VAT £100, displayed, so my question is. How do I configure my store to display just one price if the non taxable and taxable prices are the same?
Thanks.
WL

In admin->System->configuration->sales->tax/vat
Try changing each setting for
Display Full Tax Summary : NO

Related

magento cart price issue

I am using Magento 1.8.1.0.
I have defined no catalog price rule.But i am applying special price on some selected products. On product catalog page the price and special price and the discount percent as sale is shown on that product. But when i add these products to the cart it doesn't shows the price of product as it is but it shows the price after applying ((price*specialprice)/100) rule in unit price and subtotal and grand total.
for example:
price is $79
specialprice is $71
sale discount is 10 %
the result wanted in cart (for quantity one) is as
unit price is $71
subtotal is $71
grand total is $71
but it is showing as
unit price is $56.09
subtotal is $56.09
grand total is $56.09
i am new on Magento so please help me soon.
Thanks in advance.....
Don't worry guys....
I have solved this problem myself..
The problem was in (the calculation as i have mentioned) inthe file price.php located in Mage/Bundle/Model/Product...
It is calculating the specialPrice as (finalprice*SpecialPrice)/100.. I just changed it and now everything is going welll....

Magento VAT not being included in price on product page (and, yes, shipping origin IS set correctly)

I have a puzzling problem. I have set up my catalog to include VAT in the prices but for some reason (although VAT is being calculated correctly) it is NOT being displayed correctly including VAT on the product pages. The products' prices include VAT, I have configured Magento so that prices include VAT, etc. but nonetheless VAT is actually being backed out of the prices on the product page.
I HAVE SET the shipping origin correctly and VAT is being calculated correctly. Obviously, I'm missing something.
HELP!
Summary:
Prices shown correctly in backend (includes VAT)
Prices shown incorrectly in frontend (does not include VAT)
Tax calculation based on shipping address
Shipping origin set properly
Catalog prices including tax
Shipping prices including tax
VAT calculated correctly
have you checked below setting :-
System configuration >> tax >> Price Display Setting >> Display Product Prices In Catalog

Magento - Tax Excluding Total and Including Total the same

I have spent nearly 2 days now trying to get these damn tax rules to work in Magento.
I have a product. I have one Product Tax Class. I have one Customer Group. I have one Tax Zone (UK # 20%). I have one Tax Rule for this zone, Product Tax Class and Customer Group.
The tax settings are as follows:
When I add a product to my cart, the product price is £695. The Cart totals are as follows:
This is clearly wrong. If the product price is £695 and I've specified that this price is excluding tax, then 20% should be added to this cost. At the very least, the two Grand Total costs should be different!
The two very last things I've done were to delete the cache manually (via FTP) and to re-index all the indexes.
There are two settings to break this configuration into.
For Tax display.
For Tax calculation.
If you check your shopping cart display setting you will find you stated display price, display subtotal and display shipping to include taxes.
Play with those display settings and you will get result.

Magento entering included prices

I have a problem with included tax prices. Example like this
I have a product included tax price $100
I want to enter this price from admin as $100.
But if shipping adress location is X country, it must be 5.26% tax.
If location is Y country, there is no tax.
I want to display price $100 for all of them in catalog pages.
But when user select X country then order, invoice and review must be displayed like this.
Subtotal $95
Tax $5
Grandtotal $100
When the second case i mean in Y country selected then
Subtotal $100
Grandtotal $100
If it's possible please help me. I burned out already.
I think the closest solution to your problem that magento can offer is
1. set price in admin including tax which means the price you enter while creating the product is price including tax. To do this Goto System->Configuration page. Click on the Tax section and under the "Calculation Settings" tab, set "catalog price " to "Including tax". Now price entered for the products are assumed to be including tax.
In the same tax setting page, set the "Display Product Prices In Catalog" as "Including tax".
Now set up tax rates and rules as your requirement in Sales->Tax -> Tax rules and Tax rates pages.
And there you have it.
Product prices in catalog listing will show product including tax, ie $100
And when you add product to cart. The cart will show
Subtotal = $100
Tax = $xx
Grand Total = $100
The easiest way to do this is to just set the price to 95 and setup tax rules using Magento's already built in tax rules. Login admin and go to Sales>Tax>Manage Tax Rules and Manage Tax Zones & Rates.
That will allow you to set tax for one country, and a different tax for another.
There is no pre-built way that I know of that allows you to have tax included in the price for some places and not others (if at all)
Maybe consider using the tax rules with Catalog Price Rules and do something similar.

How do I configure magento to display prices including the TAX?

I'm struggling to configure my Magento store to do the following with TAX.
I want to give a product a price which includes the tax amount specified i.e 20% so when I add it to the cart the TAX and grand total are displayed correctly.
For example:
My product has a price of £20. 20% TAX of £3.33 is built into the price. When this product is added to the cart I'd like the cart to display the TAX amount of £3.33 and the grand total of £20.
Right now all I can get is the grand total to add the TAX on top totalling £23.33. Also the display price is £23.33 not £20.
I'd love some help!
Look under System/Configuration/Sales/Tax/Calculation
There are two important choices here
Catalog prices include tax
Shipping prices include tax
See magento prices inclusive of tax
Add this code in your phtml file where you getting the product price.
$_priceIncludingTax = Mage::helper('tax')->getPrice($_product, $_product->getFinalPrice());
If you want to display price on frontend with tax, go to:
System -> Configuration -> SALES -> Tax -> Price Display Settings -> Display Product Prices in Catalog
You have three options there. To show product price:
Excluding Tax
Including Tax
Including and Excluding Tax
Source: http://blog.chapagain.com.np/magento-display-product-price-including-tax/

Resources