diff --git a/COPYRIGHT b/COPYRIGHT index 99e5357cfad..1f727dcfeff 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -4,11 +4,12 @@ Copyright (C) 2002 Jean-Louis Bergamo Rodolphe Quiedeville Copyright (C) 2003 Jean-Louis Bergamo - Xavier Dutoit + Xavier Dutoit Rodolphe Quiedeville Emmanuel Raviart - Éric Seigne + Éric Seigne Copyright (C) 2004 Laurent Destailleur Rodolphe Quiedeville - Éric Seigne \ No newline at end of file + Éric Seigne + Benoit Mortier diff --git a/htdocs/lib/webcal.class.php b/htdocs/lib/webcal.class.php index 8a6b36868db..451a5102a95 100644 --- a/htdocs/lib/webcal.class.php +++ b/htdocs/lib/webcal.class.php @@ -22,27 +22,26 @@ /*! \file webcal.class.php - \author Rodolphe Quiedeville - \version 1.2 - \date 2003-2004 - */ +*/ + +/*! \class Webcal webcal.class.php + \brief Classe permettant d'acceder a la database webcalendar + + Details des fonctions permettant d'acceder a la database webcalendar +*/ class Webcal { var $localdb; var $heure = -1; var $duree = 0; -/*! \class Webcal webcal.class.php "htdocs/lib/webcal.class.php" - \brief Classe permettant d'acceder a la database webcalendar +/*! + \static + + Permet de se connecter a la database. */ - -/*! \fn - \brief permet la connection a la base de donnée webcal - - */ - Function Webcal() { global $conf; @@ -55,14 +54,16 @@ class Webcal { } /*! + \static + \brief ajoute une entree dans le calendrier de l'utilsateur - \param[in] user le login de l'utilisateur - \param[in] date la date de l'evenement dans le calendrier - \param[in] texte le titre a indiquer dans l'evenement - \param[in] desc la description a indiquer dans l'evenement + \param[in] $user le login de l'utilisateur + \param[in] $date la date de l'evenement dans le calendrier + \param[in] $texte le titre a indiquer dans l'evenement + \param[in] $desc la description a indiquer dans l'evenement - */ +*/ Function add($user, $date, $texte, $desc) { @@ -112,11 +113,12 @@ class Webcal { } /*! + \static \brief obtient l'id suivant dans le webcalendar - \retval id retourne l'id suivant dans le webcalendar + \retval $id retourne l'id suivant dans le webcalendar +*/ - */ Function get_next_id() { diff --git a/pgsql/Makefile b/pgsql/Makefile index 6fb82f5a58c..164d2b89711 100644 --- a/pgsql/Makefile +++ b/pgsql/Makefile @@ -1,9 +1,7 @@ # # Copyright (C) 2001-2002 Rodolphe Quiedeville # Copyright (C) 2002-2003 Éric Seigne -# -# $Id$ -# $Source$ +# Copyright (C) 2004 Benoit Mortier # # 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 @@ -19,7 +17,10 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # -# General Makefile for Mysql database +# General Makefile for postgresql database +# +# $Id$ +# $Source$ # SQL=psql diff --git a/pgsql/README b/pgsql/README index aa030563f02..9bb6fa4b826 100644 --- a/pgsql/README +++ b/pgsql/README @@ -1,3 +1,26 @@ +-- ============================================================================ +-- Copyright (C) 2003 Rodolphe Quiedeville +-- Copyright (C) 2004 Benoit Mortier +-- +-- 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$ +-- +-- =========================================================================== + - show Affiche la liste des tables - table Crée les tables dans la base de données diff --git a/pgsql/data/Makefile b/pgsql/data/Makefile index 6882f10986f..30396d8b49a 100644 --- a/pgsql/data/Makefile +++ b/pgsql/data/Makefile @@ -1,9 +1,7 @@ # # Copyright (C) 2001-2002 Rodolphe Quiedeville # Copyright (C) 2002-2003 Éric Seigne -# -# $Id$ -# $Source$ +# Copyright (C) 2004 Benoit Mortier # # 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 @@ -19,10 +17,13 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # -# General Makefile for Mysql database +# General Makefile for postgresql database +# +# $Id$ +# $Source$ # -SQL=psql +SQL=psql BASE=dolibarr OWNER=dolibarradm OPTIONS=-U $(OWNER) diff --git a/pgsql/data/data.sql b/pgsql/data/data.sql index f4fd2bf3875..30bb822dd02 100644 --- a/pgsql/data/data.sql +++ b/pgsql/data/data.sql @@ -1,10 +1,7 @@ --- +-- ============================================================================-- -- Copyright (C) 2001-2002 Rodolphe Quiedeville -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -19,9 +16,12 @@ -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- --- -- Valeurs pour les bases de langues francaises -- +-- $Id$ +-- $Source$ +-- +-- ============================================================================-- insert into llx_cond_reglement values (1,1,1, 'A réception','Réception de facture',0,0); insert into llx_cond_reglement values (2,2,1, '30 jours','Réglement à 30 jours',0,30); diff --git a/pgsql/data/data_dev.sql b/pgsql/data/data_dev.sql index 60613c2c5e3..e9bb4f5a70d 100644 --- a/pgsql/data/data_dev.sql +++ b/pgsql/data/data_dev.sql @@ -1,5 +1,6 @@ -- =========================================================================== -- Copyright (C) 2001-2002 Rodolphe Quiedeville +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -15,12 +16,13 @@ -- 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$ --- -- Valeurs de test pour les developpements -- Ne pas hésiter a compléter ce fichier avec de nouvelles valeurs, plus on a -- de données, mieux on peut tester l'appli. +-- +-- $Id$ +-- $Source$ +-- -- =========================================================================== delete from llx_tva; diff --git a/pgsql/data/facture_dev.sql b/pgsql/data/facture_dev.sql index 97b23820220..c5acbb024c0 100644 --- a/pgsql/data/facture_dev.sql +++ b/pgsql/data/facture_dev.sql @@ -15,11 +15,14 @@ -- 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. ---=========================================================================== - -- -- Dumping data for table 'llx_paiement' -- +-- $Id$ +-- $Source$ +-- +--=========================================================================== + INSERT INTO llx_paiement (rowid, fk_facture, datec, datep, amount, author, fk_paiement, num_paiement, note) VALUES (1,1,'2002-05-09 03:05:03','2001-05-19 12:00:00',11960,'rodo',0,'321654654',''); INSERT INTO llx_paiement (rowid, fk_facture, datec, datep, amount, author, fk_paiement, num_paiement, note) VALUES (2,2,'2002-05-09 03:18:10','2002-04-12 12:00:00',500,'rodo',0,'255555',''); diff --git a/pgsql/data/propal_dev.sql b/pgsql/data/propal_dev.sql index e2df16f4aa6..28fb8913e44 100644 --- a/pgsql/data/propal_dev.sql +++ b/pgsql/data/propal_dev.sql @@ -15,11 +15,15 @@ -- 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. ---=========================================================================== - -- -- Dumping data for table 'llx_propal' -- +-- $Id$ +-- $Source$ +-- +--=========================================================================== + + INSERT INTO llx_propal (rowid, fk_soc, fk_soc_contact, fk_projet, ref, datec, date_valid, date_cloture, datep, fk_user_author, fk_user_valid, fk_user_cloture, fk_statut, price, remise, tva, total, note) VALUES (1,1,10,0,'PR-BO-020509','2002-05-09 03:04:29','2002-05-09 03:04:37','2002-05-09 03:04:42','2002-05-09',1,1,1,2,10000,0,1960,11960,'----------\r\n'); INSERT INTO llx_propal (rowid, fk_soc, fk_soc_contact, fk_projet, ref, datec, date_valid, date_cloture, datep, fk_user_author, fk_user_valid, fk_user_cloture, fk_statut, price, remise, tva, total, note) VALUES (2,1,11,0,'PR-BO-020111','2002-05-09 03:08:33','2002-05-09 03:36:25','2002-05-09 03:36:29','2002-01-11',1,1,1,2,20,0,3.92,23.92,'----------\r\n'); diff --git a/pgsql/drop-constraints.sql b/pgsql/drop-constraints.sql index f15bf0a9474..31c51f581d2 100644 --- a/pgsql/drop-constraints.sql +++ b/pgsql/drop-constraints.sql @@ -15,11 +15,10 @@ -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- +-- Ce fichier sert a effacer les contraintes sur les tables de la database +-- -- $Id$ -- $Source$ --- ============================================================================ --- --- Ce fichier sert a effacer les contraintes sur les tables de la database -- -- ============================================================================ diff --git a/pgsql/drop.sql b/pgsql/drop.sql index 649cb7c530d..7006fb4859f 100644 --- a/pgsql/drop.sql +++ b/pgsql/drop.sql @@ -1,11 +1,8 @@ -- -- Copyright (C) 2001-2002 Rodolphe Quiedeville --- Copyright (C) 2002-2003 ?ric Seigne +-- Copyright (C) 2002-2003 Eric Seigne -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -20,6 +17,9 @@ -- 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$ +-- drop table llx_co_fa; diff --git a/pgsql/foreign_keys.sql b/pgsql/foreign_keys.sql index c193842b12d..270ecd6c31a 100644 --- a/pgsql/foreign_keys.sql +++ b/pgsql/foreign_keys.sql @@ -18,6 +18,7 @@ -- -- $Id$ -- $Source$ +-- -- ============================================================================ ALTER TABLE llx_fichinter ADD CONSTRAINT fichinter_fk_soc_idp FOREIGN KEY (fk_soc) REFERENCES llx_societe (idp); diff --git a/pgsql/header-cvs b/pgsql/header-cvs index f3167f18284..398cf46e7d1 100644 --- a/pgsql/header-cvs +++ b/pgsql/header-cvs @@ -17,5 +17,6 @@ -- -- $Id$ -- $Source$ +-- -- ============================================================================ diff --git a/pgsql/pgsql.sql b/pgsql/pgsql.sql index 1e9db7772d2..51c5aaaa5ab 100644 --- a/pgsql/pgsql.sql +++ b/pgsql/pgsql.sql @@ -17,6 +17,7 @@ -- -- $Id$ -- $Source$ +-- -- ============================================================================ diff --git a/pgsql/purge-boutique.sql b/pgsql/purge-boutique.sql index 8a85b6666bf..eb729481389 100644 --- a/pgsql/purge-boutique.sql +++ b/pgsql/purge-boutique.sql @@ -1,4 +1,4 @@ --- +-- ============================================================================ -- Copyright (C) 2003 Rodolphe Quiedeville -- Copyright (C) 2004 Benoit Mortier -- @@ -18,6 +18,7 @@ -- -- $Id$ -- $Source$ +-- -- =========================================================================== delete from llx_auteur; diff --git a/pgsql/rename-tables.sql b/pgsql/rename-tables.sql index ccfe77e4969..c7178c5acbe 100644 --- a/pgsql/rename-tables.sql +++ b/pgsql/rename-tables.sql @@ -18,6 +18,7 @@ -- -- $Id$ -- $Source$ +-- -- ============================================================================ ALTER TABLE societe RENAME TO llx_societe ; diff --git a/pgsql/tables/Makefile b/pgsql/tables/Makefile index 5939382eda7..1b50e7c0f86 100644 --- a/pgsql/tables/Makefile +++ b/pgsql/tables/Makefile @@ -1,6 +1,7 @@ # # Copyright (C) 2001-2002 Rodolphe Quiedeville # Copyright (C) 2002-2003 Éric Seigne +# Copyright (C) 2004 Benoit Mortier # # $Id$ # $Source$ diff --git a/pgsql/tables/llx_actioncomm.sql b/pgsql/tables/llx_actioncomm.sql index 8e34e5308e3..42c27f03ed2 100644 --- a/pgsql/tables/llx_actioncomm.sql +++ b/pgsql/tables/llx_actioncomm.sql @@ -2,9 +2,6 @@ -- Copyright (C) 2001-2003 Rodolphe Quiedeville -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -21,6 +18,9 @@ -- -- Actions commerciales -- +-- $Id$ +-- $Source$ +-- -- ======================================================================== create table llx_actioncomm diff --git a/pgsql/tables/llx_adherent.sql b/pgsql/tables/llx_adherent.sql index 5e3f2502b06..af2e986bd7f 100644 --- a/pgsql/tables/llx_adherent.sql +++ b/pgsql/tables/llx_adherent.sql @@ -1,9 +1,6 @@ -- =================================================================== -- Copyright (C) 2004 Benoit Mortiero -- --- $Id$ --- $Source$ --- -- 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 @@ -18,6 +15,9 @@ -- 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$ +-- -- =================================================================== -- statut diff --git a/pgsql/tables/llx_adherent_type.sql b/pgsql/tables/llx_adherent_type.sql index 421107e4c41..595af89ac10 100644 --- a/pgsql/tables/llx_adherent_type.sql +++ b/pgsql/tables/llx_adherent_type.sql @@ -1,6 +1,5 @@ -- =================================================================== --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -16,6 +15,9 @@ -- 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$ +-- -- =================================================================== -- statut diff --git a/pgsql/tables/llx_album.sql b/pgsql/tables/llx_album.sql index 09a3c6801d8..4407ccbd3e7 100644 --- a/pgsql/tables/llx_album.sql +++ b/pgsql/tables/llx_album.sql @@ -15,6 +15,9 @@ -- 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_album diff --git a/pgsql/tables/llx_bank.sql b/pgsql/tables/llx_bank.sql index 263f646a95b..64b8e339be2 100644 --- a/pgsql/tables/llx_bank.sql +++ b/pgsql/tables/llx_bank.sql @@ -1,9 +1,7 @@ -- =================================================================== -- Copyright (C) 2000-2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 Éric Seigne --- --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -19,6 +17,9 @@ -- 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$ +-- -- =================================================================== diff --git a/pgsql/tables/llx_bank_account.sql b/pgsql/tables/llx_bank_account.sql index 0c534dbad9c..6e5e5277b98 100644 --- a/pgsql/tables/llx_bank_account.sql +++ b/pgsql/tables/llx_bank_account.sql @@ -3,9 +3,6 @@ -- Copyright (C) 2002-2003 Éric Seigne -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -20,6 +17,9 @@ -- 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_bank_account diff --git a/pgsql/tables/llx_bank_categ.sql b/pgsql/tables/llx_bank_categ.sql index 464ef463a17..c453aa74522 100644 --- a/pgsql/tables/llx_bank_categ.sql +++ b/pgsql/tables/llx_bank_categ.sql @@ -1,6 +1,5 @@ -- =================================================================== --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -16,6 +15,9 @@ -- 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_bank_categ diff --git a/pgsql/tables/llx_bank_class.sql b/pgsql/tables/llx_bank_class.sql index 7ac2971932c..9def1d0a2fa 100644 --- a/pgsql/tables/llx_bank_class.sql +++ b/pgsql/tables/llx_bank_class.sql @@ -1,9 +1,6 @@ -- =================================================================== -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -18,6 +15,9 @@ -- 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_bank_class diff --git a/pgsql/tables/llx_bank_url.sql b/pgsql/tables/llx_bank_url.sql index e93c5bb3bc4..9b40ec3e8ca 100644 --- a/pgsql/tables/llx_bank_url.sql +++ b/pgsql/tables/llx_bank_url.sql @@ -1,5 +1,6 @@ -- =================================================================== -- Copyright (C) 2003 Rodolphe Quiedeville +-- Copyright (C) 2004 Benoit Mortier -- -- 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 diff --git a/pgsql/tables/llx_bookmark.sql b/pgsql/tables/llx_bookmark.sql index 0e9190836dc..0d7a065fb03 100644 --- a/pgsql/tables/llx_bookmark.sql +++ b/pgsql/tables/llx_bookmark.sql @@ -1,6 +1,5 @@ -- =================================================================== --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -16,6 +15,9 @@ -- 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$ +-- -- =================================================================== diff --git a/pgsql/tables/llx_boxes.sql b/pgsql/tables/llx_boxes.sql index 881f4dae909..54a86b4c76b 100644 --- a/pgsql/tables/llx_boxes.sql +++ b/pgsql/tables/llx_boxes.sql @@ -1,5 +1,6 @@ -- ============================================================================ -- Copyright (C) 2003 Rodolphe Quiedeville +-- Copyright (C) 2004 Benoit Mortier -- -- 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 diff --git a/pgsql/tables/llx_boxes_def.sql b/pgsql/tables/llx_boxes_def.sql index 56a08315024..a15af1350b4 100644 --- a/pgsql/tables/llx_boxes_def.sql +++ b/pgsql/tables/llx_boxes_def.sql @@ -1,5 +1,6 @@ -- ============================================================================ -- Copyright (C) 2003 Rodolphe Quiedeville +-- Copyright (C) 2004 Benoit Mortier -- -- 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 diff --git a/pgsql/tables/llx_c_actioncomm.sql b/pgsql/tables/llx_c_actioncomm.sql index 8c18a530f4f..5182799d96f 100644 --- a/pgsql/tables/llx_c_actioncomm.sql +++ b/pgsql/tables/llx_c_actioncomm.sql @@ -3,9 +3,6 @@ -- Copyright (C) 2002-2003 Éric Seigne -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -20,6 +17,9 @@ -- 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_c_actioncomm diff --git a/pgsql/tables/llx_c_ape.sql b/pgsql/tables/llx_c_ape.sql index 2082f92095a..89a2a83fcd8 100644 --- a/pgsql/tables/llx_c_ape.sql +++ b/pgsql/tables/llx_c_ape.sql @@ -2,9 +2,6 @@ -- Copyright (C) 2004 Rodolphe Quiedeville -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -19,6 +16,9 @@ -- 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_c_ape diff --git a/pgsql/tables/llx_c_departements.sql b/pgsql/tables/llx_c_departements.sql index 8340cb7470a..092a5ecdebd 100644 --- a/pgsql/tables/llx_c_departements.sql +++ b/pgsql/tables/llx_c_departements.sql @@ -2,9 +2,6 @@ -- Copyright (C) 2004 Rodolphe Quiedeville -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -19,6 +16,9 @@ -- 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_c_departements @@ -33,4 +33,4 @@ create table llx_c_departements active smallint default 1 ); -CREATE INDEX llx_c_departements_fk_region ON llx_c_departements(fk_region); \ No newline at end of file +CREATE INDEX llx_c_departements_fk_region ON llx_c_departements(fk_region); diff --git a/pgsql/tables/llx_c_effectif.sql b/pgsql/tables/llx_c_effectif.sql index 0b5b28c8cbc..3cd2499b96a 100644 --- a/pgsql/tables/llx_c_effectif.sql +++ b/pgsql/tables/llx_c_effectif.sql @@ -1,9 +1,6 @@ -- ======================================================================== -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -18,6 +15,9 @@ -- 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_c_effectif diff --git a/pgsql/tables/llx_c_pays.sql b/pgsql/tables/llx_c_pays.sql index b1fefe89f25..127895663cd 100644 --- a/pgsql/tables/llx_c_pays.sql +++ b/pgsql/tables/llx_c_pays.sql @@ -1,9 +1,6 @@ -- ======================================================================== -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -18,6 +15,9 @@ -- 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_c_pays diff --git a/pgsql/tables/llx_c_propalst.sql b/pgsql/tables/llx_c_propalst.sql index bb03f8f3777..489b7e66a54 100644 --- a/pgsql/tables/llx_c_propalst.sql +++ b/pgsql/tables/llx_c_propalst.sql @@ -1,9 +1,6 @@ -- =================================================================== -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -18,6 +15,9 @@ -- 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_c_propalst diff --git a/pgsql/tables/llx_c_regions.sql b/pgsql/tables/llx_c_regions.sql index 0dfab2c99bf..8b5b15fd8d7 100644 --- a/pgsql/tables/llx_c_regions.sql +++ b/pgsql/tables/llx_c_regions.sql @@ -2,9 +2,6 @@ -- Copyright (C) 2001-2002,2004 Rodolphe Quiedeville -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -19,6 +16,9 @@ -- 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_c_regions diff --git a/pgsql/tables/llx_c_stcomm.sql b/pgsql/tables/llx_c_stcomm.sql index cc78b88e3b1..0e0065a270e 100644 --- a/pgsql/tables/llx_c_stcomm.sql +++ b/pgsql/tables/llx_c_stcomm.sql @@ -1,9 +1,6 @@ -- ======================================================================== -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -18,6 +15,9 @@ -- 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_c_stcomm diff --git a/pgsql/tables/llx_c_typent.sql b/pgsql/tables/llx_c_typent.sql index ee2f1d3b355..b081b6e83e6 100644 --- a/pgsql/tables/llx_c_typent.sql +++ b/pgsql/tables/llx_c_typent.sql @@ -1,9 +1,6 @@ -- ======================================================================== -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -18,6 +15,9 @@ -- 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_c_typent diff --git a/pgsql/tables/llx_cash.sql b/pgsql/tables/llx_cash.sql index 009ff6aa9b0..c896d7dbf84 100644 --- a/pgsql/tables/llx_cash.sql +++ b/pgsql/tables/llx_cash.sql @@ -2,9 +2,6 @@ -- Copyright (C) 2004 Laurent Destailleur -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -19,6 +16,9 @@ -- 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_cash diff --git a/pgsql/tables/llx_chargesociales.sql b/pgsql/tables/llx_chargesociales.sql index d38453ec34b..5ca78ad8b2d 100644 --- a/pgsql/tables/llx_chargesociales.sql +++ b/pgsql/tables/llx_chargesociales.sql @@ -1,6 +1,7 @@ -- ======================================================================== -- Copyright (C) 2001-2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 Éric Seigne +-- Copyright (C) 2004 Benoit Mortier -- -- 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 diff --git a/pgsql/tables/llx_co_fa.sql b/pgsql/tables/llx_co_fa.sql index 1ce626d9c47..67b14da60b8 100644 --- a/pgsql/tables/llx_co_fa.sql +++ b/pgsql/tables/llx_co_fa.sql @@ -18,6 +18,7 @@ -- -- $Id$ -- $Source$ +-- -- =================================================================== create table llx_co_fa diff --git a/pgsql/tables/llx_co_pr.sql b/pgsql/tables/llx_co_pr.sql index e5f28de9977..73013aba525 100644 --- a/pgsql/tables/llx_co_pr.sql +++ b/pgsql/tables/llx_co_pr.sql @@ -18,6 +18,7 @@ -- -- $Id$ -- $Source$ +-- -- =================================================================== create table llx_co_pr diff --git a/pgsql/tables/llx_commandedet.sql b/pgsql/tables/llx_commandedet.sql index 80562bf7e1e..8321c943b05 100644 --- a/pgsql/tables/llx_commandedet.sql +++ b/pgsql/tables/llx_commandedet.sql @@ -18,6 +18,7 @@ -- -- $Id$ -- $Source$ +-- -- =================================================================== create table llx_commandedet diff --git a/pgsql/tables/llx_compta.sql b/pgsql/tables/llx_compta.sql index 89e84bbbc70..d4f64d928e6 100644 --- a/pgsql/tables/llx_compta.sql +++ b/pgsql/tables/llx_compta.sql @@ -1,9 +1,7 @@ -- =================================================================== -- Copyright (C) 2000-2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 Éric Seigne --- --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -19,6 +17,9 @@ -- 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$ +-- -- =================================================================== diff --git a/pgsql/tables/llx_compta_account.sql b/pgsql/tables/llx_compta_account.sql index c2e4bded589..473e16a9780 100644 --- a/pgsql/tables/llx_compta_account.sql +++ b/pgsql/tables/llx_compta_account.sql @@ -1,9 +1,7 @@ -- =================================================================== -- Copyright (C) 2000-2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 Éric Seigne --- --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -19,6 +17,9 @@ -- 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$ +-- -- =================================================================== diff --git a/pgsql/tables/llx_concert.sql b/pgsql/tables/llx_concert.sql index c3d311c5c62..32c41844773 100644 --- a/pgsql/tables/llx_concert.sql +++ b/pgsql/tables/llx_concert.sql @@ -1,5 +1,6 @@ -- ============================================================================ -- Copyright (C) 2003 Rodolphe Quiedeville +-- Copyright (C) 2004 Benoit Mortier -- -- 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 diff --git a/pgsql/tables/llx_cotisation.sql b/pgsql/tables/llx_cotisation.sql index cfa2ed867e6..25f0034b2d6 100644 --- a/pgsql/tables/llx_cotisation.sql +++ b/pgsql/tables/llx_cotisation.sql @@ -1,9 +1,6 @@ -- =================================================================== -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -18,6 +15,9 @@ -- 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$ +-- -- =================================================================== diff --git a/pgsql/tables/llx_deplacement.sql b/pgsql/tables/llx_deplacement.sql index f3224f6ae75..d017e47638b 100644 --- a/pgsql/tables/llx_deplacement.sql +++ b/pgsql/tables/llx_deplacement.sql @@ -1,5 +1,6 @@ -- ============================================================================ -- Copyright (C) 2003 Rodolphe Quiedeville +-- Copyright (C) 2004 Benoit Mortier -- -- 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 diff --git a/pgsql/tables/llx_domain.sql b/pgsql/tables/llx_domain.sql index 0f2d0f056f0..70a208a2e46 100644 --- a/pgsql/tables/llx_domain.sql +++ b/pgsql/tables/llx_domain.sql @@ -1,9 +1,7 @@ -- =================================================================== -- Copyright (C) 2001-2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 Éric Seigne --- --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -19,6 +17,9 @@ -- 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_domain diff --git a/pgsql/tables/llx_don.sql b/pgsql/tables/llx_don.sql index 3e98f47611e..e0d44d2203b 100644 --- a/pgsql/tables/llx_don.sql +++ b/pgsql/tables/llx_don.sql @@ -1,6 +1,5 @@ -- =================================================================== --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -16,6 +15,9 @@ -- 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$ +-- -- =================================================================== diff --git a/pgsql/tables/llx_don_projet.sql b/pgsql/tables/llx_don_projet.sql index 889505df4bf..3f7e0302ae1 100644 --- a/pgsql/tables/llx_don_projet.sql +++ b/pgsql/tables/llx_don_projet.sql @@ -1,6 +1,5 @@ -- =================================================================== --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -16,6 +15,9 @@ -- 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$ +-- -- =================================================================== diff --git a/pgsql/tables/llx_expeditiondet.sql b/pgsql/tables/llx_expeditiondet.sql index 119e35d354a..d8c3bf51c64 100644 --- a/pgsql/tables/llx_expeditiondet.sql +++ b/pgsql/tables/llx_expeditiondet.sql @@ -18,6 +18,7 @@ -- -- $Id$ -- $Source$ +-- -- =================================================================== create table llx_expeditiondet diff --git a/pgsql/tables/llx_fa_pr.sql b/pgsql/tables/llx_fa_pr.sql index 9afd4c65704..43bd08b517f 100644 --- a/pgsql/tables/llx_fa_pr.sql +++ b/pgsql/tables/llx_fa_pr.sql @@ -1,6 +1,5 @@ -- =================================================================== --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -16,6 +15,9 @@ -- 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_fa_pr diff --git a/pgsql/tables/llx_facture.sql b/pgsql/tables/llx_facture.sql index 3afa5872688..0a691f5cea5 100644 --- a/pgsql/tables/llx_facture.sql +++ b/pgsql/tables/llx_facture.sql @@ -19,6 +19,7 @@ -- -- $Id$ -- $Source$ +-- -- =========================================================================== create table llx_facture diff --git a/pgsql/tables/llx_facture_fourn_det.sql b/pgsql/tables/llx_facture_fourn_det.sql index db21fabb860..18585901ffb 100644 --- a/pgsql/tables/llx_facture_fourn_det.sql +++ b/pgsql/tables/llx_facture_fourn_det.sql @@ -18,6 +18,7 @@ -- -- $Id$ -- $Source$ +-- -- =================================================================== create table llx_facture_fourn_det diff --git a/pgsql/tables/llx_facture_rec.sql b/pgsql/tables/llx_facture_rec.sql index 8e5758972f9..928699e4ec7 100644 --- a/pgsql/tables/llx_facture_rec.sql +++ b/pgsql/tables/llx_facture_rec.sql @@ -1,5 +1,6 @@ -- =========================================================================== -- Copyright (C) 2003 Rodolphe Quiedeville +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -17,6 +18,7 @@ -- -- $Id$ -- $Source$ +-- -- =========================================================================== create table llx_facture_rec diff --git a/pgsql/tables/llx_facture_tva_sum.sql b/pgsql/tables/llx_facture_tva_sum.sql index a9d70985a5e..0cda22c94fc 100644 --- a/pgsql/tables/llx_facture_tva_sum.sql +++ b/pgsql/tables/llx_facture_tva_sum.sql @@ -18,6 +18,7 @@ -- -- $Id$ -- $Source$ +-- -- =================================================================== create table llx_facture_tva_sum diff --git a/pgsql/tables/llx_facturedet.sql b/pgsql/tables/llx_facturedet.sql index a2cc5d809ec..a2e18f753e5 100644 --- a/pgsql/tables/llx_facturedet.sql +++ b/pgsql/tables/llx_facturedet.sql @@ -19,6 +19,7 @@ -- -- $Id$ -- $Source$ +-- -- =================================================================== create table llx_facturedet diff --git a/pgsql/tables/llx_facturedet_rec.sql b/pgsql/tables/llx_facturedet_rec.sql index affc3309635..688005a7f23 100644 --- a/pgsql/tables/llx_facturedet_rec.sql +++ b/pgsql/tables/llx_facturedet_rec.sql @@ -18,6 +18,7 @@ -- -- $Id$ -- $Source$ +-- -- =================================================================== create table llx_facturedet_rec diff --git a/pgsql/tables/llx_fichinter.sql b/pgsql/tables/llx_fichinter.sql index c5dc47dce99..862e54cbf9d 100644 --- a/pgsql/tables/llx_fichinter.sql +++ b/pgsql/tables/llx_fichinter.sql @@ -1,9 +1,7 @@ -- =================================================================== -- Copyright (C) 2001-2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 Éric Seigne --- --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -19,6 +17,9 @@ -- 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_fichinter diff --git a/pgsql/tables/llx_paiement.sql b/pgsql/tables/llx_paiement.sql index a7d19f3ec38..211d15a8a44 100644 --- a/pgsql/tables/llx_paiement.sql +++ b/pgsql/tables/llx_paiement.sql @@ -1,9 +1,6 @@ -- =================================================================== -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -18,6 +15,9 @@ -- 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_paiement diff --git a/pgsql/tables/llx_paiement_facture.sql b/pgsql/tables/llx_paiement_facture.sql index dfec9f09051..419823ae30e 100644 --- a/pgsql/tables/llx_paiement_facture.sql +++ b/pgsql/tables/llx_paiement_facture.sql @@ -18,6 +18,7 @@ -- -- $Id$ -- $Source$ +-- -- =================================================================== create table llx_paiement_facture @@ -30,4 +31,4 @@ create table llx_paiement_facture CREATE INDEX llx_paiement_facture_fk_paiement ON llx_paiement_facture(fk_paiement); -CREATE INDEX llx_paiement_facture_fk_facture ON llx_paiement_facture(fk_facture); \ No newline at end of file +CREATE INDEX llx_paiement_facture_fk_facture ON llx_paiement_facture(fk_facture); diff --git a/pgsql/tables/llx_paiementcharge.sql b/pgsql/tables/llx_paiementcharge.sql index 6d346cd4c65..ba1660db0c1 100644 --- a/pgsql/tables/llx_paiementcharge.sql +++ b/pgsql/tables/llx_paiementcharge.sql @@ -18,6 +18,7 @@ -- -- $Id$ -- $Source$ +-- -- =================================================================== create table llx_paiementcharge diff --git a/pgsql/tables/llx_paiementfourn.sql b/pgsql/tables/llx_paiementfourn.sql index 1d04b3a67b5..414ccc8d4f1 100644 --- a/pgsql/tables/llx_paiementfourn.sql +++ b/pgsql/tables/llx_paiementfourn.sql @@ -18,6 +18,7 @@ -- -- $Id$ -- $Source$ +-- -- =================================================================== create table llx_paiementfourn diff --git a/pgsql/tables/llx_pointmort.sql b/pgsql/tables/llx_pointmort.sql index 0d336cd6c60..73ce117460b 100644 --- a/pgsql/tables/llx_pointmort.sql +++ b/pgsql/tables/llx_pointmort.sql @@ -1,6 +1,5 @@ -- =================================================================== --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -16,6 +15,9 @@ -- 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_pointmort diff --git a/pgsql/tables/llx_projet.sql b/pgsql/tables/llx_projet.sql index 9dcc5628bcc..7376e199497 100644 --- a/pgsql/tables/llx_projet.sql +++ b/pgsql/tables/llx_projet.sql @@ -1,10 +1,8 @@ -- =========================================================================== -- Copyright (C) 2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 Éric Seigne +-- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -19,6 +17,9 @@ -- 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_projet diff --git a/pgsql/tables/llx_propal.sql b/pgsql/tables/llx_propal.sql index 5c6b3914625..646753c5810 100644 --- a/pgsql/tables/llx_propal.sql +++ b/pgsql/tables/llx_propal.sql @@ -3,9 +3,6 @@ -- Copyright (C) 2002-2003 Éric Seigne -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -20,6 +17,9 @@ -- 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_propal diff --git a/pgsql/tables/llx_propaldet.sql b/pgsql/tables/llx_propaldet.sql index ede259fdf62..f30f635d3c0 100644 --- a/pgsql/tables/llx_propaldet.sql +++ b/pgsql/tables/llx_propaldet.sql @@ -3,9 +3,6 @@ -- Copyright (C) 2002-2003 Éric Seigne -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -20,6 +17,9 @@ -- 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_propaldet diff --git a/pgsql/tables/llx_service.sql b/pgsql/tables/llx_service.sql index cfbe7391864..1db45aad74e 100644 --- a/pgsql/tables/llx_service.sql +++ b/pgsql/tables/llx_service.sql @@ -1,9 +1,7 @@ -- =================================================================== -- Copyright (C) 2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 Éric Seigne --- --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -19,6 +17,9 @@ -- 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_service diff --git a/pgsql/tables/llx_soc_events.sql b/pgsql/tables/llx_soc_events.sql index cc28d3ba776..924d315a497 100644 --- a/pgsql/tables/llx_soc_events.sql +++ b/pgsql/tables/llx_soc_events.sql @@ -1,9 +1,7 @@ -- ======================================================================== -- Copyright (C) 2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 ?ric Seigne --- --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -19,6 +17,9 @@ -- 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_soc_events diff --git a/pgsql/tables/llx_soc_recontact.sql b/pgsql/tables/llx_soc_recontact.sql index 7408f3732b0..6e35fa85df7 100644 --- a/pgsql/tables/llx_soc_recontact.sql +++ b/pgsql/tables/llx_soc_recontact.sql @@ -1,9 +1,7 @@ -- =================================================================== -- Copyright (C) 2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 Éric Seigne --- --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -21,6 +19,9 @@ -- -- Societes a recontacter -- +-- $Id$ +-- $Source$ +-- -- =================================================================== create table llx_soc_recontact diff --git a/pgsql/tables/llx_societe.sql b/pgsql/tables/llx_societe.sql index 3187318a9e3..2cfd28efada 100644 --- a/pgsql/tables/llx_societe.sql +++ b/pgsql/tables/llx_societe.sql @@ -1,11 +1,8 @@ -- ======================================================================== -- Copyright (C) 2000-2002 Rodolphe Quiedeville --- Copyright (C) 2002-2003 ?ric Seigne +-- Copyright (C) 2002-2003 Eric Seigne -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -20,6 +17,9 @@ -- 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_societe diff --git a/pgsql/tables/llx_socpeople.sql b/pgsql/tables/llx_socpeople.sql index c4630ee57c0..cab613b322b 100644 --- a/pgsql/tables/llx_socpeople.sql +++ b/pgsql/tables/llx_socpeople.sql @@ -1,11 +1,8 @@ -- ============================================================================ -- Copyright (C) 2001-2002 Rodolphe Quiedeville --- Copyright (C) 2002-2003 ?ric Seigne +-- Copyright (C) 2002-2003 Eric Seigne -- Copyright (C) 2004 Benoit Mortier -- --- $Id$ --- $Source$ --- -- 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 @@ -20,6 +17,9 @@ -- 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_socpeople diff --git a/pgsql/tables/llx_socstatutlog.sql b/pgsql/tables/llx_socstatutlog.sql index 49e965f0c3c..61a0c96cf9d 100644 --- a/pgsql/tables/llx_socstatutlog.sql +++ b/pgsql/tables/llx_socstatutlog.sql @@ -1,9 +1,7 @@ -- ======================================================================== -- Copyright (C) 2002 Rodolphe Quiedeville --- Copyright (C) 2002-2003 ?ric Seigne --- --- $Id$ --- $Source$ +-- Copyright (C) 2002-2003 Eric Seigne +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -19,6 +17,9 @@ -- 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_socstatutlog diff --git a/pgsql/tables/llx_todocomm.sql b/pgsql/tables/llx_todocomm.sql index 62dd4383506..dc07b121d52 100644 --- a/pgsql/tables/llx_todocomm.sql +++ b/pgsql/tables/llx_todocomm.sql @@ -1,10 +1,7 @@ -- ======================================================================== -- Copyright (C) 2001-2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 Éric Seigne --- --- $Id$ --- $Source$ --- +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -22,6 +19,9 @@ -- -- Actions commerciales a effectuer -- +-- $Id$ +-- $Source$ +-- -- ======================================================================== create table llx_todocomm diff --git a/pgsql/tables/llx_transaction_bplc.sql b/pgsql/tables/llx_transaction_bplc.sql index dfd6c341a49..0aa154a4f77 100644 --- a/pgsql/tables/llx_transaction_bplc.sql +++ b/pgsql/tables/llx_transaction_bplc.sql @@ -1,6 +1,6 @@ -- =================================================================== -- Copyright 2004 Benoit Mortier - +-- -- 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 diff --git a/pgsql/tables/llx_tva.sql b/pgsql/tables/llx_tva.sql index f32492d9631..55e195d9530 100644 --- a/pgsql/tables/llx_tva.sql +++ b/pgsql/tables/llx_tva.sql @@ -1,6 +1,7 @@ -- =================================================================== -- Copyright (C) 2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 Éric Seigne +-- Copyright (C) 2004 Benoit Mortier -- -- 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 diff --git a/pgsql/tables/llx_ventes.sql b/pgsql/tables/llx_ventes.sql index fac47a8dccc..3588aa4a366 100644 --- a/pgsql/tables/llx_ventes.sql +++ b/pgsql/tables/llx_ventes.sql @@ -1,9 +1,7 @@ -- =================================================================== -- Copyright (C) 2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 Éric Seigne --- --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -19,6 +17,9 @@ -- 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_ventes diff --git a/pgsql/tables/llx_voyage.sql b/pgsql/tables/llx_voyage.sql index d3eff970e74..6f52136cd50 100644 --- a/pgsql/tables/llx_voyage.sql +++ b/pgsql/tables/llx_voyage.sql @@ -1,9 +1,7 @@ -- =================================================================== -- Copyright (C) 2001-2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 Éric Seigne --- --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -19,6 +17,9 @@ -- 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_voyage diff --git a/pgsql/tables/llx_voyage_reduc.sql b/pgsql/tables/llx_voyage_reduc.sql index e07d0ae0f87..22e6b28b8c8 100644 --- a/pgsql/tables/llx_voyage_reduc.sql +++ b/pgsql/tables/llx_voyage_reduc.sql @@ -1,9 +1,7 @@ -- =================================================================== -- Copyright (C) 2001-2002 Rodolphe Quiedeville -- Copyright (C) 2002-2003 Éric Seigne --- --- $Id$ --- $Source$ +-- Copyright (C) 2004 Benoit Mortier -- -- 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 @@ -19,6 +17,9 @@ -- 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_voyage_reduc