mtech_test=# select * from menu_acl where node_id in (select node_id from menu_attribute where attribute = 'menu');
id | role_name | acl_type | node_id
------+----------------------------------------------+----------+---------
8262 | lsmb_mtech_test__orders_purchase_consolidate | allow | 60
8264 | lsmb_mtech_test__orders_sales_consolidate | allow | 60
8354 | public | allow | 192
(3 rows)
mtech_test=# select * from menu_node where id in (select node_id from menu_acl where node_id in (select node_id from menu_attribute where attribute = 'menu'));
id | label | parent | position
-----+-------------+--------+----------
60 | Consolidate | 50 | 5
192 | New Window | 0 | 22
(2 rows)
That new window entry seems fishy to me. The other acls are safe to delete.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
mtech_test=# select * from menu_acl where node_id in (select node_id from menu_attribute where attribute = 'menu');
id | role_name | acl_type | node_id
------+----------------------------------------------+----------+---------
8262 | lsmb_mtech_test__orders_purchase_consolidate | allow | 60
8264 | lsmb_mtech_test__orders_sales_consolidate | allow | 60
8354 | public | allow | 192
(3 rows)
mtech_test=# select * from menu_node where id in (select node_id from menu_acl where node_id in (select node_id from menu_attribute where attribute = 'menu'));
id | label | parent | position
-----+-------------+--------+----------
60 | Consolidate | 50 | 5
192 | New Window | 0 | 22
(2 rows)
That new window entry seems fishy to me. The other acls are safe to delete.
svn 5804