mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
29 lines
780 B
Python
29 lines
780 B
Python
# Part of Hibou Suite Professional. See LICENSE_PROFESSIONAL file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Journal Entry Exception Rule',
|
|
'version': '15.0.1.0.0',
|
|
'author': 'Hibou Corp.',
|
|
'license': 'OPL-1',
|
|
'category': 'Generic Modules',
|
|
'summary': 'Custom exceptions on Journal Entries',
|
|
'description': """
|
|
Custom exceptions on journal entries
|
|
""",
|
|
'website': 'https://hibou.io/',
|
|
'depends': [
|
|
'base_exception_user',
|
|
'account',
|
|
],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'views/account_move_views.xml',
|
|
'wizard/account_move_exception_confirm_views.xml',
|
|
],
|
|
'demo': [
|
|
'demo/account_exception_demo.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
}
|