Files
Odoo-Modules/fusion_inventory/__manifest__.py
gsinghpal e9cf75ee48 changes
2026-03-14 12:04:20 -04:00

69 lines
2.2 KiB
Python

# -*- coding: utf-8 -*-
# Copyright 2026 Nexa Systems Inc.
# License OPL-1 (Odoo Proprietary License v1.0)
{
'name': 'Fusion Inventory',
'version': '19.0.1.0.0',
'category': 'Inventory',
'summary': 'Advanced inventory management with margin tracking, sync, portal sheet, and inter-company transfers',
'description': """
Fusion Inventory - Comprehensive Inventory Management
=====================================================
* Product margin and profit tracking with real-time calculation
* Automatic cost updates from vendor bills
* Purchase history tracking per product
* Sale order and invoice status tracking on delivery orders
* Serial number scanning and validation
* Product name case conversion (global and per-product)
* Mobile-friendly portal inventory sheet for sales reps
* Product booking system (24h hold)
* Shadow inventory (incoming POs)
* Cross-instance inventory sync via XML-RPC
* Shared warehouse management with ownership tracking
* Automated inter-company transfers with PO/SO/invoice creation
* Inventory discrepancy scanning
""",
'author': 'Nexa Systems Inc.',
'website': 'https://www.nexasystems.ca',
'license': 'OPL-1',
'depends': [
'base',
'stock',
'product',
'sale_management',
'sale_stock',
'purchase',
'account',
'portal',
'website',
'website_sale',
'mail',
'fusion_tasks',
],
'data': [
'security/security.xml',
'security/ir.model.access.csv',
'data/ir_config_parameter_data.xml',
'data/ir_cron_data.xml',
'wizard/serial_scan_wizard_views.xml',
'views/res_config_settings_views.xml',
'views/product_brand_views.xml',
'views/product_template_views.xml',
'views/product_attribute_views.xml',
'views/product_views.xml',
'views/res_partner_views.xml',
'views/stock_picking_views.xml',
'views/sync_config_views.xml',
'views/portal_inventory_templates.xml',
'views/menus.xml',
],
'assets': {},
'images': ['static/description/icon.png'],
'installable': True,
'auto_install': False,
'application': True,
'post_init_hook': '_post_init_assign_groups',
}