2014-05-11

Created page with "{{Flag_en}} This page explains how vat calculation works (or can work depending of options you choose) into Dolibarr. {{Flag_fr}} Cette page explique les différentes règles de..."

New page

{{Flag_en}} This page explains how vat calculation works (or can work depending of options you choose) into Dolibarr.

{{Flag_fr}} Cette page explique les différentes règles de calcul des taxes dans Dolibarr.

= Standard VAT and rounding rules =

Let's start with the example we will use. Imagine an invoice that contains the following lines (We also live into a country where total must be rounded with 2 decimal numbers).

{|class="wikitable centre" width="80%"

|- valign="top"

|| ||A<br>Description||B<br>Quantity||C<br>Unit price||D<br>Vat rate||E<br>Total without tax<br>=(B*D)||F<br>Exact tax amount<br>=(B*D*E)||nowrap="nowrap"|G<br>Tax amount rounded<br>on 2 dec<br>=round(F)||nowrap="nowrap"|H<br>Exact price<br>inc tax<br>=(E+F)||nowrap="nowrap"|I<br>Price inc tax rounded<br>on 2 decimals<br>=(E+G)

|-

||1||nowrap="nowrap"|Product alpha||1||1.24||10%||1.24||0.124||0.12||1.24+0.124=1.364||1.36

|-

||2||nowrap="nowrap"|Product beta||1||1.24||10%||1.24||0.124||0.12||1.24+0.124=1.364||1.36

|}

We have 2 ways to calculate the total of invoice: making a sum of rounding lines or rounding the sum of lines.

1) If we choose to make the sum of lines after rounding (on 2 decimals) lines, we get:

* Total without tax: 1.24(E1) + 1.24(E2) = '''2.48'''

* Total tax 10%: 0.12(G1) + 0.12(G2) = '''0.24''' (we sum the rounded values of tax on each line)

* Total inc tax (we sum total without tax + total tax): 2.48(Ex) + 0.24(Gx) = '''2.72'''

Note that if we sum rounded price inc tax on each line, we get: 1.36(I1) + 1.36(I2) = '''2.72''' (same result so we know there is no error)

2) If we choose to round (on 2 decimals) amount after summing all lines, we get:

* Total without tax: 1.24(E1) + 1.24(E2) = '''2.48''' (same than in method 1)

* Total tax 10%: (1.24(E1) + 1.24(E2)) * 10% = 0.124 + 0.124 = 0.248 rounded to nearest to have a total on 2 decimals give '''0.25''' (we sum amount without tax for each lines, calculate vat rate on this and after we round value on 2 decimals)

* Total inc tax (we sum total without tax + total tax): 2.48 + 0.25 = '''2.73'''

First thing we can note is that result from method 1 differs of result from method 2. Difference is only 0.01 but if you have n times the same line, difference can be higher but always lower or equal to (n-1)*0.01.

Also if you decide to round up or down instead of "to the nearest", you will have same problem (for example with a rounding down, try with a quantity of 2 on line 2 and you will have same differences between method 1 and 2). Difference will just appears with different data but will still occurs, so problem is not on how we make rounding but when.

Second thing we can note is that if we use method 2, we must not show the column I onto invoice, otherwise to total you show on your invoice (2.73) will not be same that total you get summing total of each line (1.36+1.36=2.72). Showing column H might be better but total will still differs because total (2.73) is rounded and result of summing column H lines (1.364+1.364=2.728) will still differs.

'''So what to do ?'''

* In some countries, calculation must always be done using method 1 for generating invoice. As this is the default calculation rule for Dolibarr, there is nothing to do.

* In other countries (very rare), calculation must always be done using method 2 for generating invoice. To avoid having total shown at the top of the invoice that differs from total of detailed line, just do not show column I on invoice. This is the case with Dolibarr default invoice templates, so that's not a problem. To enable this rule of calculation, you must use Dolibarr version 3.5+ and set constant MAIN_ROUNDOFTOTAL_NOT_TOTALOFROUND to 1 (Home - Setup - Other).

