summaryrefslogtreecommitdiff
path: root/addons/snailmail/__manifest__.py
blob: 1b663e024e7b9f049946f0fd617a30bdce5c071c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# -*- coding: utf-8 -*-
{
    'name': "Snail Mail",
    'description': """
Allows users to send documents by post
=====================================================
        """,
    'category': 'Hidden/Tools',
    'version': '0.3',
    'depends': [
        'iap_mail',
        'mail'
    ],
    'data': [
        'data/snailmail_data.xml',
        'views/report_assets.xml',
        'views/snailmail_views.xml',
        'views/assets.xml',
        'wizard/snailmail_confirm_views.xml',
        'wizard/snailmail_letter_cancel_views.xml',
        'wizard/snailmail_letter_format_error_views.xml',
        'wizard/snailmail_letter_missing_required_fields_views.xml',
        'security/ir.model.access.csv',
    ],
    'qweb': [
        'static/src/bugfix/bugfix.xml',
        'static/src/components/message/message.xml',
        'static/src/components/notification_group/notification_group.xml',
        'static/src/components/snailmail_error_dialog/snailmail_error_dialog.xml',
        'static/src/components/snailmail_notification_popover/snailmail_notification_popover.xml',
    ],
    'auto_install': True,
    'license': 'LGPL-3',
}