Initial commit
This commit is contained in:
32
fusion_inventory_sync/__manifest__.py
Normal file
32
fusion_inventory_sync/__manifest__.py
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user