blob: 8e63e3de8ed4d0cb9387011d3fcf59d55a7440ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# -*- coding: utf-8 -*-
{
'name': "Mass Cancel Journal Entries",
'summary': """ This module allows to cancel or delete mass/bulk/multiple Journal Entries
from the tree view.""",
'author': "Aktiv Software",
'website': "http://www.aktivsoftware.com",
'category': 'Accounting',
'version': '14.0.1.0.0',
'license': 'AGPL-3',
# any module necessary for this one to work correctly
'depends': ['account'],
# always loaded
'data': [
'security/ir.model.access.csv',
'wizard/journal_entries_cancel_wizard.xml',
],
'images': ['static/description/banner.png'],
'installable': True,
'auto_install': False,
}
|