We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ffe95a commit ef80e82Copy full SHA for ef80e82
src/extractors/MCODERadiationProcedureExtractor.js
@@ -10,7 +10,7 @@ function getMCODERadiationProcedures(fhirProcedures) {
10
return fhirProcedures.filter((procedure) => {
11
const coding = procedure.resource.code ? procedure.resource.code.coding : [];
12
// NOTE: Update when checkCodeInVS checks code and system (might be able to pass in the full Coding)
13
- return coding.some((c) => checkCodeInVs(c.code, radiationProcedureVSFilepath));
+ return coding.some((c) => checkCodeInVs(c.code, c.system, radiationProcedureVSFilepath));
14
});
15
}
16
0 commit comments