Merge pull request #174 from anandpdoshi/master
Fixed issue: If account of type "Bank or Cash" is not associated to a GL Entry, then it displays an alert in the email digest email body
This commit is contained in:
commit
6d0be02364
@ -660,12 +660,19 @@ class DocType:
|
|||||||
if self.doc.fields[k]:
|
if self.doc.fields[k]:
|
||||||
if k in result:
|
if k in result:
|
||||||
table_list.append(body_dict[k]['table'])
|
table_list.append(body_dict[k]['table'])
|
||||||
elif k in ['collections', 'payments', 'bank_balance']:
|
elif k in ['collections', 'payments']:
|
||||||
table_list.append(\
|
table_list.append(\
|
||||||
"<div style='font-size: 16px; color: grey'>[" + \
|
"<div style='font-size: 16px; color: grey'>[" + \
|
||||||
k.capitalize() + \
|
k.capitalize() + \
|
||||||
"]<br />Missing: Ledger of type 'Bank or Cash'\
|
"]<br />Missing: Account of type 'Bank or Cash'\
|
||||||
</div>")
|
</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
|
i = 0
|
||||||
result = []
|
result = []
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user