commit | af63d053b19414ec17c6546461627416cb73ef88 | [log] [tgz] |
---|---|---|
author | Anand Doshi <anand@erpnext.com> | Mon Jun 09 15:43:24 2014 +0530 |
committer | Anand Doshi <anand@erpnext.com> | Mon Jun 09 15:51:12 2014 +0530 |
tree | dee746b88c08cbc65ba638825a6d6d759d96448f | |
parent | d9ff118b40b4b6abe247b116667d2c7f257b128c [diff] |
Also save Global Defaults in System Settings patch
diff --git a/erpnext/patches/v4_0/global_defaults_to_system_settings.py b/erpnext/patches/v4_0/global_defaults_to_system_settings.py index abd38c6..57b21ae 100644 --- a/erpnext/patches/v4_0/global_defaults_to_system_settings.py +++ b/erpnext/patches/v4_0/global_defaults_to_system_settings.py
@@ -33,3 +33,7 @@ system_settings.ignore_mandatory = True system_settings.save() + + global_defaults = frappe.get_doc("Global Defaults") + global_defaults.ignore_mandatory = True + global_defaults.save()