mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-04 12:49:10 +00:00
Merge pull request #47183 from mihir-kandoi/st36696
fix: backslash in url
This commit is contained in:
@@ -950,8 +950,7 @@ class ProductionPlan(Document):
|
|||||||
|
|
||||||
if material_request_list:
|
if material_request_list:
|
||||||
material_request_list = [
|
material_request_list = [
|
||||||
f"""<a href="/app/Form/Material Request/{m.name}">{m.name}</a>"""
|
get_link_to_form("Material Request", m.name) for m in material_request_list
|
||||||
for m in material_request_list
|
|
||||||
]
|
]
|
||||||
msgprint(_("{0} created").format(comma_and(material_request_list)))
|
msgprint(_("{0} created").format(comma_and(material_request_list)))
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user