mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-22 22:49:19 +00:00
fix: Removed html tags in pop up message (#20603)
This commit is contained in:
@@ -80,7 +80,7 @@ class Quotation(SellingController):
|
|||||||
if reason.get('lost_reason') in lost_reasons_lst:
|
if reason.get('lost_reason') in lost_reasons_lst:
|
||||||
self.append('lost_reasons', reason)
|
self.append('lost_reasons', reason)
|
||||||
else:
|
else:
|
||||||
frappe.throw(_("Invalid lost reason <b>{0}</b>, please create a new lost reason".format(reason.get('lost_reason'))))
|
frappe.throw(_("Invalid lost reason {0}, please create a new lost reason".format(frappe.bold(reason.get('lost_reason')))))
|
||||||
|
|
||||||
self.update_opportunity()
|
self.update_opportunity()
|
||||||
self.update_lead()
|
self.update_lead()
|
||||||
|
|||||||
Reference in New Issue
Block a user