mirror of
https://gitlab.com/flectra-hq/flectra.git
synced 2026-08-19 01:34:43 -05:00
16 lines
591 B
Python
16 lines
591 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': "Free Delivery with Coupon on eCommerce",
|
|
'summary': """Allows to offer free shippings in coupon reward on eCommerce""",
|
|
'description': """Allows to offer free shippings in coupon reward on eCommerce""",
|
|
'category': 'Website/Website',
|
|
'version': '1.0',
|
|
'depends': ['website_sale_delivery', 'sale_coupon_delivery'],
|
|
'data': [
|
|
'views/website_sale_coupon_delivery_templates.xml',
|
|
],
|
|
'auto_install': True,
|
|
'license': 'LGPL-3',
|
|
}
|