Skip to content

Commit

Permalink
Update to medical_economics
Browse files Browse the repository at this point in the history
  • Loading branch information
J'aime Tue committed Dec 20, 2024
1 parent 4b63b20 commit 948469d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion integration_tests/dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ vars:
## The vars directly below enable all models related to the type of healthcare data being used
clinical_enabled: false
claims_enabled: true
provider_attribution_enabled: true
provider_attribution_enabled: false


## CMS HCC data mart vars
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ with member_months as (

select
aa.person_id
, aa.claim_id
, aa.payer
, aa.year_month
, aa.member_months
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ with pharmacy_claim as (
, bb.primary_specialty_description as specialty_provider
from {{ ref('medical_economics__stg_core_pharmacy_claim') }} aa
left join {{ ref('medical_economics__stg_terminology_provider') }} bb
on aa.rendering_id = bb.npi
on aa.prescribing_provider_id = bb.npi

)

Expand Down

0 comments on commit 948469d

Please sign in to comment.