Skip to content

Commit

Permalink
Reapply "Kan ikke beslutte før tiden"
Browse files Browse the repository at this point in the history
This reverts commit d182f8c.
  • Loading branch information
Oddsor committed Oct 28, 2024
1 parent 603cce1 commit e0d714f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { Periode, TilskuddsperiodeContext } from '@/BeslutterSide/BeslutterSide'
import { Returårsaker, TilskuddsPeriode } from '@/types/avtale';
import { tilskuddsperiodeReturÅrsakTekst } from '@/messages';
import TilskuddsperiodeReturModal from '@/BeslutterSide/beslutterPanel/TilskuddsperiodeVisAvslag';
import moment from 'moment';

interface Props {
startAnimering: () => void;
Expand Down Expand Up @@ -90,6 +91,7 @@ const BeslutterTilskuddsPerioder: FunctionComponent<Props> = (props) => {
<tbody>
{avtale.tilskuddPeriode.map((periode, index) => {
const gjeldende = periode.løpenummer === gjeldendeTilskuddsperiode?.løpenummer;
const kanBesluttes = moment().isSameOrAfter(moment(periode.kanBesluttesFom));
return (
<React.Fragment key={index}>
<tr
Expand Down Expand Up @@ -136,7 +138,7 @@ const BeslutterTilskuddsPerioder: FunctionComponent<Props> = (props) => {
{periode.status === 'UBEHANDLET' && (
<>
<Button
disabled={!enhet}
disabled={!enhet || !kanBesluttes}
onClick={() => {
if (enhet) {
setGodkjennModalÅpen(true);
Expand Down

0 comments on commit e0d714f

Please sign in to comment.