- Added migration 025 for the Ticket System, creating tables for tickets, comments, attachments, worklogs, prepaid cards, and audit logs. - Introduced migration 026 to add ticket-related permissions to the auth system and assign them to user groups. - Developed a test suite for the Ticket Module, validating database schema, ticket number generation, prepaid card constraints, service logic, worklog creation, audit logging, and views.
11 lines
263 B
Python
11 lines
263 B
Python
"""
|
|
Ticket System & Klippekort Module
|
|
==================================
|
|
|
|
Isoleret modul til ticket management og klippekort (prepaid time cards).
|
|
|
|
Alle tabeller bruger 'tticket_' prefix og kan uninstalleres uden at påvirke core data.
|
|
"""
|
|
|
|
__version__ = "1.0.0"
|