Patch for fixes after major production rewrite

This commit is contained in:
Anand Doshi 2012-01-12 12:55:29 +05:30
parent 2bc9423cd1
commit 640955f91d
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import webnotes
def execute():
"""
Patch includes:
* Reload of Stock Entry Detail
"""
from webnotes.modules.module_manager import reload_doc
reload_doc('stock', 'doctype', 'stock_entry_detail')

View File

@ -18,5 +18,10 @@ patch_list = [
'patch_module': 'patches.jan_mar_2012',
'patch_file': 'production_cleanup',
'description': 'Major changes in production module, almost rewrited the entire code'
},
{
'patch_module': 'patches.jan_mar_2012',
'patch_file': 'jan_production_patches',
'description': 'Fixes after Major changes in production module'
}
]