Doc event after_save not working

doc_events = {
“Sales Invoice”: {
“after_save”:“catering.customer_task.customer_hook”,
“on_submit”: “catering.sales_invoice.create_event_todo”,
# “on_submit”: “catering.customer_task.customer_hook”

}

}
On_submit is Working but After_save is not Working
please help

1 Like

Hello,

I Think “after_save” dos not exist, try using “on_update” maybe ?

Check this link (official frappe doc)
Controllers

1 Like

yes you can set on_change for this

1 Like

You can try using the “validate” event instead.