VAT rate HELP!!!

Hi there,

I need some help with modifying the VAT tax rate to 19%. Somehow it provide only 0%, 7% and 16%. I already defined we are a German company and in the samples it is listed 19.6% instead of 19%.

Can you advice how to change it?

Thanks, Raviv

Email: raviv@banaim.de

If you have knowledge of MySQL can do this:

delete from llx_c_tva where fk_pays=5;
insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,note,active) values ( 51, 5, ‘19’,‘0’,‘VAT standard rate’,1);
insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,note,active) values ( 52, 5, ‘7’,‘0’,‘VAT reduced rate’, 1);
insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,note,active) values ( 53, 5, ‘0’,‘0’,‘VAT Rate 0’, 1);

Also you can modify this with dolibarr (using admin user), accesing to menu setup->Dictionary setup and choosing the VAT rates dictionary, then modify your values.

thanks it works great :woohoo:

is 100% recommended to make this change with Dolibarr…

the directly data changes in the database can cause some problems, mistakes and much loss of time to get to the sources of these problems…

Regards!