43 lines
1012 B
PHP
43 lines
1012 B
PHP
<?php
|
|
|
|
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
/**
|
|
* Module My Easy ERP Web In Color
|
|
*
|
|
* @author Web In Color - addons@webincolor.fr
|
|
* @version 2.7.0
|
|
* @uses Prestashop modules
|
|
* @since 1.0 - mai 2014
|
|
* @package Wic ERP
|
|
* @copyright Copyright © 2016, Web In Color
|
|
* @license http://www.webincolor.fr
|
|
*/
|
|
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* object module available
|
|
*/
|
|
function upgrade_module_2_9_8_7($object)
|
|
{
|
|
$upgrade_version = '2.9.8.7';
|
|
|
|
try {
|
|
Db::getInstance()->execute('ALTER TABLE
|
|
`'._DB_PREFIX_.'erp_suppliers`
|
|
ADD `vat_exemption` INT(1) NULL DEFAULT 0 AFTER `manual_configuration`');
|
|
} catch (Exception $e) {
|
|
$e->getMessage();
|
|
}
|
|
|
|
Configuration::updateValue('WIC_ERP_VERSION', $upgrade_version);
|
|
return true;
|
|
}
|