66 lines
4.2 KiB
Python
66 lines
4.2 KiB
Python
from __future__ import annotations
|
|
|
|
from datetime import datetime, timezone
|
|
from decimal import Decimal
|
|
|
|
from sqlalchemy import DateTime, ForeignKey, Integer, Numeric, String, Text, UniqueConstraint
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
|
|
from app.core.db.common import CommonBase
|
|
|
|
|
|
class MarketplaceLead(CommonBase):
|
|
"""Public/service marketplace lead captured for later assignment and conversion."""
|
|
|
|
__tablename__ = "marketplace_leads"
|
|
__table_args__ = (UniqueConstraint("lead_no", name="uq_marketplace_leads_lead_no"),)
|
|
|
|
id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True)
|
|
lead_no: Mapped[str] = mapped_column(String(50), nullable=False, index=True)
|
|
source: Mapped[str] = mapped_column(String(50), nullable=False, default="manual", index=True)
|
|
service_category: Mapped[str | None] = mapped_column(String(100), nullable=True, index=True)
|
|
service_requested: Mapped[str] = mapped_column(String(200), nullable=False, index=True)
|
|
|
|
lead_name: Mapped[str] = mapped_column(String(200), nullable=False, index=True)
|
|
business_name: Mapped[str | None] = mapped_column(String(200), nullable=True, index=True)
|
|
email: Mapped[str | None] = mapped_column(String(255), nullable=True, index=True)
|
|
mobile: Mapped[str | None] = mapped_column(String(20), nullable=True, index=True)
|
|
city: Mapped[str | None] = mapped_column(String(100), nullable=True)
|
|
state: Mapped[str | None] = mapped_column(String(100), nullable=True)
|
|
message: Mapped[str | None] = mapped_column(Text, nullable=True)
|
|
|
|
status: Mapped[str] = mapped_column(String(30), nullable=False, default="NEW", index=True)
|
|
priority: Mapped[str] = mapped_column(String(30), nullable=False, default="NORMAL", index=True)
|
|
estimated_value: Mapped[Decimal] = mapped_column(Numeric(12, 2), nullable=False, default=Decimal("0.00"))
|
|
|
|
assigned_tenant_id: Mapped[int | None] = mapped_column(ForeignKey("tenants.id"), nullable=True, index=True)
|
|
assigned_branch_id: Mapped[int | None] = mapped_column(ForeignKey("branches.id"), nullable=True, index=True)
|
|
assigned_partner_user_id: Mapped[int | None] = mapped_column(ForeignKey("users.id"), nullable=True, index=True)
|
|
assigned_at_utc: Mapped[datetime | None] = mapped_column(DateTime(timezone=True), nullable=True)
|
|
assigned_by_user_id: Mapped[int | None] = mapped_column(ForeignKey("users.id"), nullable=True)
|
|
|
|
converted_client_id: Mapped[int | None] = mapped_column(ForeignKey("clients.id"), nullable=True, index=True)
|
|
converted_at_utc: Mapped[datetime | None] = mapped_column(DateTime(timezone=True), nullable=True)
|
|
converted_by_user_id: Mapped[int | None] = mapped_column(ForeignKey("users.id"), nullable=True)
|
|
|
|
created_by_user_id: Mapped[int | None] = mapped_column(ForeignKey("users.id"), nullable=True)
|
|
updated_by_user_id: Mapped[int | None] = mapped_column(ForeignKey("users.id"), nullable=True)
|
|
created_at_utc: Mapped[datetime] = mapped_column(DateTime(timezone=True), default=lambda: datetime.now(timezone.utc), nullable=False)
|
|
updated_at_utc: Mapped[datetime] = mapped_column(DateTime(timezone=True), default=lambda: datetime.now(timezone.utc), onupdate=lambda: datetime.now(timezone.utc), nullable=False)
|
|
|
|
|
|
class MarketplaceLeadAssignment(CommonBase):
|
|
"""Assignment history for marketplace leads."""
|
|
|
|
__tablename__ = "marketplace_lead_assignments"
|
|
|
|
id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True)
|
|
lead_id: Mapped[int] = mapped_column(ForeignKey("marketplace_leads.id", ondelete="CASCADE"), nullable=False, index=True)
|
|
tenant_id: Mapped[int] = mapped_column(ForeignKey("tenants.id"), nullable=False, index=True)
|
|
branch_id: Mapped[int | None] = mapped_column(ForeignKey("branches.id"), nullable=True, index=True)
|
|
partner_user_id: Mapped[int | None] = mapped_column(ForeignKey("users.id"), nullable=True, index=True)
|
|
status: Mapped[str] = mapped_column(String(30), nullable=False, default="ASSIGNED", index=True)
|
|
notes: Mapped[str | None] = mapped_column(Text, nullable=True)
|
|
assigned_by_user_id: Mapped[int | None] = mapped_column(ForeignKey("users.id"), nullable=True)
|
|
assigned_at_utc: Mapped[datetime] = mapped_column(DateTime(timezone=True), default=lambda: datetime.now(timezone.utc), nullable=False)
|