Merge branch 'master' of github.com:webnotes/erpnext into edge

This commit is contained in:
Rushabh Mehta 2013-01-29 19:11:45 +05:30
commit cbc124c92b

View File

@ -51,6 +51,7 @@ class DocType:
ac.doc.doctype = "Account"
ac.doc.old_parent = ""
ac.doc.freeze_account = "No"
ac.ignore_permission = 1
ac.insert()
return ac.doc.name
@ -61,6 +62,7 @@ class DocType:
cc = webnotes.model_wrapper(eval(arg))
cc.doc.doctype = "Cost Center"
cc.doc.old_parent = ""
cc.ignore_permission = 1
cc.insert()
return cc.doc.name