Skip to content

Commit 359cbc3

Browse files
committed
#000 | Merge 14.4 into master
2 parents ec68b26 + b27a9a3 commit 359cbc3

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "openchs-models",
33
"description": "OpenCHS data model to be used by front end clients",
4-
"version": "1.32.51",
4+
"version": "1.32.52",
55
"private": false,
66
"repository": {
77
"type": "git",

src/AbstractEncounter.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,15 @@ class AbstractEncounter extends BaseEntity {
234234
: this.encounterLocation.clone();
235235
encounter.cancelLocation = _.isNil(this.cancelLocation) ? null : this.cancelLocation.clone();
236236
encounter.approvalStatuses = this.approvalStatuses;
237+
238+
encounter.createdBy = this.createdBy;
239+
encounter.createdByUUID = this.createdByUUID;
240+
encounter.lastModifiedBy = this.lastModifiedBy;
241+
encounter.lastModifiedByUUID = this.lastModifiedByUUID;
242+
243+
encounter.filledBy = this.filledBy;
244+
encounter.filledByUUID = this.filledByUUID;
245+
237246
return encounter;
238247
}
239248

0 commit comments

Comments
 (0)