- Added comprehensive README files for all three sync modules - Implemented advanced logging system with multiple log levels (DEBUG, INFO, WARNING, ERROR) - Added automatic sensitive data masking for security in log payloads - Implemented log retention policy (90 days local, 7 years in AWS S3 Glacier) - Added AWS S3 integration for long-term log archiving - Fixed validation error with bemade_instance_id in sync model creation - Refactored model inheritance structure from _inherit to _inherits for proper delegation - Fixed duplicate sync model prevention logic - Restored Test Connection button in instance view - Fixed connection test logging to properly record success/failure - Fixed queue creation for connection test logs - Removed unnecessary Synchronized Module tab from odoo_to_odoo_bemade - Added database indexing on create_date for performance optimization - Fixed foreign key constraint violations in field mappings creation - Enhanced error handling throughout the synchronization process
34 lines
1.1 KiB
Python
34 lines
1.1 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'],
|
|
'data': [
|
|
'security/security.xml',
|
|
'data/ir_model_data.xml',
|
|
'data/ir_config_parameter_data.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',
|
|
],
|
|
'installable': True,
|
|
'application': True,
|
|
'license': 'LGPL-3',
|
|
'post_init_hook': 'post_init_hook',
|
|
}
|