Adds a QWeb PDF "Membership Card" report (85x54mm landscape, custom report.paperformat) showing the company logo, member name/ID, tier, and a QR code generated with the qrcode library (embedded as a base64 PNG via a non-stored res.partner.membership_card_qr compute field). The QR encodes a public verification URL built from ir.config_parameter's web.base.url. Adds the public GET /membership/verify/<member_id> controller: shows valid/expired/not-found with no personal data beyond name (and tier, for valid members) - internal states like 'invoiced'/'none' are deliberately reported as not-found so partial signup state isn't leaked. Adds the member portal: /my/membership (status/tier/expiry), /my/membership/ renew (finds or creates a draft renewal invoice, redirects to the existing portal invoice page), and /my/membership/card (PDF download) - plus a "Membership" entry card on the main /my portal home page. Since community_theme_base doesn't exist yet (that's Phase 6), the card uses res.company.logo rather than a theme setting - still brand-neutral, just resolved from the standard company record for now. Verified against a live Odoo 19 + Postgres 16 container, both via the test suite (12/12 tests: unit tests, HttpCase tests hitting the real verify endpoint for valid/expired/unknown IDs) and by hand end-to-end - created a tier and member over JSON-RPC, activated the membership, fetched the live /membership/verify/ page, and rendered the actual PDF card via /report/pdf/... (11.7KB single-page PDF, confirmed non-blank). Along the way, hit a third real Odoo 19 API change: res.users.groups_id was renamed to group_ids. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
27 lines
1.0 KiB
Python
27 lines
1.0 KiB
Python
from odoo import http
|
|
from odoo.http import request
|
|
|
|
VISIBLE_STATES = {'active', 'renewal_due'}
|
|
|
|
|
|
class MembershipVerifyController(http.Controller):
|
|
|
|
@http.route(['/membership/verify/<string:member_id>'], type='http', auth='public', website=True, sitemap=False)
|
|
def membership_verify(self, member_id, **kwargs):
|
|
partner = request.env['res.partner'].sudo().search(
|
|
[('membership_member_id', '=', member_id)], limit=1
|
|
)
|
|
|
|
values = {'member_id': member_id}
|
|
if not partner:
|
|
values['status'] = 'not_found'
|
|
elif partner.membership_state == 'expired':
|
|
values.update(status='expired', name=partner.name)
|
|
elif partner.membership_state in VISIBLE_STATES:
|
|
values.update(status='valid', name=partner.name, tier=partner.membership_tier_id.name)
|
|
else:
|
|
# 'invoiced' or 'none' - not yet an active member; don't leak internal state
|
|
values['status'] = 'not_found'
|
|
|
|
return request.render('community_membership.membership_verify_page', values)
|