33 lines
973 B
Python
33 lines
973 B
Python
# -*- 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,
|
|
}
|