*** empty log message ***
This commit is contained in:
parent
577e8c4fbb
commit
56b5462839
33
doc/adherent.sgml
Normal file
33
doc/adherent.sgml
Normal 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
16
doc/don.sgml
Normal 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
28
doc/manual.sgml
Normal 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>
|
||||||
@ -24,20 +24,21 @@
|
|||||||
|
|
||||||
create table llx_adherent
|
create table llx_adherent
|
||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
tms timestamp,
|
tms timestamp,
|
||||||
statut smallint NOT NULL DEFAULT 0,
|
statut smallint NOT NULL DEFAULT 0,
|
||||||
datec datetime,
|
fk_adherent_type smallint,
|
||||||
prenom varchar(50),
|
datec datetime,
|
||||||
nom varchar(50),
|
prenom varchar(50),
|
||||||
societe varchar(50),
|
nom varchar(50),
|
||||||
adresse text,
|
societe varchar(50),
|
||||||
cp varchar(30),
|
adresse text,
|
||||||
ville varchar(50),
|
cp varchar(30),
|
||||||
pays varchar(50),
|
ville varchar(50),
|
||||||
email varchar(255),
|
pays varchar(50),
|
||||||
fk_user_author integer NOT NULL,
|
email varchar(255),
|
||||||
fk_user_valid integer NOT NULL,
|
fk_user_author integer NOT NULL,
|
||||||
datefin datetime NOT NULL, -- date de fin de validité de la cotisation
|
fk_user_valid integer NOT NULL,
|
||||||
note text
|
datefin datetime NOT NULL, -- date de fin de validité de la cotisation
|
||||||
|
note text
|
||||||
);
|
);
|
||||||
|
|||||||
32
mysql/tables/llx_adherent_type.sql
Normal file
32
mysql/tables/llx_adherent_type.sql
Normal 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
|
||||||
|
);
|
||||||
Loading…
Reference in New Issue
Block a user