forked from OCA/purchase-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__openerp__.py
29 lines (28 loc) · 878 Bytes
/
__openerp__.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
# -*- coding: utf-8 -*-
# Copyright 2016 Eficent Business and IT Consulting Services S.L.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0).
{
"name": "Purchase Request",
"author": "Eficent Business and IT Consulting Services S.L., "
"Odoo Community Association (OCA)",
"version": "9.0.1.0.0",
"category": "Purchase Management",
"depends": [
"purchase",
"product"
],
"data": [
"security/purchase_request.xml",
"security/ir.model.access.csv",
"data/purchase_request_sequence.xml",
"data/purchase_request_data.xml",
"views/purchase_request_view.xml",
"reports/report_purchaserequests.xml",
"views/purchase_request_report.xml",
],
'demo': [
"demo/purchase_request_demo.xml",
],
"license": 'LGPL-3',
"installable": True
}