
- Set up project structure with FastAPI and SQLite - Created database models for users, categories, suppliers, items, and stock transactions - Implemented Alembic for database migrations with proper absolute paths - Built comprehensive CRUD operations for all entities - Added JWT-based authentication and authorization system - Created RESTful API endpoints for all inventory operations - Implemented search, filtering, and low stock alerts - Added health check endpoint and base URL response - Configured CORS for all origins - Set up Ruff for code linting and formatting - Updated README with comprehensive documentation and usage examples The system provides complete inventory management functionality for small businesses including product tracking, supplier management, stock transactions, and reporting. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
826 B
Python
27 lines
826 B
Python
from sqlalchemy import Column, Integer, String, DateTime, Text, Float, ForeignKey, Enum
|
|
from sqlalchemy.orm import relationship
|
|
from datetime import datetime
|
|
from app.db.base import Base
|
|
import enum
|
|
|
|
|
|
class TransactionType(enum.Enum):
|
|
IN = "in"
|
|
OUT = "out"
|
|
ADJUSTMENT = "adjustment"
|
|
|
|
|
|
class StockTransaction(Base):
|
|
__tablename__ = "stock_transactions"
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|
|
item_id = Column(Integer, ForeignKey("items.id"), nullable=False)
|
|
transaction_type = Column(Enum(TransactionType), nullable=False)
|
|
quantity = Column(Integer, nullable=False)
|
|
unit_cost = Column(Float)
|
|
reference_number = Column(String)
|
|
notes = Column(Text)
|
|
created_at = Column(DateTime, default=datetime.utcnow)
|
|
|
|
item = relationship("Item", back_populates="transactions")
|