*** empty log message ***

This commit is contained in:
Rodolphe Quiedeville 2002-12-29 20:01:18 +00:00
parent 577e8c4fbb
commit 56b5462839
5 changed files with 126 additions and 16 deletions

33
doc/adherent.sgml Normal file
View File

@ -0,0 +1,33 @@
<!-- $Id$ -->
<chapt id="adherent">Module de gestion des adherents
<p>
Ce module permet la gestion des adherents et des cotisation d'un association.
</p>
<sect id="adh-tables">Tables de la base de données
<p>
Deux tables sont utilisées pour ce module.
<list>
<item>llx_adherent</item>
<item>llx_cotisation</item>
</list>
</p>
</sect>
<sect id="adh-statut">
Un adherent peut avoir plusieurs statuts differents ils sont.
</sect>
</chapt>
<!--
Local Variables: ***
mode: xml ***
End: ***
-->

16
doc/don.sgml Normal file
View File

@ -0,0 +1,16 @@
<chapt id="dons">Dons
<sect id="don-suffix">Suffixe de commande
Le suffixe de commande des dons est la valeur 10.
</sect>
</chapt>
<!--
Local Variables: ***
mode: xml ***
End: ***
-->

28
doc/manual.sgml Normal file
View File

@ -0,0 +1,28 @@
<!DOCTYPE debiandoc public "-//DebianDoc//DTD DebianDoc//EN"
[
<!entity ch-don system "don.sgml">
<!entity ch-adherent system "adherent.sgml">
]
>
<debiandoc>
<book>
<titlepag>
<title>Manuel d'utilisation Dolibarr</title>
<author>Rodolphe Quiédeville<email/rodolphe@quiedeville.org/
</author>
<version></version>
</titlepag>
<toc sect>
&ch-adherent;
&ch-don;
</book>
</debiandoc>

View File

@ -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
);

View File

@ -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
);