![]() |
Change VAT in billing module
Is it possible to change VAT in all recurring items/item templates at once?
|
You can do this with a sql command directly in the database. If your new vat rate is e.g. 15% and the old vat rate is 19%, the run this sql query in the ispconfig mysql database with e.g. phpmyadmin:
Code:
UPDATE invoice_item_template SET vat = 15 WHERE vat = 19; |
Good point Till, thank you
|
In case of Recurring items:
Code:
UPDATE invoice_recurring_item SET vat = 15 where vat=19; |
| All times are GMT +2. The time now is 01:18. |
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.