forked from OCA/server-ux
-
Notifications
You must be signed in to change notification settings - Fork 3
/
__manifest__.py
31 lines (31 loc) · 1001 Bytes
/
__manifest__.py
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
# Copyright 2017-19 Eficent Business and IT Consulting Services S.L.
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Base Tier Validation",
"summary": "Implement a validation process based on tiers.",
"version": "12.0.3.9.3",
"development_status": "Mature",
"maintainers": ['LoisRForgeFlow'],
"category": "Tools",
"website": "https://github.com/OCA/server-ux",
"author": "Eficent, Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": [
"mail"
],
"data": [
"data/mail_data.xml",
"security/tier_validation_security.xml",
"security/ir.model.access.csv",
"views/tier_definition_view.xml",
"views/tier_review_view.xml",
"views/assets_backend.xml",
"wizard/comment_wizard_view.xml",
],
'qweb': [
'static/src/xml/systray.xml',
'static/src/xml/tier_review_template.xml',
],
}