mise a jour traductions compagnies.lang fr_BE, nl_BE, en_US

ajout des tables postgresql
This commit is contained in:
opensides 2004-08-18 18:39:39 +00:00
parent cbf3f6cf2f
commit 0b4d169ffe
5 changed files with 41 additions and 2 deletions

View File

@ -21,6 +21,7 @@ TVAIntra=Intracommunautary VAT
ProspectCustomer=Prospect / Customer
Prospect=Prospect
Customer=Customer
CustomerDiscount=Customer Discount
Supplier=Supplier
CompanyList=Companies' list
AddContact=Add new contact
AddContact=Add new contact

View File

@ -21,6 +21,7 @@ TVAIntra=Num
ProspectCustomer=Prospect / Client
Prospect=Prospect
Customer=Client
CustomerDiscount=Remise client
Supplier=Fournisseur
CompanyList=Liste des sociétés
AddContact=Ajouter un contact

View File

@ -21,6 +21,7 @@ TVAIntra=Intracommunautary VAT
ProspectCustomer=Vooruitzicht / Klant
Prospect=Vooruitzicht
Customer=Klant
CustomerDiscount=De klant Korting
Supplier=Leverancier
CompanyList=Bedrijven lijst
AddContact=Voeg contact toe

View File

@ -58,7 +58,8 @@ create table llx_societe
fournisseur smallint default 0, -- fournisseur oui/non
rubrique varchar(255), -- champ rubrique libre
fk_user_creat integer, -- utilisateur qui a créé l'info
fk_user_modif integer -- utilisateur qui a modifié l'info
fk_user_modif integer, -- utilisateur qui a modifié l'info
remise_client real default 0 -- remise systématique pour le client
);
create unique index llx_societe_prefix_comm on llx_societe(prefix_comm);

View File

@ -0,0 +1,35 @@
-- ========================================================================
-- 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$
-- $Source$
--
-- Historique des remises clients
--
-- ========================================================================
create table llx_societe_remise
(
rowid serial PRIMARY KEY,
fk_soc integer NOT NULL,
tms timestamp,
datec timestamp, -- creation date
fk_user_author integer, -- utilisateur qui a créé l'info
remise_client real default 0, -- remise systématique pour le client
note text
);