From 749a3a0135433c58668466b6ac57e70a32487263 Mon Sep 17 00:00:00 2001 From: ppazos Date: Tue, 21 Mar 2023 22:21:28 -0300 Subject: [PATCH] fixed persondto serializer for API --- gradle.properties | 2 +- .../com/cabolabs/openehr/formats/OpenEhrJsonSerializer.groovy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 7834ef8d..19c19b92 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version = 1.8.27 +version = 1.8.28 group = com.cabolabs \ No newline at end of file diff --git a/src/main/groovy/com/cabolabs/openehr/formats/OpenEhrJsonSerializer.groovy b/src/main/groovy/com/cabolabs/openehr/formats/OpenEhrJsonSerializer.groovy index 01298525..295018bd 100644 --- a/src/main/groovy/com/cabolabs/openehr/formats/OpenEhrJsonSerializer.groovy +++ b/src/main/groovy/com/cabolabs/openehr/formats/OpenEhrJsonSerializer.groovy @@ -394,7 +394,7 @@ class OpenEhrJsonSerializer { out._type = 'PERSON' - this.fillActor(p, out) + this.fillActorDto(p, out) return out }