
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)
11 lines
318 B
Python
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 |