Automated Action 54bf9880b9 Implement Small Business Inventory Management System
This commit implements a comprehensive inventory management system for small businesses using FastAPI and SQLAlchemy. Features include:
- Product and category management
- Inventory tracking across multiple locations
- Supplier management
- Purchase management
- Transaction tracking for inventory movements
- Complete API documentation

generated with BackendIM... (backend.im)
2025-05-12 12:55:31 +00:00

11 lines
318 B
Python

from app.models.base import BaseModel
from app.models.product import Product, Category
from app.models.inventory import (
Location,
LocationType,
InventoryItem,
InventoryTransaction,
InventoryTransactionItem,
TransactionType
)
from app.models.supplier import Supplier, Purchase, PurchaseItem