2013-08-05 09:29:54 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2012-07-19 08:10:31 +00:00
|
|
|
from __future__ import unicode_literals
|
2012-04-24 06:53:12 +00:00
|
|
|
def execute():
|
|
|
|
import webnotes
|
|
|
|
from webnotes.model.doc import addchild
|
|
|
|
from webnotes.model.code import get_obj
|
|
|
|
|
|
|
|
webnotes.conn.sql("delete from `tabDocPerm` where role = 'All' and parent = 'Address'")
|
|
|
|
|
|
|
|
role1 = ['Sales User', 'Purchase User', 'Accounts User', 'Maintenance User']
|
|
|
|
role2 = ['Sales Manager', 'Sales Master Manager', 'Purchase Manager', 'Purchase Master Manager', 'Accounts Manager', 'Maintenance Manager']
|
|
|
|
|
|
|
|
addr = get_obj('DocType', 'Address', with_children=1)
|
|
|
|
for d in role1+role2:
|
2012-12-24 11:32:38 +00:00
|
|
|
ch = addchild(addr.doc, 'permissions', 'DocPerm')
|
2012-04-24 06:53:12 +00:00
|
|
|
ch.role = d
|
|
|
|
ch.read = 1
|
|
|
|
ch.write = 1
|
|
|
|
ch.create = 1
|
|
|
|
if d in role2:
|
|
|
|
ch.cancel = 1
|
|
|
|
|
|
|
|
ch.save()
|