Skip to content

Commit

Permalink
Sletter ubrukt kode utenom skatt
Browse files Browse the repository at this point in the history
  • Loading branch information
stigebil committed Oct 7, 2024
1 parent 46eabdc commit 8206028
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,6 @@ import org.springframework.stereotype.Repository
@Repository
interface UtbetalingRepository : JpaRepository<Utbetaling, Long> {

@Query("""
SELECT u FROM Utbetaling u
WHERE u.fnr = :fnr
""")
fun hentUtbetalinger(fnr: FoedselsNr): List<Utbetaling>

@Query("""
SELECT u FROM Utbetaling u
WHERE u.fnr = :fnr
AND u.utbetalingstype = :type
""")
fun hentUtbetalingerByFnrType(fnr: FoedselsNr, type: String): List<Utbetaling>

@Query("""
SELECT utbet FROM Utbetaling utbet
WHERE utbet.personKey = :#{#stonad.personKey}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,6 @@ class BisysController(
val deltBosted: Boolean
)

class InfotrygdUtvidetBaPersonerResponse(val brukere: List<UtvidetBarnetrygdPerson>)
data class UtvidetBarnetrygdPerson(val ident: String,
val sisteVedtakPaaIdent: LocalDateTime)

enum class Stønadstype {
UTVIDET,
SMÅBARNSTILLEGG
Expand Down

0 comments on commit 8206028

Please sign in to comment.