Integration contrib @DDgallo sur CERFA
This commit is contained in:
parent
637c493671
commit
61f40e100d
8 changed files with 218 additions and 42 deletions
|
|
@ -42,6 +42,25 @@ INSERT OR IGNORE INTO plugin_facturation_paiement (code, nom) VALUES ('ES', 'Esp
|
|||
INSERT OR IGNORE INTO plugin_facturation_paiement (code, nom) VALUES ('PR', 'Prélèvement');
|
||||
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 ('HA', 'HelloAsso');
|
||||
INSERT OR IGNORE INTO plugin_facturation_paiement (code, nom) VALUES ('AU', 'Autre');
|
||||
|
||||
-- Modif DD -- ajout de la table des textes associés aux CERFA
|
||||
CREATE TABLE IF NOT EXISTS plugin_facturation_txt_cerfa
|
||||
-- Textes explicatifs associés aux CERFA
|
||||
(
|
||||
id PRIMARY KEY,
|
||||
menu TEXT NOT NULL UNIQUE,
|
||||
texte TEXT NOT NULL
|
||||
);
|
||||
|
||||
----
|
||||
-- Data dump for plugin_facturation_txt_cerfa, a total of 4 rows
|
||||
----
|
||||
INSERT OR IGNORE INTO "plugin_facturation_txt_cerfa" ("id","menu","texte") VALUES ('0','Aucun','');
|
||||
INSERT OR IGNORE INTO "plugin_facturation_txt_cerfa" ("id","menu","texte") VALUES ('1','HelloAsso','Don via HelloAsso');
|
||||
INSERT OR IGNORE INTO "plugin_facturation_txt_cerfa" ("id","menu","texte") VALUES ('2','Frais de déplacement','Renonciation aux remboursements de frais de déplacement');
|
||||
INSERT OR IGNORE INTO "plugin_facturation_txt_cerfa" ("id","menu","texte") VALUES ('3','Don en nature','Don en nature');
|
||||
|
||||
-- CREATE TABLE IF NOT EXISTS plugin_facturation_produits (
|
||||
-- id INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
DROP TABLE `plugin_facturation_factures`;
|
||||
DROP TABLE `plugin_facturation_clients`;
|
||||
DROP TABLE `plugin_facturation_paiement`;
|
||||
DROP TABLE `plugin_facturation_txt_cerfa`;
|
||||
-- DROP TABLE `plugin_facturation_produits`;
|
||||
Loading…
Add table
Add a link
Reference in a new issue