769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
31 lines
1.0 KiB
Python
31 lines
1.0 KiB
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 a checkbox on the accounting journals to allow the cancellation of journal entries.
|
|
|
|
This checkbox is only visible on the accounting journals when the debug mode is active.
|
|
|
|
If this checkbox is set to TRUE, it allows users to cancel journal entries.
|
|
|
|
The accounting entry that is cancelled can then be modified and reposted or deleted.
|
|
|
|
It also operates on invoices, bank statements, payments ...
|
|
|
|
Be careful with this module as it has audit implications. Cancelling accounting entries is not authorized in all countries.
|
|
""",
|
|
'website': 'https://www.odoo.com/page/accounting',
|
|
'depends': ['account'],
|
|
'data': ['views/account_views.xml'],
|
|
'demo': [],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
}
|