feat(check-in): link ticket ID to its desk record - #366
Merged
Conversation
Front-desk staff had to copy the ticket ID out of the check-in dialog and navigate to Desk by hand to inspect a ticket mid-queue. The ID now opens /app/event-ticket/<id> in a new tab. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Contributor
Greptile SummaryThe PR makes the check-in modal’s Ticket ID clickable so front-desk staff can open the corresponding Event Ticket record in a new Desk tab.
Confidence Score: 5/5The PR appears safe to merge; the link uses the validated Event Ticket document name and the canonical Desk route. The successful check-in response always supplies the Event Ticket document name as the ticket ID, and the new anchor maps that value to the expected
|
| Filename | Overview |
|---|---|
| dashboard/src/components/TicketDetailsModal.vue | Correctly links the validated Event Ticket document name to its canonical Frappe Desk route without changing check-in behavior. |
Reviews (1): Last reviewed commit: "feat(check-in): link ticket ID to its de..." | Re-trigger Greptile
Contributor
|
Successfully created backport PR for |
harshtandiya
added a commit
that referenced
this pull request
Aug 19, 2026
feat(check-in): link ticket ID to its desk record (#366) Front-desk staff had to copy the ticket ID out of the check-in dialog and navigate to Desk by hand to inspect a ticket mid-queue. The ID now opens /app/event-ticket/<id> in a new tab. (cherry picked from commit 37f16dc) Co-authored-by: Harsh Tandiya <harsh.tandiya@gmail.com> Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed
Front-desk staff scanning at
/b/check-inhad to copy the ticket ID out of thevalidation dialog and navigate to Desk by hand to inspect a ticket mid-queue.
The Ticket ID in
TicketDetailsModal.vueis now an anchor to/app/event-ticket/<id>in a new tab, with an external-link icon. Same patternas the Zoom link in
TicketDetails.vue.Presentation-only — the id is already in the
CheckinResponsepayload, and themodal serves both pre- and post-check-in states, so one edit covers both.
No role gate on the link: the page is already
Frontdesk Manager-only, and auser without Desk access lands on Frappe's own permission screen. Add a guard
later if that confuses staff.
Demo
skip-demo— nine lines of template, no Chrome available to capture locally.Testing
No test; prettier and
vue-tsc --noEmitclean. Not clicked through in a browserlocally (no Chrome for the automation here) — worth eyeballing that the link
lands on the right record.
🤖 Generated with Claude Code