brotherton-erpnext/erpnext/patches/v5_0/remove_birthday_events.py
2015-01-23 15:22:30 +05:30

7 lines
192 B
Python

import frappe
def execute():
for e in frappe.db.sql_list("""select name from tabEvent where
repeat_on='Every Year' and ref_type='Employee'"""):
frappe.delete_doc("Event", e, force=True)