2
0
forked from Wavyzz/dolibarr
Files
dolibarr-fork/pgsql/tables/llx_societe.sql
2007-12-02 22:06:32 +00:00

76 lines
4.7 KiB
SQL
Raw Blame History

-- Generated by dolibarr_mysql2pgsql
-- (c) 2004, PostgreSQL Inc.
-- (c) 2005, Laurent Destailleur.
-- ========================================================================
-- Copyright (C) 2000-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
--
-- 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: llx_societe.sql,v 1.31 2007/12/02 21:37:46 eldy Exp
-- ========================================================================
create table llx_societe
(
rowid SERIAL PRIMARY KEY,
"statut" smallint DEFAULT 0, -- statut
"parent" integer,
"tms" timestamp,
"datec" timestamp, -- creation date
"datea" timestamp, -- activation date
"nom" varchar(60), -- company name
"code_client" varchar(15), -- code client
"code_fournisseur" varchar(15), -- code founisseur
"code_compta" varchar(15), -- code compta client
"code_compta_fournisseur" varchar(15), -- code compta founisseur
"address" varchar(255), -- company adresse
"cp" varchar(10), -- zipcode
"ville" varchar(50), -- town
"fk_departement" integer DEFAULT 0, --
"fk_pays" integer DEFAULT 0, --
"tel" varchar(20), -- phone number
"fax" varchar(20), -- fax number
"url" varchar(255), --
"email" varchar(128), --
"fk_secteur" integer DEFAULT 0, --
"fk_effectif" integer DEFAULT 0, --
"fk_typent" integer DEFAULT 0, --
"fk_forme_juridique" integer DEFAULT 0, -- forme juridique INSEE
"siren" varchar(16), -- IDProf1: siren ou RCS pour france
"siret" varchar(16), -- IDProf2: siret pour france
"ape" varchar(16), -- IDProf3: code ape pour france
"idprof4" varchar(16), -- IDProf4: nu pour france
"tva_intra" varchar(20), -- tva
"capital" real, -- capital de la soci<63>t<EFBFBD>
"description" text, --
"fk_stcomm" smallint DEFAULT 0, -- commercial statut
"note" text, --
"services" smallint DEFAULT 0, --
"prefix_comm" varchar(5), -- prefix commercial
"client" smallint DEFAULT 0, -- client 0/1/2
"fournisseur" smallint DEFAULT 0, -- fournisseur 0/1
"supplier_account" varchar(32), -- compte client chez un fournisseur
"customer_bad" smallint DEFAULT 0, -- mauvais payeur 0/1
"customer_rate" real DEFAULT 0, -- taux fiabili<6C> client (0 <20> 1)
"supplier_rate" real DEFAULT 0, -- taux fiabili<6C> fournisseur (0 <20> 1)
"rubrique" varchar(255), -- champ rubrique libre
"fk_user_creat" integer, -- utilisateur qui a cr<63><72> l'info
"fk_user_modif" integer, -- utilisateur qui a modifi<66> l'info
"remise_client" real DEFAULT 0, -- remise syst<73>matique pour le client
"mode_reglement" smallint, -- mode de r<>glement
"cond_reglement" smallint, -- condition de r<>glement
"tva_assuj" smallint DEFAULT 1 -- assuj<75>ti ou non <20> la TVA
);