felicity-lims/felicity/api/gql/inventory/__init__.py
2024-07-27 21:52:31 +02:00

31 lines
1.1 KiB
Python

from .types import (HazardType, StockAdjustmentCursorPage, StockAdjustmentEdge,
StockAdjustmentType, StockCategoryType,
StockItemCursorPage, StockItemEdge, StockItemType,
StockItemVariantCursorPage, StockItemVariantEdge,
StockItemVariantType, StockOrderCursorPage, StockOrderEdge,
StockOrderProductType, StockOrderType, StockPackagingType,
StockTransactionCursorPage, StockTransactionEdge,
StockTransactionType, StockUnitType)
inventory_types = [
StockItemType,
StockItemEdge,
StockItemCursorPage,
StockCategoryType,
HazardType,
StockUnitType,
StockPackagingType,
StockItemVariantType,
StockItemVariantEdge,
StockItemVariantCursorPage,
StockOrderType,
StockOrderEdge,
StockOrderCursorPage,
StockOrderProductType,
StockTransactionType,
StockTransactionEdge,
StockTransactionCursorPage,
StockAdjustmentType,
StockAdjustmentEdge,
StockAdjustmentCursorPage,
]