style: format code with black

This commit is contained in:
Ankush Menat
2022-03-28 18:52:46 +05:30
parent 21e00da3d6
commit 494bd9ef78
1395 changed files with 91704 additions and 62532 deletions

View File

@@ -6,22 +6,26 @@ import frappe
def execute():
frappe.reload_doc("accounts", "doctype", "bank_transaction")
frappe.reload_doc("accounts", "doctype", "bank_transaction")
bank_transaction_fields = frappe.get_meta("Bank Transaction").get_valid_columns()
bank_transaction_fields = frappe.get_meta("Bank Transaction").get_valid_columns()
if 'debit' in bank_transaction_fields:
frappe.db.sql(""" UPDATE `tabBank Transaction`
if "debit" in bank_transaction_fields:
frappe.db.sql(
""" UPDATE `tabBank Transaction`
SET status = 'Reconciled'
WHERE
status = 'Settled' and (debit = allocated_amount or credit = allocated_amount)
and ifnull(allocated_amount, 0) > 0
""")
"""
)
elif 'deposit' in bank_transaction_fields:
frappe.db.sql(""" UPDATE `tabBank Transaction`
elif "deposit" in bank_transaction_fields:
frappe.db.sql(
""" UPDATE `tabBank Transaction`
SET status = 'Reconciled'
WHERE
status = 'Settled' and (deposit = allocated_amount or withdrawal = allocated_amount)
and ifnull(allocated_amount, 0) > 0
""")
"""
)