25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
423 B

  1. import frappe
  2. def execute():
  3. frappe.reload_doctype("Notification")
  4. for e in frappe.get_all("Notification"):
  5. notification = frappe.get_doc("Notification", e.name)
  6. if notification.event == "Date Change":
  7. if notification.days_in_advance < 0:
  8. notification.event = "Days After"
  9. notification.days_in_advance = -email_alert.days_in_advance
  10. else:
  11. notification.event = "Days Before"
  12. notification.save()