34 lines
748 B
Python
34 lines
748 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
{
|
||
|
'name': "accounting_report",
|
||
|
|
||
|
'summary': """Accounting Report""",
|
||
|
|
||
|
'description': """
|
||
|
Accounting Report
|
||
|
""",
|
||
|
|
||
|
'author': "",
|
||
|
'website': "",
|
||
|
|
||
|
# Categories can be used to filter modules in modules listing
|
||
|
# Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
|
||
|
# for the full list
|
||
|
'category': 'Uncategorized',
|
||
|
'version': '0.1',
|
||
|
|
||
|
# any module necessary for this one to work correctly
|
||
|
'depends': ['base',
|
||
|
'account',
|
||
|
],
|
||
|
|
||
|
# always loaded
|
||
|
'data': [
|
||
|
'security/ir.model.access.csv',
|
||
|
|
||
|
'wizards/wz_ledger_bank_and_cash.xml',
|
||
|
'views/ledger_bank_and_cash.xml',
|
||
|
|
||
|
],
|
||
|
}
|