File: __manifest__.py

package info (click to toggle)
odoo 18.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 878,716 kB
  • sloc: javascript: 927,937; python: 685,670; xml: 388,524; sh: 1,033; sql: 415; makefile: 26
file content (27 lines) | stat: -rw-r--r-- 885 bytes parent folder | download
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
# -*- coding: utf-8 -*-
{
    'name': "delivery_mondialrelay",
    'summary': """ Let's choose a Point RelaisĀ® as shipping address """,

    'description': """
This module allow your customer to choose a Point RelaisĀ® and use it as shipping address.
This module doesn't implement the WebService. It is only the integration of the widget.

Delivery price pre-configured is an example, you need to adapt the pricing's rules.
    """,
    'category': 'Inventory/Delivery',
    'version': '0.1',
    'depends': ['stock_delivery'],
    'data': [
        'data/data.xml',
        'views/views.xml',
        'wizard/choose_delivery_carrier_views.xml',
    ],
    'assets': {
        'web.assets_backend': [
            'delivery_mondialrelay/static/src/components/**/*.js',
            'delivery_mondialrelay/static/src/scss/mondialrelay.scss',
        ],
    },
    'license': 'LGPL-3',
}