Ajout Mollie à la table moyens de paiement

This commit is contained in:
Jean-Christophe Engel 2025-01-04 14:58:48 +01:00
parent 38494a1a85
commit 6e2ee31670
4 changed files with 13 additions and 2 deletions

View File

@ -1,3 +1,5 @@
0.12
- Ajout Mollie à la table moyens de paiement
0.11 0.11
- Changement mention finale pour devis - Changement mention finale pour devis
0.9 0.9

View File

@ -43,6 +43,7 @@ INSERT OR IGNORE INTO plugin_facturation_paiement (code, nom) VALUES ('PR', 'Pr
INSERT OR IGNORE INTO plugin_facturation_paiement (code, nom) VALUES ('TI', 'TIP'); INSERT OR IGNORE INTO plugin_facturation_paiement (code, nom) VALUES ('TI', 'TIP');
INSERT OR IGNORE INTO plugin_facturation_paiement (code, nom) VALUES ('VI', 'Virement'); INSERT OR IGNORE INTO plugin_facturation_paiement (code, nom) VALUES ('VI', 'Virement');
INSERT OR IGNORE INTO plugin_facturation_paiement (code, nom) VALUES ('HA', 'HelloAsso'); INSERT OR IGNORE INTO plugin_facturation_paiement (code, nom) VALUES ('HA', 'HelloAsso');
INSERT OR IGNORE INTO plugin_facturation_paiement (code, nom) VALUES ('MO', 'Mollie');
INSERT OR IGNORE INTO plugin_facturation_paiement (code, nom) VALUES ('AU', 'Autre'); INSERT OR IGNORE INTO plugin_facturation_paiement (code, nom) VALUES ('AU', 'Autre');
-- Modif DD -- ajout de la table des textes associés aux CERFA -- Modif DD -- ajout de la table des textes associés aux CERFA

View File

@ -2,7 +2,7 @@ name="Facturation"
description="Permet d'éditer des factures, devis et reçus à ses membres ainsi qu'à une base de clients supplémentaire." description="Permet d'éditer des factures, devis et reçus à ses membres ainsi qu'à une base de clients supplémentaire."
author="zou ; adapté par jce" author="zou ; adapté par jce"
url="https://git.roflcopter.fr/lesanges/paheko-plugin-facturation" url="https://git.roflcopter.fr/lesanges/paheko-plugin-facturation"
version="0.11" version="0.12"
menu=true menu=true
restrict_section="accounting" restrict_section="accounting"
restrict_level="read" restrict_level="read"

View File

@ -211,7 +211,6 @@ if (version_compare($old_version, '0.8.1', '<'))
} }
// 0.8.5 Ajout champs SIREN/SIRET à la table clients // 0.8.5 Ajout champs SIREN/SIRET à la table clients
if (version_compare($old_version, '0.8.5', '<')) if (version_compare($old_version, '0.8.5', '<'))
{ {
$db->exec(<<<EOT $db->exec(<<<EOT
@ -243,3 +242,12 @@ if (version_compare($old_version, '0.8.5', '<'))
); );
} }
// 0.12 Ajout Mollie à la table moyens de paiement
if (version_compare($old_version, '0.12', '<'))
{
$db->exec(<<<EOT
INSERT OR IGNORE INTO plugin_facturation_paiement
(code, nom) VALUES ('MO', 'Mollie');
EOT
);
}