Task #1120 - Ajouter option sécurité : effacement opération comptable

#1120 : new privilege 
 -> remove accountancy writing privilege write , override ledger acces
 -> remove receipt (document)override ledger acces
This commit is contained in:
Dany De Bontridder 2015-05-18 18:41:39 +02:00
parent 0be26ca9a7
commit 0d2971db93
5 changed files with 88 additions and 60 deletions

View file

@ -1,4 +1,9 @@
update action set ac_description = 'Effacer un document de la comptabilité ou du suivi' where ac_id=1020;
INSERT INTO action(
ac_id, ac_description, ac_module, ac_code)
VALUES (1110, 'Enlever une pièce justificative', 'compta', 'RMRECEIPT');
INSERT INTO action(
ac_id, ac_description, ac_module, ac_code)
VALUES (1120, 'Effacer une opération ', 'compta', 'RMOPER');
CREATE TABLE todo_list_shared (id serial primary key, todo_list_id int4 NOT NULL, use_login int4 NOT NULL, CONSTRAINT unique_todo_list_id_login
@ -11,3 +16,22 @@ comment on column todo_list_shared.todo_list_id is 'fk to todo_list';
comment on column todo_list_shared.use_login is 'user login';
/**
Arbre dépendance
with recursive t (ag_id,ag_ref_ag_id,ag_title,depth) as (
select
ag_id , ag_ref_ag_id, ag_title , 1
from
action_gestion
where ag_id=55
union all
select
p2.ag_id,p2.ag_ref_ag_id,p2.ag_title,depth + 1
from
t as p1, action_gestion as p2
where
p1.ag_ref_ag_id is not null and
p1.ag_id = p2.ag_ref_ag_id
) select * from t;
*/