-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add type to feltlistmap #4
base: main
Are you sure you want to change the base?
Conversation
@@ -117,6 +109,9 @@ object SøknadTreeWalker { | |||
@Suppress("UNCHECKED_CAST") | |||
return listOf(mapDokumentasjon(entitet as Søknadsfelt<Dokumentasjon>)) | |||
} | |||
if (entitet.label == "Barna dine"){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Her burde det heller kanksje vært en litt bedre sjekk?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prøvde på entitet.verdi is Barn && entitet::class.isInstance(Barn) men det funket ikke
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tenkte mer på at vår variabel kan være på entitet:
if (entitet.visningsvariant === FeltType.TABLE) {
return listOf(feltlisteMap(entitet.label, list, FeltType.TABLE))
}
src/main/kotlin/no/nav/familie/ef/mottak/service/SøknadTreeWalker.kt
Outdated
Show resolved
Hide resolved
Jeg ser for meg at vi en god stund kommer til å leve med både ny og gammel løsning for generering parallelt i prod. Da er det viktig med bakoverkompatibilitet. Før dere merger denne PRen til main kunne dere:
Jeg skal komme med tips til generering av nye tester etter PO-samlingen, still gjerne spørsmål dersom noe er uklart 👍 |
Beskrivelse:
Vi ønsker å ha en måte å skille hvordan enkelte deler av pdf-kvitteringen skal se ut og at det skal sende med informasjon fra søknaden.
Løsning:
Lagt til en type i feltlisteMap