Tagged Questions
The vat tag has no wiki summary.
12
votes
6answers
4k views
If I sell products online in the US, do I need to collect sales tax?
If I sell software online in the US, do I need to collect sales tax? Does it matter whether my location is in the US or not? If so, who do I collect from (everybody)? And how do I pay it?
Also, ...
6
votes
2answers
417 views
Validate European VAT
What's the best workflow to validate VAT? Currently,we're only using VIES and relative SOAP, but it seems not to be working all that well, as it fails my own VAT number and few others that i know are ...
6
votes
7answers
297 views
To save prices with or without VAT?
I am curious what the best practice is. For example we have product entity, it has two fields: Price and VAT. What to save in Price value? Base price, and then calculate result price based on base ...
2
votes
3answers
384 views
working out VAT backwards always returns as 0 in c#
public string s()
{
double price = 123.12
double preVatPrice = (100 / (100 + 20) + price);
return preVatPrice.ToString();
}
in c# this always returns as '0' any ideas why?
2
votes
3answers
369 views
Validate VAT number offline
I'm writing a small app with different inputs from a file (like countrycode, vat number etc) and I have to validate that the vat numbers are in the correct format.
I've tried this one:
...
1
vote
3answers
153 views
How to select data between date ranges from 2 tables
Let suppose i have two table
1.Taxes
2.Products
I want to select sum of (product values)*(there respective Vat Value in taxes table as %)
where date of product less than date of tax and mDate is less ...
1
vote
1answer
149 views
Magento Commerce and Google Merchants UK VAT?
We have a Magento commerce store (running version 1.5.1.0) which has roughly 1800 products each with cost and retail price values entered into the database.
Using tax rules (we only sell to the UK) ...
1
vote
0answers
158 views
Magento: Deduct Tax at Checkout for (most) countries
I am working on a UK fashion store. The customer has a specific requirement - never add tax (VAT) at checkout; rather, have VAT built into the price, and deduct when applicable.
The use case is that ...
1
vote
3answers
2k views
Magento still displays VAT / TAX on checkout even though disabled via admin
I have Magento set up to not display VAT on checkout, but it is still adding at the total. It doesn't add it up to the total - which IS correct. IE If i have an item that costs £5 - with 20% VAT it is ...
1
vote
2answers
232 views
Add a 0 to the end of a decimal number to make sure it's always 2 decimals?
I am using the following code to work out an inc and ext VAT price:
$('#totalexvat').text(totalprice);
var vat = totalprice / 100 * 17.5;
vat = roundNumber(vat,2);
...
1
vote
3answers
618 views
VAT validity check
I have to build in some VAT formulas in a webpage.
When a user fills in a VAT number, i have to check if it's in the right validity format.
The control for Belgium is already done, but I can't find ...
0
votes
0answers
22 views
How to charge VAT using PayPal chained payments api
We have a marketplace application using paypal chained payments to sell items in the marketplace.
For users in certain states we need to charge VAT. I can't find any reference to taxes in the API.
I ...
0
votes
1answer
21 views
Collect VAT information
To validate for a VAT number, there are official web services http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl to do so or the website itself ...
0
votes
0answers
26 views
Magento Store Tax Zero
I have a Tax rate "VAT Standard" set up in my store it's assigned to all products and configured to show under System -> Configuration -> Tax. This was working before.
Since then I have deleted and ...
0
votes
1answer
382 views
How do you programmatically get tax rate in magento on product page [closed]
Say you want to programmatically get the VAT tax rate on product page in magento,how do you go about doing this.
0
votes
0answers
28 views
Charging VAT only for one currency in zendcart
I am using zendcart 1.3.8. I included a module for VAT. In my project, I'm using several currency types, but I have to include VAT only for pounds. At the moment it adds VAT for all types of ...
0
votes
0answers
60 views
UK VAT & Worldwide Tax implementation in WPF Application
Im not sure if this is an appropriate question for this site but after many searches I cant seem to find the information I need.
In my WPF C# application I have to charge TAX, VAT in the uk & ...
0
votes
0answers
165 views
ubercart tax apply : what represents the Taxed line items: and “Blank line” product
Does anyone have a documentation about the settings on this page?
I don't know what some options do
like "Blank line" product from the Taxed product types
or Taxed line items:
Shipping
Empty line
Tax
...
0
votes
3answers
232 views
VAT changes - how to change VAT and then round price up
With the UK VAT rate due to change in the New Year, several clients will need to update their sites to the new VAT rate. As prices are all stored in a mysql table (excluding VAT), changing the actual ...
0
votes
1answer
916 views
Magento, add VAT nr to billing address
It is possible in magento to add a VAT nr to your account but in belgium it's more common to add a VAT nr to your billing address.. is this possible in some kind of way ?