forked from Mapan/odoo17e
19 lines
581 B
Python
19 lines
581 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': "Shiprocket Shipping",
|
|
'description': "Send your parcels through shiprocket and track them online",
|
|
'category': 'Inventory/Delivery',
|
|
'sequence': 317,
|
|
'version': '1.0',
|
|
'application': True,
|
|
'depends': ['stock_delivery', 'mail'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'data/data.xml',
|
|
'views/res_config_settings_views.xml',
|
|
'views/delivery_carrier_views.xml',
|
|
'views/stock_picking.xml',
|
|
],
|
|
'license': 'OEEL-1',
|
|
}
|