Why i get the name of item code column is like item_code :item_name after save in purchase invoice item and is it possible to be naming by item_name after save

1 Like

Hi Abanoub,
Navigate to erpnext/public/js/utils.js
you will find Item link formatter like this:

frappe.form.link_formatters[‘Item’] = function(value, doc) {
if (doc && value && doc.item_name && doc.item_name !== value && doc.item_code === value) {
return value + ': ’ + doc.item_name;

edit it as you need

1 Like