Row on Journal Entry

In
journal Entry can we insert 2 rows by default ,now we have to add new row or
select Add multiple row for entering the details .

In
the previous version we have two accounts are available by default

will
it possible to add the same options on new version

Hi @helpdesk

You need to write a custom script, use below code

frappe.model.add_child(cur_frm.doc, "Journal Entry Account", 'accounts')
refresh_field("accounts");
1 Like