diff --git a/.nais/q1.yaml b/.nais/q1.yaml index 4d22faf..21d0c70 100644 --- a/.nais/q1.yaml +++ b/.nais/q1.yaml @@ -28,9 +28,9 @@ azureAccessInbound: - application: bidrag-behandling-q1 namespace: bidrag cluster: dev-gcp - - application: bidrag-behandling-feature + - application: bidrag-ui-feature namespace: bidrag - cluster: dev-gcp + cluster: dev-fss azure: bidrag_organisasjon_url: bidrag-organisasjon.dev-fss-pub.nais.io bidrag_organisasjon_scope: dev-fss.bidrag.bidrag-organisasjon diff --git a/.nais/q2.yaml b/.nais/q2.yaml index 31dad8c..dbabde9 100644 --- a/.nais/q2.yaml +++ b/.nais/q2.yaml @@ -37,9 +37,6 @@ azureAccessInbound: - application: bidrag-behandling-q2 namespace: bidrag cluster: dev-gcp - - application: bidrag-behandling - namespace: bidrag - cluster: dev-gcp azure: bidrag_organisasjon_url: bidrag-organisasjon.dev-fss-pub.nais.io bidrag_organisasjon_scope: dev-fss.bidrag.bidrag-organisasjon diff --git a/pom.xml b/pom.xml index fed12d3..5d54f99 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ 3.2.0 - 2024.11.07.095708 + 2024.11.22.114035 1.9.22 5.3.1 9.40 diff --git a/src/main/kotlin/no/nav/bidrag/vedtak/persistence/entity/Grunnlag.kt b/src/main/kotlin/no/nav/bidrag/vedtak/persistence/entity/Grunnlag.kt index c59a73e..a0e1bc8 100644 --- a/src/main/kotlin/no/nav/bidrag/vedtak/persistence/entity/Grunnlag.kt +++ b/src/main/kotlin/no/nav/bidrag/vedtak/persistence/entity/Grunnlag.kt @@ -42,6 +42,9 @@ data class Grunnlag( @Column val gjelderReferanse: String? = null, + @Column + val gjelderBarnReferanse: String? = null, + @Column(nullable = false) val grunnlagsreferanseListe: List = emptyList(), ) @@ -57,6 +60,7 @@ fun OpprettGrunnlagRequestDto.toGrunnlagEntity(vedtak: Vedtak) = with(::Grunnlag Grunnlag::innhold.name -> innhold.toString() Grunnlag::grunnlagsreferanseListe.name -> grunnlagsreferanseListe Grunnlag::gjelderReferanse.name -> gjelderReferanse + Grunnlag::gjelderBarnReferanse.name -> gjelderBarnReferanse else -> propertiesByName[parameter.name]?.get(this@toGrunnlagEntity) } }, @@ -72,6 +76,7 @@ fun Grunnlag.toGrunnlagDto() = with(::GrunnlagDto) { GrunnlagDto::innhold.name -> stringTilJsonNode(innhold) GrunnlagDto::grunnlagsreferanseListe.name -> grunnlagsreferanseListe GrunnlagDto::gjelderReferanse.name -> gjelderReferanse + GrunnlagDto::gjelderBarnReferanse.name -> gjelderBarnReferanse else -> propertiesByName[parameter.name]?.get(this@toGrunnlagDto) } }, diff --git a/src/main/resources/db/migration/V1_0_21__alter-table-grunnlag_gjelderbarnreferanse.sql b/src/main/resources/db/migration/V1_0_21__alter-table-grunnlag_gjelderbarnreferanse.sql new file mode 100644 index 0000000..e0a37a7 --- /dev/null +++ b/src/main/resources/db/migration/V1_0_21__alter-table-grunnlag_gjelderbarnreferanse.sql @@ -0,0 +1 @@ +ALTER TABLE grunnlag add column if not exists gjelder_barn_referanse text; \ No newline at end of file