org.models.ticket ================= .. py:module:: org.models.ticket Classes ------- .. autoapisummary:: org.models.ticket.OrgTicketMixin org.models.ticket.FormSubmissionTicket org.models.ticket.ReservationTicket org.models.ticket.EventSubmissionTicket org.models.ticket.DirectoryEntryTicket org.models.ticket.FormSubmissionHandler org.models.ticket.ReservationHandler org.models.ticket.EventSubmissionHandler org.models.ticket.DirectoryEntryHandler org.models.ticket.ChatTicket org.models.ticket.ChatHandler Functions --------- .. autoapisummary:: org.models.ticket.ticket_submitter Module Contents --------------- .. py:function:: ticket_submitter(ticket: onegov.ticket.Ticket) -> str | None .. py:class:: OrgTicketMixin Adds additional methods to the ticket, needed by the organisations implementation of it. Strictly limited to things that do not belong into onegov.ticket. .. py:attribute:: number :type: sqlalchemy.Column[str] .. py:method:: reference(request: onegov.org.request.OrgRequest) -> str Returns the reference which should be used wherever we talk about a ticket, but do not show it (say in an e-mail subject). This reference should not be changed so it stays consistent. If you want, you can override the content of the reference group, shown in brackets (see :meth:`reference_group`). .. py:method:: reference_group(request: onegov.org.request.OrgRequest) -> str .. py:property:: extra_localized_text :type: str .. py:property:: es_tags :type: list[str] | None .. py:class:: FormSubmissionTicket Bases: :py:obj:`OrgTicketMixin`, :py:obj:`onegov.ticket.Ticket` Adds additional methods to the ticket, needed by the organisations implementation of it. Strictly limited to things that do not belong into onegov.ticket. .. py:attribute:: __mapper_args__ .. py:attribute:: es_type_name :value: 'submission_tickets' Returns the unique type name of the model. .. py:attribute:: handler :type: FormSubmissionHandler Returns an instance of the handler associated with this ticket. .. py:class:: ReservationTicket Bases: :py:obj:`OrgTicketMixin`, :py:obj:`onegov.ticket.Ticket` Adds additional methods to the ticket, needed by the organisations implementation of it. Strictly limited to things that do not belong into onegov.ticket. .. py:attribute:: __mapper_args__ .. py:attribute:: es_type_name :value: 'reservation_tickets' Returns the unique type name of the model. .. py:attribute:: handler :type: ReservationHandler Returns an instance of the handler associated with this ticket. .. py:class:: EventSubmissionTicket Bases: :py:obj:`OrgTicketMixin`, :py:obj:`onegov.ticket.Ticket` Adds additional methods to the ticket, needed by the organisations implementation of it. Strictly limited to things that do not belong into onegov.ticket. .. py:attribute:: __mapper_args__ .. py:attribute:: es_type_name :value: 'event_tickets' Returns the unique type name of the model. .. py:attribute:: handler :type: EventSubmissionHandler Returns an instance of the handler associated with this ticket. .. py:method:: reference_group(request: onegov.org.request.OrgRequest) -> str .. py:method:: unguessable_edit_link(request: onegov.org.request.OrgRequest) -> str | None .. py:class:: DirectoryEntryTicket Bases: :py:obj:`OrgTicketMixin`, :py:obj:`onegov.ticket.Ticket` Adds additional methods to the ticket, needed by the organisations implementation of it. Strictly limited to things that do not belong into onegov.ticket. .. py:attribute:: __mapper_args__ .. py:attribute:: es_type_name :value: 'directory_tickets' Returns the unique type name of the model. .. py:attribute:: handler :type: DirectoryEntryHandler Returns an instance of the handler associated with this ticket. .. py:class:: FormSubmissionHandler(ticket: onegov.ticket.model.Ticket, handler_id: uuid.UUID | str, handler_data: dict[str, Any]) Bases: :py:obj:`onegov.ticket.Handler` Defines a generic handler, responsible for a subset of the tickets. onegov.ticket is meant to be a rather generic bucket of tickets, to which varying modules submit tickets with varying content and different actionables. Each module wanting to submit tickets needs to implement a handler with a unique id and a unique short code. The short code is added in front of the ticket number. Tickets submitted to the database are shown in a list, without handler involvement. When a ticket is displayed, the handler is called with whatever data the handler supplied during ticket submission. The handler then uses the handler data to access whatever data it needs to display a summary as well as links to certain actions (possibly a link to the original item, links that change the state of the ticket as well as the data associated with the handler, etc.). .. py:attribute:: id :type: uuid.UUID .. py:attribute:: handler_title .. py:attribute:: code_title .. py:property:: collection :type: onegov.form.FormSubmissionCollection .. py:property:: submission :type: onegov.form.FormSubmission | None .. py:property:: form :type: onegov.form.Form .. py:property:: deleted :type: bool Returns true if the underlying model was deleted. It is best to never let that happen, as we want tickets to stay around forever. However, this can make sense in certain scenarios. Note that if you do delete your underlying model, make sure to call :meth:`onegov.ticket.models.Ticket.create_snapshot` beforehand! .. py:property:: email :type: str Returns the email address behind the ticket request. .. py:property:: title :type: str Returns the title of the ticket. If this title may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: subtitle :type: None Returns the subtitle of the ticket. If this title may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: group :type: str Returns the group of the ticket. If this group may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: payment :type: onegov.pay.Payment | None An optional link to a onegov.pay payment record. .. py:property:: extra_data :type: list[str] An array of string values which are indexed in elasticsearch when the ticket is stored there. .. py:property:: undecided :type: bool Returns true if there has been no decision about the subject of this handler. For example, if a reservation ticket has been accepted, but the reservation has been neither confirmed nor cancelled, the ticket can be seen as undecided. This is an optional flag that may be implemented by handlers. If a ticket is undecided, the UI might show a special icon and it might warn the user if he closes the ticket without making a decision. By default, the ticket is assumed to be decided for backwards compatibility and for tickets where this does not make sense (a simple form submission may not have any way of knowing if there has been a decision or not). .. py:method:: get_summary(request: onegov.org.request.OrgRequest) -> markupsafe.Markup Returns the summary of the current ticket as a html string. .. py:method:: get_links(request: onegov.org.request.OrgRequest) -> list[onegov.core.elements.Link | onegov.core.elements.LinkGroup] Returns the links associated with the current ticket in the following format:: [ ('Link Title', 'http://link'), ('Link Title 2', 'http://link2'), ] If the links are not tuples, but callables, they will be called with the request which should return the rendered link. .. py:class:: ReservationHandler(ticket: onegov.ticket.model.Ticket, handler_id: uuid.UUID | str, handler_data: dict[str, Any]) Bases: :py:obj:`onegov.ticket.Handler` Defines a generic handler, responsible for a subset of the tickets. onegov.ticket is meant to be a rather generic bucket of tickets, to which varying modules submit tickets with varying content and different actionables. Each module wanting to submit tickets needs to implement a handler with a unique id and a unique short code. The short code is added in front of the ticket number. Tickets submitted to the database are shown in a list, without handler involvement. When a ticket is displayed, the handler is called with whatever data the handler supplied during ticket submission. The handler then uses the handler data to access whatever data it needs to display a summary as well as links to certain actions (possibly a link to the original item, links that change the state of the ticket as well as the data associated with the handler, etc.). .. py:attribute:: id :type: uuid.UUID .. py:attribute:: handler_title .. py:attribute:: code_title .. py:property:: resource :type: onegov.reservation.Resource | None .. py:method:: reservations_query() -> sqlalchemy.orm.Query[onegov.reservation.Reservation] .. py:property:: reservations :type: tuple[onegov.reservation.Reservation, Ellipsis] .. py:property:: has_future_reservation :type: bool .. py:property:: most_future_reservation :type: onegov.reservation.Reservation | None .. py:property:: submission :type: onegov.form.FormSubmission | None .. py:property:: payment :type: onegov.pay.Payment | None An optional link to a onegov.pay payment record. .. py:property:: deleted :type: bool Returns true if the underlying model was deleted. It is best to never let that happen, as we want tickets to stay around forever. However, this can make sense in certain scenarios. Note that if you do delete your underlying model, make sure to call :meth:`onegov.ticket.models.Ticket.create_snapshot` beforehand! .. py:property:: extra_data :type: list[str] An array of string values which are indexed in elasticsearch when the ticket is stored there. .. py:property:: email :type: str Returns the email address behind the ticket request. .. py:property:: undecided :type: bool Returns true if there has been no decision about the subject of this handler. For example, if a reservation ticket has been accepted, but the reservation has been neither confirmed nor cancelled, the ticket can be seen as undecided. This is an optional flag that may be implemented by handlers. If a ticket is undecided, the UI might show a special icon and it might warn the user if he closes the ticket without making a decision. By default, the ticket is assumed to be decided for backwards compatibility and for tickets where this does not make sense (a simple form submission may not have any way of knowing if there has been a decision or not). .. py:method:: prepare_delete_ticket() -> None The handler knows best what to do when a ticket is called for deletion. .. py:property:: ticket_deletable :type: bool .. py:property:: title :type: str Returns the title of the ticket. If this title may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:method:: get_reservation_title(reservation: onegov.reservation.Reservation) -> str .. py:property:: subtitle :type: str | None Returns the subtitle of the ticket. If this title may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: group :type: str | None Returns the group of the ticket. If this group may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:method:: handle_extra_parameters(session: sqlalchemy.orm.Session, query: onegov.ticket.handler._Q, extra_parameters: dict[str, Any]) -> onegov.ticket.handler._Q :classmethod: Takes a dictionary of extra parameters and uses it to optionally modifiy the query used for the collection. Use this to add handler-defined custom filters with extra query parameters. Only called if the collection is already limited to the given handler. If all handlers are shown in the collection, this method is not called. If no extra paramaters were given, this method is *not* called. Returns the modified or unmodified query. .. py:method:: get_summary(request: onegov.org.request.OrgRequest) -> markupsafe.Markup Returns the summary of the current ticket as a html string. .. py:method:: get_links(request: onegov.org.request.OrgRequest) -> list[onegov.core.elements.Link | onegov.core.elements.LinkGroup] Returns the links associated with the current ticket in the following format:: [ ('Link Title', 'http://link'), ('Link Title 2', 'http://link2'), ] If the links are not tuples, but callables, they will be called with the request which should return the rendered link. .. py:class:: EventSubmissionHandler(ticket: onegov.ticket.model.Ticket, handler_id: uuid.UUID | str, handler_data: dict[str, Any]) Bases: :py:obj:`onegov.ticket.Handler` Defines a generic handler, responsible for a subset of the tickets. onegov.ticket is meant to be a rather generic bucket of tickets, to which varying modules submit tickets with varying content and different actionables. Each module wanting to submit tickets needs to implement a handler with a unique id and a unique short code. The short code is added in front of the ticket number. Tickets submitted to the database are shown in a list, without handler involvement. When a ticket is displayed, the handler is called with whatever data the handler supplied during ticket submission. The handler then uses the handler data to access whatever data it needs to display a summary as well as links to certain actions (possibly a link to the original item, links that change the state of the ticket as well as the data associated with the handler, etc.). .. py:attribute:: id :type: uuid.UUID .. py:attribute:: handler_title .. py:attribute:: code_title .. py:property:: collection :type: onegov.event.EventCollection .. py:property:: event :type: onegov.event.Event | None .. py:property:: deleted :type: bool Returns true if the underlying model was deleted. It is best to never let that happen, as we want tickets to stay around forever. However, this can make sense in certain scenarios. Note that if you do delete your underlying model, make sure to call :meth:`onegov.ticket.models.Ticket.create_snapshot` beforehand! .. py:property:: source :type: str | None .. py:property:: import_user :type: str | None .. py:property:: email :type: str | None Returns the email address behind the ticket request. .. py:property:: title :type: str Returns the title of the ticket. If this title may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: subtitle :type: str | None Returns the subtitle of the ticket. If this title may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: extra_data :type: list[str] An array of string values which are indexed in elasticsearch when the ticket is stored there. .. py:property:: undecided :type: bool Returns true if there has been no decision about the subject of this handler. For example, if a reservation ticket has been accepted, but the reservation has been neither confirmed nor cancelled, the ticket can be seen as undecided. This is an optional flag that may be implemented by handlers. If a ticket is undecided, the UI might show a special icon and it might warn the user if he closes the ticket without making a decision. By default, the ticket is assumed to be decided for backwards compatibility and for tickets where this does not make sense (a simple form submission may not have any way of knowing if there has been a decision or not). .. py:property:: ticket_deletable :type: bool .. py:property:: group :type: str Returns the group of the ticket. If this group may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:method:: get_summary(request: onegov.org.request.OrgRequest) -> markupsafe.Markup Returns the summary of the current ticket as a html string. .. py:method:: get_links(request: onegov.org.request.OrgRequest) -> list[onegov.core.elements.Link | onegov.core.elements.LinkGroup] Returns the links associated with the current ticket in the following format:: [ ('Link Title', 'http://link'), ('Link Title 2', 'http://link2'), ] If the links are not tuples, but callables, they will be called with the request which should return the rendered link. .. py:class:: DirectoryEntryHandler(ticket: onegov.ticket.model.Ticket, handler_id: uuid.UUID | str, handler_data: dict[str, Any]) Bases: :py:obj:`onegov.ticket.Handler` Defines a generic handler, responsible for a subset of the tickets. onegov.ticket is meant to be a rather generic bucket of tickets, to which varying modules submit tickets with varying content and different actionables. Each module wanting to submit tickets needs to implement a handler with a unique id and a unique short code. The short code is added in front of the ticket number. Tickets submitted to the database are shown in a list, without handler involvement. When a ticket is displayed, the handler is called with whatever data the handler supplied during ticket submission. The handler then uses the handler data to access whatever data it needs to display a summary as well as links to certain actions (possibly a link to the original item, links that change the state of the ticket as well as the data associated with the handler, etc.). .. py:attribute:: id :type: uuid.UUID .. py:attribute:: handler_title .. py:attribute:: code_title .. py:property:: collection :type: onegov.form.FormSubmissionCollection .. py:property:: submission :type: onegov.form.FormSubmission | None .. py:property:: form :type: onegov.form.Form | None .. py:property:: directory :type: onegov.directory.Directory | None .. py:property:: entry :type: onegov.directory.DirectoryEntry | None .. py:property:: deleted :type: bool Returns true if the underlying model was deleted. It is best to never let that happen, as we want tickets to stay around forever. However, this can make sense in certain scenarios. Note that if you do delete your underlying model, make sure to call :meth:`onegov.ticket.models.Ticket.create_snapshot` beforehand! .. py:property:: email :type: str Returns the email address behind the ticket request. .. py:property:: submitter_name :type: str | None Returns the name of the submitter .. py:property:: submitter_phone :type: str | None Returns the phone of the submitter .. py:property:: submitter_address :type: str | None Returns the address of the submitter .. py:property:: title :type: str Returns the title of the ticket. If this title may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: subtitle :type: None Returns the subtitle of the ticket. If this title may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: group :type: str Returns the group of the ticket. If this group may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: payment :type: onegov.pay.Payment | None An optional link to a onegov.pay payment record. .. py:property:: state :type: str | None .. py:property:: extra_data :type: list[str] An array of string values which are indexed in elasticsearch when the ticket is stored there. .. py:property:: undecided :type: bool Returns true if there has been no decision about the subject of this handler. For example, if a reservation ticket has been accepted, but the reservation has been neither confirmed nor cancelled, the ticket can be seen as undecided. This is an optional flag that may be implemented by handlers. If a ticket is undecided, the UI might show a special icon and it might warn the user if he closes the ticket without making a decision. By default, the ticket is assumed to be decided for backwards compatibility and for tickets where this does not make sense (a simple form submission may not have any way of knowing if there has been a decision or not). .. py:property:: kind :type: str .. py:method:: get_summary(request: onegov.org.request.OrgRequest) -> markupsafe.Markup Returns the summary of the current ticket as a html string. .. py:method:: get_links(request: onegov.org.request.OrgRequest) -> list[onegov.core.elements.Link | onegov.core.elements.LinkGroup] Returns the links associated with the current ticket in the following format:: [ ('Link Title', 'http://link'), ('Link Title 2', 'http://link2'), ] If the links are not tuples, but callables, they will be called with the request which should return the rendered link. .. py:class:: ChatTicket Bases: :py:obj:`OrgTicketMixin`, :py:obj:`onegov.ticket.Ticket` Adds additional methods to the ticket, needed by the organisations implementation of it. Strictly limited to things that do not belong into onegov.ticket. .. py:attribute:: __mapper_args__ .. py:attribute:: es_type_name :value: 'chat_tickets' Returns the unique type name of the model. .. py:method:: reference_group(request: onegov.org.request.OrgRequest) -> str .. py:class:: ChatHandler(ticket: onegov.ticket.model.Ticket, handler_id: uuid.UUID | str, handler_data: dict[str, Any]) Bases: :py:obj:`onegov.ticket.Handler` Defines a generic handler, responsible for a subset of the tickets. onegov.ticket is meant to be a rather generic bucket of tickets, to which varying modules submit tickets with varying content and different actionables. Each module wanting to submit tickets needs to implement a handler with a unique id and a unique short code. The short code is added in front of the ticket number. Tickets submitted to the database are shown in a list, without handler involvement. When a ticket is displayed, the handler is called with whatever data the handler supplied during ticket submission. The handler then uses the handler data to access whatever data it needs to display a summary as well as links to certain actions (possibly a link to the original item, links that change the state of the ticket as well as the data associated with the handler, etc.). .. py:attribute:: handler_title .. py:attribute:: code_title .. py:property:: collection :type: onegov.chat.collections.ChatCollection .. py:property:: chat :type: onegov.chat.models.Chat | None .. py:property:: deleted :type: bool Returns true if the underlying model was deleted. It is best to never let that happen, as we want tickets to stay around forever. However, this can make sense in certain scenarios. Note that if you do delete your underlying model, make sure to call :meth:`onegov.ticket.models.Ticket.create_snapshot` beforehand! .. py:property:: title :type: str Returns the title of the ticket. If this title may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: subtitle :type: None Returns the subtitle of the ticket. If this title may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: group :type: str | None Returns the group of the ticket. If this group may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: email :type: str Returns the email address behind the ticket request. .. py:method:: get_summary(request: onegov.org.request.OrgRequest) -> markupsafe.Markup Returns the summary of the current ticket as a html string. .. py:method:: get_links(request: onegov.org.request.OrgRequest) -> list[onegov.core.elements.Link | onegov.core.elements.LinkGroup] Returns the links associated with the current ticket in the following format:: [ ('Link Title', 'http://link'), ('Link Title 2', 'http://link2'), ] If the links are not tuples, but callables, they will be called with the request which should return the rendered link.