Files
inventree-rma-plugin/inventree_rma_plugin/apps.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

12 lines
317 B
Python

"""Django app configuration for RMA Automation plugin."""
from django.apps import AppConfig
class RMAAutomationConfig(AppConfig):
"""App configuration for the RMA Automation plugin."""
name = 'inventree_rma_plugin'
verbose_name = 'RMA Automation'
default_auto_field = 'django.db.models.AutoField'