Files
inventree-rma-plugin/inventree_rma_plugin/__init__.py
Tim Hadwen 2477fd1539 Initial release: RMA Automation plugin with repair parts tracking
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)
2026-01-18 20:56:07 +10:00

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'