diff --git a/erpnext/startup/startup.js b/erpnext/startup/startup.js index 321149cf81..5dfd692aec 100644 --- a/erpnext/startup/startup.js +++ b/erpnext/startup/startup.js @@ -106,7 +106,7 @@ erpnext.startup.start = function() { ', { expiry_string: expiry_string })); } else if (diff < 0) { $('header').append(repl('
\ - This ERPNext subscription has expired and should be deleted. \ + This ERPNext subscription has expired. \
', { expiry_string: expiry_string })); } } @@ -215,12 +215,3 @@ erpnext.send_message = function(opts) { } }); } - -erpnext.hide_naming_series = function() { - if(cur_frm.fields_dict.naming_series) { - hide_field('naming_series'); - if(cur_frm.doc.__islocal) { - unhide_field('naming_series'); - } - } -}