Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

DOI-325 e-lab marked as processed, the respective Request ID should be stored in VlData #61

Merged
merged 3 commits into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ public abstract class LabResult extends GenericEntity {

@Column(name = "RequestID", unique = true)
private String requestId;

@Column(name = "EncounterID")
private Integer encounterId;

@Column(name = "ReferringRequestID")
private String referringRequestID;
Expand Down Expand Up @@ -246,6 +249,14 @@ public String getRequestId() {
public void setRequestId(String requestId) {
this.requestId = requestId;
}

public Integer getEncounterId() {
return encounterId;
}

public void setEncounterId(Integer encounterId) {
this.encounterId = encounterId;
}

public String getNameOfTechnicianRequestingTest() {
return nameOfTechnicianRequestingTest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ public List<String> getAllowedPropertiesForUpdate() {
"requestingDistrictName",
"requestingFacilityName",
"healthFacilityLabCode",
"synchronizedBy");
"synchronizedBy",
"encounterId");
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE VlData ADD COLUMN EncounterID INT AFTER RequestID;