brotherton-erpnext/erpnext/patches/may_2012/std_pf_readonly.py

30 lines
700 B
Python
Raw Normal View History

2012-05-16 08:14:06 +00:00
def execute():
"""Make standard print formats readonly for system manager"""
import webnotes.model.doc
new_perms = [
{
'parent': 'Print Format',
'parentfield': 'permissions',
'parenttype': 'DocType',
'role': 'System Manager',
'permlevel': 1,
'read': 1,
},
{
'parent': 'Print Format',
'parentfield': 'permissions',
'parenttype': 'DocType',
'role': 'Administrator',
'permlevel': 1,
'read': 1,
'write': 1
},
]
2012-05-16 08:40:27 +00:00
for perms in new_perms:
doc = webnotes.model.doc.Document('DocPerm')
doc.fields.update(perms)
doc.save()
webnotes.conn.commit()
webnotes.conn.begin()
2012-05-16 08:14:06 +00:00
import webnotes.model.sync
webnotes.model.sync.sync('core', 'print_format')