2023-08-04 13:12:43 +08:00
|
|
|
from .types import (
|
|
|
|
StockItemType,
|
|
|
|
StockItemEdge,
|
|
|
|
StockItemCursorPage,
|
|
|
|
StockCategoryType,
|
|
|
|
HazardType,
|
|
|
|
StockUnitType,
|
|
|
|
StockPackagingType,
|
|
|
|
StockProductType,
|
|
|
|
StockProductEdge,
|
|
|
|
StockProductCursorPage,
|
|
|
|
StockOrderType,
|
|
|
|
StockOrderEdge,
|
|
|
|
StockOrderCursorPage,
|
|
|
|
StockOrderProductType,
|
|
|
|
StockTransactionType,
|
|
|
|
StockTransactionEdge,
|
|
|
|
StockTransactionCursorPage,
|
|
|
|
StockAdjustmentType,
|
|
|
|
StockAdjustmentEdge,
|
2023-09-11 13:02:05 +08:00
|
|
|
StockAdjustmentCursorPage,
|
2023-08-04 13:12:43 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
inventory_types = [
|
|
|
|
StockItemType,
|
|
|
|
StockItemEdge,
|
|
|
|
StockItemCursorPage,
|
|
|
|
StockCategoryType,
|
|
|
|
HazardType,
|
|
|
|
StockUnitType,
|
|
|
|
StockPackagingType,
|
|
|
|
StockProductType,
|
|
|
|
StockProductEdge,
|
|
|
|
StockProductCursorPage,
|
|
|
|
StockOrderType,
|
|
|
|
StockOrderEdge,
|
|
|
|
StockOrderCursorPage,
|
|
|
|
StockOrderProductType,
|
|
|
|
StockTransactionType,
|
|
|
|
StockTransactionEdge,
|
|
|
|
StockTransactionCursorPage,
|
|
|
|
StockAdjustmentType,
|
|
|
|
StockAdjustmentEdge,
|
2023-09-11 13:02:05 +08:00
|
|
|
StockAdjustmentCursorPage,
|
|
|
|
]
|