Initial commit

This commit is contained in:
gsinghpal
2026-02-22 01:22:18 -05:00
commit 5200d5baf0
2394 changed files with 386834 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
# -*- coding: utf-8 -*-
{
'name': 'Fusion Inventory Sync',
'version': '19.0.1.0.0',
'category': 'Inventory',
'summary': 'Sync inventory between Westin Healthcare and Mobility Specialties via XML-RPC',
'description': """
Cross-database inventory sync between two Odoo instances.
- Connects to a remote Odoo instance via XML-RPC
- Syncs product catalog with mapping table
- Shows remote stock levels on local products
- Cron-based periodic sync (configurable interval)
""",
'author': 'Nexa Systems Inc.',
'website': 'https://www.nexasystems.ca',
'license': 'OPL-1',
'depends': [
'base',
'stock',
'product',
],
'data': [
'security/ir.model.access.csv',
'data/ir_cron_data.xml',
'views/sync_config_views.xml',
'views/product_views.xml',
],
'installable': True,
'auto_install': False,
'application': False,
}