Merge pull request #31649 from frappe/mergify/bp/version-13-hotfix/pr-31648

fix: Patch to make accounting dimension in orders (backport #31648)
This commit is contained in:
Deepesh Garg
2022-07-20 20:01:27 +05:30
committed by GitHub

View File

@@ -33,7 +33,10 @@ def execute():
"insert_after": insert_after_field,
}
create_custom_field(doctype, df, ignore_validate=True)
frappe.clear_cache(doctype=doctype)
try:
create_custom_field(doctype, df, ignore_validate=True)
frappe.clear_cache(doctype=doctype)
except Exception as e:
pass
count += 1