diff --git a/erpnext/accounts/doctype/journal_entry/journal_entry.json b/erpnext/accounts/doctype/journal_entry/journal_entry.json index 7c1273d5e14..5ebac38c61a 100644 --- a/erpnext/accounts/doctype/journal_entry/journal_entry.json +++ b/erpnext/accounts/doctype/journal_entry/journal_entry.json @@ -28,14 +28,6 @@ "reqd": 1, "search_index": 1 }, - { - "fieldname": "column_break0", - "fieldtype": "Column Break", - "oldfieldtype": "Column Break", - "permlevel": 0, - "read_only": 0, - "width": "50%" - }, { "fieldname": "naming_series", "fieldtype": "Select", @@ -465,7 +457,7 @@ "icon": "icon-file-text", "idx": 1, "is_submittable": 1, - "modified": "2015-02-23 04:46:05.569476", + "modified": "2015-03-25 07:11:27.108475", "modified_by": "Administrator", "module": "Accounts", "name": "Journal Entry", diff --git a/erpnext/setup/page/setup_wizard/setup_wizard.py b/erpnext/setup/page/setup_wizard/setup_wizard.py index 455a45d8f28..4df21b54c96 100644 --- a/erpnext/setup/page/setup_wizard/setup_wizard.py +++ b/erpnext/setup/page/setup_wizard/setup_wizard.py @@ -255,9 +255,9 @@ def create_email_digest(): "recipient_list": "\n".join(system_managers) }) - for fieldname in edigest.meta.get("fields", {"fieldtype": "Check"}): - if fieldname != "scheduler_errors": - edigest.set(fieldname, 1) + for df in edigest.meta.get("fields", {"fieldtype": "Check"}): + if df.fieldname != "scheduler_errors": + edigest.set(df.fieldname, 1) edigest.insert()