Source code for wtfs.models.payment_type

from onegov.core.orm import Base
from onegov.core.orm.mixins import TimestampMixin
from sqlalchemy import Column
from sqlalchemy import Integer
from sqlalchemy import Text


[docs] class PaymentType(Base, TimestampMixin): """ Payment types. """
[docs] __tablename__ = 'wtfs_payment_type'
#: The name of the type
[docs] name: 'Column[str]' = Column(Text, primary_key=True)
#: The price per quantity times hundred, used for invoices. Typically #: 700 (normal) or 850 (special).
[docs] _price_per_quantity: 'Column[int]' = Column( 'price_per_quantity', Integer, nullable=False )
@property
[docs] def price_per_quantity(self) -> float: return (self._price_per_quantity or 0) / 100
@price_per_quantity.setter def price_per_quantity(self, value: float) -> None: self._price_per_quantity = (value or 0) * 100 # type:ignore