forked from acsone/account-invoicing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__openerp__.py
More file actions
27 lines (27 loc) · 802 Bytes
/
__openerp__.py
File metadata and controls
27 lines (27 loc) · 802 Bytes
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
# -*- coding: utf-8 -*-
# © 2017 Therp BV <http://therp.nl>
# © 2017 Odoo SA <https://www.odoo.com>
# © 2017 OCA <https://odoo-community.org>
# License LGPL-3 (https://www.gnu.org/licenses/lgpl-3.0.en.html).
{
"name": "Account Outstanding Payments",
"version": "8.0.1.0.0",
"author": "Therp BV,Odoo Community Association (OCA)",
"license": "AGPL-3",
"category": "Accounting & Finance",
"summary": "Allows for reconciliation of invoices.",
"depends": [
'base',
'account'
],
"data": [
'views/templates.xml',
'views/account_invoice_view.xml',
'views/account_config_settings_view.xml',
'security/ir.model.access.csv',
],
"qweb": [
'static/src/xml/account_payment.xml',
],
"installable": True,
}