commit | f5ff4434df6d554821f351780dd4d1b4fbc0a87e | [log] [tgz] |
---|---|---|
author | Anand Doshi <anand@iwebnotes.com> | Tue Dec 13 18:13:23 2011 +0530 |
committer | Anand Doshi <anand@iwebnotes.com> | Tue Dec 13 18:13:23 2011 +0530 |
tree | 28e5a60babdf213b8743ea2383850a6ef8c24adf | |
parent | 206df20f36a9fa142a179b0f0ea1cc72c776ca18 [diff] |
Patch to reload Task doctype of Projects Module
diff --git a/erpnext/patches/reload_project_task.py b/erpnext/patches/reload_project_task.py new file mode 100644 index 0000000..019a177 --- /dev/null +++ b/erpnext/patches/reload_project_task.py
@@ -0,0 +1,7 @@ +""" + Reload Task Doctype of Project Module +""" +def execute(): + from webnotes.modules.module_manager import reload_doc + reload_doc('Projects', 'DocType', 'Ticket') +