Odoo-Tutorial/loan_management/__manifest__.py
2025-06-21 09:44:01 +07:00

47 lines
1.2 KiB
Python

# -*- coding: utf-8 -*-
{
'name': "loan_management",
'summary': "Short (1 phrase/line) summary of the module's purpose",
'description': """
Long description of module's purpose
""",
'author': "My Company",
'website': "https://www.yourcompany.com",
# 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': 'Finance',
'version': '0.1',
# any module necessary for this one to work co rrectly
'depends': ['base','contacts','web'],
# always loaded
'data': [
"security/ir.model.access.csv",
'data/loan_sequence.xml',
'views/loan_type_views.xml',
'views/menu_items.xml',
'views/loan_borrower_view.xml',
'views/loan_interest_policy_views.xml',
'views/loan_request_view.xml',
],
"assets": {
"web.assets_backend": [
"loan_management/static/src/xml/res_config_edition.xml",
],
},
# only loaded in demonstration mode
'demo': [
'demo/demo.xml',
],
"installable": True,
"application": True,
}