Résolution problèmes upgrade.php
This commit is contained in:
parent
bf45ffd223
commit
6c3af00f16
38
upgrade.php
38
upgrade.php
|
@ -4,18 +4,12 @@ namespace Paheko;
|
|||
use Paheko\Plugin\Facturation\Facture;
|
||||
use Paheko\Entities\Files\File;
|
||||
|
||||
define('DEVIS', 0);
|
||||
define('FACT', 1);
|
||||
define('CERFA', 2);
|
||||
define('COTIS', 3);
|
||||
|
||||
$db = DB::getInstance();
|
||||
$facture = new Facture;
|
||||
$version = $plugin->get('version');
|
||||
|
||||
$old_version = $plugin->oldVersion();
|
||||
error_log("upgrade::version = " . $old_version);
|
||||
|
||||
// 0.2.0 - Stock le contenu en json plutôt qu'en serialized
|
||||
if (version_compare($version, '0.2.0', '<'))
|
||||
if (version_compare($old_version, '0.2.0', '<'))
|
||||
{
|
||||
$r = (array) DB::getInstance()->get('SELECT * FROM plugin_facturation_factures');
|
||||
|
||||
|
@ -26,7 +20,7 @@ if (version_compare($version, '0.2.0', '<'))
|
|||
}
|
||||
|
||||
// 0.3.0 - Migration Facturation\Config vers la table plugins
|
||||
if (version_compare($version, '0.3.0', '<'))
|
||||
if (version_compare($old_version, '0.3.0', '<'))
|
||||
{
|
||||
$conf = $db->getAssoc('SELECT cle, valeur FROM plugin_facturation_config ORDER BY cle;');
|
||||
foreach($conf as $k=>$v)
|
||||
|
@ -40,7 +34,7 @@ if (version_compare($version, '0.3.0', '<'))
|
|||
}
|
||||
|
||||
// 0.4.0 -
|
||||
if (version_compare($version, '0.4.0', '<'))
|
||||
if (version_compare($old_version, '0.4.0', '<'))
|
||||
{
|
||||
$db->exec(<<<EOT
|
||||
CREATE TABLE IF NOT EXISTS plugin_facturation_paiement
|
||||
|
@ -85,8 +79,13 @@ EOT
|
|||
}
|
||||
|
||||
// 0.6.0 -
|
||||
if (version_compare($version, '0.6.0', '<'))
|
||||
if (version_compare($old_version, '0.6.0', '<'))
|
||||
{
|
||||
define('DEVIS', 0);
|
||||
define('FACT', 1);
|
||||
define('CERFA', 2);
|
||||
define('COTIS', 3);
|
||||
$facture = new Facture;
|
||||
$r = $db->first('SELECT id, total FROM plugin_facturation_factures;');
|
||||
if (strpos($r->total,'.'))
|
||||
{
|
||||
|
@ -145,8 +144,13 @@ EOT
|
|||
}
|
||||
|
||||
// 0.6.2 -
|
||||
if (version_compare($version, '0.6.2', '<'))
|
||||
if (version_compare($old_version, '0.6.2', '<'))
|
||||
{
|
||||
define('DEVIS', 0);
|
||||
define('FACT', 1);
|
||||
define('CERFA', 2);
|
||||
define('COTIS', 3);
|
||||
$facture = new Facture;
|
||||
$db->exec(<<<EOT
|
||||
INSERT OR IGNORE INTO plugin_facturation_paiement
|
||||
(code, nom) VALUES ('HA', 'HelloAsso');
|
||||
|
@ -195,13 +199,13 @@ EOT
|
|||
}
|
||||
|
||||
// 0.7.1 - Ajout clé config TTC/HT
|
||||
if (version_compare($version, '0.7.1', '<'))
|
||||
if (version_compare($old_version, '0.7.1', '<'))
|
||||
{
|
||||
$plugin->setConfig('ttc', false);
|
||||
}
|
||||
|
||||
// 0.7.4 - Signal menu item
|
||||
if (version_compare($version, '0.8.1', '<'))
|
||||
// 0.8.1 - Signal menu item
|
||||
if (version_compare($old_version, '0.8.1', '<'))
|
||||
{
|
||||
$plugin->unregisterSignal('menu.item');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue