-
Notifications
You must be signed in to change notification settings - Fork 9
/
__manifest__.py
54 lines (48 loc) · 1.51 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- coding: utf-8 -*-
{
'name': "Cash Box",
'summary': """
Cash Box is a module odoo 10 for management cash movement in a company""",
'description': """
Long description of module's purpose..
""",
'author': "Dev Team BMKeros",
'website': "http://dev.bmkeros.org.ve",
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/master/odoo/addons/base/module/module_data.xml
# for the full list
'category': 'Accounting & Finance',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['base', 'hr'],
# always loaded
'data': [
'security/cash_box_security.xml',
'security/ir.model.access.csv',
'views/cash_box.xml',
'views/menu.xml',
'views/inflow_seat_view.xml',
'views/outflow_seat_view.xml',
'views/cash_box_report.xml',
'reports/report_voucher_outflow.xml',
'reports/report_voucher_inflow.xml',
'reports/details_movements_inflow.xml',
'reports/details_movements_outflow.xml',
'data/data_bank_venezuela.xml'
],
'qweb': [
'static/src/xml/custom_button_report_details_movements.xml'
],
'js': [
'static/src/js/custom_button_report_details_movements_actions.js'
],
'css': [
'static/src/css/styles.css'
],
# only loaded in demonstration mode
'demo': [
'demo/demo.xml',
],
'installable': True,
'application': True
}