oxid-professional-services / countryvatadministration
country vat administration
Installs: 9 037
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 11
Forks: 1
Type:oxideshop-module
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2023-05-25 06:38:46 UTC
README
Allows the admin to set country specific VAT values for countries, categories and products.
The priority of country specific VAT is product, category and country value
Branch Compatibility
- b-6.x branch / v1.x is compatible with
- OXID eShop compilation 6.1, 6.2 and 6.3 (6.0 with higher php versions may work as well, but module is not tested with it, so we cannot guarantee)
- OXID eShop b-6.4.x branch with PHP 7.4 and 8.0
- OXID eShop b-6.5.x branch with PHP 7.4, 8.0 and 8.1
Installation
composer require oxid-professional-services/countryvatadministration
After requiring the module, you need to activate it, e.g. via OXID eShop admin.
This module requires news tables in the database which will be created on module activation:
CREATE TABLE `oxps_country2vat` ( `OXID` char(32) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL COMMENT 'id', `OXCOUNTRYID` char(32) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL COMMENT 'country id', `OXSHOPID` int(11) NOT NULL, `VAT` float DEFAULT NULL COMMENT 'Value added tax. If specified, used in all calculations instead of global vat', PRIMARY KEY (`OXID`), UNIQUE KEY `OXCOUNTRYID` (`OXCOUNTRYID`,`OXSHOPID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Countries list';
CREATE TABLE `oxpsarticle2countryvat` ( `OXID` char(32) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL COMMENT 'id', `OXARTICLEID` char(32) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL COMMENT 'article id', `OXCOUNTRYID` char(32) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL COMMENT 'country id', `OXSHOPID` int(11) NOT NULL, `VAT` float DEFAULT NULL COMMENT 'Value added tax. If specified, used in all calculations instead of global vat', PRIMARY KEY (`OXID`), UNIQUE KEY `OXARTCOUNTRYID` (`OXARTICLEID`,`OXCOUNTRYID`,`OXSHOPID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Countries list'; CREATE TABLE `oxpscategory2countryvat` ( `OXID` char(32) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL COMMENT 'id', `OXCATEGORYID` char(32) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL COMMENT 'category id', `OXCOUNTRYID` char(32) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL COMMENT 'country id', `OXSHOPID` int(11) NOT NULL, `VAT` float DEFAULT NULL COMMENT 'Value added tax. If specified, used in all calculations instead of global vat', PRIMARY KEY (`OXID`), UNIQUE KEY `OXCATCOUNTRYID` (`OXCATEGORYID`,`OXCOUNTRYID`,`OXSHOPID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Countries list';
How to use
In shop admin select a product or category, in the 'Main' tab you will find a button named 'Country Specific VAT'. Clicking the button opens a popup which allows you to assign VAT per country for this product or category.
In shop admin got to Master Settings -> Countries
, select a country and set the country specific vat in
the input field and click save.