commit | 96c4252762ce039c6516874524ebbed261cee957 | [log] [tgz] |
---|---|---|
author | Nabin Hait <nabinhait@gmail.com> | Wed May 13 14:55:12 2015 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Wed May 13 14:55:12 2015 +0530 |
tree | b7b4c4c094d5893d5707ee142bb37e35c2915d2c | |
parent | f6e47231016e4e61884f0f9b3b788279422c60b4 [diff] |
reload account in patch
diff --git a/erpnext/patches/v4_2/fix_gl_entries_for_stock_transactions.py b/erpnext/patches/v4_2/fix_gl_entries_for_stock_transactions.py index b7bd90e..73a56a8 100644 --- a/erpnext/patches/v4_2/fix_gl_entries_for_stock_transactions.py +++ b/erpnext/patches/v4_2/fix_gl_entries_for_stock_transactions.py
@@ -8,6 +8,8 @@ def execute(): from erpnext.utilities.repost_stock import repost repost(allow_zero_rate=True, only_actual=True) + + frappe.reload_doctype("Account") warehouse_account = frappe.db.sql("""select name, master_name from tabAccount where ifnull(account_type, '') = 'Warehouse'""")