Skip to content

Commit ef80e82

Browse files
committed
System paramater added within getMCODERadiationProcedures
1 parent 6ffe95a commit ef80e82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extractors/MCODERadiationProcedureExtractor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function getMCODERadiationProcedures(fhirProcedures) {
1010
return fhirProcedures.filter((procedure) => {
1111
const coding = procedure.resource.code ? procedure.resource.code.coding : [];
1212
// 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));
13+
return coding.some((c) => checkCodeInVs(c.code, c.system, radiationProcedureVSFilepath));
1414
});
1515
}
1616

0 commit comments

Comments
 (0)