updated all role in some pages
This commit is contained in:
parent
bcce5b381a
commit
d35293de17
11
patches/april_2013/p04_update_role_in_pages.py
Normal file
11
patches/april_2013/p04_update_role_in_pages.py
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import webnotes
|
||||||
|
import webnotes.model
|
||||||
|
def execute():
|
||||||
|
for p in ["activity", "todo", "questions", "question-view"]:
|
||||||
|
pbean = webnotes.bean("Page", p)
|
||||||
|
pbean.doclist.append({
|
||||||
|
"doctype": "Page Role",
|
||||||
|
"role": "All",
|
||||||
|
"parentfield": "roles"
|
||||||
|
})
|
||||||
|
pbean.save()
|
||||||
@ -236,4 +236,5 @@ patch_list = [
|
|||||||
'execute:webnotes.reload_doc("selling", "Print Format", "Quotation Modern") # 2013-04-02',
|
'execute:webnotes.reload_doc("selling", "Print Format", "Quotation Modern") # 2013-04-02',
|
||||||
'execute:webnotes.reload_doc("selling", "Print Format", "Quotation Spartan") # 2013-04-02',
|
'execute:webnotes.reload_doc("selling", "Print Format", "Quotation Spartan") # 2013-04-02',
|
||||||
"execute:webnotes.delete_doc('Search Criteria', 'time_log_summary')",
|
"execute:webnotes.delete_doc('Search Criteria', 'time_log_summary')",
|
||||||
|
"patches.april_2013.p04_update_role_in_pages",
|
||||||
]
|
]
|
||||||
Loading…
x
Reference in New Issue
Block a user