Adds Task 17 tool layer: - fusion_list_overdue - fusion_get_partner_followup_detail - fusion_generate_followup_text - fusion_send_followup - fusion_get_partner_risk_score Tools register through TOOL_DISPATCH and degrade with a clear error message when fusion_accounting_followup is not installed. 5 TransactionCase tests added (78 total). Made-with: Cursor
46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
{
|
|
'name': 'Fusion Accounting Follow-up',
|
|
'version': '19.0.1.0.17',
|
|
'category': 'Accounting/Accounting',
|
|
'summary': 'AI-augmented customer follow-ups (dunning) for unpaid invoices.',
|
|
'description': """
|
|
Fusion Accounting Follow-up
|
|
===========================
|
|
|
|
A Fusion-native replacement for Odoo Enterprise's account_followup module.
|
|
|
|
CORE scope (Phase 4):
|
|
- Multi-level dunning sequences (gentle reminder, firm warning, legal)
|
|
- Per-partner follow-up state (current level, paused-until, history)
|
|
- Automated daily scan + escalation cron
|
|
- Mail templates per level
|
|
|
|
AI augmentation:
|
|
- Contextually-appropriate follow-up text generation (LLM)
|
|
- Payment-risk scoring from invoice/payment history
|
|
- Tone selection (gentle/firm/legal) based on level + risk
|
|
|
|
Coexists with Enterprise: when account_followup is installed, the Fusion
|
|
menu hides; the engine + AI tools remain available for the chat.
|
|
""",
|
|
'author': 'Fusion Accounting',
|
|
'license': 'LGPL-3',
|
|
'depends': [
|
|
'fusion_accounting_core',
|
|
'fusion_accounting_ai',
|
|
'account',
|
|
'mail',
|
|
],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
],
|
|
},
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'application': False,
|
|
'icon': '/fusion_accounting_followup/static/description/icon.png',
|
|
}
|