mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-11 05:31:48 +00:00
Merge pull request #56484 from mihir-kandoi/messages-js/accounts
chore: rewrite user-facing JS messages in accounts module
This commit is contained in:
@@ -236,9 +236,9 @@ frappe.treeview_settings["Account"] = {
|
||||
function () {
|
||||
let root_company = treeview.page.fields_dict.root_company.get_value();
|
||||
if (root_company) {
|
||||
frappe.throw(__("Please add the account to root level Company - {0}"), [
|
||||
root_company,
|
||||
]);
|
||||
frappe.throw(
|
||||
__("Please add the account to root level Company - {0}", [root_company])
|
||||
);
|
||||
} else {
|
||||
treeview.new_node();
|
||||
}
|
||||
|
||||
@@ -136,7 +136,7 @@ frappe.ui.form.on("Exchange Rate Revaluation Account", {
|
||||
var get_account_details = function (frm, cdt, cdn) {
|
||||
var row = frappe.get_doc(cdt, cdn);
|
||||
if (!frm.doc.company || !frm.doc.posting_date) {
|
||||
frappe.throw(__("Please select Company and Posting Date to getting entries"));
|
||||
frappe.throw(__("Please select Company and Posting Date to get entries"));
|
||||
}
|
||||
frappe.call({
|
||||
method: "erpnext.accounts.doctype.exchange_rate_revaluation.exchange_rate_revaluation.get_account_details",
|
||||
|
||||
@@ -36,7 +36,7 @@ frappe.ui.form.on("Loyalty Program", {
|
||||
)}
|
||||
</li>
|
||||
<li>
|
||||
${__("One customer can be part of only single Loyalty Program.")}
|
||||
${__("One customer can be part of only a single Loyalty Program.")}
|
||||
</li>
|
||||
</ul>
|
||||
</td></tr>
|
||||
@@ -62,7 +62,7 @@ frappe.ui.form.on("Loyalty Program", {
|
||||
refresh: function (frm) {
|
||||
if (frm.doc.loyalty_program_type === "Single Tier Program" && frm.doc.collection_rules.length > 1) {
|
||||
frappe.throw(
|
||||
__("Please select the Multiple Tier Program type for more than one collection rules.")
|
||||
__("Please select the Multiple Tier Program type for more than one collection rule.")
|
||||
);
|
||||
}
|
||||
},
|
||||
|
||||
@@ -977,7 +977,7 @@ frappe.ui.form.on("Payment Entry", {
|
||||
let to_field = fields[key][1];
|
||||
|
||||
if (filters[from_field] && !filters[to_field]) {
|
||||
frappe.throw(__("Error: {0} is mandatory field", [to_field.replace(/_/g, " ")]));
|
||||
frappe.throw(__("Error: {0} is a mandatory field", [to_field.replace(/_/g, " ")]));
|
||||
} else if (filters[from_field] && filters[from_field] > filters[to_field]) {
|
||||
frappe.throw(
|
||||
__("{0}: {1} must be less than {2}", [
|
||||
|
||||
@@ -61,7 +61,7 @@ frappe.ui.form.on("Process Payment Reconciliation", {
|
||||
},
|
||||
}).then((r) => {
|
||||
if (!r.exc) {
|
||||
frappe.show_alert(__("Job Started"));
|
||||
frappe.show_alert(__("Job started"));
|
||||
frm.reload_doc();
|
||||
}
|
||||
});
|
||||
@@ -103,7 +103,7 @@ frappe.ui.form.on("Process Payment Reconciliation", {
|
||||
},
|
||||
}).then((r) => {
|
||||
if (!r.exc) {
|
||||
frappe.show_alert(__("Job Paused"));
|
||||
frappe.show_alert(__("Job paused"));
|
||||
frm.reload_doc();
|
||||
}
|
||||
});
|
||||
|
||||
@@ -17,9 +17,9 @@ frappe.ui.form.on("Process Statement Of Accounts", {
|
||||
},
|
||||
callback: function (r) {
|
||||
if (r && r.message) {
|
||||
frappe.show_alert({ message: __("Emails Queued"), indicator: "blue" });
|
||||
frappe.show_alert({ message: __("Emails queued"), indicator: "blue" });
|
||||
} else {
|
||||
frappe.msgprint(__("No Records for these settings."));
|
||||
frappe.msgprint(__("No records for these settings."));
|
||||
}
|
||||
},
|
||||
});
|
||||
@@ -36,7 +36,7 @@ frappe.ui.form.on("Process Statement Of Accounts", {
|
||||
type: "GET",
|
||||
success: function (result) {
|
||||
if (jQuery.isEmptyObject(result)) {
|
||||
frappe.msgprint(__("No Records for these settings."));
|
||||
frappe.msgprint(__("No records for these settings."));
|
||||
} else {
|
||||
window.location = url;
|
||||
}
|
||||
@@ -161,13 +161,13 @@ frappe.ui.form.on("Process Statement Of Accounts", {
|
||||
}
|
||||
frm.refresh_field("customers");
|
||||
} else {
|
||||
frappe.throw(__("No Customers found with selected options."));
|
||||
frappe.throw(__("No customers found with selected options."));
|
||||
}
|
||||
}
|
||||
},
|
||||
});
|
||||
} else {
|
||||
frappe.throw("Enter " + frm.doc.customer_collection + " name.");
|
||||
frappe.throw(__("Enter {0} name.", [frm.doc.customer_collection]));
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
@@ -436,7 +436,7 @@ erpnext.accounts.SalesInvoiceController = class SalesInvoiceController extends (
|
||||
if (!me.frm.doc.customer) {
|
||||
frappe.throw({
|
||||
title: __("Mandatory"),
|
||||
message: __("Please Select a Customer"),
|
||||
message: __("Please select a Customer"),
|
||||
});
|
||||
}
|
||||
erpnext.utils.map_current_doc({
|
||||
|
||||
Reference in New Issue
Block a user