mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-01 04:56:45 +00:00
- Enables the implementation of custom label printing plugins - Will be available directly from the "print labels" dialog box
22 lines
518 B
Python
22 lines
518 B
Python
"""
|
|
Utility class to enable simpler imports
|
|
"""
|
|
|
|
from ..builtin.integration.mixins import APICallMixin, AppMixin, LabelPrintingMixin, SettingsMixin, EventMixin, ScheduleMixin, UrlsMixin, NavigationMixin
|
|
|
|
from ..builtin.action.mixins import ActionMixin
|
|
from ..builtin.barcode.mixins import BarcodeMixin
|
|
|
|
__all__ = [
|
|
'APICallMixin',
|
|
'AppMixin',
|
|
'EventMixin',
|
|
'LabelPrintingMixin',
|
|
'NavigationMixin',
|
|
'ScheduleMixin',
|
|
'SettingsMixin',
|
|
'UrlsMixin',
|
|
'ActionMixin',
|
|
'BarcodeMixin',
|
|
]
|