43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2026 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
{
|
|
'name': 'Fusion Accounts',
|
|
'version': '19.0.1.0.0',
|
|
'category': 'Accounting',
|
|
'summary': 'Smart vendor bill creation from email with AI extraction and vendor matching',
|
|
'description': """
|
|
Fusion Accounts - Smart Vendor Bill Management
|
|
===============================================
|
|
|
|
Automatically creates vendor bills from incoming emails with:
|
|
- Multi-level vendor matching (email, domain, name)
|
|
- Vendor blocking for PO-tracked vendors
|
|
- AI-powered data extraction from email body and PDF attachments
|
|
- Full activity logging and dashboard
|
|
""",
|
|
'author': 'Nexa Systems Inc.',
|
|
'website': 'https://nexasystems.ca',
|
|
'license': 'OPL-1',
|
|
'depends': [
|
|
'base',
|
|
'account',
|
|
'mail',
|
|
'purchase',
|
|
],
|
|
'data': [
|
|
'security/security.xml',
|
|
'security/ir.model.access.csv',
|
|
'data/ir_config_parameter_data.xml',
|
|
'views/fusion_accounts_log_views.xml',
|
|
'views/fusion_accounts_dashboard.xml',
|
|
'views/res_partner_views.xml',
|
|
'views/res_config_settings_views.xml',
|
|
'views/account_move_views.xml',
|
|
'views/fusion_accounts_menus.xml',
|
|
],
|
|
'installable': True,
|
|
'application': True,
|
|
'auto_install': False,
|
|
}
|