Skip to content

Commit

Permalink
fiks riktig fordeling på felles
Browse files Browse the repository at this point in the history
  • Loading branch information
johannbm committed Nov 22, 2024
1 parent 70b3014 commit a001222
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ const MødreKvoter = () => {
};

const FellesKvoter = () => {
const { konto, perioder } = useKvote();
const { konto, perioder, sak } = useKvote();
const fellesKonto = konto.kontoer.find((k) => k.konto === 'FELLESPERIODE');

if (!fellesKonto) {
Expand All @@ -413,11 +413,15 @@ const FellesKvoter = () => {
<FordelingsBar
fordelinger={[
{
kontoType: StønadskontoType.Mødrekvote,
prosent: prosentBruktAvDeg, //TODO: må se på hvem du er
kontoType:
sak.forelder === 'MOR' ? StønadskontoType.Mødrekvote : StønadskontoType.Fedrekvote,
prosent: prosentBruktAvDeg,
},
{
kontoType: StønadskontoType.Fedrekvote,
kontoType:
sak.forelder === 'FAR_MEDMOR'
? StønadskontoType.Mødrekvote
: StønadskontoType.Fedrekvote,
prosent: prosentBruktAvAnnenPart,
},
{
Expand Down

0 comments on commit a001222

Please sign in to comment.