add export CSV to ANC grand livre
This commit is contained in:
parent
30f962432d
commit
dfe59ee4e7
6 changed files with 183 additions and 2 deletions
15
sql/anc-grandlivre.sql
Normal file
15
sql/anc-grandlivre.sql
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
insert into menu_ref(me_code,me_menu,me_file,me_description,me_type)
|
||||
values ('CSV:AncGrandLivre','Impression Grand-Livre',null,null,'PR');
|
||||
CREATE TABLE profile_menu (
|
||||
pm_id integer NOT NULL,
|
||||
me_code text,
|
||||
me_code_dep text,
|
||||
p_id integer,
|
||||
p_order integer,
|
||||
p_type_display text NOT NULL,
|
||||
pm_default integer
|
||||
);
|
||||
|
||||
insert into profile_menu(me_code,me_code_dep,p_id,pm_default)
|
||||
values ( 'CSV:AncGrandLivre', NULL, 1 , 'P', 0);
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue