forked from OCA/delivery-carrier
-
Notifications
You must be signed in to change notification settings - Fork 1
/
__openerp__.py
42 lines (41 loc) · 1.4 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
38
39
40
41
42
# coding: utf-8
# Copyright (C) 2014 - Today: Akretion (http://www.akretion.com)
# Copyright (C) 2018 - Today: GRAP (http://www.grap.coop)
# @author Aymeric Lecomte <aymeric.lecomte@akretion.com>
# @author David BEAL <david.beal@akretion.com>
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Delivery Drop-off Sites',
'version': '9.0.1.0.1',
'author': 'Akretion,GRAP,Odoo Community Association (OCA)',
'license': 'AGPL-3',
'summary': "Send goods to sites in which customers come pick up package",
'category': 'Delivery',
'depends': [
'delivery',
'base_geolocalize',
'resource',
],
'website': 'https://github.com/OCA/delivery-carrier',
'data': [
'security/ir.model.access.csv',
'views/view_dropoff_site.xml',
'views/view_sale_order.xml',
'views/view_stock_picking.xml',
'views/view_delivery_carrier.xml',
],
'demo': [
'demo/res_groups.xml',
'demo/resource_calendar.xml',
'demo/delivery_carrier.xml',
'demo/dropoff_site.xml',
],
'images': [
'static/description/dropoff_site_form.png',
'static/description/dropoff_site_form_calendar.png',
'static/description/dropoff_site_tree.png',
'static/description/sale_order_form.png',
],
'installable': True,
}