diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 17:14:58 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 17:14:58 +0700 |
| commit | 1ca3b3df3421961caec3b747a364071c80f5c7da (patch) | |
| tree | 6778a1f0f3f9b4c6e26d6d87ccde16e24da6c9d6 /mass_cancel_journal_entries/__manifest__.py | |
| parent | b57188be371d36d96caac4b8d65a40745c0e972c (diff) | |
initial commit
Diffstat (limited to 'mass_cancel_journal_entries/__manifest__.py')
| -rw-r--r-- | mass_cancel_journal_entries/__manifest__.py | 23 |
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, +} |
