mise a jour traductions compagnies.lang fr_BE, nl_BE, en_US
ajout des tables postgresql
This commit is contained in:
parent
cbf3f6cf2f
commit
0b4d169ffe
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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);
|
||||
|
||||
35
pgsql/tables/llx_societe_remise.sql
Normal file
35
pgsql/tables/llx_societe_remise.sql
Normal 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
|
||||
);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user