From 0b4d169ffe1f698acaee7f363700b7aa281168a8 Mon Sep 17 00:00:00 2001 From: opensides Date: Wed, 18 Aug 2004 18:39:39 +0000 Subject: [PATCH] mise a jour traductions compagnies.lang fr_BE, nl_BE, en_US ajout des tables postgresql --- htdocs/langs/en_US/companies.lang | 3 ++- htdocs/langs/fr_BE/companies.lang | 1 + htdocs/langs/nl_BE/companies.lang | 1 + pgsql/tables/llx_societe.sql | 3 ++- pgsql/tables/llx_societe_remise.sql | 35 +++++++++++++++++++++++++++++ 5 files changed, 41 insertions(+), 2 deletions(-) create mode 100644 pgsql/tables/llx_societe_remise.sql diff --git a/htdocs/langs/en_US/companies.lang b/htdocs/langs/en_US/companies.lang index 38d87bae976..43068f4d361 100644 --- a/htdocs/langs/en_US/companies.lang +++ b/htdocs/langs/en_US/companies.lang @@ -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 \ No newline at end of file +AddContact=Add new contact diff --git a/htdocs/langs/fr_BE/companies.lang b/htdocs/langs/fr_BE/companies.lang index 387b7142f10..0d144008461 100644 --- a/htdocs/langs/fr_BE/companies.lang +++ b/htdocs/langs/fr_BE/companies.lang @@ -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 diff --git a/htdocs/langs/nl_BE/companies.lang b/htdocs/langs/nl_BE/companies.lang index f0992e50814..521c7aa8212 100644 --- a/htdocs/langs/nl_BE/companies.lang +++ b/htdocs/langs/nl_BE/companies.lang @@ -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 diff --git a/pgsql/tables/llx_societe.sql b/pgsql/tables/llx_societe.sql index 5977455b625..2e9bd822644 100644 --- a/pgsql/tables/llx_societe.sql +++ b/pgsql/tables/llx_societe.sql @@ -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); diff --git a/pgsql/tables/llx_societe_remise.sql b/pgsql/tables/llx_societe_remise.sql new file mode 100644 index 00000000000..5b3c7d73d71 --- /dev/null +++ b/pgsql/tables/llx_societe_remise.sql @@ -0,0 +1,35 @@ +-- ======================================================================== +-- Copyright (C) 2000-2004 Rodolphe Quiedeville +-- +-- 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 +); +