You are here

commerce_eu_vat_gr.module in Commerce European Union VAT 7

Same filename and directory in other branches
  1. 7.2 countries/commerce_eu_vat_gr/commerce_eu_vat_gr.module

File

countries/commerce_eu_vat_gr/commerce_eu_vat_gr.module
View source
<?php

/**
 * Implements hook_commerce_tax_rate_info().
 */
function commerce_eu_vat_gr_commerce_tax_rate_info() {
  $items = array(
    'eu_vat_gr_reduced_6_5' => array(
      'title' => t('GR Reduced (!r)', array(
        '!r' => '6.5%',
      )),
      'display_title' => t('6.5% VAT', array(), array(
        'context' => 'commerce_eu_vat_gr',
      )),
      'description' => t('Greece Reduced Rate VAT at !r', array(
        '!r' => '6.5%',
      )),
      'rate' => '.065',
      'type' => 'eu_vat',
      'default_rules_component' => TRUE,
      'admin_list' => TRUE,
    ),
    'eu_vat_gr_intermediate_13' => array(
      'title' => t('GR Intermediate (!r)', array(
        '!r' => '13%',
      )),
      'display_title' => t('13% VAT', array(), array(
        'context' => 'commerce_eu_vat_gr',
      )),
      'description' => t('Greece Intermediate Rate VAT at !r', array(
        '!r' => '13%',
      )),
      'rate' => '.13',
      'type' => 'eu_vat',
      'default_rules_component' => TRUE,
      'admin_list' => TRUE,
    ),
    'eu_vat_gr_standard_23' => array(
      'title' => t('GR Standard (!r)', array(
        '!r' => '23%',
      )),
      'display_title' => t('23% VAT', array(), array(
        'context' => 'commerce_eu_vat_gr',
      )),
      'description' => t('Greece Standard Rate VAT at !r', array(
        '!r' => '23%',
      )),
      'rate' => '.23',
      'type' => 'eu_vat',
      'default_rules_component' => TRUE,
      'admin_list' => TRUE,
    ),
    'eu_vat_gr_islands_reduced_5' => array(
      'title' => t('GR Islands Reduced (!r)', array(
        '!r' => '5%',
      )),
      'display_title' => t('5% VAT', array(), array(
        'context' => 'commerce_eu_vat_gr',
      )),
      'description' => t('Greece Islands Reduced Rate VAT at !r', array(
        '!r' => '5%',
      )),
      'rate' => '.05',
      'type' => 'eu_vat',
      'default_rules_component' => TRUE,
      'admin_list' => TRUE,
    ),
    'eu_vat_gr_islands_intermediate_9' => array(
      'title' => t('GR Islands Intermediate (!r)', array(
        '!r' => '9%',
      )),
      'display_title' => t('9% VAT', array(), array(
        'context' => 'commerce_eu_vat_gr',
      )),
      'description' => t('Greece Islands Intermediate Rate VAT at !r', array(
        '!r' => '9%',
      )),
      'rate' => '.09',
      'type' => 'eu_vat',
      'default_rules_component' => TRUE,
      'admin_list' => TRUE,
    ),
    'eu_vat_gr_islands_standard_16' => array(
      'title' => t('GR Islands Standard (!r)', array(
        '!r' => '16%',
      )),
      'display_title' => t('16% VAT', array(), array(
        'context' => 'commerce_eu_vat_gr',
      )),
      'description' => t('Greece Islands Standard Rate VAT at !r', array(
        '!r' => '16%',
      )),
      'rate' => '.16',
      'type' => 'eu_vat',
      'default_rules_component' => TRUE,
      'admin_list' => TRUE,
    ),
  );
  return $items;
}