Merge branch 'staging-fixes' into staging
This commit is contained in:
commit
a7ae06eadb
@ -16,7 +16,7 @@ class Account(NestedSet):
|
||||
if frappe.local.flags.ignore_on_update:
|
||||
return
|
||||
else:
|
||||
super().on_update()
|
||||
super(Account, self).on_update()
|
||||
|
||||
def onload(self):
|
||||
frozen_accounts_modifier = frappe.db.get_value("Accounts Settings", "Accounts Settings",
|
||||
|
@ -12,7 +12,7 @@ app_license = "GNU General Public License (v3)"
|
||||
source_link = "https://github.com/frappe/erpnext"
|
||||
|
||||
develop_version = '11.x.x-develop'
|
||||
staging_version = '11.0.3'
|
||||
staging_version = '11.0.3-beta.2'
|
||||
|
||||
error_report_email = "support@erpnext.com"
|
||||
|
||||
|
@ -18,7 +18,7 @@ def execute():
|
||||
|
||||
for department in departments:
|
||||
# skip root node
|
||||
if department.name == _("All Departments"):
|
||||
if _(department.name) == _("All Departments"):
|
||||
continue
|
||||
|
||||
# for each company, create a copy of the doc
|
||||
|
Loading…
Reference in New Issue
Block a user