Phase 1-2: build_ticket_vals/scope/unread helpers (utils.py), fusion.helpdesk.ticket.seen read-tracking model, group_reporter_admin. 10 unit tests pass on local Community. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
19 lines
756 B
XML
19 lines
756 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2026 Nexa Systems Inc.
|
|
License OPL-1
|
|
-->
|
|
<odoo>
|
|
<!--
|
|
Deployment-level admin for the embedded ticket inbox. Members see
|
|
ALL tickets filed from this deployment (scoped by x_fc_client_label)
|
|
in the "My Tickets" tab; non-members see only their own. The gate is
|
|
enforced server-side in the controller via has_group().
|
|
Odoo 19: res.groups has NO `users`/`category_id` fields — keep minimal.
|
|
-->
|
|
<record id="group_reporter_admin" model="res.groups">
|
|
<field name="name">Helpdesk Reporter Admin</field>
|
|
<field name="comment">Can view all tickets filed from this deployment in the in-app helpdesk inbox.</field>
|
|
</record>
|
|
</odoo>
|