fix: Ticket filter error

This commit is contained in:
wangruidong
2025-07-02 16:56:39 +08:00
committed by 老广
parent baaaf83ab9
commit 1e5a995917
2 changed files with 7 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ class TicketType(TextChoices):
class TicketState(TextChoices):
all = 'all', _('All')
pending = 'pending', _('Open')
closed = 'closed', _("Cancel")
approved = 'approved', _('Approved')