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

32 lines
1.1 KiB
Python
Raw Normal View History

2024-02-16 23:48:19 +08:00
from .types import (HazardType, StockAdjustmentCursorPage, StockAdjustmentEdge,
StockAdjustmentType, StockCategoryType,
StockItemCursorPage, StockItemEdge, StockItemType,
2024-07-28 03:52:31 +08:00
StockItemVariantCursorPage, StockItemVariantEdge,
StockItemVariantType, StockOrderCursorPage, StockOrderEdge,
2024-02-16 23:48:19 +08:00
StockOrderProductType, StockOrderType, StockPackagingType,
StockTransactionCursorPage, StockTransactionEdge,
StockTransactionType, StockUnitType)
2023-08-04 13:12:43 +08:00
inventory_types = [
StockItemType,
StockItemEdge,
StockItemCursorPage,
StockCategoryType,
HazardType,
StockUnitType,
StockPackagingType,
2024-05-29 21:25:53 +08:00
StockItemVariantType,
StockItemVariantEdge,
StockItemVariantCursorPage,
2023-08-04 13:12:43 +08:00
StockOrderType,
StockOrderEdge,
StockOrderCursorPage,
StockOrderProductType,
StockTransactionType,
StockTransactionEdge,
StockTransactionCursorPage,
StockAdjustmentType,
StockAdjustmentEdge,
2023-09-11 13:02:05 +08:00
StockAdjustmentCursorPage,
]