diff --git a/erpnext/patches/v11_1/set_missing_title_for_quotation.py b/erpnext/patches/v11_1/set_missing_title_for_quotation.py index 659edabc365..e86b8320c31 100644 --- a/erpnext/patches/v11_1/set_missing_title_for_quotation.py +++ b/erpnext/patches/v11_1/set_missing_title_for_quotation.py @@ -1,7 +1,7 @@ import frappe def execute(): - '''update customer_name from Customer document if quotation_to is set to Customer ''' + # update customer_name from Customer document if quotation_to is set to Customer frappe.db.sql(''' update tabQuotation, tabCustomer set @@ -13,7 +13,7 @@ def execute(): and tabQuotation.quotation_to = 'Customer' ''') - '''update customer_name from Lead document if quotation_to is set to Lead ''' + # update customer_name from Lead document if quotation_to is set to Lead frappe.db.sql(''' update tabQuotation, tabLead