Only community_membership and community_school had application: True;
the other 6 product modules (community_benefits, community_classifieds,
community_interac, community_portal, community_theme_base,
event_qr_ticketing) had application: False despite being fully installed
and functional. Odoo's Apps screen filters to application=True by
default, so they were invisible there even though Technical > Installed
Modules showed them correctly - looked like they weren't installed.
Per the plan's own resellability rule ("each module is independently
installable and independently sellable"), every community_* product
module should be a discoverable Apps-grid entry. tncsc_deployment stays
application: False - it's the hidden client-config layer, not something
anyone browses to install on its own.
Verified on tncsc_site: -u upgrade picked up the flag for all 6, and the
site still serves every page (/, /about, /membership, /tamil-school,
/contact, /event) after the upgrade.
41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
{
|
|
'name': 'Community OS - Benefits',
|
|
'version': '19.0.1.0.0',
|
|
'category': 'Sales/Members',
|
|
'summary': 'Benefit centres / partner vendors offering per-tier member benefits, with redemption logging',
|
|
'description': """
|
|
Community OS - Benefits
|
|
=========================
|
|
|
|
Benefit centres (partner vendors) offering discounts or perks to members,
|
|
entitled per membership tier:
|
|
|
|
* Benefit centre directory (public)
|
|
* Benefits entitled by membership tier
|
|
* Redemption log, verified against an active membership (reuses the
|
|
Community OS Membership QR verification endpoint)
|
|
* Member portal page listing the benefits their tier entitles them to
|
|
""",
|
|
'author': 'Metatroncube Software Solutions LLP',
|
|
'website': 'https://www.metatroncube.com',
|
|
'license': 'LGPL-3',
|
|
'price': 0.00,
|
|
'currency': 'USD',
|
|
'depends': [
|
|
'contacts',
|
|
'website',
|
|
'portal',
|
|
'community_membership',
|
|
],
|
|
'data': [
|
|
'security/benefits_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/benefit_views.xml',
|
|
'views/benefits_templates.xml',
|
|
],
|
|
'demo': [],
|
|
'images': ['static/description/banner.png'],
|
|
'application': True,
|
|
'installable': True,
|
|
}
|