brotherton-erpnext/patches/january_2013/report_permission.py

14 lines
550 B
Python
Raw Normal View History

2013-01-10 17:11:48 +05:30
import webnotes
def execute():
webnotes.reload_doc("core", "doctype", "docperm")
webnotes.conn.sql("""update tabDocPerm set `report`=`read`""")
2013-01-11 15:05:03 +05:30
# no report for singles
2013-01-10 17:11:48 +05:30
webnotes.conn.sql("""update tabDocPerm, tabDocType set tabDocPerm.`report`=0
where tabDocPerm.`parent` = tabDocType.name
and ifnull(tabDocType.issingle,0) = 1""")
2013-01-11 15:05:03 +05:30
# no submit for not submittables
2013-01-10 17:11:48 +05:30
webnotes.conn.sql("""update tabDocPerm, tabDocType set tabDocPerm.`submit`=0
where tabDocPerm.`parent` = tabDocType.name
and ifnull(tabDocType.is_submittable,0) = 0""")