Merge branch 'master' of github.com:webnotes/erpnext
diff --git a/accounts/doctype/bank_reconciliation/bank_reconciliation.py b/accounts/doctype/bank_reconciliation/bank_reconciliation.py
index e06f979..def2525 100644
--- a/accounts/doctype/bank_reconciliation/bank_reconciliation.py
+++ b/accounts/doctype/bank_reconciliation/bank_reconciliation.py
@@ -62,7 +62,7 @@
def update_details(self):
vouchers = []
for d in getlist(self.doclist, 'entries'):
- if d.clearance_date:
+ if d.clearance_date and d.cheque_date:
if getdate(d.clearance_date) < getdate(d.cheque_date):
msgprint("Clearance Date can not be before Cheque Date (Row #%s)" %
d.idx, raise_exception=1)