fixed production cleanup patch

This commit is contained in:
Anand Doshi 2012-12-10 19:37:49 +05:30
parent 05de088473
commit 3519d7de01

View File

@ -10,9 +10,16 @@ def delete_doctypes():
delete_doc("DocType", "BOM Control")
def rename_module():
webnotes.reload_doc("core", "doctype", "role")
webnotes.reload_doc("core", "doctype", "page")
webnotes.reload_doc("core", "doctype", "module_def")
webnotes.rename_doc("Role", "Production User", "Manufacturing User")
webnotes.rename_doc("Role", "Production Manager", "Manufacturing Manager")
if webnotes.conn.exists("Page", "manufacturing-home"):
webnotes.delete_doc("Page", "production-home")
else:
webnotes.rename_doc("Page", "production-home", "manufacturing-home")
webnotes.rename_doc("Module Def", "Production", "Manufacturing")