- Added billing models and repository for handling bills. - Introduced BillingService to manage payment initiation and bill creation. - Updated user service to remove ticket-related functionality. - Refactored settings to include new billing-related fields. - Removed ticket-related handlers and schemas. - Added new billing handlers for processing payments. - Updated database schema with new bills table and status enum. - Enhanced utility functions to calculate prices considering discounts. - Introduced prehandling for non-private messages. - Updated main application to initialize new billing services and repositories.
25 lines
726 B
Python
25 lines
726 B
Python
from typing import TYPE_CHECKING
|
|
|
|
from sqlalchemy import BIGINT, INTEGER, TEXT
|
|
from sqlalchemy.orm import Mapped, mapped_column, relationship
|
|
|
|
from db.base import Base
|
|
|
|
if TYPE_CHECKING:
|
|
from db.models.bills import Bill
|
|
|
|
|
|
class User(Base):
|
|
__tablename__ = "users"
|
|
|
|
id: Mapped[int] = mapped_column(BIGINT, nullable=False, unique=True, primary_key=True)
|
|
referal_id: Mapped[int] = mapped_column(BIGINT, nullable=True)
|
|
subscription_link: Mapped[str] = mapped_column(TEXT, nullable=True, unique=True)
|
|
balance: Mapped[int] = mapped_column(INTEGER, nullable=False, default=0)
|
|
|
|
bills: Mapped[list["Bill"]] = relationship(
|
|
"Bill",
|
|
back_populates="user",
|
|
cascade="all, delete",
|
|
)
|