From 98cecaebc650584f66d8c28c8424e8481c4814cc Mon Sep 17 00:00:00 2001 From: Kseniya Tomskikh Date: Wed, 2 Aug 2017 15:25:17 +0600 Subject: PDSUI-2181 Created entities for patient history --- .../json/patienthistory/ApiPatientHistory.scala | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/main/scala/xyz/driver/pdsuidomain/formats/json/patienthistory/ApiPatientHistory.scala (limited to 'src/main/scala/xyz/driver/pdsuidomain/formats/json/patienthistory/ApiPatientHistory.scala') diff --git a/src/main/scala/xyz/driver/pdsuidomain/formats/json/patienthistory/ApiPatientHistory.scala b/src/main/scala/xyz/driver/pdsuidomain/formats/json/patienthistory/ApiPatientHistory.scala new file mode 100644 index 0000000..cdcd510 --- /dev/null +++ b/src/main/scala/xyz/driver/pdsuidomain/formats/json/patienthistory/ApiPatientHistory.scala @@ -0,0 +1,28 @@ +package xyz.driver.pdsuidomain.formats.json.patienthistory + +import java.time.{ZoneId, ZonedDateTime} +import java.util.UUID + +import play.api.libs.json.{Format, Json} +import xyz.driver.pdsuidomain.entities.PatientHistory + +final case class ApiPatientHistory(id: Long, + executor: String, + patientId: UUID, + state: String, + action: String, + created: ZonedDateTime) + +object ApiPatientHistory { + implicit val format: Format[ApiPatientHistory] = + Json.format[ApiPatientHistory] + + def fromDomain(x: PatientHistory) = ApiPatientHistory( + id = x.id.id, + executor = x.executor.id, + patientId = x.patientId.id, + state = PatientHistory.State.stateToString(x.state), + action = PatientHistory.Action.actionToString(x.action), + created = ZonedDateTime.of(x.created, ZoneId.of("Z")) + ) +} -- cgit v1.2.3