Skip to content

Commit

Permalink
toString på oppfolgingsperiodeId
Browse files Browse the repository at this point in the history
  • Loading branch information
johatr committed Nov 4, 2024
1 parent be7a308 commit ffbe6bf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class BigQueryClientImplementation(projectId: String): BigQueryClient {
override fun loggAvsluttOppfolgingsperiode(oppfolgingPeriodeId: UUID, erAutomatiskAvsluttet: Boolean) {
insertIntoOppfolgingEvents {
mapOf(
"id" to oppfolgingPeriodeId,
"id" to oppfolgingPeriodeId.toString(),
"automatiskAvsluttet" to erAutomatiskAvsluttet,
"timestamp" to ZonedDateTime.now().toOffsetDateTime().toString(),
"event" to BigQueryEventType.OPPFOLGINGSPERIODE_SLUTT.name
Expand All @@ -44,7 +44,7 @@ class BigQueryClientImplementation(projectId: String): BigQueryClient {
override fun loggStartOppfolgingsperiode(startBegrunnelse: OppfolgingStartBegrunnelse, oppfolgingPeriodeId: UUID) {
insertIntoOppfolgingEvents {
mapOf(
"id" to oppfolgingPeriodeId,
"id" to oppfolgingPeriodeId.toString(),
"startBegrunnelse" to startBegrunnelse.name,
"timestamp" to ZonedDateTime.now().toOffsetDateTime().toString(),
"event" to BigQueryEventType.OPFOLGINGSPERIODE_START.name
Expand Down

0 comments on commit ffbe6bf

Please sign in to comment.