Configuring your platform

Tax configuration

Tags: 180 views 0

How to set a dynamic name for the taxes using the rule based tax plugin.

Configuring dynamic tax name

  1. Connect to your Atomia Billing database.
  2. Execute the query below to list your tax profiles.
  3.   SELECT id, name FROM tax_profile;
    
  4. Select the profile you would like to enable dynamic naming for.
  5. Run the following query on the selected profile.
  6.   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%.

Was this helpful?