forked from OCA/sale-workflow
-
Notifications
You must be signed in to change notification settings - Fork 7
/
__openerp__.py
37 lines (36 loc) · 1.1 KB
/
__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
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
# © 2015 Sergio Teruel <sergio.teruel@tecnativa.com>
# © 2015 Carlos Dauden <carlos.dauden@tecnativa.com>
# © 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': "Sale Service Project",
'category': 'Sales',
'version': '8.0.1.1.1',
'depends': [
'project_task_materials',
'sale_service',
'project_timesheet',
'hr_timesheet_invoice'
],
'demo': [
'data/sale_service_project_demo.xml',
],
'data': [
'views/sale_service_view.xml',
'views/sale_service_project_view.xml',
'views/sale_view.xml',
'views/account_invoice_view.xml',
'views/project_view.xml',
'views/report_saleorder.xml',
'views/report_invoice.xml',
'wizard/product_price_service_view.xml',
'security/ir.model.access.csv',
],
'author': 'Tecnativa, '
'Odoo Community Association (OCA)',
'website': 'http://www.tecnativa.com',
'license': 'AGPL-3',
'installable': True,
'images': [],
}