How to set a dynamic name for the taxes using the rule based tax plugin.
Configuring dynamic tax name
- Connect to your Atomia Billing database.
- Execute the query below to list your tax profiles.
- Select the profile you would like to enable dynamic naming for.
- Run the following query on the selected profile.
SELECT id, name FROM tax_profile;
UPDATE tax_profile SET name = 'VAT %percent%' WHERE id = '<your tax profile id>';
The %percent% string will be replaced with the tax rate of the used tax rule. For example, if the tax rule that is used has a tax rate set to 10.0000, the name would be VAT 10%
.