Skip to content
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

Kun legge til inntekt neste år hvis virk 2024 #6602

Merged
merged 5 commits into from
Dec 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,14 @@ export const Avkorting = ({
const visSanksjon = useFeaturetoggle(FeatureToggle.sanksjon)
const inntektNesteAarBryter = useFeaturetoggle(FeatureToggle.validere_aarsintnekt_neste_aar)

const virkAar = new Date(virkningstidspunkt(behandling).dato).getFullYear()

const klarForBrevutfall = () => {
if (avkorting == undefined) {
return false
}
if (behandling.behandlingType === IBehandlingsType.FØRSTEGANGSBEHANDLING && inntektNesteAarBryter) {
if (
behandling.viderefoertOpphoer &&
new Date(behandling.viderefoertOpphoer.dato).getFullYear() ==
new Date(virkningstidspunkt(behandling).dato).getFullYear()
) {
if (behandling.viderefoertOpphoer && new Date(behandling.viderefoertOpphoer.dato).getFullYear() === virkAar) {
// Trenger ikke to inntekter hvis det er opphør i samme året
return true
}
Expand Down Expand Up @@ -115,6 +113,7 @@ export const Avkorting = ({
resetInntektsavkortingValidering={resetInntektsavkortingValidering}
/>{' '}
{behandling.behandlingType === IBehandlingsType.FØRSTEGANGSBEHANDLING &&
virkAar === 2024 && // Midlertidig til vi får en bedre løsning på hele avkorting frontend....EY-4632
!!avkorting?.avkortingGrunnlag?.length && (
<AvkortingInntekt
behandling={behandling}
Expand Down
Loading