brotherton-erpnext/patches/january_2013/remove_bad_permissions.py

7 lines
284 B
Python
Raw Normal View History

2013-01-01 14:21:35 +00:00
import webnotes
def execute():
webnotes.conn.sql("""update tabDocPerm set permlevel=0 where permlevel is null""")
webnotes.conn.sql("""update tabDocPerm set `create`=0, `submit`=0, `cancel`=0,
`amend`=0, `match`='' where permlevel>0""")
webnotes.delete_doc("Permission Control")