brotherton-erpnext/erpnext/patches/may_2012/create_report_manager_role.py
2012-05-23 12:55:11 +05:30

9 lines
248 B
Python

def execute():
import webnotes
from webnotes.model.doc import Document
if not webnotes.conn.sql("select name from `tabRole` where name = 'Report Manager'"):
r = Document('Role')
r.role_name = 'Report Manager'
r.module = 'Core'
r.save()