13 lines
393 B
Python
13 lines
393 B
Python
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
def execute():
|
|
"""allow read permission to all for report list"""
|
|
import webnotes
|
|
webnotes.conn.sql("""\
|
|
delete from `tabDocPerm`
|
|
where parent in ('Report', 'Search Criteria')""")
|
|
|
|
webnotes.reload_doc('core', 'doctype', 'report')
|