Fix insurance eligibility filtering and deductible calculation#5900
Draft
Fix insurance eligibility filtering and deductible calculation#5900
Conversation
- Update inNetwork to consider both 'Y' and 'W' as in-network - Filter copay benefits by benefit_coverage_code=B, benefit_level_code=IND, benefit_period_code=27, inplan_network=Y or W, benefit_code=UC for payment considerations - Filter deductibles and out-of-pocket by benefit_level_code and benefit_period_code=27 - Calculate deductible paid if not in response (paid = total - remaining) - Update EligibilityDetailsDialog to filter copay details by benefit_coverage_code=B, benefit_level_code=IND, benefit_code=UC Co-authored-by: saewitz <48358905+saewitz@users.noreply.github.com>
- Use word boundary regex for more precise matching (e.g., \bpaid\b instead of includes('paid'))
- Update calculatePaid to return undefined instead of paid when no calculation is possible
- Maintain fallback to period codes (23, 24, 29) as primary method
Co-authored-by: saewitz <48358905+saewitz@users.noreply.github.com>
- Extract regex patterns as constants to improve performance - Handle zero as a valid paid amount (use >= 0 instead of > 0) - Ensure total >= 0 check in calculation logic Co-authored-by: saewitz <48358905+saewitz@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix insurance details and suggested payment information
Fix insurance eligibility filtering and deductible calculation
Jan 20, 2026
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.
Insurance eligibility responses were incorrectly processed: copay/deductible amounts showed as unknown despite being present, deductible paid wasn't calculated, and period/benefit filtering was too broad.
Changes
Eligibility response parsing (
packages/utils/lib/fhir/billing.ts)Network classification
Payment considerations filtering
Applied strict criteria to reduce noise and match actual urgent care benefits:
Financial details (deductibles/OOP)
benefit_period_code=27(Calendar Year) and individual/family levelpaid = total - remainingDetails dialog filtering (
apps/ehr/src/features/visits/shared/components/patient/EligibilityDetailsDialog.tsx)Filter view details popup to show only individual urgent care copays:
Impact
Warning
Firewall rules blocked me from connecting to one or more addresses (expand for details)
I tried to connect to the following addresses, but was blocked by firewall rules:
downloads.sentry-cdn.com/usr/local/bin/node node ./scripts/install.js(dns block)If you need me to access, download, or install something from one of these locations, you can either:
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.