summaryrefslogtreecommitdiff
path: root/addons/website_sale_coupon/__manifest__.py
blob: 8884577f6ab68fb4b97b7bb87945c29ce12c07c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
    'name': "Coupons & Promotions for eCommerce",
    'summary': """Use coupon & promotion programs in your eCommerce store""",
    'description': """
Create coupon and promotion codes to share in order to boost your sales (free products, discounts, etc.). Shoppers can use them in the eCommerce checkout.

Coupon & promotion programs can be edited in the Catalog menu of the Website app.
    """,
    'category': 'Website/Website',
    'version': '1.0',
    'depends': ['website_sale', 'sale_coupon'],
    'data': [
        'views/website_sale_templates.xml',
        'views/res_config_settings_views.xml',
        'views/sale_coupon_program_views.xml',
    ],
    'auto_install': True,
    'license': 'LGPL-3',
}