37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
{
|
||
|
'name': "Point of Sale - Coupons & Loyalty",
|
||
|
'version': '2.0',
|
||
|
'category': 'Sales/Point Of Sale',
|
||
|
'sequence': 6,
|
||
|
'summary': 'Use Coupons, Gift Cards and Loyalty programs in Point of Sale',
|
||
|
'depends': ['loyalty', 'point_of_sale'],
|
||
|
'data': [
|
||
|
'security/ir.model.access.csv',
|
||
|
'data/default_barcode_patterns.xml',
|
||
|
'data/gift_card_data.xml',
|
||
|
'views/loyalty_card_views.xml',
|
||
|
'views/loyalty_mail_views.xml',
|
||
|
'views/pos_loyalty_menu_views.xml',
|
||
|
'views/res_config_settings_view.xml',
|
||
|
'views/loyalty_program_views.xml',
|
||
|
'views/res_partner_views.xml',
|
||
|
],
|
||
|
'demo': [
|
||
|
'data/pos_loyalty_demo.xml',
|
||
|
],
|
||
|
'installable': True,
|
||
|
'auto_install': True,
|
||
|
'assets': {
|
||
|
'point_of_sale._assets_pos': [
|
||
|
'pos_loyalty/static/src/**/*',
|
||
|
],
|
||
|
'web.assets_tests': [
|
||
|
'pos_loyalty/static/tests/tours/**/*',
|
||
|
],
|
||
|
},
|
||
|
'license': 'LGPL-3',
|
||
|
}
|