Files
Odoo-Modules/fusion_accounting_followup/__manifest__.py
gsinghpal 042dcf8067
Some checks failed
fusion_accounting CI / test (fusion_accounting_ai) (push) Has been cancelled
fusion_accounting CI / test (fusion_accounting_core) (push) Has been cancelled
fusion_accounting CI / test (fusion_accounting_migration) (push) Has been cancelled
feat(fusion_accounting_followup): 2 cron jobs (daily scan + weekly risk refresh)
- fusion.followup.cron AbstractModel with two handlers
- cron_fusion_followup_daily_scan: walks every overdue partner and
  delegates to engine.send_followup_email
- cron_fusion_followup_risk_refresh: weekly refresh of
  fusion_followup_risk_score / risk_band on res.partner
- V19 ir.cron records (no numbercall field)
- 2 smoke tests added (80 total)

Made-with: Cursor
2026-04-19 21:04:37 -04:00

47 lines
1.4 KiB
Python

{
'name': 'Fusion Accounting Follow-up',
'version': '19.0.1.0.18',
'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',
'data/cron.xml',
],
'assets': {
'web.assets_backend': [
],
},
'installable': True,
'auto_install': False,
'application': False,
'icon': '/fusion_accounting_followup/static/description/icon.png',
}