-
Notifications
You must be signed in to change notification settings - Fork 154
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
Added aggregate percentage display based on user preference #245
base: master
Are you sure you want to change the base?
Conversation
@@ -28,6 +28,13 @@ def index | |||
description "Gets a clinical quality measure calculation. If calculation is completed, the response will include the results." | |||
def show | |||
@qr = QME::QualityReport.find(params[:id]) | |||
|
|||
if ! @qr.aggregatePercentage |
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.
This should be an unless
Please remove tab characters from the code. I understand what you are trying to do here with the aggregate percentage. I'm not sure this is the best way to go about it.
My suggestion would be to just ask for the quality report of the root provider to display as the aggregate. Also, this throws off the alignment of the patients button on CV measures. |
@@ -16,7 +16,16 @@ | |||
<div class="denominator">{{formatNumeral fractionBottom '0.[0]a'}}</div> | |||
</div> | |||
|
|||
<div class="pop-chart pull-left"></div> | |||
<div class="pop-chart pull-left" style="{{#if showAggregatePercentage}}width:150px !important;{{/if}}"></div> |
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.
Please avoid inline styles, and also please avoid !important
rules if possible.
Provider search / Provider Tree Preference
Upgrade HDS and QME to latest versions
Can change the 1 year reporting period end-date from dashboard
…, hide measure panel
selecting measure calculates the percentage for the user and for all the patients in the database (aggregate). User can choose preference for displaying the aggregate measure on the dashboard.