Skip to content

Commit

Permalink
Remove unimplemented fields
Browse files Browse the repository at this point in the history
  • Loading branch information
JNygaard-Skylight authored and joshnygaard committed Oct 21, 2024
1 parent b4ed465 commit 02b83f3
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,6 @@ export const saveMetadataToSqlServer = async (
await ecrDataInsertRequest
.input("eICR_ID", sql.VarChar(200), metadata.eicr_id)
.input("eicr_set_id", sql.VarChar(255), metadata.eicr_set_id)
.input(
"fhir_reference_link",
sql.VarChar(255),
"I DON'T KNOW WHAT THIS IS SUPPOSED TO BE",
)
.input("last_name", sql.VarChar(255), metadata.last_name)
.input("first_name", sql.VarChar(255), metadata.last_name)
.input("birth_date", sql.Date, metadata.birth_date)
Expand Down Expand Up @@ -332,16 +327,6 @@ export const saveMetadataToSqlServer = async (
sql.VarChar(50),
lab.test_result_code_system,
)
.input(
"test_result_interpretation",
sql.VarChar(255),
"I DON'T KNOW WHAT THIS IS SUPPOSED TO BE",
)
.input(
"test_result_interpretation_code",
sql.VarChar(50),
"I DON'T KNOW WHAT THIS IS SUPPOSED TO BE",
)
.input(
"test_result_interpretation_system",
sql.VarChar(255),
Expand Down

0 comments on commit 02b83f3

Please sign in to comment.