From 343710dbc4385486f325c6ae9d22f09d296cd336 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Fri, 3 Dec 2004 10:31:49 +0000 Subject: [PATCH] Nouveau fichier & Copyright --- .../llx_telephonie_contact_facture.key.sql | 10 +++++ .../sql/llx_telephonie_contact_facture.sql | 27 +++++++++--- .../sql/llx_telephonie_groupe_ligne.key.sql | 37 ++++++++++++++++ .../sql/llx_telephonie_groupe_ligne.sql | 35 +++++++++++++++ .../sql/llx_telephonie_groupeligne.sql | 43 +++++++++---------- .../sql/llx_telephonie_prefix.key.sql | 26 +++++++++++ .../telephonie/sql/llx_telephonie_prefix.sql | 26 +++++++++-- ...lx_telephonie_societe_ligne_statut.key.sql | 27 ++++++++++++ .../sql/llx_telephonie_tarif_client.key.sql | 31 +++++++++++++ .../sql/llx_telephonie_tarif_client.sql | 30 +++++++++---- .../llx_telephonie_tarif_fournisseur.key.sql | 29 +++++++++++++ 11 files changed, 282 insertions(+), 39 deletions(-) create mode 100644 htdocs/telephonie/sql/llx_telephonie_contact_facture.key.sql create mode 100644 htdocs/telephonie/sql/llx_telephonie_groupe_ligne.key.sql create mode 100644 htdocs/telephonie/sql/llx_telephonie_groupe_ligne.sql create mode 100644 htdocs/telephonie/sql/llx_telephonie_prefix.key.sql create mode 100644 htdocs/telephonie/sql/llx_telephonie_societe_ligne_statut.key.sql create mode 100644 htdocs/telephonie/sql/llx_telephonie_tarif_client.key.sql create mode 100644 htdocs/telephonie/sql/llx_telephonie_tarif_fournisseur.key.sql diff --git a/htdocs/telephonie/sql/llx_telephonie_contact_facture.key.sql b/htdocs/telephonie/sql/llx_telephonie_contact_facture.key.sql new file mode 100644 index 00000000000..4bd32437742 --- /dev/null +++ b/htdocs/telephonie/sql/llx_telephonie_contact_facture.key.sql @@ -0,0 +1,10 @@ +-- +-- +-- +-- + +ALTER TABLE llx_telephonie_contact_facture ADD INDEX (fk_contact); +ALTER TABLE llx_telephonie_contact_facture ADD INDEX (fk_ligne); + +ALTER TABLE llx_telephonie_contact_facture ADD FOREIGN KEY (fk_contact) REFERENCES llx_socpeople (idp); +ALTER TABLE llx_telephonie_contact_facture ADD FOREIGN KEY (fk_ligne) REFERENCES llx_telephonie_societe_ligne (rowid); diff --git a/htdocs/telephonie/sql/llx_telephonie_contact_facture.sql b/htdocs/telephonie/sql/llx_telephonie_contact_facture.sql index 827a209e36e..5bbdd180254 100644 --- a/htdocs/telephonie/sql/llx_telephonie_contact_facture.sql +++ b/htdocs/telephonie/sql/llx_telephonie_contact_facture.sql @@ -1,3 +1,25 @@ +-- ======================================================================== +-- Copyright (C) 2004 Rodolphe Quiedeville +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-- +-- $Id$ +-- $Source$ +-- +-- ======================================================================== +-- -- -- -- @@ -10,8 +32,3 @@ create table llx_telephonie_contact_facture ( UNIQUE (fk_contact, fk_ligne) )type=innodb; -ALTER TABLE llx_telephonie_contact_facture ADD INDEX (fk_contact); -ALTER TABLE llx_telephonie_contact_facture ADD INDEX (fk_ligne); - -ALTER TABLE llx_telephonie_contact_facture ADD FOREIGN KEY (fk_contact) REFERENCES llx_socpeople (idp); -ALTER TABLE llx_telephonie_contact_facture ADD FOREIGN KEY (fk_ligne) REFERENCES llx_telephonie_societe_ligne (rowid); diff --git a/htdocs/telephonie/sql/llx_telephonie_groupe_ligne.key.sql b/htdocs/telephonie/sql/llx_telephonie_groupe_ligne.key.sql new file mode 100644 index 00000000000..2be09789979 --- /dev/null +++ b/htdocs/telephonie/sql/llx_telephonie_groupe_ligne.key.sql @@ -0,0 +1,37 @@ +-- ======================================================================== +-- Copyright (C) 2004 Rodolphe Quiedeville +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-- +-- $Id$ +-- $Source$ +-- +-- ======================================================================== +-- +-- Groupe de lignes +-- +-- +-- + +ALTER TABLE llx_telephonie_groupe_ligne ADD INDEX (fk_groupe); +ALTER TABLE llx_telephonie_groupe_ligne ADD INDEX (fk_ligne); +ALTER TABLE llx_telephonie_groupe_ligne ADD INDEX (fk_user); + +ALTER TABLE llx_telephonie_groupe_ligne ADD FOREIGN KEY (fk_groupe) REFERENCES llx_telephonie_groupeligne(rowid); +ALTER TABLE llx_telephonie_groupe_ligne ADD FOREIGN KEY (fk_ligne) REFERENCES llx_telephonie_societe_ligne(rowid); + +ALTER TABLE llx_telephonie_groupe_ligne ADD FOREIGN KEY (fk_user) REFERENCES llx_user(rowid); + + diff --git a/htdocs/telephonie/sql/llx_telephonie_groupe_ligne.sql b/htdocs/telephonie/sql/llx_telephonie_groupe_ligne.sql new file mode 100644 index 00000000000..b003f054b39 --- /dev/null +++ b/htdocs/telephonie/sql/llx_telephonie_groupe_ligne.sql @@ -0,0 +1,35 @@ +-- ======================================================================== +-- Copyright (C) 2004 Rodolphe Quiedeville +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-- +-- $Id$ +-- $Source$ +-- +-- ======================================================================== +-- +-- Groupe de lignes +-- +-- +-- + +create table llx_telephonie_groupe_ligne ( + rowid integer AUTO_INCREMENT PRIMARY KEY, + fk_groupe integer NOT NULL, -- groupe + fk_ligne integer NOT NULL, -- ligne + fk_user integer NOT NULL, + + UNIQUE INDEX(fk_groupe, fk_ligne) +)type=innodb; diff --git a/htdocs/telephonie/sql/llx_telephonie_groupeligne.sql b/htdocs/telephonie/sql/llx_telephonie_groupeligne.sql index ce35349bef3..67207f65b53 100644 --- a/htdocs/telephonie/sql/llx_telephonie_groupeligne.sql +++ b/htdocs/telephonie/sql/llx_telephonie_groupeligne.sql @@ -1,3 +1,24 @@ +-- ======================================================================== +-- Copyright (C) 2004 Rodolphe Quiedeville +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-- +-- $Id$ +-- $Source$ +-- +-- ======================================================================== -- -- Groupe de lignes -- @@ -9,25 +30,3 @@ create table llx_telephonie_groupeligne ( UNIQUE INDEX(nom) )type=innodb; - - -create table llx_telephonie_groupe_ligne ( - rowid integer AUTO_INCREMENT PRIMARY KEY, - fk_groupe integer NOT NULL, -- groupe - fk_ligne integer NOT NULL, -- ligne - fk_user integer NOT NULL, - - UNIQUE INDEX(fk_groupe, fk_ligne) -)type=innodb; - - -ALTER TABLE llx_telephonie_groupe_ligne ADD INDEX (fk_groupe); -ALTER TABLE llx_telephonie_groupe_ligne ADD INDEX (fk_ligne); -ALTER TABLE llx_telephonie_groupe_ligne ADD INDEX (fk_user); - -ALTER TABLE llx_telephonie_groupe_ligne ADD FOREIGN KEY (fk_groupe) REFERENCES llx_telephonie_groupeligne(rowid); -ALTER TABLE llx_telephonie_groupe_ligne ADD FOREIGN KEY (fk_ligne) REFERENCES llx_telephonie_societe_ligne(rowid); - -ALTER TABLE llx_telephonie_groupe_ligne ADD FOREIGN KEY (fk_user) REFERENCES llx_user(rowid); - - diff --git a/htdocs/telephonie/sql/llx_telephonie_prefix.key.sql b/htdocs/telephonie/sql/llx_telephonie_prefix.key.sql new file mode 100644 index 00000000000..ea882f2b317 --- /dev/null +++ b/htdocs/telephonie/sql/llx_telephonie_prefix.key.sql @@ -0,0 +1,26 @@ +-- ======================================================================== +-- Copyright (C) 2004 Rodolphe Quiedeville +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-- +-- $Id$ +-- $Source$ +-- +-- ======================================================================== +-- + +ALTER TABLE llx_telephonie_prefix ADD INDEX (fk_tarif); + +ALTER TABLE llx_telephonie_prefix ADD FOREIGN KEY (fk_tarif) REFERENCES llx_telephonie_tarif (rowid); diff --git a/htdocs/telephonie/sql/llx_telephonie_prefix.sql b/htdocs/telephonie/sql/llx_telephonie_prefix.sql index 6aeac799151..5f895ba1904 100644 --- a/htdocs/telephonie/sql/llx_telephonie_prefix.sql +++ b/htdocs/telephonie/sql/llx_telephonie_prefix.sql @@ -1,4 +1,25 @@ - +-- ======================================================================== +-- Copyright (C) 2004 Rodolphe Quiedeville +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-- +-- $Id$ +-- $Source$ +-- +-- ======================================================================== +-- create table llx_telephonie_prefix ( rowid integer AUTO_INCREMENT PRIMARY KEY, @@ -8,6 +29,3 @@ create table llx_telephonie_prefix ( UNIQUE INDEX(prefix) )type=innodb; -ALTER TABLE llx_telephonie_prefix ADD INDEX (fk_tarif); - -ALTER TABLE llx_telephonie_prefix ADD FOREIGN KEY (fk_tarif) REFERENCES llx_telephonie_tarif (rowid); diff --git a/htdocs/telephonie/sql/llx_telephonie_societe_ligne_statut.key.sql b/htdocs/telephonie/sql/llx_telephonie_societe_ligne_statut.key.sql new file mode 100644 index 00000000000..a799a380228 --- /dev/null +++ b/htdocs/telephonie/sql/llx_telephonie_societe_ligne_statut.key.sql @@ -0,0 +1,27 @@ +-- ======================================================================== +-- Copyright (C) 2004 Rodolphe Quiedeville +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-- +-- $Id$ +-- $Source$ +-- +-- ======================================================================== + +ALTER TABLE llx_telephonie_societe_ligne_statut ADD INDEX (fk_ligne); +ALTER TABLE llx_telephonie_societe_ligne_statut ADD INDEX (fk_user); + +ALTER TABLE llx_telephonie_societe_ligne_statut ADD FOREIGN KEY (fk_ligne) REFERENCES llx_telephonie_societe_ligne(rowid); +ALTER TABLE llx_telephonie_societe_ligne_statut ADD FOREIGN KEY (fk_user) REFERENCES llx_user(rowid); diff --git a/htdocs/telephonie/sql/llx_telephonie_tarif_client.key.sql b/htdocs/telephonie/sql/llx_telephonie_tarif_client.key.sql new file mode 100644 index 00000000000..1b932ad994e --- /dev/null +++ b/htdocs/telephonie/sql/llx_telephonie_tarif_client.key.sql @@ -0,0 +1,31 @@ +-- ======================================================================== +-- Copyright (C) 2004 Rodolphe Quiedeville +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-- +-- $Id$ +-- $Source$ +-- +-- ======================================================================== +-- +-- + +ALTER TABLE llx_telephonie_tarif_client ADD INDEX (fk_tarif); +ALTER TABLE llx_telephonie_tarif_client ADD INDEX (fk_client); +ALTER TABLE llx_telephonie_tarif_client ADD INDEX (fk_user); + +ALTER TABLE llx_telephonie_tarif_client ADD FOREIGN KEY (fk_tarif) REFERENCES llx_telephonie_tarif (rowid); +ALTER TABLE llx_telephonie_tarif_client ADD FOREIGN KEY (fk_client) REFERENCES llx_societe (idp); +ALTER TABLE llx_telephonie_tarif_client ADD FOREIGN KEY (fk_user) REFERENCES llx_user (rowid); diff --git a/htdocs/telephonie/sql/llx_telephonie_tarif_client.sql b/htdocs/telephonie/sql/llx_telephonie_tarif_client.sql index 87d03e51174..0809ae4a3bf 100644 --- a/htdocs/telephonie/sql/llx_telephonie_tarif_client.sql +++ b/htdocs/telephonie/sql/llx_telephonie_tarif_client.sql @@ -1,3 +1,25 @@ +-- ======================================================================== +-- Copyright (C) 2004 Rodolphe Quiedeville +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-- +-- $Id$ +-- $Source$ +-- +-- ======================================================================== +-- -- create table llx_telephonie_tarif_client ( rowid integer AUTO_INCREMENT PRIMARY KEY, @@ -9,11 +31,3 @@ create table llx_telephonie_tarif_client ( UNIQUE INDEX(fk_tarif, fk_client) )type=innodb; - -ALTER TABLE llx_telephonie_tarif_client ADD INDEX (fk_tarif); -ALTER TABLE llx_telephonie_tarif_client ADD INDEX (fk_client); -ALTER TABLE llx_telephonie_tarif_client ADD INDEX (fk_user); - -ALTER TABLE llx_telephonie_tarif_client ADD FOREIGN KEY (fk_tarif) REFERENCES llx_telephonie_tarif (rowid); -ALTER TABLE llx_telephonie_tarif_client ADD FOREIGN KEY (fk_client) REFERENCES llx_societe (idp); -ALTER TABLE llx_telephonie_tarif_client ADD FOREIGN KEY (fk_user) REFERENCES llx_user (rowid); diff --git a/htdocs/telephonie/sql/llx_telephonie_tarif_fournisseur.key.sql b/htdocs/telephonie/sql/llx_telephonie_tarif_fournisseur.key.sql new file mode 100644 index 00000000000..a22383eee69 --- /dev/null +++ b/htdocs/telephonie/sql/llx_telephonie_tarif_fournisseur.key.sql @@ -0,0 +1,29 @@ +-- ======================================================================== +-- Copyright (C) 2004 Rodolphe Quiedeville +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-- +-- $Id$ +-- $Source$ +-- +-- ======================================================================== +-- + +ALTER TABLE llx_telephonie_tarif_fournisseur ADD INDEX (fk_tarif); +ALTER TABLE llx_telephonie_tarif_fournisseur ADD INDEX (fk_fournisseur); + +ALTER TABLE llx_telephonie_tarif_fournisseur ADD FOREIGN KEY (fk_tarif) REFERENCES llx_telephonie_tarif (rowid); +ALTER TABLE llx_telephonie_tarif_fournisseur ADD FOREIGN KEY (fk_fournisseur) REFERENCES llx_telephonie_fournisseur (rowid); +--