spool.py 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. from datetime import datetime
  2. from sqlalchemy import Boolean, DateTime, Float, Integer, String, func
  3. from sqlalchemy.orm import Mapped, mapped_column, relationship
  4. from backend.app.core.database import Base
  5. class Spool(Base):
  6. """Spool inventory item for tracking filament spools and their properties."""
  7. __tablename__ = "spool"
  8. id: Mapped[int] = mapped_column(primary_key=True)
  9. material: Mapped[str] = mapped_column(String(50)) # PLA, PETG, ABS, etc.
  10. subtype: Mapped[str | None] = mapped_column(String(50)) # Basic, Matte, Silk, etc.
  11. color_name: Mapped[str | None] = mapped_column(String(100)) # "Jade White"
  12. rgba: Mapped[str | None] = mapped_column(String(8)) # RRGGBBAA hex
  13. # Multi-colour gradient stops for filaments with more than one colour
  14. # (e.g. tri-colour, multi-colour). Stored as comma-separated 6- or 8-char
  15. # hex tokens without `#`. Empty/NULL means solid (uses `rgba`). Up to 8
  16. # stops; combination mode is driven by `subtype` (Gradient, Multicolor).
  17. extra_colors: Mapped[str | None] = mapped_column(String(255))
  18. # Visual effect overlay independent of subtype: sparkle, wood, marble,
  19. # glow, matte. Purely a rendering hint — does not affect MQTT/firmware.
  20. effect_type: Mapped[str | None] = mapped_column(String(20))
  21. brand: Mapped[str | None] = mapped_column(String(100)) # "Polymaker"
  22. label_weight: Mapped[int] = mapped_column(Integer, default=1000) # Advertised net weight (g)
  23. core_weight: Mapped[int] = mapped_column(Integer, default=250) # Empty spool weight (g)
  24. core_weight_catalog_id: Mapped[int | None] = mapped_column(
  25. Integer
  26. ) # Reference to spool_catalog entry for core weight
  27. weight_used: Mapped[float] = mapped_column(Float, default=0) # Consumed grams
  28. weight_locked: Mapped[bool] = mapped_column(Boolean, default=False) # Lock weight from AMS auto-sync
  29. last_scale_weight: Mapped[int | None] = mapped_column(Integer) # Last gross weight from scale (g)
  30. last_weighed_at: Mapped[datetime | None] = mapped_column(DateTime) # When last weighed
  31. slicer_filament: Mapped[str | None] = mapped_column(String(50)) # Preset ID (e.g. "GFL99")
  32. slicer_filament_name: Mapped[str | None] = mapped_column(String(100)) # Preset name for slicer
  33. nozzle_temp_min: Mapped[int | None] = mapped_column() # Override min temp
  34. nozzle_temp_max: Mapped[int | None] = mapped_column() # Override max temp
  35. note: Mapped[str | None] = mapped_column(String(500))
  36. added_full: Mapped[bool | None] = mapped_column() # Whether spool was added as full (unused)
  37. # User-defined category (e.g. "Production", "Prototype", "Client A") for
  38. # filtering and per-group low-stock thresholds (#729). Free text — the
  39. # form autocompletes from categories already present on other spools.
  40. category: Mapped[str | None] = mapped_column(String(50))
  41. # Per-spool override of the global inventory low-stock threshold (%).
  42. # NULL falls back to the `low_stock_threshold` setting. Lets users mark
  43. # production spools with a higher threshold (alert earlier) and prototype
  44. # spools with a lower one without changing the global default.
  45. low_stock_threshold_pct: Mapped[int | None] = mapped_column(Integer)
  46. # Cost tracking
  47. cost_per_kg: Mapped[float | None] = mapped_column(Float) # Cost per kilogram
  48. last_used: Mapped[datetime | None] = mapped_column(DateTime) # Last time this spool was used in a print
  49. encode_time: Mapped[datetime | None] = mapped_column(DateTime) # When spool was encoded/written to tag
  50. tag_uid: Mapped[str | None] = mapped_column(String(16)) # RFID tag UID (16 hex chars)
  51. tray_uuid: Mapped[str | None] = mapped_column(String(32)) # Bambu Lab spool UUID (32 hex chars)
  52. data_origin: Mapped[str | None] = mapped_column(String(20)) # How data was populated: manual, rfid_auto, nfc_link
  53. tag_type: Mapped[str | None] = mapped_column(String(20)) # Tag vendor: bambulab, generic, etc.
  54. archived_at: Mapped[datetime | None] = mapped_column(DateTime) # NULL = active
  55. created_at: Mapped[datetime] = mapped_column(DateTime, server_default=func.now())
  56. updated_at: Mapped[datetime] = mapped_column(DateTime, server_default=func.now(), onupdate=func.now())
  57. k_profiles: Mapped[list["SpoolKProfile"]] = relationship(back_populates="spool", cascade="all, delete-orphan")
  58. assignments: Mapped[list["SpoolAssignment"]] = relationship(back_populates="spool", cascade="all, delete-orphan")
  59. from backend.app.models.spool_assignment import SpoolAssignment # noqa: E402
  60. from backend.app.models.spool_k_profile import SpoolKProfile # noqa: E402