flectra/addons/pos_discount/__manifest__.py
flectra-admin 769eafb483 [INIT] Inception of Flectra from Odoo
Flectra is Forked from Odoo v11 commit : (6135e82d73)
2018-01-16 11:45:59 +05:30

28 lines
685 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Point of Sale Discounts',
'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,
'website': 'https://www.odoo.com/page/point-of-sale',
}