1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/delivery_iot/__manifest__.py
2024-12-10 09:04:09 +07:00

26 lines
778 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "IoT for Delivery",
'summary': "Use IoT devices in delivery operations",
'description': """
Allows using IoT devices, such as scales and printers, for delivery operations.
""",
'category': 'Manufacturing/Internet of Things (IoT)',
'version': '1.0',
'depends': ['iot', 'stock_delivery'],
'data': [
'report/delivery_carrier_reports.xml',
'wizard/choose_delivery_package_views.xml',
'views/iot_views.xml',
'views/stock_picking_views.xml',
],
'license': 'OEEL-1',
'auto_install': True,
'assets': {
'web.assets_backend': [
'delivery_iot/static/src/**/*',
],
}
}