felicity-lims/felicity/api/gql/inventory/__init__.py

46 lines
1 KiB
Python
Raw Normal View History

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,
]