Features: - Automatic stock status updates based on return order outcomes - Repair parts allocation and consumption tracking - Configurable status mappings for each outcome type - React-based UI panel for managing repair parts - Location display for easy part retrieval - Available stock filtering (excludes allocated items)
8 lines
234 B
Python
8 lines
234 B
Python
"""InvenTree RMA Automation Plugin."""
|
|
|
|
from inventree_rma_plugin.rma_automation import RMAAutomationPlugin
|
|
|
|
__all__ = ['RMAAutomationPlugin']
|
|
__version__ = '0.2.0'
|
|
default_app_config = 'inventree_rma_plugin.apps.RMAAutomationConfig'
|