fix: improved validation message
(cherry picked from commit fe43dab4d78091e626ddfb6432b2d69f84793d92)
This commit is contained in:
parent
83288fedf1
commit
e89dce726b
@ -86,12 +86,12 @@ class AssetCategory(Document):
|
|||||||
if selected_key_type not in expected_key_types:
|
if selected_key_type not in expected_key_types:
|
||||||
frappe.throw(
|
frappe.throw(
|
||||||
_(
|
_(
|
||||||
"Row #{}: {} of {} should be {}. Please modify the account or select a different account."
|
"Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
|
||||||
).format(
|
).format(
|
||||||
d.idx,
|
d.idx,
|
||||||
frappe.unscrub(key_to_match),
|
frappe.unscrub(key_to_match),
|
||||||
frappe.bold(selected_account),
|
frappe.bold(selected_account),
|
||||||
frappe.bold(expected_key_types),
|
frappe.bold(" or ".join(expected_key_types)),
|
||||||
),
|
),
|
||||||
title=_("Invalid Account"),
|
title=_("Invalid Account"),
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user