-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicated documents on claims history #18
Comments
Here's the site where I pulled up the history: https://webcoreclaimsf391c.z13.web.core.windows.net/adjudicator/claims |
@fonsecamar do you see the code block that removes the duplicate claim header for the history? https://github.com/Azure/Medical-Claims-Transaction-Processing-at-scale/blob/main/src/CoreClaims.Infrastructure/Repository/ClaimRepository.cs#L127 // Remove duplicate claim history item that matches the current claim header.
if (header != null && details.Any())
{
var duplicate = details.FirstOrDefault(d => d.AdjustmentId == header.AdjustmentId);
if (duplicate != null)
{
details.Remove(duplicate);
}
} If you have this code in your local clone, then it's possible that the |
…e-for-adjudicator-manager Apply discount should be able for adjudicator manager
Initial front end styling and component clean up
After clicking "View history" for a claim, the detail pane is shown with the history pane. The combination of both shows the last document repeated, which is confusing.
The interface should exhibit detail pane with latest document and history pane with (N-1 documents).
The text was updated successfully, but these errors were encountered: