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

@@ -9,17 +9,23 @@ def execute():
if frappe.db.has_column("Timesheet Detail", "billable"):
rename_field("Timesheet Detail", "billable", "is_billable")
base_currency = frappe.defaults.get_global_default('currency')
base_currency = frappe.defaults.get_global_default("currency")
frappe.db.sql("""UPDATE `tabTimesheet Detail`
frappe.db.sql(
"""UPDATE `tabTimesheet Detail`
SET base_billing_rate = billing_rate,
base_billing_amount = billing_amount,
base_costing_rate = costing_rate,
base_costing_amount = costing_amount""")
base_costing_amount = costing_amount"""
)
frappe.db.sql("""UPDATE `tabTimesheet`
frappe.db.sql(
"""UPDATE `tabTimesheet`
SET currency = '{0}',
exchange_rate = 1.0,
base_total_billable_amount = total_billable_amount,
base_total_billed_amount = total_billed_amount,
base_total_costing_amount = total_costing_amount""".format(base_currency))
base_total_costing_amount = total_costing_amount""".format(
base_currency
)
)