- 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
18 lines
776 B
XML
18 lines
776 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data noupdate="0">
|
|
<!-- Security Groups -->
|
|
<record id="group_odoo_sync_user" model="res.groups">
|
|
<field name="name">Odoo Sync User</field>
|
|
<field name="category_id" ref="base.module_category_hidden"/>
|
|
<field name="implied_ids" eval="[(4, ref('base.group_user'))]"/>
|
|
</record>
|
|
|
|
<record id="group_odoo_sync_manager" model="res.groups">
|
|
<field name="name">Odoo Sync Manager</field>
|
|
<field name="category_id" ref="base.module_category_hidden"/>
|
|
<field name="implied_ids" eval="[(4, ref('group_odoo_sync_user'))]"/>
|
|
<field name="users" eval="[(4, ref('base.user_admin'))]"/>
|
|
</record>
|
|
</data>
|
|
</odoo>
|