Source code for pas.models.settlement_run

from onegov.core.orm import Base
from onegov.core.orm.mixins import content_property
from onegov.core.orm.mixins import ContentMixin
from onegov.core.orm.mixins import TimestampMixin
from onegov.core.orm.types import UUID
from onegov.search import ORMSearchable
from sqlalchemy import Boolean
from sqlalchemy import Column
from sqlalchemy import Date
from sqlalchemy import Text
from uuid import uuid4

from typing import TYPE_CHECKING
if TYPE_CHECKING:
    import uuid
    from datetime import date
    from onegov.core.orm.mixins import dict_property


[docs] class SettlementRun(Base, ContentMixin, TimestampMixin, ORMSearchable):
[docs] __tablename__ = 'pas_settlements'
[docs] es_public = False
[docs] es_properties = {'name': {'type': 'text'}}
@property
[docs] def es_suggestion(self) -> str: return self.name
@property
[docs] def title(self) -> str: return self.name
#: Internal ID
[docs] id: 'Column[uuid.UUID]' = Column( UUID, # type:ignore[arg-type] primary_key=True, default=uuid4 )
#: the name
[docs] name: 'Column[str]' = Column( Text, nullable=False )
#: The start date
[docs] start: 'Column[date]' = Column( Date, nullable=False )
#: The end date
[docs] end: 'Column[date]' = Column( Date, nullable=False )
#: The end date
[docs] active: 'Column[bool]' = Column( Boolean, nullable=False )
#: The description
[docs] description: 'dict_property[str | None]' = content_property()