fix: Remove debug statement

This commit is contained in:
Deepesh Garg
2020-02-27 16:04:01 +05:30
parent d2f26e57d2
commit a51c56c4b3

View File

@@ -21,7 +21,7 @@ class BankReconciliation(Document):
condition = "" condition = ""
if not self.include_reconciled_entries: if not self.include_reconciled_entries:
condition = "and clearance_date IS NULL or clearance_date='0000-00-00'" condition = "and (clearance_date IS NULL or clearance_date='0000-00-00')"
journal_entries = frappe.db.sql(""" journal_entries = frappe.db.sql("""
select select
@@ -37,7 +37,7 @@ class BankReconciliation(Document):
and ifnull(t1.is_opening, 'No') = 'No' {condition} and ifnull(t1.is_opening, 'No') = 'No' {condition}
group by t2.account, t1.name group by t2.account, t1.name
order by t1.posting_date ASC, t1.name DESC order by t1.posting_date ASC, t1.name DESC
""".format(condition=condition), {"account": self.account, "from": self.from_date, "to": self.to_date}, as_dict=1, debug=1) """.format(condition=condition), {"account": self.account, "from": self.from_date, "to": self.to_date}, as_dict=1)
condition = '' condition = ''
if self.bank_account: if self.bank_account: