28 lines
906 B
Python
28 lines
906 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'POS Loyalty Subscription',
|
|
'version': '1.0',
|
|
'category': 'Sales/Point of Sale',
|
|
'summary': 'Allows subscription-based loyalty programs (e.g. daily claim limits) with validity dates.',
|
|
'author': 'Suherdy Yacob',
|
|
'description': """
|
|
POS Loyalty Subscription
|
|
========================
|
|
Introduces a new "Subscription" loyalty program type in Odoo.
|
|
Allows customers to join subscription programs where they can claim a free product
|
|
once per day within a specified subscription start and end date.
|
|
""",
|
|
'depends': ['point_of_sale', 'pos_loyalty', 'pos_loyalty_multi_level'],
|
|
'data': [
|
|
'views/loyalty_card_views.xml',
|
|
],
|
|
'assets': {
|
|
'point_of_sale._assets_pos': [
|
|
'pos_loyalty_subscription/static/src/app/**/*',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': False,
|
|
'license': 'LGPL-3',
|
|
}
|