-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path__manifest__.py
64 lines (55 loc) · 1.45 KB
/
__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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# -*- coding: utf-8 -*-
{
'name': "Contractor",
'version': '0.1',
'summary': 'Contractor Management',
'sequence': 2,
'description': """
Odoo Module
-----------
Specifically Designed for Etisalat-TBPC
Contractor Management
---------------------
- Contract
- Contractor
- Contractor Contact
- Ready for Service
- Milestone
- Section Inherit
- Access Users
- Dependent - Can readonly
- User - General Usage except delete power, can Edit recurrence but not create
- Manager - All power to manipulate data
""",
'author': "Marc Philippe de Villeres",
'website': "https://github.com/mpdevilleres",
'category': 'TBPC Budget',
'depends': [
'budget_utilities',
'budget_enduser'
],
'data': [
# SECURITY
'security/budget_contractor.xml',
'security/ir.model.access.csv',
# VIEW
'views/rfq.xml',
'views/contract.xml',
'views/contractor.xml',
'views/contractor_contact.xml',
'views/discount.xml',
'views/discount_rule.xml',
'views/rfs.xml',
'views/milestone.xml',
'views/system_type.xml',
# VIEW INHERIT
'views/milestone_inherit_actual.xml',
'views/rfs_inherit_actual.xml',
'views/menu.xml',
],
'demo': [
],
'installable': True,
'application': True,
'auto_install': False,
}