fix(Auto Repeat): after_save is not a valid DocType controller hook

This commit is contained in:
barredterra 2024-10-08 18:38:25 +01:00
parent c8f42fe15d
commit 67f7e7148e

View file

@ -92,7 +92,7 @@ class AutoRepeat(Document):
if start_date <= today_date:
self.start_date = today_date
def after_save(self):
def on_update(self):
frappe.get_doc(self.reference_doctype, self.reference_document).notify_update()
def on_trash(self):