fix: use get_url_to_form instead

(cherry picked from commit 7a82b37f76)
This commit is contained in:
Mihir Kandoi
2025-04-22 15:22:54 +05:30
committed by Mergify
parent f6edd5aa7d
commit ad35021666

View File

@@ -17,6 +17,7 @@ from frappe.utils import (
comma_and,
flt,
get_link_to_form,
get_url_to_form,
getdate,
now_datetime,
nowdate,
@@ -912,11 +913,9 @@ class ProductionPlan(Document):
frappe.flags.mute_messages = False
from urllib.parse import quote_plus
if material_request_list:
material_request_list = [
f"""<a href="/app/Form/Material Request/{quote_plus(m.name)}">{m.name}</a>"""
f"""<a href="{get_url_to_form("Material Request", m.name)}">{m.name}</a>"""
for m in material_request_list
]
msgprint(_("{0} created").format(comma_and(material_request_list)))