pos_loyalty_marketing_access/__manifest__.py
2026-05-28 10:07:53 +07:00

37 lines
1.3 KiB
Python

# -*- coding: utf-8 -*-
{
'name': 'POS Loyalty Marketing Access & Approvals',
'version': '1.0',
'category': 'Sales/Point of Sale',
'summary': 'Custom Marketing security groups, access restrictions, and approval flows for loyalty programs and voucher generation.',
'description': """
POS Loyalty Marketing Access & Approvals
========================================
This module introduces:
1. Two new security groups: Marketing / User and Marketing / Manager.
2. Read-only POS orders and member transaction views for Marketing Users.
3. Marketing Program draft/approved states and an approval flow.
4. Voucher generation approval flow using a new Voucher Generation Requests model.
""",
'author': 'Suherdy Yacob',
'depends': [
'point_of_sale',
'loyalty',
'pos_loyalty',
'sale_loyalty',
],
'data': [
'security/pos_loyalty_marketing_security.xml',
'security/ir.model.access.csv',
'data/ir_sequence_data.xml',
'views/pos_config_views.xml',
'views/loyalty_program_views.xml',
'views/loyalty_voucher_generation_request_views.xml',
'views/res_company_views.xml',
'views/menu_views.xml',
],
'installable': True,
'application': False,
'license': 'LGPL-3',
}