Skip to content

Commit

Permalink
Merge branch '6.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
petmongrels committed Jan 12, 2024
2 parents d7c6b2f + af4398b commit 617d0ae
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "openchs-models",
"description": "OpenCHS data model to be used by front end clients",
"version": "1.31.15",
"version": "1.31.16",
"private": false,
"repository": {
"type": "git",
Expand Down
3 changes: 0 additions & 3 deletions src/draft/DraftEncounter.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,6 @@ class DraftEncounter extends BaseEntity {
draftEncounter.cancelObservations = ObservationsHolder.clone(encounter.cancelObservations);
draftEncounter.cancelLocation = encounter.cancelLocation;
draftEncounter.voided = encounter.voided;
draftEncounter.registrationLocation = encounter.registrationLocation;
draftEncounter.updatedOn = new Date();
return draftEncounter;
}

Expand All @@ -156,7 +154,6 @@ class DraftEncounter extends BaseEntity {
encounter.cancelObservations = ObservationsHolder.clone(this.cancelObservations);
encounter.cancelLocation = this.cancelLocation;
encounter.voided = this.voided;
encounter.registrationLocation = this.registrationLocation;
encounter.approvalStatuses = [];
return encounter;
}
Expand Down

0 comments on commit 617d0ae

Please sign in to comment.