Central data layer + reactive state for the OWL widget. Wraps the 10
JSON-RPC endpoints from the bank_rec_controller (get_state,
list_unreconciled, get_line_detail, suggest_matches, accept_suggestion,
reconcile_manual, unreconcile, write_off, bulk_reconcile,
get_partner_history). Components inject via useService("fusion_bank_reconciliation").
State held in OWL's reactive() so components auto-rerender on
selection / pagination / reconcile-success changes.
Verified: web.assets_backend bundle includes
/fusion_accounting_bank_rec/static/src/services/bank_reconciliation_service.js;
134/134 module tests pass.
Made-with: Cursor
48 lines
1.8 KiB
Python
48 lines
1.8 KiB
Python
{
|
|
'name': 'Fusion Accounting — Bank Reconciliation',
|
|
'version': '19.0.1.0.10',
|
|
'category': 'Accounting/Accounting',
|
|
'sequence': 28,
|
|
'summary': 'Native V19 bank reconciliation widget with AI confidence scoring + behavioural learning.',
|
|
'description': """
|
|
Fusion Accounting — Bank Reconciliation
|
|
========================================
|
|
Replaces Odoo Enterprise's account_accountant bank-rec widget with a
|
|
native V19 OWL implementation reading/writing Community's
|
|
account.partial.reconcile tables.
|
|
|
|
Features:
|
|
- Strict mirror of all Enterprise UI components (zero functional loss)
|
|
- AI confidence badges with one-click Accept and ranked alternatives
|
|
- Behavioural learning from historical reconciliations
|
|
- Local LLM ready (Ollama, LM Studio) via OpenAI-compatible adapter
|
|
- Coexists with account_accountant (Enterprise wins by default)
|
|
|
|
Built by Nexa Systems Inc.
|
|
""",
|
|
'icon': '/fusion_accounting_bank_rec/static/description/icon.png',
|
|
'author': 'Nexa Systems Inc.',
|
|
'website': 'https://nexasystems.ca',
|
|
'maintainer': 'Nexa Systems Inc.',
|
|
'depends': ['fusion_accounting_core'],
|
|
'external_dependencies': {
|
|
'python': ['hypothesis'],
|
|
},
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'data/cron.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'fusion_accounting_bank_rec/static/src/scss/_variables.scss',
|
|
'fusion_accounting_bank_rec/static/src/scss/bank_reconciliation.scss',
|
|
'fusion_accounting_bank_rec/static/src/scss/ai_suggestion.scss',
|
|
'fusion_accounting_bank_rec/static/src/scss/dark_mode.scss',
|
|
'fusion_accounting_bank_rec/static/src/services/bank_reconciliation_service.js',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': False,
|
|
'license': 'OPL-1',
|
|
}
|