-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path__manifest__.py
36 lines (36 loc) · 1.18 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
{
'name': 'Account Check Management',
'version': '12.0.1.0.0',
'category': 'Accounting',
'summary': 'Accounting, Payment, Check, Third, Issue',
'website': 'www.codequarters.com',
'author': 'CODEQUARTERS',
'license': 'AGPL-3',
'images': [
],
'depends': [
'account',
'account_payment_fix',
# TODO we should move field amount_company_currency to
# account_payment_fix so that we dont need to depend on
# account_payment_group
],
'data': [
'data/account_payment_method_data.xml',
#'data/ir_actions_server_data.xml',
'wizard/account_check_action_wizard_view.xml',
'wizard/print_pre_numbered_checks_view.xml',
'views/res_config_settings_view.xml',
'views/account_payment_view.xml',
'views/account_check_view.xml',
'views/account_journal_dashboard_view.xml',
'views/account_journal_view.xml',
'views/account_checkbook_view.xml',
'views/account_chart_template_view.xml',
'security/ir.model.access.csv',
'security/account_check_security.xml',
],
'installable': True,
'auto_install': False,
'application': True,
}