- Added comprehensive dependency management with proper OdooRPC library integration - Fixed XML-RPC, JSON-RPC, and OdooRPC connection authentication issues - Implemented proper Odoo 18 API key format support with scope parameter - Added intelligent field mapping wizard with Full/Required/Balanced modes - Enhanced error handling and connection state management - Removed legacy API key system for clean reinstall capability - Added detailed debug logging for connection troubleshooting
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
{
|
|
'name': 'Odoo to Odoo Sync',
|
|
'version': '18.0.1.0.0',
|
|
'category': 'Technical',
|
|
'summary': 'Synchronisation bidirectionnelle entre instances Odoo',
|
|
'description': """
|
|
Module de synchronisation bidirectionnelle entre instances Odoo
|
|
- Support multi-instances
|
|
- Synchronisation asynchrone
|
|
- Gestion des conflits
|
|
- Monitoring et reprise sur erreur
|
|
""",
|
|
'author': 'Bemade',
|
|
'website': 'https://bemade.org',
|
|
'depends': ['base', 'project'],
|
|
'data': [
|
|
'security/security.xml',
|
|
'data/ir_model_data.xml',
|
|
'data/ir_config_parameter_data.xml',
|
|
'wizards/auto_sync_wizard_view.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/sync_instance_views.xml',
|
|
'views/sync_model_views.xml',
|
|
'views/sync_queue_views.xml',
|
|
'views/sync_log_views.xml',
|
|
'views/sync_conflict_views.xml',
|
|
'views/sync_manager_views.xml',
|
|
'views/menus.xml',
|
|
'data/ir_cron_data.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': True,
|
|
'license': 'LGPL-3',
|
|
'post_init_hook': 'post_init_hook',
|
|
}
|