metatroncubeswdev 745e147de9 fix: mark all product modules as application:True so they show in Apps
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.
2026-08-21 18:40:25 -04:00

49 lines
1.4 KiB
Python

{
'name': 'Community OS - Event QR Ticketing',
'version': '19.0.1.0.0',
'category': 'Marketing/Events',
'summary': 'Signed QR tickets per registration with a staff check-in and verification screen',
'description': """
Community OS - Event QR Ticketing
===================================
Extends standard Odoo Community events with:
* A signed QR ticket per registration (forgery-resistant, per-database secret)
* Ticket PDF and QR attachment on the registration confirmation email
* A mobile-friendly staff check-in page: scan or manual entry, duplicate and
forged-token protection
* A simple per-event registered vs checked-in dashboard
Works standalone with a stock Community Edition event - no other Community
OS product module required.
""",
'author': 'Metatroncube Software Solutions LLP',
'website': 'https://www.metatroncube.com',
'license': 'LGPL-3',
'price': 0.00,
'currency': 'USD',
'depends': [
'event',
'event_sale',
'website_event',
],
'data': [
'data/ir_sequence.xml',
'report/event_ticket_report.xml',
'views/checkin_templates.xml',
],
'demo': [],
'assets': {
'web.assets_frontend': [
'event_qr_ticketing/static/src/js/event_checkin.js',
],
},
'images': ['static/description/banner.png'],
'application': True,
'installable': True,
'external_dependencies': {
'python': ['qrcode'],
},
}