Fixed issue: If account of type "Bank or Cash" is not associated to any GL Entry, then it displays an alert in the email digest email body
diff --git a/erpnext/setup/doctype/email_digest/email_digest.py b/erpnext/setup/doctype/email_digest/email_digest.py
index 62b1e3e..3498a7f 100644
--- a/erpnext/setup/doctype/email_digest/email_digest.py
+++ b/erpnext/setup/doctype/email_digest/email_digest.py
@@ -660,12 +660,19 @@
if self.doc.fields[k]:
if k in result:
table_list.append(body_dict[k]['table'])
- elif k in ['collections', 'payments', 'bank_balance']:
+ elif k in ['collections', 'payments']:
table_list.append(\
"<div style='font-size: 16px; color: grey'>[" + \
k.capitalize() + \
- "]<br />Missing: Ledger of type 'Bank or Cash'\
+ "]<br />Missing: Account of type 'Bank or Cash'\
</div>")
+ elif k=='bank_balance':
+ table_list.append(\
+ "<div style='font-size: 16px; color: grey'>[" + \
+ "Bank Balance" + \
+ "]<br />Alert: GL Entry not found for Account of type 'Bank or Cash'\
+ </div>")
+
i = 0
result = []