Skip to content

Commit

Permalink
Ny felt gjelderbarnreferanse i Grunnlag (#363)
Browse files Browse the repository at this point in the history
* Ny felt gjelderbarnreferanse i Grunnlag

* Ny felt gjelderbarnreferanse i Grunnlag
  • Loading branch information
ugur93 authored Nov 25, 2024
1 parent 6cdd59b commit 3400435
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .nais/q1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions .nais/q2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<token-support.version>3.2.0</token-support.version>

<!-- dependencies -->
<bidrag-felles.version>2024.11.07.095708</bidrag-felles.version>
<bidrag-felles.version>2024.11.22.114035</bidrag-felles.version>
<bidrag-tilgangskontroll.version>1.9.22</bidrag-tilgangskontroll.version>
<mockito-kotlin.version>5.3.1</mockito-kotlin.version>
<nimbus-jose-jwt.version>9.40</nimbus-jose-jwt.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ data class Grunnlag(
@Column
val gjelderReferanse: String? = null,

@Column
val gjelderBarnReferanse: String? = null,

@Column(nullable = false)
val grunnlagsreferanseListe: List<String> = emptyList(),
)
Expand All @@ -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)
}
},
Expand All @@ -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)
}
},
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE grunnlag add column if not exists gjelder_barn_referanse text;

0 comments on commit 3400435

Please sign in to comment.