Bulk insert in frappe

i want to bulk insert in my custom app, how can i do that without inserting one by one at a time

Frappe doesn’t support bulk insert. Any bulk insert APIs that exists primarily do it in a loop. This is a trade-off resulting from the way doctype controllers allow hooking into events before document is inserted.

If it’s boring CRUD bulk insert then you can try these

3 Likes

i add custom code for after insert event in gl entry from sales invoice
the submit of sales invoice worked well from form view but does not work from list view when i select either one sales invoice?