commerce_eu_vat_cz.module in Commerce European Union VAT 7.2
Same filename and directory in other branches
Code for the Commerce EU VAT CZ Module.
See also
File
countries/commerce_eu_vat_cz/commerce_eu_vat_cz.moduleView source
<?php
/**
* @file
* Code for the Commerce EU VAT CZ Module.
* @see http://www.mfcr.cz/cps/rde/xchg
*/
/**
* Impliments hook_commerce_vat_country_info_alter().
*/
function commerce_eu_vat_cz_commerce_vat_country_info_alter(&$vat_countries) {
$vat_countries['CZ']['default_field'] = TRUE;
}
/**
* Implements hook_commerce_vat_rate_info().
*/
function commerce_eu_vat_cz_commerce_vat_rate_info() {
$items = array(
'cz_reduced' => array(
'country' => 'CZ',
'eu' => TRUE,
'title' => t('CZ Reduced'),
'rates' => array(
'15_2013' => array(
'name' => '15_2013',
'rate' => 0.15,
'start' => '20130101',
),
'14_2012' => array(
'name' => '14_2012',
'rate' => 0.14,
'start' => '20120101',
),
'10_2010' => array(
'name' => '10_2010',
'rate' => 0.1,
'start' => '20100101',
),
'09_2008' => array(
'name' => '09_2008',
'rate' => 0.9,
'start' => '20080101',
),
'05_1993' => array(
'name' => '05_1993',
'rate' => 0.5,
'start' => '19930101',
),
),
),
'cz_standard' => array(
'country' => 'CZ',
'eu' => TRUE,
'title' => t('CZ Standard'),
'rates' => array(
'21_2013' => array(
'name' => '21_2013',
'rate' => 0.21,
'start' => '20130101',
),
'20_2010' => array(
'name' => '20_2010',
'rate' => 0.2,
'start' => '20100101',
),
'19_2004' => array(
'name' => '19_2004',
'rate' => 0.19,
'start' => '20040501',
),
'22_1995' => array(
'name' => '22_1995',
'rate' => 0.22,
'start' => '19950101',
),
'23_1993' => array(
'name' => '23_1993',
'rate' => 0.23,
'start' => '19930101',
),
),
),
'cz_zero' => array(
'country' => 'CZ',
'eu' => TRUE,
'title' => t('CZ Zero'),
'rates' => array(
'00_1993' => array(
'name' => '00_1993',
'rate' => 0,
'start' => '19930101',
),
),
),
'cz_second_reduced' => array(
'country' => 'CZ',
'eu' => TRUE,
'title' => t('CZ Second Reduced'),
'rates' => array(
'10_2015' => array(
'name' => '10_2015',
'rate' => 0.1,
'start' => '20150101',
),
),
),
);
return $items;
}
Functions
Name![]() |
Description |
---|---|
commerce_eu_vat_cz_commerce_vat_country_info_alter | Impliments hook_commerce_vat_country_info_alter(). |
commerce_eu_vat_cz_commerce_vat_rate_info | Implements hook_commerce_vat_rate_info(). |