Skip to content

Commit

Permalink
CNFT1-3604 API: New patient- Extended: Race: Detailed Race: Drop down…
Browse files Browse the repository at this point in the history
… order (#2134)
  • Loading branch information
stevegsa authored Dec 30, 2024
1 parent e56b82b commit 4703ec7
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class JDBCConceptOptionFinder implements ConceptOptionFinder {
where code_set_nm = ?
order by
indent_level_nbr,
code_short_desc_txt
code
""";

private final JdbcTemplate template;
Expand All @@ -47,8 +47,7 @@ public Collection<ConceptOption> find(final String valueSet) {
return this.template.query(
getQuery(valueSet),
statement -> statement.setString(VALUE_SET_PARAMETER, valueSet),
this.mapper
);
this.mapper);
}

private String getQuery(String valueSet) {
Expand Down

0 comments on commit 4703ec7

Please sign in to comment.