-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
39 lines (37 loc) · 1.19 KB
/
__manifest__.py
File metadata and controls
39 lines (37 loc) · 1.19 KB
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
34
35
36
37
38
39
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name' : 'Analytic Accounting',
'version': '1.1',
'category': 'Accounting/Accounting',
'depends' : ['base', 'mail', 'uom'],
'description': """
Module for defining analytic accounting object.
===============================================
In Odoo, analytic accounts are linked to general accounts but are treated
totally independently. So, you can enter various different analytic operations
that have no counterpart in the general financial accounts.
""",
'data': [
'security/analytic_security.xml',
'security/ir.model.access.csv',
'views/analytic_line_views.xml',
'views/analytic_account_views.xml',
'views/analytic_plan_views.xml',
'views/analytic_distribution_model_views.xml',
'data/analytic_data.xml'
],
'demo': [
'data/analytic_account_demo.xml'
],
'assets': {
'web.assets_backend': [
'analytic/static/src/components/**/*',
],
'web.qunit_suite_tests': [
'analytic/static/tests/*.js',
],
},
'installable': True,
'license': 'LGPL-3',
}