forked from OCA/field-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
40 lines (39 loc) · 1.18 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
# Copyright (C) 2018 - TODAY, Brian McMaster
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Field Service - Stock',
'summary': 'Integrate the logistics operations with Field Service',
'version': '12.0.2.3.0',
'category': 'Field Service',
'author': "Open Source Integrators, "
"Brian McMaster, "
"Odoo Community Association (OCA)",
'website': 'https://github.com/OCA/field-service',
'depends': [
'fieldservice',
'stock_request_direction',
'stock_request_picking_type',
],
'data': [
'security/ir.model.access.csv',
'data/fsm_stock_data.xml',
'views/fsm_territory.xml',
'views/fsm_location.xml',
'views/fsm_order.xml',
'views/stock.xml',
'views/fsm_equipment.xml',
'views/product_template.xml',
'views/stock_picking_type.xml',
'views/stock_production_lot.xml',
'views/stock_request.xml',
'views/stock_request_order.xml',
],
'license': 'AGPL-3',
'development_status': 'Beta',
'maintainers': [
'brian10048',
'wolfhall',
'max3903',
'smangukiya',
],
}