account_audit_unlink/__manifest__.py

21 lines
686 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': 'Suherdy Yacob',
'category': 'Accounting',
'depends': ['account', 'mrp', 'stock', 'purchase', 'sale', 'hr'],
'data': [
'views/mail_message_views.xml',
],
'installable': True,
'auto_install': False,
'license': 'LGPL-3',
}