report permission merge

This commit is contained in:
Rushabh Mehta 2013-01-11 15:05:03 +05:30
parent f3bb70155b
commit b116b3243d

View File

@ -2,9 +2,13 @@ import webnotes
def execute():
webnotes.reload_doc("core", "doctype", "docperm")
webnotes.conn.sql("""update tabDocPerm set `report`=`write`""")
# no report for singles
webnotes.conn.sql("""update tabDocPerm, tabDocType set tabDocPerm.`report`=0
where tabDocPerm.`parent` = tabDocType.name
and ifnull(tabDocType.issingle,0) = 1""")
# no submit for not submittables
webnotes.conn.sql("""update tabDocPerm, tabDocType set tabDocPerm.`submit`=0
where tabDocPerm.`parent` = tabDocType.name
and ifnull(tabDocType.is_submittable,0) = 0""")