Add CBC Belgium
This commit is contained in:
parent
cd91b783e5
commit
bd3f33609b
9 changed files with 144 additions and 81 deletions
|
|
@ -939,6 +939,12 @@ CREATE SEQUENCE s_user_jrn
|
|||
NO MAXVALUE
|
||||
NO MINVALUE
|
||||
CACHE 1;
|
||||
CREATE SEQUENCE s_cbc
|
||||
INCREMENT BY 1
|
||||
NO MAXVALUE
|
||||
NO MINVALUE
|
||||
CACHE 1;
|
||||
|
||||
CREATE TABLE stock_goods (
|
||||
sg_id integer DEFAULT nextval('s_stock_goods'::text) NOT NULL,
|
||||
j_id integer,
|
||||
|
|
|
|||
|
|
@ -1439,6 +1439,11 @@ CREATE SEQUENCE s_attr_def
|
|||
NO MINVALUE
|
||||
CACHE 1;
|
||||
|
||||
CREATE SEQUENCE s_cbc
|
||||
INCREMENT BY 1
|
||||
NO MAXVALUE
|
||||
NO MINVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -309,6 +309,11 @@ CREATE SEQUENCE s_central
|
|||
NO MAXVALUE
|
||||
NO MINVALUE
|
||||
CACHE 1;
|
||||
CREATE SEQUENCE s_cbc
|
||||
INCREMENT BY 1
|
||||
NO MAXVALUE
|
||||
NO MINVALUE
|
||||
CACHE 1;
|
||||
|
||||
CREATE SEQUENCE s_central_order
|
||||
START WITH 1
|
||||
|
|
|
|||
|
|
@ -556,4 +556,10 @@ insert into action values (30,'Module Gestion');
|
|||
|
||||
insert into format_csv_banque values ('Argenta Belgique','argenta_be.inc.php');
|
||||
insert into format_csv_banque values ('CBC Belgique','cbc_be.inc.php');
|
||||
CREATE SEQUENCE s_cbc
|
||||
INCREMENT BY 1
|
||||
NO MAXVALUE
|
||||
NO MINVALUE
|
||||
CACHE 1;
|
||||
|
||||
commit;
|
||||
|
|
|
|||
|
|
@ -65,10 +65,10 @@ INSERT INTO format_csv_banque VALUES ('ING', 'ing_be.inc.php');
|
|||
INSERT INTO format_csv_banque VALUES ('CBC', 'cbc_be.inc.php');
|
||||
|
||||
CREATE TABLE import_tmp (
|
||||
code text,
|
||||
date_exec date,
|
||||
date_valeur date,
|
||||
montant text,
|
||||
code text not null,
|
||||
date_exec date not null ,
|
||||
date_valeur date not null,
|
||||
montant number(20,4) not null default 0,
|
||||
devise text,
|
||||
compte_ordre text,
|
||||
detail text,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue