Mantis #0001682: CA - ajouter possibilité d'exporter le plan analytique,
add action CSV:Analytic_Axis
This commit is contained in:
parent
73c60dd495
commit
0d0ce3647f
4 changed files with 28 additions and 20 deletions
|
|
@ -10,6 +10,6 @@ operation_currency
|
|||
join jrnx using (j_id)
|
||||
group by f_id,j_id;
|
||||
|
||||
commit ;
|
||||
|
||||
insert into version (val,v_description) values (133,'Currency : default accounting for currency difference ');
|
||||
commit ;
|
||||
13
include/sql/patch/upgrade133.sql
Normal file
13
include/sql/patch/upgrade133.sql
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
begin;
|
||||
|
||||
INSERT INTO public.menu_ref
|
||||
(me_code, me_menu, me_file, me_url, me_description, me_parameter, me_javascript, me_type, me_description_etendue)
|
||||
VALUES('CSV:Analytic_Axis', 'Export ANC', 'export_anc_axis_csv.php', NULL, 'Export ANC Liste comptes', NULL, NULL, 'PR', NULL);
|
||||
|
||||
|
||||
insert into profile_menu (me_code,p_id,p_type_display) select distinct 'CSV:Analytic_Axis', p_id, 'P' from profile_menu
|
||||
where
|
||||
p_id in (select distinct p_id from profile_menu where me_code='PLANANC');
|
||||
|
||||
insert into version (val,v_description) values (134,'Export CSV:Analytic_Axis');
|
||||
commit ;
|
||||
Loading…
Add table
Add a link
Reference in a new issue