2013-08-05 14:59:54 +05:30
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2012-07-19 13:40:31 +05:30
|
|
|
from __future__ import unicode_literals
|
2012-06-13 18:02:43 +05:30
|
|
|
def execute():
|
|
|
|
"""allow read permission to all for report list"""
|
|
|
|
import webnotes
|
2012-06-13 19:04:27 +05:30
|
|
|
webnotes.conn.sql("""\
|
|
|
|
delete from `tabDocPerm`
|
|
|
|
where parent in ('Report', 'Search Criteria')""")
|
|
|
|
|
2013-05-16 15:28:19 +05:30
|
|
|
webnotes.reload_doc('core', 'doctype', 'report')
|