summaryrefslogtreecommitdiff
path: root/mass_cancel_journal_entries/__manifest__.py
diff options
context:
space:
mode:
Diffstat (limited to 'mass_cancel_journal_entries/__manifest__.py')
-rw-r--r--mass_cancel_journal_entries/__manifest__.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/mass_cancel_journal_entries/__manifest__.py b/mass_cancel_journal_entries/__manifest__.py
new file mode 100644
index 0000000..8e63e3d
--- /dev/null
+++ b/mass_cancel_journal_entries/__manifest__.py
@@ -0,0 +1,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,
+}