mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-28 09:24:45 +00:00
Update accounts/doctype/gl_control/gl_control.py
ignore permission while creating account for customer and supplier
This commit is contained in:
@@ -51,6 +51,7 @@ class DocType:
|
|||||||
ac.doc.doctype = "Account"
|
ac.doc.doctype = "Account"
|
||||||
ac.doc.old_parent = ""
|
ac.doc.old_parent = ""
|
||||||
ac.doc.freeze_account = "No"
|
ac.doc.freeze_account = "No"
|
||||||
|
ac.ignore_permission = 1
|
||||||
ac.insert()
|
ac.insert()
|
||||||
|
|
||||||
return ac.doc.name
|
return ac.doc.name
|
||||||
@@ -61,6 +62,7 @@ class DocType:
|
|||||||
cc = webnotes.model_wrapper(eval(arg))
|
cc = webnotes.model_wrapper(eval(arg))
|
||||||
cc.doc.doctype = "Cost Center"
|
cc.doc.doctype = "Cost Center"
|
||||||
cc.doc.old_parent = ""
|
cc.doc.old_parent = ""
|
||||||
|
cc.ignore_permission = 1
|
||||||
cc.insert()
|
cc.insert()
|
||||||
|
|
||||||
return cc.doc.name
|
return cc.doc.name
|
||||||
|
|||||||
Reference in New Issue
Block a user