flectra/addons/pos_discount/__manifest__.py

29 lines
722 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2018-01-16 11:34:37 +01:00
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
{
'name': 'Point of Sale Discounts',
2018-01-16 12:08:17 +01:00
'author': 'Odoo S.A.',
'version': '1.0',
'category': 'Point of Sale',
'sequence': 6,
'summary': 'Simple Discounts in the Point of Sale ',
'description': """
This module allows the cashier to quickly give a percentage
sale discount to a customer.
""",
'depends': ['point_of_sale'],
'data': [
'views/pos_discount_views.xml',
'views/pos_discount_templates.xml'
],
'qweb': [
'static/src/xml/discount_templates.xml',
],
'installable': True,
2018-01-16 11:34:37 +01:00
'website': 'https://flectrahq.com/page/point-of-sale',
}