Merge branch 'production' of github.com:webnotes/erpnext into production
diff --git a/patches/december_2012/production_cleanup.py b/patches/december_2012/production_cleanup.py
index e4b363f..55881f2 100644
--- a/patches/december_2012/production_cleanup.py
+++ b/patches/december_2012/production_cleanup.py
@@ -11,11 +11,18 @@
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")
-
- webnotes.rename_doc("Page", "production-home", "manufacturing-home")
-
+
+ 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")
webnotes.conn.set_global("modules_list",
@@ -24,4 +31,4 @@
def rebuilt_exploded_bom():
from webnotes.model.code import get_obj
for bom in webnotes.conn.sql("""select name from `tabBOM` where docstatus < 2"""):
- get_obj("BOM", bom[0], with_children=1).on_update()
\ No newline at end of file
+ get_obj("BOM", bom[0], with_children=1).on_update()