Restructure files , move show_document.php to export_document.php

This commit is contained in:
Dany De Bontridder 2015-10-17 16:37:31 +02:00
parent c59cca605b
commit 9da5661d42
5 changed files with 81 additions and 41 deletions

View file

@ -9,4 +9,10 @@ CREATE TRIGGER fiche_detail_upd_trg
insert into menu_ref(me_code,me_file,me_menu,me_description,me_type)
values ('RAW:receipt','export_receipt.php','Export la pièce','export la pièce justificative d''une opération','PR');
insert into profile_menu (me_code,p_id,p_type_display) select 'RAW:receipt',p_id,'P' from profile where p_id > 0;
insert into profile_menu (me_code,p_id,p_type_display) select 'RAW:receipt',p_id,'P' from profile where p_id > 0;
insert into menu_ref(me_code,me_file,me_menu,me_description,me_type)
values ('RAW:document','export_document.php','Export le document','export le document d''une événement','PR');
insert into profile_menu (me_code,p_id,p_type_display) select 'RAW:document',p_id,'P' from profile where p_id > 0;