Hello all,
I’m a new to ErpNext and I’d like to show system fields such as Owner, Creation date in the list view but I don’t see them on the Menu > Customization Form.
Does anyone know how to get them showed on the list view ?
Thanks in advanced.
Hello all,
I’m a new to ErpNext and I’d like to show system fields such as Owner, Creation date in the list view but I don’t see them on the Menu > Customization Form.
Does anyone know how to get them showed on the list view ?
Thanks in advanced.
Hi @hoanganhinfo,
frappe.ui.form.on("Quotation", "validate", function(frm) { cur_frm.set_value("creator", frm.doc.owner); });
Now, reload list view, you would see owner
i try this way with modified date and does not work with me
you could find the solution here