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
export interface FinalScoreStatsKey { | |
pickedType?: ScoreSource; | |
programName: null | string; | |
isEligible: boolean; | |
entityType?: EntityType; | |
count: number; | |
entityId: string; | |
} |
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
[ | |
{ | |
"tin": "000000939", | |
"count": 14, | |
"entityId": null, | |
"statType": "npisReceivingSubgroupScoreCount", | |
"entityType": "group", | |
"isEligible": false, | |
"pickedType": "subgroup", | |
"programName": null, |
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
09/07/23 | |
Tim Toy | |
10:40 AM | |
Hi Steven! Do you know when mvp/subgroup data will be available for testing in DEV and IMP? | |
steven_szeliga | |
10:51 AM | |
you mean from eligibility? |
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
{ | |
"mips": { | |
"name": "mips", | |
"title": "mips Program Score", | |
"detail": "2023.7.2-beta0", | |
"value": 19.0042, | |
"parts": [ | |
{ | |
"name": "quality", | |
"title": "QUALITY component of total score", |
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
.qpp-side-nav { | |
align-self: flex-start; | |
height: calc(100vh - 61px); | |
position: sticky; | |
top: 0; | |
bottom: 0; | |
} | |
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
if (score?.metadata?.parts?.parts.length() > 0 && ( | |
parts.metadata.objectiveScores.electronicPrescribing === 'incomplete' || | |
parts.metadata.objectiveScores.electronicPrescribing.healthInformationExchangeSending === 'incomplete' || | |
parts.metadata.objectiveScores.electronicPrescribing.healthInformationExchangeReceiving === 'incomplete' || | |
parts.metadata.objectiveScores.electronicPrescribing.providerToPatientExchange" === 'incomplete' || | |
parts.metadata.objectiveScores.electronicPrescribingpublicHealthAndClinicalDataExchange === 'incomplete') | |
=> submission.Status == 'incomplete') { | |
// Display your submission is incomplete message | |
} |
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
<cms-modal | |
[title]="modalTitle" | |
[(isOpen)]="modalStatus" | |
(afterClosed)="closeModal()" | |
> | |
<h3>Definitions</h3> | |
<span> | |
Need a refresher on the statistical terms used to calculate the Complex Patient Bonus? | |
We'll use an example set of numbers on the definitions below: |
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
<app-dashboard-toolbar | |
[title]="'Complex Patient Bonus'" | |
[category]="cpb" | |
[page]="page" | |
[performanceYear]="feedback?.performanceYear" | |
[performanceYears]="feedbackPerformanceYears$ | async" | |
[hasBreadcrumbs]="true" | |
[orgName]="feedback?.getProviderOrgName()" | |
[name]="feedback?.getProviderTitle()" | |
[tin]="feedback?.tin" |