34 lines
796 B
Python
34 lines
796 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "SNK accounting_report",
|
|
|
|
'summary': """Sinerka Bank And Cash Accounting Report""",
|
|
|
|
'description': """
|
|
Sinerka Bank and Cash 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',
|
|
|
|
],
|
|
}
|