22 lines
635 B
Python
22 lines
635 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Cancel Journal Entries',
|
|
'version': '1.1',
|
|
'category': 'Accounting',
|
|
'description': """
|
|
Allows canceling accounting entries.
|
|
====================================
|
|
|
|
This module adds 'Allow Canceling Entries' field on form view of account journal.
|
|
If set to true it allows user to cancel entries & invoices.
|
|
""",
|
|
'website': 'https://www.odoo.com/page/accounting',
|
|
'depends': ['account'],
|
|
'data': ['views/account_views.xml'],
|
|
'demo': [],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
}
|