Files
event-manager/event_manager/tasks.py
T
xadm 786cbc724f
CI / Server (push) Has been cancelled
Linters / Frappe Linter (push) Has been cancelled
Linters / Vulnerable Dependency Check (push) Has been cancelled
UI Tests / Playwright E2E Tests (push) Has been cancelled
Initialize fork and rebrand app to event_manager
2026-05-11 09:56:57 +02:00

13 lines
254 B
Python

import frappe
from frappe.utils import today
def unpublish_ticket_types_after_last_date():
frappe.db.set_value(
"Event Ticket Type",
{"is_published": True, "auto_unpublish_after": ("<", today())},
"is_published",
False,
)
frappe.db.commit()