Some checks failed
Clean up 28 backward compatibility instances identified in the codebase. The app is not live, so all shims are replaced with the target architecture: - Remove legacy Inventory.location column (use bin_location exclusively) - Remove dashboard _extract_metric_value helper (use flat metrics dict) - Remove legacy stat field duplicates (total_stores, total_imports, etc.) - Remove 13 re-export shims and class aliases across modules - Remove module-enabling JSON fallback (use PlatformModule junction table) - Remove menu_to_legacy_format() conversion (return dataclasses directly) - Remove title/description from MarketplaceProductBase schema - Clean billing convenience method docstrings - Clean test fixtures and backward-compat comments - Add PlatformModule seeding to init_production.py Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
59 lines
2.0 KiB
Python
59 lines
2.0 KiB
Python
# app/modules/inventory/models/inventory.py
|
|
"""
|
|
Inventory model for tracking stock at warehouse/bin locations.
|
|
|
|
Each entry represents a quantity of a product at a specific bin location
|
|
within a warehouse. Products can be scattered across multiple bins.
|
|
|
|
Example:
|
|
Warehouse: "strassen"
|
|
Bin: "SA-10-02"
|
|
Product: GTIN 4007817144145
|
|
Quantity: 3
|
|
"""
|
|
|
|
from sqlalchemy import Column, ForeignKey, Index, Integer, String, UniqueConstraint
|
|
from sqlalchemy.orm import relationship
|
|
|
|
from app.core.database import Base
|
|
from models.database.base import TimestampMixin
|
|
|
|
|
|
class Inventory(Base, TimestampMixin):
|
|
__tablename__ = "inventory"
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|
|
product_id = Column(Integer, ForeignKey("products.id"), nullable=False, index=True)
|
|
store_id = Column(Integer, ForeignKey("stores.id"), nullable=False, index=True)
|
|
|
|
# Location: warehouse + bin
|
|
warehouse = Column(String, nullable=False, default="strassen", index=True)
|
|
bin_location = Column(String, nullable=False, index=True) # e.g., "SA-10-02"
|
|
|
|
quantity = Column(Integer, nullable=False, default=0)
|
|
reserved_quantity = Column(Integer, default=0)
|
|
|
|
# Keep GTIN for reference/reporting (matches Product.gtin)
|
|
gtin = Column(String, index=True)
|
|
|
|
# Relationships
|
|
product = relationship("Product", back_populates="inventory_entries")
|
|
store = relationship("Store")
|
|
|
|
# Constraints
|
|
__table_args__ = (
|
|
UniqueConstraint(
|
|
"product_id", "warehouse", "bin_location", name="uq_inventory_product_warehouse_bin"
|
|
),
|
|
Index("idx_inventory_store_product", "store_id", "product_id"),
|
|
Index("idx_inventory_warehouse_bin", "warehouse", "bin_location"),
|
|
)
|
|
|
|
def __repr__(self):
|
|
return f"<Inventory(product_id={self.product_id}, warehouse='{self.warehouse}', bin='{self.bin_location}', quantity={self.quantity})>"
|
|
|
|
@property
|
|
def available_quantity(self):
|
|
"""Calculate available quantity (total - reserved)."""
|
|
return max(0, self.quantity - self.reserved_quantity)
|