mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-14 23:18:40 +00:00
Merge pull request #56473 from mihir-kandoi/messages/selling
chore: rewrite user-facing messages in selling module
This commit is contained in:
@@ -158,7 +158,7 @@ class Customer(TransactionBase):
|
||||
new_customer_name = f"{self.customer_name} - {cstr(count)}"
|
||||
|
||||
msgprint(
|
||||
_("Changed customer name to '{}' as '{}' already exists.").format(
|
||||
_("Changed customer name to '{0}' as '{1}' already exists.").format(
|
||||
new_customer_name, self.customer_name
|
||||
),
|
||||
title=_("Note"),
|
||||
@@ -356,7 +356,7 @@ class Customer(TransactionBase):
|
||||
if frappe.db.exists("Customer Group", self.name):
|
||||
frappe.throw(
|
||||
_(
|
||||
"A Customer Group exists with same name please change the Customer name or rename the Customer Group"
|
||||
"A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group"
|
||||
),
|
||||
frappe.NameError,
|
||||
)
|
||||
@@ -406,7 +406,7 @@ class Customer(TransactionBase):
|
||||
if flt(limit.credit_limit) < outstanding_amt:
|
||||
frappe.throw(
|
||||
_(
|
||||
"""New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"""
|
||||
"""New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}"""
|
||||
).format(outstanding_amt)
|
||||
)
|
||||
|
||||
@@ -440,7 +440,7 @@ class Customer(TransactionBase):
|
||||
self.loyalty_program = loyalty_program[0]
|
||||
else:
|
||||
frappe.msgprint(
|
||||
_("Multiple Loyalty Programs found for Customer {}. Please select manually.").format(
|
||||
_("Multiple Loyalty Programs found for Customer {0}. Please select manually.").format(
|
||||
frappe.bold(self.customer_name)
|
||||
)
|
||||
)
|
||||
|
||||
@@ -172,7 +172,7 @@ def make_address(args, is_primary_address=1, is_shipping_address=1):
|
||||
if reqd_fields:
|
||||
msg = _("Following fields are mandatory to create address:")
|
||||
frappe.throw(
|
||||
"{} <br><br> <ul>{}</ul>".format(msg, "\n".join(reqd_fields)),
|
||||
msg + " <br><br> <ul>{}</ul>".format("\n".join(reqd_fields)),
|
||||
title=_("Missing Values Required"),
|
||||
)
|
||||
|
||||
|
||||
@@ -32,4 +32,6 @@ class PartySpecificItem(Document):
|
||||
},
|
||||
)
|
||||
if exists:
|
||||
frappe.throw(_("This item filter has already been applied for the {0}").format(self.party_type))
|
||||
frappe.throw(
|
||||
_("This item filter has already been applied for the {0}").format(_(self.party_type))
|
||||
)
|
||||
|
||||
@@ -118,9 +118,9 @@ class ProductBundle(Document):
|
||||
|
||||
if len(invoice_links):
|
||||
frappe.throw(
|
||||
"This Product Bundle is linked with {}. You will have to cancel these documents in order to delete this Product Bundle".format(
|
||||
", ".join(invoice_links)
|
||||
),
|
||||
_(
|
||||
"This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle"
|
||||
).format(", ".join(invoice_links)),
|
||||
title=_("Not Allowed"),
|
||||
)
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ def validate_filters(from_date, to_date, company):
|
||||
frappe.throw(_("To Date must be greater than From Date"))
|
||||
|
||||
if not company:
|
||||
frappe.throw(_("Please Select a Company"))
|
||||
frappe.throw(_("Please select a Company"))
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
|
||||
@@ -47,7 +47,7 @@ class SalesPartnerSummaryReport:
|
||||
frappe.throw(_("Please select the document type first."))
|
||||
|
||||
if self.filters.get("doctype") not in SALES_TRANSACTION_DOCTYPES:
|
||||
frappe.throw(_("DocType can be one of them {0}").format(comma_or(SALES_TRANSACTION_DOCTYPES)))
|
||||
frappe.throw(_("DocType can be one of {0}").format(comma_or(SALES_TRANSACTION_DOCTYPES)))
|
||||
|
||||
if not self.filters.get("company"):
|
||||
frappe.throw(_("Please select a company."))
|
||||
|
||||
@@ -19,7 +19,7 @@ class SalesPartnerSummaryReportTestMixin(ERPNextTestSuite):
|
||||
|
||||
with self.assertRaisesRegex(
|
||||
frappe.ValidationError,
|
||||
_("DocType can be one of them {0}").format(comma_or(SALES_TRANSACTION_DOCTYPES)),
|
||||
_("DocType can be one of {0}").format(comma_or(SALES_TRANSACTION_DOCTYPES)),
|
||||
):
|
||||
run(self.report_name, self.filters)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user