fix: resolve SIDs to readable names in remaining entity views #34
Labels
No labels
prio_critical
prio_low
type_bug
type_contact
type_issue
type_lead
type_question
type_story
type_task
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lhumina_code/hero_biz#34
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Context
Ref: lhumina_code/home#210
SID-to-name resolution was implemented for Instruments and Contracts. Several other entity detail and list views still display raw internal SIDs where a readable name or title should appear.
Display rules
Every reference to a related record should show:
SID: 0001)Never show a raw SID as the main display value.
Known locations still showing raw SIDs
Audit and fix all of the following:
/persons) detail — any linked company, deal, or contract shown as SID/contacts) detail — linked contact shown as SIDImplementation pattern
Follow the same approach already used in the Instrument and Contract handlers:
sid_to_name: HashMap<String, String>(or equivalent) into the templateAcceptance criteria
Implemented in commit
ec10bf6: Company/contract/opportunity/deal SIDs resolved to clickable names on Person and Contact detail pages.