You are here

commerce_eu_vat_bg.module in Commerce European Union VAT 7.2

Same filename and directory in other branches
  1. 7 countries/commerce_eu_vat_bg/commerce_eu_vat_bg.module

Code for the Commerce EU VAT BG Rates.

File

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

/**
 * @file
 * Code for the Commerce EU VAT BG Rates.
 */

/**
 * Impliments hook_commerce_vat_country_info_alter().
 */
function commerce_eu_vat_bg_commerce_vat_country_info_alter(&$vat_countries) {
  $vat_countries['BG']['default_field'] = TRUE;
}

/**
 * Implements hook_commerce_vat_rate_info().
 */
function commerce_eu_vat_bg_commerce_vat_rate_info() {
  $items = array(
    'bg_reduced' => array(
      'country' => 'BG',
      'eu' => TRUE,
      'title' => t('BG Reduced'),
      'rates' => array(
        '09_2011' => array(
          'name' => '09_2011',
          'rate' => 0.09,
          'start' => '20110401',
        ),
      ),
    ),
    'bg_standard' => array(
      'country' => 'BG',
      'eu' => TRUE,
      'title' => t('BG Standard'),
      'rates' => array(
        '20_1999' => array(
          'name' => '20_1999',
          'rate' => 0.2,
          'start' => '19990101',
        ),
      ),
    ),
  );
  return $items;
}