21 lines
684 B
Python
21 lines
684 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Accounting Audit Unlink Tracker',
|
|
'version': '1.0',
|
|
'summary': 'Track unlink operations and record them to accounting audit log',
|
|
'description': """
|
|
This module tracks the deletion of records in the accounting system
|
|
(Account Moves, Accounts, Taxes, Partners, Companies) and creates
|
|
a persistent log in the Accounting Audit Trail.
|
|
""",
|
|
'author': 'Antigravity',
|
|
'category': 'Accounting',
|
|
'depends': ['account', 'mrp', 'stock', 'purchase', 'sale', 'hr'],
|
|
'data': [
|
|
'views/mail_message_views.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'license': 'LGPL-3',
|
|
}
|