* In most countries, the 2 methods are possible. So here, just use method 1 that will be more efficient when you will make accountancy (because, if you use method 2, total of vat on your invoice will not be sum of F, nor sum of G and this may create confusion later). If you prefer to use method 2, use Dolibarr version 3.5+ and set constant MAIN_ROUNDOFTOTAL_NOT_TOTALOFROUND to 1 (Home - Setup - Other).

= Second or Third Tax =

== For Spain ==

Specific management for spain are supported from Dolibarr 3.0.

In spain, there is 2 more vat rate for each line:

* The vat rate RE (a vat rate calculated on total without tax, and added to total to obtain total with tax)

* The vat rate IRPF (a vate rate calculated on total without tax, and substracted from total to obtain total with tax)

'''Setup'''

The two vat rate are applied automatically (if company has been setup to use them) on each lines (when added or edited). Value of rates are found into the dictionary table from the standard vat rate ([[Table llx_c_tva]]). Total with tax and total amount of vat is modified according to calculation.

For standard vat rate 20, tax 2 (RE) is set with type 3 (tax is applied on net price, for products only), rate 1.4%

'''Example'''

{|class="wikitable centre" width="80%"

|- valign="top"

|| ||A<br>Description||B<br>Quantity||C<br>Unit price||D<br>Vat rate||D<br>RE||E<br>Total without tax<br>=(B*C*D)||F<br>Exact tax amount<br>=(B*D*E)||nowrap="nowrap"|G<br>Tax RE (B*C*D)||nowrap="nowrap"|H<br>Price inc standard vat + RE=(E+F+G)

|-

||1||nowrap="nowrap"|Product alpha||10||10||10%||1.4%||100||10||1.4||111.4

|}

== For Canada - Quebec ==

Lexique.

* TPS = Taxe sur les Produit et Services

* TVQ = Taxe de Vente Québecoise

* TVH = Taxe de Vente Harmonisé (parfoit utilisé pour désigné la TPS+TVQ pour les commerçants);

http://www.revenuquebec.ca/fr/entreprise/taxes/tvq_tps/calcul-taxes.aspx

'''Setup'''

The TVQ is applied automatically on each lines (when added or edited) when vat rate used is 5.

Value of rates are found into the dictionary table from the standard vat rate (Table llx_c_tva). Total with tax and total amount of vat is modified according to calculation.

When vat rate is 5, tax 2 (TVQ) is type 1 (tax 2 is add for product and services and calculated on net price), rate is 9.975

'''Example'''

{|class="wikitable centre" width="80%"

|- valign="top"

|| ||A<br>Description||B<br>Quantity||C<br>Unit price||D<br>Vat rate TPS||D<br>Vat rate TVQ||E<br>Total without tax<br>=(B*C*D)||F<br>Tax TPS<br>=(B*D*E)||nowrap="nowrap"|G<br>Tax TVQ (B*C*D)||nowrap="nowrap"|H<br>Price inc TPS + TVQ=(E+F+G)

|-

||1||nowrap="nowrap"|Product alpha||10||10||5%||9.975%||100||5||9.98||114.98

|}

== For Italy ==

You may need to add a negative withholding tax calculated on net amount.

'''Setup

Value of rates are found into the dictionary table from the standard vat rate (Table llx_c_tva). Total with tax and total amount of vat is modified according to calculation.

When vat rate is 22, add a tax 2 (witholding) of type 1 (tax 2 is added for product and services and calculated on net price), rate is -20% (negative means amount will be substracted)

'''Example'''

{|class="wikitable centre" width="80%"

|- valign="top"

|| ||A<br>Description||B<br>Quantity||C<br>Unit price||D<br>Vat rate||D<br>Vat rate withholding tax||E<br>Total without tax<br>=(B*C*D)||F<br>Tax VAT<br>=(B*D*E)||nowrap="nowrap"|G<br>Tax 2 (B*C*D)||nowrap="nowrap"|H<br>Price inc VAT + Tax 2=(E+F+G)

|-

||1||nowrap="nowrap"|Product alpha||10||10||22%||-20%||100||22||-20||102

|}

== Pour l'Inde ==

Il y a une 2eme TVA

Cela semble fonctionner sur le même principe que la TVA RE de l'espagne.

Show more