From 56b5462839b55b1c6497d78011dfb87202aa4cd0 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Sun, 29 Dec 2002 20:01:18 +0000 Subject: [PATCH] *** empty log message *** --- doc/adherent.sgml | 33 ++++++++++++++++++++++++++++++ doc/don.sgml | 16 +++++++++++++++ doc/manual.sgml | 28 +++++++++++++++++++++++++ mysql/tables/llx_adherent.sql | 33 +++++++++++++++--------------- mysql/tables/llx_adherent_type.sql | 32 +++++++++++++++++++++++++++++ 5 files changed, 126 insertions(+), 16 deletions(-) create mode 100644 doc/adherent.sgml create mode 100644 doc/don.sgml create mode 100644 doc/manual.sgml create mode 100644 mysql/tables/llx_adherent_type.sql diff --git a/doc/adherent.sgml b/doc/adherent.sgml new file mode 100644 index 00000000000..70b262524ee --- /dev/null +++ b/doc/adherent.sgml @@ -0,0 +1,33 @@ + +Module de gestion des adherents + +

+ Ce module permet la gestion des adherents et des cotisation d'un association. +

+ + Tables de la base de données + +

+ + Deux tables sont utilisées pour ce module. + + + llx_adherent + llx_cotisation + +

+
+ + + + Un adherent peut avoir plusieurs statuts differents ils sont. + + + + +
+ diff --git a/doc/don.sgml b/doc/don.sgml new file mode 100644 index 00000000000..35995ffcd04 --- /dev/null +++ b/doc/don.sgml @@ -0,0 +1,16 @@ +Dons + + Suffixe de commande + + Le suffixe de commande des dons est la valeur 10. + + + + + + + diff --git a/doc/manual.sgml b/doc/manual.sgml new file mode 100644 index 00000000000..947179dc71b --- /dev/null +++ b/doc/manual.sgml @@ -0,0 +1,28 @@ + + +] +> + + + + + + + Manuel d'utilisation Dolibarr + + Rodolphe Quiédeville + + + + + + + &ch-adherent; + &ch-don; + + + + diff --git a/mysql/tables/llx_adherent.sql b/mysql/tables/llx_adherent.sql index ab5eddfb91e..2fd2c6bb2a4 100644 --- a/mysql/tables/llx_adherent.sql +++ b/mysql/tables/llx_adherent.sql @@ -24,20 +24,21 @@ create table llx_adherent ( - rowid integer AUTO_INCREMENT PRIMARY KEY, - tms timestamp, - statut smallint NOT NULL DEFAULT 0, - datec datetime, - prenom varchar(50), - nom varchar(50), - societe varchar(50), - adresse text, - cp varchar(30), - ville varchar(50), - pays varchar(50), - email varchar(255), - fk_user_author integer NOT NULL, - fk_user_valid integer NOT NULL, - datefin datetime NOT NULL, -- date de fin de validité de la cotisation - note text + rowid integer AUTO_INCREMENT PRIMARY KEY, + tms timestamp, + statut smallint NOT NULL DEFAULT 0, + fk_adherent_type smallint, + datec datetime, + prenom varchar(50), + nom varchar(50), + societe varchar(50), + adresse text, + cp varchar(30), + ville varchar(50), + pays varchar(50), + email varchar(255), + fk_user_author integer NOT NULL, + fk_user_valid integer NOT NULL, + datefin datetime NOT NULL, -- date de fin de validité de la cotisation + note text ); diff --git a/mysql/tables/llx_adherent_type.sql b/mysql/tables/llx_adherent_type.sql new file mode 100644 index 00000000000..dc3dd04ac04 --- /dev/null +++ b/mysql/tables/llx_adherent_type.sql @@ -0,0 +1,32 @@ +-- =================================================================== +-- $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 +-- (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. +-- +-- =================================================================== + +-- statut +-- 0 : actif +-- 1 : inactif + +create table llx_adherent_type +( + rowid integer AUTO_INCREMENT PRIMARY KEY, + tms timestamp, + statut smallint NOT NULL DEFAULT 0, + libelle varchar(50), + note text +);