chore: convert message to toast notification

(cherry picked from commit fc71001110)
(cherry picked from commit 7a04bf85bc)
This commit is contained in:
Rohit Waghchaure
2025-08-13 23:48:30 +05:30
committed by Mergify
parent ed50c3d896
commit 02735e69dd

View File

@@ -473,7 +473,12 @@ def get_parent_row_no(doc, name):
if row.name == name:
return row.idx
frappe.msgprint(_("Parent Row No not found for {0}").format(name))
if name == doc.name:
return None
frappe.msgprint(_("Parent Row No not found for {0}").format(name), alert=True)
return None
@frappe.whitelist()