pull all entry of bank where clearance date not mentioned in bank reconciliation
diff --git a/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py b/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py
index 9d3b1f0..03acc0a 100644
--- a/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py
+++ b/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py
@@ -60,7 +60,13 @@
 			self.doc.total_amount += flt(flt(d[4]) - flt(d[3]))
 
 	def update_details(self):
+		vouchers = []
 		for d in getlist(self.doclist, 'entries'):
 			if d.clearance_date:
 				sql("update `tabJournal Voucher` set clearance_date = %s, modified = %s where name=%s", (d.clearance_date, nowdate(), d.voucher_id))
-		msgprint("Updated")
+				vouchers.append(d.voucher_id)
+
+		if vouchers:
+			msgprint("Clearance Date updated in %s" % vouchers)
+		else:
+			msgprint("Clearance Date not mentioned")
\ No newline at end of file