new rename doc function
diff --git a/erpnext/patches/jan_mar_2012/rename_dt.py b/erpnext/patches/jan_mar_2012/rename_dt.py
index 9d92fad..a507a1c 100644
--- a/erpnext/patches/jan_mar_2012/rename_dt.py
+++ b/erpnext/patches/jan_mar_2012/rename_dt.py
@@ -1,6 +1,6 @@
import webnotes
import conf
-from webnotes.model import rename, delete_doc
+import webnotes.model
from webnotes.model.code import get_obj
from wnf import replace_code
from termcolor import colored
@@ -150,10 +150,13 @@
print colored('Renaming... ' + d + ' --> '+ ren_data[d], 'yellow')
#rename
try:
- rename(data_type, d, ren_data[d], is_doctype)
+ webnotes.model.rename(data_type, d, ren_data[d], is_doctype)
except Exception, e:
- print e
- pass
+ if e.args[0]!=1050:
+ raise e
+ else:
+ print e
+ pass
def update_dt_in_records(rendt):
diff --git a/erpnext/patches/patch_list.py b/erpnext/patches/patch_list.py
index f8738e5..e781e9d 100644
--- a/erpnext/patches/patch_list.py
+++ b/erpnext/patches/patch_list.py
@@ -228,16 +228,16 @@
'description': 'SO-RV duplicate mapper entry removal'
},
{
- 'patch_module': 'patches.jan_mar_2012',
- 'patch_file': 'sync_ref_db',
- 'description': 'Deletes non required doctypes'
- },
- {
'patch_module': 'patches.mar_2012',
'patch_file': 'clean_property_setter',
'description': 'Patch related to property setter cleanup'
},
{
+ 'patch_module': 'patches.jan_mar_2012',
+ 'patch_file': 'sync_ref_db',
+ 'description': 'Deletes non required doctypes'
+ },
+ {
'patch_module': 'patches.april_2012',
'patch_file': 'naming_series_patch',
'description': 'Move naming series options into property setter'