forked from OCA/credit-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
33 lines (32 loc) · 1.19 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 2020-2021 Akretion France (http://www.akretion.com/)
# @author: Alexis de Lattre <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Overdue Invoice Reminder",
"version": "14.0.1.4.0",
"category": "Accounting",
"license": "AGPL-3",
"summary": "Simple mail/letter/phone overdue customer invoice reminder ",
"author": "Akretion,Odoo Community Association (OCA)",
"maintainers": ["alexis-via"],
"website": "https://github.com/OCA/credit-control",
"depends": ["account"],
"data": [
"security/ir.model.access.csv",
"security/ir_rule.xml",
"wizard/overdue_reminder_wizard_view.xml",
"views/res_partner.xml",
"views/report.xml",
"views/report_overdue_reminder.xml",
"views/account_move.xml",
"views/account_invoice_overdue_reminder.xml",
"views/overdue_reminder_result.xml",
"views/overdue_reminder_action.xml",
"wizard/res_config_settings_view.xml",
"data/overdue_reminder_result.xml",
"data/mail_template.xml",
],
"installable": True,
"application": True,
"pre_init_hook": "pre_init_hook",
}