style: format code with black
This commit is contained in:
@@ -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
|
||||
""")
|
||||
"""
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user