-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
28 lines (28 loc) · 843 Bytes
/
Copy path__manifest__.py
File metadata and controls
28 lines (28 loc) · 843 Bytes
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
# -*- coding: utf-8 -*-
{
'name': "Purchases",
'summary': "Missing functionalities for the Purchase application/module.",
'description': """
Creating a customization such that one RFQ can be assigned to multiple vendors at the model level,
implementing the process of receiving bids and selecting the winning bidder
""",
'author': "Kalema",
'website': "https://github.com/MartinKalema/",
'category': 'Uncategorized',
'sequence': -100,
'version': '0.1',
'depends': ['base', 'mail', 'purchase', 'account'],
'data': [
# 'security/ir.model.access.csv',
'views/views.xml',
'views/templates.xml',
],
'demo': [
'demo/demo.xml',
],
'application': True,
'installable': True,
'auto_install': False,
'assets': {},
'license': 'LGPL-3',
}