chore: minor changes to labels
diff --git a/erpnext/public/js/utils/serial_no_batch_selector.js b/erpnext/public/js/utils/serial_no_batch_selector.js
index 6a34693..e8cfc6b 100644
--- a/erpnext/public/js/utils/serial_no_batch_selector.js
+++ b/erpnext/public/js/utils/serial_no_batch_selector.js
@@ -76,7 +76,7 @@
fieldname: 'auto_fetch_button',
fieldtype:'Button',
hidden: me.has_batch ? 1 : 0,
- label: __('Fetch Serial Numbers based on FIFO'),
+ label: __('Fetch based on FIFO'),
click: (e) => {
let numbers = frappe.call({
method: "erpnext.stock.doctype.serial_no.serial_no.auto_fetch_serial_number",
@@ -367,10 +367,10 @@
var me = this;
this.serial_list = [];
return [
- {fieldtype: 'Section Break', label: __('Serial No')},
+ {fieldtype: 'Section Break', label: __('Serial Numbers')},
{
fieldtype: 'Link', fieldname: 'serial_no_select', options: 'Serial No',
- label: __('Select to add serial no.'),
+ label: __('Select to add Serial Number.'),
get_query: function() {
return { filters: {item_code: me.item_code, warehouse: me.warehouse_details.name}};
},