forked from OCA/account-closing
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path__openerp__.py
27 lines (26 loc) · 920 Bytes
/
__openerp__.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
# -*- coding: utf-8 -*-
# Copyright 2016 Tecnativa - Antonio Espinosa
# Copyright 2016-2017 Tecnativa - Pedro M. Baeza
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Fiscal year closing",
"summary": "Generic fiscal year closing wizard",
"version": "9.0.1.0.0",
"category": "Accounting & Finance",
"website": "https://www.tecnativa.org/",
"author": "Tecnativa, "
"Odoo Community Association (OCA)",
"license": "AGPL-3",
"installable": True,
"depends": [
"account_reversal",
],
"data": [
"security/account_fiscalyear_closing_security.xml",
"security/ir.model.access.csv",
"views/account_fiscalyear_closing_views.xml",
"views/account_fiscalyear_closing_template_views.xml",
"views/account_move_views.xml",
"wizards/account_fiscal_year_closing_unbalanced_move_views.xml",
],
}