Skip to content
Snippets Groups Projects
Commit 8e06d496 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

La taille des champs entre bank (libellé) et domiciliation (adresse postale)...

La taille des champs entre bank (libellé) et domiciliation (adresse postale) étaient inversées, l'adresse du RIB était du coup tronquée.
Ajout du nom du propriétaire du compte et de l'adresse du propriétaire du compte.
parent 8c92baf5
No related branches found
No related tags found
No related merge requests found
......@@ -3,47 +3,29 @@ alter table llx_propal add fin_validite datetime ;
alter table llx_entrepot add statut tinyint default 1;
alter table llx_product add stock_propale integer default 0;
alter table llx_product add stock_commande integer default 0;
alter table llx_product add seuil_stock_alerte integer default 0;
alter table `llx_groupart` add `description` text after `groupart` ;
alter table llx_product add stock_propale integer default 0;
alter table llx_product add stock_commande integer default 0;
alter table llx_product add seuil_stock_alerte integer default 0;
alter table llx_groupart add description text after groupart ;
alter table llx_socpeople add phone_perso varchar(30) after phone ;
alter table llx_socpeople add phone_mobile varchar(30) after phone_perso ;
alter table llx_socpeople add jabberid varchar(255) after email ;
alter table llx_socpeople add birthday date after address ;
alter table llx_socpeople add tms timestamp after datec ;
create table llx_birthday_alert
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
fk_contact integer,
fk_user integer
);
alter table llx_facture_fourn drop index facnumber ;
alter table llx_facture_fourn add unique index (facnumber, fk_soc) ;
alter table llx_bank_account modify bank varchar(60);
alter table llx_bank_account modify domiciliation varchar(255);
alter table llx_bank_account add proprio varchar(60) after domiciliation ;
alter table llx_bank_account add adresse_proprio varchar(255) after proprio ;
alter table llx_paiement add fk_bank integer NOT NULL after note ;
alter table llx_paiementfourn add fk_bank integer NOT NULL after note ;
create table llx_co_fa
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
fk_commande integer NOT NULL,
fk_facture integer NOT NULL,
key(fk_commande),
key(fk_facture)
);
alter table c_paiement rename llx_c_paiement ;
alter table c_propalst rename llx_c_propalst ;
......@@ -56,6 +38,23 @@ alter table c_stcomm rename llx_c_stcomm ;
alter table c_typent rename llx_c_typent ;
create table llx_birthday_alert
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
fk_contact integer,
fk_user integer
);
create table llx_co_fa
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
fk_commande integer NOT NULL,
fk_facture integer NOT NULL,
key(fk_commande),
key(fk_facture)
);
create table llx_paiement_facture
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment