251 lines
7.7 KiB
PHP
Executable File
251 lines
7.7 KiB
PHP
Executable File
<?php
|
||
/*
|
||
* 2007-2013 PrestaShop
|
||
*
|
||
* NOTICE OF LICENSE
|
||
*
|
||
* This source file is subject to the Academic Free License (AFL 3.0)
|
||
* that is bundled with this package in the file LICENSE.txt.
|
||
* It is also available through the world-wide-web at this URL:
|
||
* http://opensource.org/licenses/afl-3.0.php
|
||
* If you did not receive a copy of the license and are unable to
|
||
* obtain it through the world-wide-web, please send an email
|
||
* to license@prestashop.com so we can send you a copy immediately.
|
||
*
|
||
* DISCLAIMER
|
||
*
|
||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||
* versions in the future. If you wish to customize PrestaShop for your
|
||
* needs please refer to http://www.prestashop.com for more information.
|
||
*
|
||
* @author PrestaShop SA <contact@prestashop.com>
|
||
* @copyright 2007-2013 PrestaShop SA
|
||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||
* International Registered Trademark & Property of PrestaShop SA
|
||
*/
|
||
|
||
if (!defined('_PS_VERSION_'))
|
||
exit;
|
||
|
||
class VatNumber extends TaxManagerModule
|
||
{
|
||
public function __construct()
|
||
{
|
||
$this->name = 'vatnumber';
|
||
$this->tab = 'billing_invoicing';
|
||
$this->version = 1.2;
|
||
$this->author = 'PrestaShop';
|
||
$this->need_instance = 0;
|
||
|
||
$this->tax_manager_class = 'VATNumberTaxManager';
|
||
|
||
$this->bootstrap = true;
|
||
parent::__construct();
|
||
$id_country = (int)Configuration::get('VATNUMBER_COUNTRY');
|
||
|
||
if ($id_country == 0)
|
||
$this->warning = $this->l('No default country set.');
|
||
|
||
$this->displayName = $this->l('European VAT number');
|
||
$this->description = $this->l('Enable entering of the VAT intra-community number when creating the address (You must fill in the company field to allow keyboarding VAT number)');
|
||
}
|
||
|
||
public function install()
|
||
{
|
||
return (parent::install() AND Configuration::updateValue('VATNUMBER_MANAGEMENT', 1));
|
||
}
|
||
|
||
public function uninstall()
|
||
{
|
||
return (parent::uninstall() AND Configuration::updateValue('VATNUMBER_MANAGEMENT', 0));
|
||
}
|
||
|
||
public function enable($forceAll = false)
|
||
{
|
||
parent::enable();
|
||
Configuration::updateValue('VATNUMBER_MANAGEMENT', 1);
|
||
}
|
||
|
||
public function disable($forceAll = false)
|
||
{
|
||
parent::disable();
|
||
Configuration::updateValue('VATNUMBER_MANAGEMENT', 0);
|
||
}
|
||
|
||
public static function getPrefixIntracomVAT()
|
||
{
|
||
$intracom_array = array(
|
||
'AT'=>'AT', //Austria
|
||
'BE'=>'BE', //Belgium
|
||
'DK'=>'DK', //Denmark
|
||
'FI'=>'FI', //Finland
|
||
'FR'=>'FR', //France
|
||
'FX'=>'FR', //France m<>tropolitaine
|
||
'DE'=>'DE', //Germany
|
||
'GR'=>'EL', //Greece
|
||
'IE'=>'IE', //Irland
|
||
'IT'=>'IT', //Italy
|
||
'LU'=>'LU', //Luxembourg
|
||
'NL'=>'NL', //Netherlands
|
||
'PT'=>'PT', //Portugal
|
||
'ES'=>'ES', //Spain
|
||
'SE'=>'SE', //Sweden
|
||
'GB'=>'GB', //United Kingdom
|
||
'CY'=>'CY', //Cyprus
|
||
'EE'=>'EE', //Estonia
|
||
'HU'=>'HU', //Hungary
|
||
'LV'=>'LV', //Latvia
|
||
'LT'=>'LT', //Lithuania
|
||
'MT'=>'MT', //Malta
|
||
'PL'=>'PL', //Poland
|
||
'SK'=>'SK', //Slovakia
|
||
'CZ'=>'CZ', //Czech Republic
|
||
'SI'=>'SI', //Slovenia
|
||
'RO'=>'RO', //Romania
|
||
'BG'=>'BG' //Bulgaria
|
||
);
|
||
return $intracom_array;
|
||
}
|
||
|
||
public static function isApplicable($id_country)
|
||
{
|
||
return (((int)$id_country AND in_array(Country::getIsoById($id_country), self::getPrefixIntracomVAT())) ? 1 : 0);
|
||
}
|
||
|
||
public static function WebServiceCheck($vatNumber)
|
||
{
|
||
if (empty($vatNumber))
|
||
return array();
|
||
$vatNumber = str_replace(' ', '', $vatNumber);
|
||
$prefix = substr($vatNumber, 0, 2);
|
||
if (array_search($prefix, self::getPrefixIntracomVAT()) === false)
|
||
return array(Tools::displayError('Invalid VAT number'));
|
||
$vat = substr($vatNumber, 2);
|
||
$url = 'http://ec.europa.eu/taxation_customs/vies/viesquer.do?ms='.urlencode($prefix).'&iso='.urlencode($prefix).'&vat='.urlencode($vat);
|
||
@ini_set('default_socket_timeout', 2);
|
||
for ($i = 0; $i < 3; $i++)
|
||
{
|
||
if ($pageRes = file_get_contents($url))
|
||
{
|
||
if (preg_match('/invalid VAT number/i', $pageRes))
|
||
{
|
||
@ini_restore('default_socket_timeout');
|
||
return array(Tools::displayError('VAT number not found'));
|
||
}
|
||
else if (preg_match('/valid VAT number/i', $pageRes))
|
||
{
|
||
@ini_restore('default_socket_timeout');
|
||
return array();
|
||
}
|
||
else
|
||
++$i;
|
||
}
|
||
else
|
||
sleep(1);
|
||
}
|
||
@ini_restore('default_socket_timeout');
|
||
return array(Tools::displayError('VAT number validation service unavailable'));
|
||
}
|
||
|
||
public function getContent()
|
||
{
|
||
$echo = '';
|
||
|
||
if (Tools::isSubmit('submitVatNumber'))
|
||
{
|
||
if (Configuration::updateValue('VATNUMBER_COUNTRY', (int)Tools::getValue('VATNUMBER_COUNTRY')))
|
||
$echo .= $this->displayConfirmation($this->l('Your country has been updated.'));
|
||
|
||
if (Configuration::updateValue('VATNUMBER_CHECKING', (int)Tools::getValue('VATNUMBER_CHECKING')))
|
||
$echo .= ((bool)Tools::getValue('VATNUMBER_CHECKING') ? $this->displayConfirmation($this->l('The check of the VAT number with the WebService is now enabled.')) : $this->displayConfirmation($this->l('The check of the VAT number with the WebService is now disabled.')));
|
||
}
|
||
$echo .= $this->renderForm();
|
||
return $echo;
|
||
}
|
||
|
||
public function renderForm()
|
||
{
|
||
// Getting data...
|
||
$_countries = Country::getCountries($this->context->language->id);
|
||
|
||
// ...formatting array
|
||
$countries[0] = array('id' => 0, 'name' => $this->l('-- Choose a country --'));
|
||
foreach ($_countries as $country)
|
||
$countries[] = array('id' => $country['id_country'], 'name' => $country['name']);
|
||
|
||
$fields_form = array(
|
||
'form' => array(
|
||
'legend' => array(
|
||
'title' => $this->l('Settings'),
|
||
'icon' => 'icon-cogs'
|
||
),
|
||
'input' => array(
|
||
array(
|
||
'type' => 'select',
|
||
'label' => $this->l('Customers\' country :'),
|
||
'desc' => $this->l('Operate a filter on customers\' country.'),
|
||
'name' => 'VATNUMBER_COUNTRY',
|
||
'required' => false,
|
||
'default_value' => (int)$this->context->country->id,
|
||
'options' => array(
|
||
'query' => $countries,
|
||
'id' => 'id',
|
||
'name' => 'name',
|
||
)
|
||
),
|
||
array(
|
||
'type' => 'switch',
|
||
'label' => $this->l('Enable checking of the VAT number with the WebService'),
|
||
'name' => 'VATNUMBER_CHECKING',
|
||
'is_bool' => true,
|
||
'desc' => $this->l('The verification by the webservice is slow. Enabling this option can slow down your shop.'),
|
||
'values' => array(
|
||
array(
|
||
'id' => 'active_on',
|
||
'value' => 1,
|
||
'label' => $this->l('Enabled')
|
||
),
|
||
array(
|
||
'id' => 'active_off',
|
||
'value' => 0,
|
||
'label' => $this->l('Disabled')
|
||
)
|
||
),
|
||
)
|
||
),
|
||
'submit' => array(
|
||
'title' => $this->l('Save'),
|
||
'class' => 'btn btn-default')
|
||
),
|
||
);
|
||
|
||
$helper = new HelperForm();
|
||
$helper->show_toolbar = false;
|
||
$helper->table = $this->table;
|
||
$lang = new Language((int)Configuration::get('PS_LANG_DEFAULT'));
|
||
$helper->default_form_language = $lang->id;
|
||
$helper->allow_employee_form_lang = Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') ? Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') : 0;
|
||
$this->fields_form = array();
|
||
|
||
$helper->identifier = $this->identifier;
|
||
$helper->submit_action = 'submitVatNumber';
|
||
$helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false).'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name;
|
||
$helper->token = Tools::getAdminTokenLite('AdminModules');
|
||
$helper->tpl_vars = array(
|
||
'fields_value' => $this->getConfigFieldsValues(),
|
||
'languages' => $this->context->controller->getLanguages(),
|
||
'id_language' => $this->context->language->id
|
||
);
|
||
|
||
return $helper->generateForm(array($fields_form));
|
||
}
|
||
|
||
public function getConfigFieldsValues()
|
||
{
|
||
return array(
|
||
'VATNUMBER_COUNTRY' => Tools::getValue('VATNUMBER_COUNTRY', Configuration::get('VATNUMBER_COUNTRY')),
|
||
'VATNUMBER_CHECKING' => Tools::getValue('VATNUMBER_CHECKING', Configuration::get('VATNUMBER_CHECKING')),
|
||
);
|
||
}
|
||
}
|