fix: show company name in delete transactions confirmation dialog

Display the actual company name in bold within the confirmation dialog
label so users immediately know which company they must type to confirm,
reducing the risk of accidental data loss.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
(cherry picked from commit 87d26a2d67)
This commit is contained in:
Raghav Ruia
2026-06-15 09:26:09 +05:30
committed by Mergify
parent fe3f44f643
commit 3356583865

View File

@@ -204,7 +204,9 @@ frappe.ui.form.on("Company", {
{
fieldtype: "Data",
fieldname: "company_name",
label: __("Please enter the company name to confirm"),
label: __('Please enter the company name <b>"{0}"</b> to confirm', [
frappe.utils.escape_html(frm.doc.name),
]),
reqd: 1,
description: __(
"Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."