-
Notifications
You must be signed in to change notification settings - Fork 9
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
Feat: process multiple claims on a flow #2463
Conversation
Coverage reportClick to see where and how coverage changed
This report was generated by python-coverage-comment-action |
57ba9b1
to
632d610
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noted some minor fixes to make to some unit tests. Other than that and what @thekaveman pointed out, the main code changes here look good!
632d610
to
c0a2516
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Part of #2355
This PR implements a way to distinguish between older adult and disabled Medicare sessions.
EnrollmentFlow
is modified so that it now stores a "main" claim and an optional set of "extra" claims. An@property
method on the model takes care of arranging them into one list of claims. The code now handles this list of claims everywhere that multiple claims are involved.session
has been modified to store and process this list of claims to make it available to verify and analytics. Updating analytics will probably be part of a separate PR.