Odoo18-Base/addons/pos_discount/__manifest__.py
2025-01-06 10:57:38 +07:00

34 lines
841 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': 'Sales/Point of Sale',
'sequence': 6,
'summary': 'Simple Discounts in the Point of Sale ',
'description': """
This module allows the cashier to quickly give percentage-based
discount to a customer.
""",
'depends': ['point_of_sale'],
'data': [
'data/pos_discount_data.xml',
'views/res_config_settings_views.xml',
'views/pos_config_views.xml',
],
'installable': True,
'assets': {
'point_of_sale._assets_pos': [
'pos_discount/static/src/**/*',
],
'web.assets_tests': [
'pos_discount/static/tests/tours/**/*',
],
},
'license': 'LGPL-3',
}