From 43b7e9455f94e3d528e8101278dc772544f1727a Mon Sep 17 00:00:00 2001 From: Espen Johansen Velsvik Date: Fri, 8 Nov 2024 16:15:47 +0100 Subject: [PATCH 1/3] =?UTF-8?q?Legger=20til=20grunnbel=C3=B8psatser?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../V1.0_002__grunnbel\303\270psatser.sql" | 162 ++++++++++++++++++ 1 file changed, 162 insertions(+) create mode 100644 "migreringer/src/main/resources/db/postgres/defaultDS/1.0/V1.0_002__grunnbel\303\270psatser.sql" diff --git "a/migreringer/src/main/resources/db/postgres/defaultDS/1.0/V1.0_002__grunnbel\303\270psatser.sql" "b/migreringer/src/main/resources/db/postgres/defaultDS/1.0/V1.0_002__grunnbel\303\270psatser.sql" new file mode 100644 index 0000000000..7c13c88212 --- /dev/null +++ "b/migreringer/src/main/resources/db/postgres/defaultDS/1.0/V1.0_002__grunnbel\303\270psatser.sql" @@ -0,0 +1,162 @@ + CREATE TABLE GRUNNBELOP_SATS ( + ID BIGINT NOT NULL, + SATS_TYPE VARCHAR(100) NOT NULL, + FOM TIMESTAMP(0) NOT NULL, + TOM TIMESTAMP(0) NOT NULL, + VERDI NUMERIC(10,0) NOT NULL, + OPPRETTET_AV VARCHAR(20) DEFAULT 'UNG-SAK' NOT NULL, + OPPRETTET_TID TIMESTAMP(3) DEFAULT CURRENT_TIMESTAMP NOT NULL, + ENDRET_AV VARCHAR(20), + ENDRET_TID TIMESTAMP (3) + ); + +create UNIQUE index PK_SATS on GRUNNBELOP_SATS (ID); +alter table GRUNNBELOP_SATS add constraint PK_SATS primary key using index PK_SATS; + +COMMENT ON COLUMN GRUNNBELOP_SATS.ID IS 'Primary Key'; +COMMENT ON COLUMN GRUNNBELOP_SATS.SATS_TYPE IS 'Beskrivelse av satstype'; +COMMENT ON COLUMN GRUNNBELOP_SATS.FOM IS 'Gyldig Fra-Og-Med'; +COMMENT ON COLUMN GRUNNBELOP_SATS.TOM IS 'Gyldig Til-Og-Med'; +COMMENT ON COLUMN GRUNNBELOP_SATS.VERDI IS 'Sats verdi.'; +COMMENT ON TABLE GRUNNBELOP_SATS IS 'Grunnbeløpsatser brukt ifm beregning av ytelser'; + +create sequence if not exists SEQ_GRUNNBELOP_SATS increment by 50 minvalue 1000000; + + +-- VERDIER +------------------------------------------------- +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2021-01-01 00:00:00', '2021-12-31 00:00:00', 104716); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2021-05-01 00:00:00', '2022-04-30 00:00:00', 106399); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2022-01-01 00:00:00', '2022-12-31 00:00:00', 109784); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2022-05-01 00:00:00', '2023-04-30 00:00:00', 111477); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2023-01-01 00:00:00', '2023-12-31 00:00:00', 116239); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2023-05-01 00:00:00', '2024-04-30 00:00:00', 118620); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2024-05-01 00:00:00', '2099-12-31 00:00:00', 124028); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2024-01-01 00:00:00', '2024-12-31 00:00:00', 122225); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'ENGANG', '2017-01-01 00:00:00', '2017-12-31 00:00:00', 61120); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'ENGANG', '2018-01-01 00:00:00', '2018-12-31 00:00:00', 63140); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'ENGANG', '2016-01-01 00:00:00', '2016-12-31 00:00:00', 46000); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2017-05-01 00:00:00', '2018-04-30 00:00:00', 93634); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2017-01-01 00:00:00', '2017-12-31 00:00:00', 93281); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2016-05-01 00:00:00', '2017-04-30 00:00:00', 92576); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2016-01-01 00:00:00', '2016-12-31 00:00:00', 91740); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2015-05-01 00:00:00', '2016-04-30 00:00:00', 90068); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2015-01-01 00:00:00', '2015-12-31 00:00:00', 89502); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2014-05-01 00:00:00', '2015-04-30 00:00:00', 88370); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2014-01-01 00:00:00', '2014-12-31 00:00:00', 87328); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2013-05-01 00:00:00', '2014-04-30 00:00:00', 85245); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2013-01-01 00:00:00', '2013-12-31 00:00:00', 84204); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2012-05-01 00:00:00', '2013-04-30 00:00:00', 82122); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2012-01-01 00:00:00', '2012-12-31 00:00:00', 81153); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2011-05-01 00:00:00', '2012-04-30 00:00:00', 79216); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2011-01-01 00:00:00', '2011-12-31 00:00:00', 78024); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2010-05-01 00:00:00', '2011-04-30 00:00:00', 75641); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2010-01-01 00:00:00', '2010-12-31 00:00:00', 74721); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2009-05-01 00:00:00', '2010-04-30 00:00:00', 72881); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2009-01-01 00:00:00', '2009-12-31 00:00:00', 72006); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2008-05-01 00:00:00', '2009-04-30 00:00:00', 70256); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2008-01-01 00:00:00', '2008-12-31 00:00:00', 69108); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2007-05-01 00:00:00', '2008-04-30 00:00:00', 66812); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2007-01-01 00:00:00', '2007-12-31 00:00:00', 65505); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2006-05-01 00:00:00', '2007-04-30 00:00:00', 62892); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2006-01-01 00:00:00', '2006-12-31 00:00:00', 62161); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2005-05-01 00:00:00', '2006-04-30 00:00:00', 60699); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2005-01-01 00:00:00', '2005-12-31 00:00:00', 60059); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2004-05-01 00:00:00', '2005-04-30 00:00:00', 58778); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2004-01-01 00:00:00', '2004-12-31 00:00:00', 58139); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2003-05-01 00:00:00', '2004-04-30 00:00:00', 56861); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2003-01-01 00:00:00', '2003-12-31 00:00:00', 55964); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2002-05-01 00:00:00', '2003-04-30 00:00:00', 54170); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2002-01-01 00:00:00', '2002-12-31 00:00:00', 53233); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2001-05-01 00:00:00', '2002-04-30 00:00:00', 51360); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2001-01-01 00:00:00', '2001-12-31 00:00:00', 50603); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2000-05-01 00:00:00', '2001-04-30 00:00:00', 49090); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2000-01-01 00:00:00', '2000-12-31 00:00:00', 48377); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1999-05-01 00:00:00', '2000-04-30 00:00:00', 46950); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1999-01-01 00:00:00', '1999-12-31 00:00:00', 46423); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1998-05-01 00:00:00', '1999-04-30 00:00:00', 45370); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1998-01-01 00:00:00', '1998-12-31 00:00:00', 44413); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1997-05-01 00:00:00', '1998-04-30 00:00:00', 42500); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1997-01-01 00:00:00', '1997-12-31 00:00:00', 42000); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1996-05-01 00:00:00', '1997-04-30 00:00:00', 41000); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1996-01-01 00:00:00', '1996-12-31 00:00:00', 40410); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1995-05-01 00:00:00', '1996-04-30 00:00:00', 39230); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1995-01-01 00:00:00', '1995-12-31 00:00:00', 38847); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1994-05-01 00:00:00', '1995-04-30 00:00:00', 38080); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1994-01-01 00:00:00', '1994-12-31 00:00:00', 37820); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1993-05-01 00:00:00', '1994-04-30 00:00:00', 37300); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1993-01-01 00:00:00', '1993-12-31 00:00:00', 37033); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1992-05-01 00:00:00', '1993-04-30 00:00:00', 36500); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1992-01-01 00:00:00', '1992-12-31 00:00:00', 36167); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1991-05-01 00:00:00', '1992-04-30 00:00:00', 35500); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1991-01-01 00:00:00', '1991-12-31 00:00:00', 35033); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1990-05-01 00:00:00', '1990-11-30 00:00:00', 34000); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1990-12-01 00:00:00', '1991-04-30 00:00:00', 34100); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1990-01-01 00:00:00', '1990-12-31 00:00:00', 33575); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1989-04-01 00:00:00', '1990-04-30 00:00:00', 32700); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1989-01-01 00:00:00', '1989-12-31 00:00:00', 32275); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1988-01-01 00:00:00', '1988-03-31 00:00:00', 30400); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1988-04-01 00:00:00', '1989-03-31 00:00:00', 31000); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1988-01-01 00:00:00', '1988-12-31 00:00:00', 30850); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1987-05-01 00:00:00', '1987-12-31 00:00:00', 29900); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1987-01-01 00:00:00', '1987-12-31 00:00:00', 29267); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1986-01-01 00:00:00', '1986-04-30 00:00:00', 26300); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1986-05-01 00:00:00', '1987-04-30 00:00:00', 28000); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1986-01-01 00:00:00', '1986-12-31 00:00:00', 27433); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1985-05-01 00:00:00', '1985-12-31 00:00:00', 25900); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1985-01-01 00:00:00', '1985-12-31 00:00:00', 25333); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1984-05-01 00:00:00', '1985-04-30 00:00:00', 24200); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1984-01-01 00:00:00', '1984-12-31 00:00:00', 23667); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1983-01-01 00:00:00', '1983-04-30 00:00:00', 21800); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1983-05-01 00:00:00', '1984-04-30 00:00:00', 22600); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1983-01-01 00:00:00', '1983-12-31 00:00:00', 22333); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1982-05-01 00:00:00', '1982-12-31 00:00:00', 21200); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1982-01-01 00:00:00', '1982-12-31 00:00:00', 20667); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1981-01-01 00:00:00', '1981-04-30 00:00:00', 17400); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1981-05-01 00:00:00', '1981-09-30 00:00:00', 19100); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1981-10-01 00:00:00', '1982-04-30 00:00:00', 19600); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1981-01-01 00:00:00', '1981-12-31 00:00:00', 18658); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1980-01-01 00:00:00', '1980-04-30 00:00:00', 16100); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1980-05-01 00:00:00', '1980-12-31 00:00:00', 16900); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1980-01-01 00:00:00', '1980-12-31 00:00:00', 16633); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1979-01-01 00:00:00', '1979-12-31 00:00:00', 15200); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1979-01-01 00:00:00', '1979-12-31 00:00:00', 15200); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1978-07-01 00:00:00', '1978-12-31 00:00:00', 14700); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1978-01-01 00:00:00', '1978-12-31 00:00:00', 14550); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1977-01-01 00:00:00', '1977-04-30 00:00:00', 13100); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1977-05-01 00:00:00', '1977-11-30 00:00:00', 13400); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1977-12-01 00:00:00', '1978-06-30 00:00:00', 14400); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1977-01-01 00:00:00', '1977-12-31 00:00:00', 13383); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1976-01-01 00:00:00', '1976-04-30 00:00:00', 11800); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1976-05-01 00:00:00', '1976-12-31 00:00:00', 12100); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1976-01-01 00:00:00', '1976-12-31 00:00:00', 12000); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1975-01-01 00:00:00', '1975-04-30 00:00:00', 10400); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1975-05-01 00:00:00', '1975-12-31 00:00:00', 11000); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1975-01-01 00:00:00', '1975-12-31 00:00:00', 10800); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1974-01-01 00:00:00', '1974-04-30 00:00:00', 9200); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1974-05-01 00:00:00', '1974-12-31 00:00:00', 9700); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1974-01-01 00:00:00', '1974-12-31 00:00:00', 9533); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1973-01-01 00:00:00', '1973-12-31 00:00:00', 8500); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1973-01-01 00:00:00', '1973-12-31 00:00:00', 8500); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1972-01-01 00:00:00', '1972-12-31 00:00:00', 7900); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1972-01-01 00:00:00', '1972-12-31 00:00:00', 7900); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1971-01-01 00:00:00', '1971-04-30 00:00:00', 7200); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1971-05-01 00:00:00', '1971-12-31 00:00:00', 7500); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1971-01-01 00:00:00', '1971-12-31 00:00:00', 7400); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1970-01-01 00:00:00', '1970-12-31 00:00:00', 6800); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1970-01-01 00:00:00', '1970-12-31 00:00:00', 6800); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1969-01-01 00:00:00', '1969-12-31 00:00:00', 6400); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1969-01-01 00:00:00', '1969-12-31 00:00:00', 6400); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1968-01-01 00:00:00', '1968-12-31 00:00:00', 5900); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1968-01-01 00:00:00', '1968-12-31 00:00:00', 5900); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1967-01-01 00:00:00', '1967-12-31 00:00:00', 5400); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1967-01-01 00:00:00', '1967-12-31 00:00:00', 5400); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2018-05-01 00:00:00', '2019-04-30 00:00:00', 96883); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2018-01-01 00:00:00', '2018-12-31 00:00:00', 95800); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'ENGANG', '2019-01-01 00:00:00', '2019-12-31 00:00:00', 83140); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'ENGANG', '2010-01-01 00:00:00', '2013-12-31 00:00:00', 35263); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2019-01-01 00:00:00', '2019-12-31 00:00:00', 98866); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'ENGANG', '2020-01-01 00:00:00', '9999-12-31 00:00:00', 84720); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2019-05-01 00:00:00', '2020-04-30 00:00:00', 99858); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2020-01-01 00:00:00', '2020-12-31 00:00:00', 100853); +INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2020-05-01 00:00:00', '2021-04-30 00:00:00', 101351); From 18cfd29af13270ea51dba3a8063d144bd73a1e6d Mon Sep 17 00:00:00 2001 From: Espen Johansen Velsvik Date: Mon, 11 Nov 2024 11:05:54 +0100 Subject: [PATCH 2/3] =?UTF-8?q?Legger=20kun=20inn=20verdier=20for=20grunnb?= =?UTF-8?q?el=C3=B8p?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../V1.0_002__grunnbel\303\270psatser.sql" | 209 ++++++------------ 1 file changed, 72 insertions(+), 137 deletions(-) diff --git "a/migreringer/src/main/resources/db/postgres/defaultDS/1.0/V1.0_002__grunnbel\303\270psatser.sql" "b/migreringer/src/main/resources/db/postgres/defaultDS/1.0/V1.0_002__grunnbel\303\270psatser.sql" index 7c13c88212..feebf8bde7 100644 --- "a/migreringer/src/main/resources/db/postgres/defaultDS/1.0/V1.0_002__grunnbel\303\270psatser.sql" +++ "b/migreringer/src/main/resources/db/postgres/defaultDS/1.0/V1.0_002__grunnbel\303\270psatser.sql" @@ -1,6 +1,5 @@ CREATE TABLE GRUNNBELOP_SATS ( ID BIGINT NOT NULL, - SATS_TYPE VARCHAR(100) NOT NULL, FOM TIMESTAMP(0) NOT NULL, TOM TIMESTAMP(0) NOT NULL, VERDI NUMERIC(10,0) NOT NULL, @@ -14,7 +13,6 @@ create UNIQUE index PK_SATS on GRUNNBELOP_SATS (ID); alter table GRUNNBELOP_SATS add constraint PK_SATS primary key using index PK_SATS; COMMENT ON COLUMN GRUNNBELOP_SATS.ID IS 'Primary Key'; -COMMENT ON COLUMN GRUNNBELOP_SATS.SATS_TYPE IS 'Beskrivelse av satstype'; COMMENT ON COLUMN GRUNNBELOP_SATS.FOM IS 'Gyldig Fra-Og-Med'; COMMENT ON COLUMN GRUNNBELOP_SATS.TOM IS 'Gyldig Til-Og-Med'; COMMENT ON COLUMN GRUNNBELOP_SATS.VERDI IS 'Sats verdi.'; @@ -25,138 +23,75 @@ create sequence if not exists SEQ_GRUNNBELOP_SATS increment by 50 minvalue 10000 -- VERDIER ------------------------------------------------- -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2021-01-01 00:00:00', '2021-12-31 00:00:00', 104716); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2021-05-01 00:00:00', '2022-04-30 00:00:00', 106399); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2022-01-01 00:00:00', '2022-12-31 00:00:00', 109784); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2022-05-01 00:00:00', '2023-04-30 00:00:00', 111477); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2023-01-01 00:00:00', '2023-12-31 00:00:00', 116239); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2023-05-01 00:00:00', '2024-04-30 00:00:00', 118620); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2024-05-01 00:00:00', '2099-12-31 00:00:00', 124028); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2024-01-01 00:00:00', '2024-12-31 00:00:00', 122225); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'ENGANG', '2017-01-01 00:00:00', '2017-12-31 00:00:00', 61120); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'ENGANG', '2018-01-01 00:00:00', '2018-12-31 00:00:00', 63140); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'ENGANG', '2016-01-01 00:00:00', '2016-12-31 00:00:00', 46000); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2017-05-01 00:00:00', '2018-04-30 00:00:00', 93634); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2017-01-01 00:00:00', '2017-12-31 00:00:00', 93281); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2016-05-01 00:00:00', '2017-04-30 00:00:00', 92576); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2016-01-01 00:00:00', '2016-12-31 00:00:00', 91740); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2015-05-01 00:00:00', '2016-04-30 00:00:00', 90068); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2015-01-01 00:00:00', '2015-12-31 00:00:00', 89502); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2014-05-01 00:00:00', '2015-04-30 00:00:00', 88370); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2014-01-01 00:00:00', '2014-12-31 00:00:00', 87328); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2013-05-01 00:00:00', '2014-04-30 00:00:00', 85245); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2013-01-01 00:00:00', '2013-12-31 00:00:00', 84204); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2012-05-01 00:00:00', '2013-04-30 00:00:00', 82122); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2012-01-01 00:00:00', '2012-12-31 00:00:00', 81153); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2011-05-01 00:00:00', '2012-04-30 00:00:00', 79216); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2011-01-01 00:00:00', '2011-12-31 00:00:00', 78024); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2010-05-01 00:00:00', '2011-04-30 00:00:00', 75641); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2010-01-01 00:00:00', '2010-12-31 00:00:00', 74721); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2009-05-01 00:00:00', '2010-04-30 00:00:00', 72881); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2009-01-01 00:00:00', '2009-12-31 00:00:00', 72006); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2008-05-01 00:00:00', '2009-04-30 00:00:00', 70256); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2008-01-01 00:00:00', '2008-12-31 00:00:00', 69108); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2007-05-01 00:00:00', '2008-04-30 00:00:00', 66812); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2007-01-01 00:00:00', '2007-12-31 00:00:00', 65505); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2006-05-01 00:00:00', '2007-04-30 00:00:00', 62892); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2006-01-01 00:00:00', '2006-12-31 00:00:00', 62161); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2005-05-01 00:00:00', '2006-04-30 00:00:00', 60699); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2005-01-01 00:00:00', '2005-12-31 00:00:00', 60059); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2004-05-01 00:00:00', '2005-04-30 00:00:00', 58778); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2004-01-01 00:00:00', '2004-12-31 00:00:00', 58139); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2003-05-01 00:00:00', '2004-04-30 00:00:00', 56861); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2003-01-01 00:00:00', '2003-12-31 00:00:00', 55964); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2002-05-01 00:00:00', '2003-04-30 00:00:00', 54170); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2002-01-01 00:00:00', '2002-12-31 00:00:00', 53233); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2001-05-01 00:00:00', '2002-04-30 00:00:00', 51360); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2001-01-01 00:00:00', '2001-12-31 00:00:00', 50603); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2000-05-01 00:00:00', '2001-04-30 00:00:00', 49090); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2000-01-01 00:00:00', '2000-12-31 00:00:00', 48377); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1999-05-01 00:00:00', '2000-04-30 00:00:00', 46950); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1999-01-01 00:00:00', '1999-12-31 00:00:00', 46423); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1998-05-01 00:00:00', '1999-04-30 00:00:00', 45370); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1998-01-01 00:00:00', '1998-12-31 00:00:00', 44413); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1997-05-01 00:00:00', '1998-04-30 00:00:00', 42500); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1997-01-01 00:00:00', '1997-12-31 00:00:00', 42000); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1996-05-01 00:00:00', '1997-04-30 00:00:00', 41000); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1996-01-01 00:00:00', '1996-12-31 00:00:00', 40410); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1995-05-01 00:00:00', '1996-04-30 00:00:00', 39230); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1995-01-01 00:00:00', '1995-12-31 00:00:00', 38847); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1994-05-01 00:00:00', '1995-04-30 00:00:00', 38080); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1994-01-01 00:00:00', '1994-12-31 00:00:00', 37820); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1993-05-01 00:00:00', '1994-04-30 00:00:00', 37300); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1993-01-01 00:00:00', '1993-12-31 00:00:00', 37033); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1992-05-01 00:00:00', '1993-04-30 00:00:00', 36500); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1992-01-01 00:00:00', '1992-12-31 00:00:00', 36167); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1991-05-01 00:00:00', '1992-04-30 00:00:00', 35500); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1991-01-01 00:00:00', '1991-12-31 00:00:00', 35033); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1990-05-01 00:00:00', '1990-11-30 00:00:00', 34000); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1990-12-01 00:00:00', '1991-04-30 00:00:00', 34100); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1990-01-01 00:00:00', '1990-12-31 00:00:00', 33575); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1989-04-01 00:00:00', '1990-04-30 00:00:00', 32700); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1989-01-01 00:00:00', '1989-12-31 00:00:00', 32275); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1988-01-01 00:00:00', '1988-03-31 00:00:00', 30400); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1988-04-01 00:00:00', '1989-03-31 00:00:00', 31000); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1988-01-01 00:00:00', '1988-12-31 00:00:00', 30850); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1987-05-01 00:00:00', '1987-12-31 00:00:00', 29900); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1987-01-01 00:00:00', '1987-12-31 00:00:00', 29267); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1986-01-01 00:00:00', '1986-04-30 00:00:00', 26300); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1986-05-01 00:00:00', '1987-04-30 00:00:00', 28000); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1986-01-01 00:00:00', '1986-12-31 00:00:00', 27433); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1985-05-01 00:00:00', '1985-12-31 00:00:00', 25900); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1985-01-01 00:00:00', '1985-12-31 00:00:00', 25333); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1984-05-01 00:00:00', '1985-04-30 00:00:00', 24200); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1984-01-01 00:00:00', '1984-12-31 00:00:00', 23667); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1983-01-01 00:00:00', '1983-04-30 00:00:00', 21800); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1983-05-01 00:00:00', '1984-04-30 00:00:00', 22600); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1983-01-01 00:00:00', '1983-12-31 00:00:00', 22333); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1982-05-01 00:00:00', '1982-12-31 00:00:00', 21200); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1982-01-01 00:00:00', '1982-12-31 00:00:00', 20667); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1981-01-01 00:00:00', '1981-04-30 00:00:00', 17400); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1981-05-01 00:00:00', '1981-09-30 00:00:00', 19100); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1981-10-01 00:00:00', '1982-04-30 00:00:00', 19600); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1981-01-01 00:00:00', '1981-12-31 00:00:00', 18658); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1980-01-01 00:00:00', '1980-04-30 00:00:00', 16100); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1980-05-01 00:00:00', '1980-12-31 00:00:00', 16900); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1980-01-01 00:00:00', '1980-12-31 00:00:00', 16633); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1979-01-01 00:00:00', '1979-12-31 00:00:00', 15200); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1979-01-01 00:00:00', '1979-12-31 00:00:00', 15200); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1978-07-01 00:00:00', '1978-12-31 00:00:00', 14700); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1978-01-01 00:00:00', '1978-12-31 00:00:00', 14550); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1977-01-01 00:00:00', '1977-04-30 00:00:00', 13100); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1977-05-01 00:00:00', '1977-11-30 00:00:00', 13400); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1977-12-01 00:00:00', '1978-06-30 00:00:00', 14400); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1977-01-01 00:00:00', '1977-12-31 00:00:00', 13383); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1976-01-01 00:00:00', '1976-04-30 00:00:00', 11800); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1976-05-01 00:00:00', '1976-12-31 00:00:00', 12100); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1976-01-01 00:00:00', '1976-12-31 00:00:00', 12000); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1975-01-01 00:00:00', '1975-04-30 00:00:00', 10400); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1975-05-01 00:00:00', '1975-12-31 00:00:00', 11000); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1975-01-01 00:00:00', '1975-12-31 00:00:00', 10800); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1974-01-01 00:00:00', '1974-04-30 00:00:00', 9200); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1974-05-01 00:00:00', '1974-12-31 00:00:00', 9700); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1974-01-01 00:00:00', '1974-12-31 00:00:00', 9533); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1973-01-01 00:00:00', '1973-12-31 00:00:00', 8500); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1973-01-01 00:00:00', '1973-12-31 00:00:00', 8500); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1972-01-01 00:00:00', '1972-12-31 00:00:00', 7900); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1972-01-01 00:00:00', '1972-12-31 00:00:00', 7900); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1971-01-01 00:00:00', '1971-04-30 00:00:00', 7200); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1971-05-01 00:00:00', '1971-12-31 00:00:00', 7500); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1971-01-01 00:00:00', '1971-12-31 00:00:00', 7400); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1970-01-01 00:00:00', '1970-12-31 00:00:00', 6800); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1970-01-01 00:00:00', '1970-12-31 00:00:00', 6800); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1969-01-01 00:00:00', '1969-12-31 00:00:00', 6400); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1969-01-01 00:00:00', '1969-12-31 00:00:00', 6400); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1968-01-01 00:00:00', '1968-12-31 00:00:00', 5900); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1968-01-01 00:00:00', '1968-12-31 00:00:00', 5900); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '1967-01-01 00:00:00', '1967-12-31 00:00:00', 5400); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '1967-01-01 00:00:00', '1967-12-31 00:00:00', 5400); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2018-05-01 00:00:00', '2019-04-30 00:00:00', 96883); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2018-01-01 00:00:00', '2018-12-31 00:00:00', 95800); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'ENGANG', '2019-01-01 00:00:00', '2019-12-31 00:00:00', 83140); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'ENGANG', '2010-01-01 00:00:00', '2013-12-31 00:00:00', 35263); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2019-01-01 00:00:00', '2019-12-31 00:00:00', 98866); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'ENGANG', '2020-01-01 00:00:00', '9999-12-31 00:00:00', 84720); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2019-05-01 00:00:00', '2020-04-30 00:00:00', 99858); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GSNITT', '2020-01-01 00:00:00', '2020-12-31 00:00:00', 100853); -INSERT INTO GRUNNBELOP_SATS (id, sats_type, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), 'GRUNNBELØP', '2020-05-01 00:00:00', '2021-04-30 00:00:00', 101351); + +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2024-05-01 00:00:00', '2099-12-31 00:00:00', 124028); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2023-05-01 00:00:00', '2024-04-30 00:00:00', 118620); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2022-05-01 00:00:00', '2023-04-30 00:00:00', 111477); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2021-05-01 00:00:00', '2022-04-30 00:00:00', 106399); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2020-05-01 00:00:00', '2021-04-30 00:00:00', 101351); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2019-05-01 00:00:00', '2020-04-30 00:00:00', 99858); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2018-05-01 00:00:00', '2019-04-30 00:00:00', 96883); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2017-05-01 00:00:00', '2018-04-30 00:00:00', 93634); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2016-05-01 00:00:00', '2017-04-30 00:00:00', 92576); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2015-05-01 00:00:00', '2016-04-30 00:00:00', 90068); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2014-05-01 00:00:00', '2015-04-30 00:00:00', 88370); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2013-05-01 00:00:00', '2014-04-30 00:00:00', 85245); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2012-05-01 00:00:00', '2013-04-30 00:00:00', 82122); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2011-05-01 00:00:00', '2012-04-30 00:00:00', 79216); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2010-05-01 00:00:00', '2011-04-30 00:00:00', 75641); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2009-05-01 00:00:00', '2010-04-30 00:00:00', 72881); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2008-05-01 00:00:00', '2009-04-30 00:00:00', 70256); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2007-05-01 00:00:00', '2008-04-30 00:00:00', 66812); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2006-05-01 00:00:00', '2007-04-30 00:00:00', 62892); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2005-05-01 00:00:00', '2006-04-30 00:00:00', 60699); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2004-05-01 00:00:00', '2005-04-30 00:00:00', 58778); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2003-05-01 00:00:00', '2004-04-30 00:00:00', 56861); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2002-05-01 00:00:00', '2003-04-30 00:00:00', 54170); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2001-05-01 00:00:00', '2002-04-30 00:00:00', 51360); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '2000-05-01 00:00:00', '2001-04-30 00:00:00', 49090); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1999-05-01 00:00:00', '2000-04-30 00:00:00', 46950); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1998-05-01 00:00:00', '1999-04-30 00:00:00', 45370); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1997-05-01 00:00:00', '1998-04-30 00:00:00', 42500); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1996-05-01 00:00:00', '1997-04-30 00:00:00', 41000); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1995-05-01 00:00:00', '1996-04-30 00:00:00', 39230); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1994-05-01 00:00:00', '1995-04-30 00:00:00', 38080); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1993-05-01 00:00:00', '1994-04-30 00:00:00', 37300); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1992-05-01 00:00:00', '1993-04-30 00:00:00', 36500); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1991-05-01 00:00:00', '1992-04-30 00:00:00', 35500); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1990-05-01 00:00:00', '1990-11-30 00:00:00', 34000); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1990-12-01 00:00:00', '1991-04-30 00:00:00', 34100); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1989-04-01 00:00:00', '1990-04-30 00:00:00', 32700); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1988-01-01 00:00:00', '1988-03-31 00:00:00', 30400); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1988-04-01 00:00:00', '1989-03-31 00:00:00', 31000); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1987-05-01 00:00:00', '1987-12-31 00:00:00', 29900); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1986-01-01 00:00:00', '1986-04-30 00:00:00', 26300); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1986-05-01 00:00:00', '1987-04-30 00:00:00', 28000); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1985-05-01 00:00:00', '1985-12-31 00:00:00', 25900); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1984-05-01 00:00:00', '1985-04-30 00:00:00', 24200); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1983-01-01 00:00:00', '1983-04-30 00:00:00', 21800); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1983-05-01 00:00:00', '1984-04-30 00:00:00', 22600); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1982-05-01 00:00:00', '1982-12-31 00:00:00', 21200); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1981-01-01 00:00:00', '1981-04-30 00:00:00', 17400); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1981-05-01 00:00:00', '1981-09-30 00:00:00', 19100); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1981-10-01 00:00:00', '1982-04-30 00:00:00', 19600); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1980-01-01 00:00:00', '1980-04-30 00:00:00', 16100); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1980-05-01 00:00:00', '1980-12-31 00:00:00', 16900); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1979-01-01 00:00:00', '1979-12-31 00:00:00', 15200); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1978-07-01 00:00:00', '1978-12-31 00:00:00', 14700); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1977-01-01 00:00:00', '1977-04-30 00:00:00', 13100); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1977-05-01 00:00:00', '1977-11-30 00:00:00', 13400); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1977-12-01 00:00:00', '1978-06-30 00:00:00', 14400); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1976-01-01 00:00:00', '1976-04-30 00:00:00', 11800); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1976-05-01 00:00:00', '1976-12-31 00:00:00', 12100); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1975-01-01 00:00:00', '1975-04-30 00:00:00', 10400); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1975-05-01 00:00:00', '1975-12-31 00:00:00', 11000); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1974-01-01 00:00:00', '1974-04-30 00:00:00', 9200); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1974-05-01 00:00:00', '1974-12-31 00:00:00', 9700); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1973-01-01 00:00:00', '1973-12-31 00:00:00', 8500); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1972-01-01 00:00:00', '1972-12-31 00:00:00', 7900); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1971-01-01 00:00:00', '1971-04-30 00:00:00', 7200); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1971-05-01 00:00:00', '1971-12-31 00:00:00', 7500); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1970-01-01 00:00:00', '1970-12-31 00:00:00', 6800); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1969-01-01 00:00:00', '1969-12-31 00:00:00', 6400); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1968-01-01 00:00:00', '1968-12-31 00:00:00', 5900); +INSERT INTO GRUNNBELOP_SATS (id, fom, tom, verdi) VALUES (nextval('SEQ_GRUNNBELOP_SATS'), '1967-01-01 00:00:00', '1967-12-31 00:00:00', 5400); From 7869e30b8f078fecd5ac2a3d712113667fd88112 Mon Sep 17 00:00:00 2001 From: Espen Johansen Velsvik Date: Mon, 11 Nov 2024 11:44:14 +0100 Subject: [PATCH 3/3] =?UTF-8?q?Henter=20grunnbel=C3=B8p=20fra=20database?= =?UTF-8?q?=20og=20fjerner=20kobling=20til=20kalkulus?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/dependabot.yml | 6 - .../Grunnbel\303\270pRepository.java" | 30 ++++ .../Grunnbel\303\270pSats.java" | 37 ++++ .../pu-default.grunnbel\303\270p.orm.xml" | 12 ++ deploy/dev-gcp.yml | 6 - deploy/prod-gcp.yml | 6 - dokumentasjon/arkitekturbeslutninger.md | 1 - domenetjenester/grunnbelop/pom.xml | 10 -- .../grunnbel\303\270p/Grunnbel\303\270p.java" | 2 + .../Grunnbel\303\270pTjeneste.java" | 32 ++-- .../KalkulusRestKlient.java" | 160 ------------------ kontrakt/pom.xml | 5 - pom.xml | 5 - web/app-vtp.properties | 2 - .../web/app/jackson/ObjectMapperResolver.java | 4 - .../Vilk\303\245rForlengelseDump.java" | 4 +- ...agGrunnbel\303\270pTidslinjeTjeneste.java" | 41 +---- .../UngdomsytelseBeregnDagsatsTest.java | 33 ++-- 18 files changed, 115 insertions(+), 281 deletions(-) create mode 100644 "behandlingslager/domene/src/main/java/no/nav/k9/sak/behandlingslager/grunnbel\303\270p/Grunnbel\303\270pRepository.java" create mode 100644 "behandlingslager/domene/src/main/java/no/nav/k9/sak/behandlingslager/grunnbel\303\270p/Grunnbel\303\270pSats.java" create mode 100644 "behandlingslager/domene/src/main/resources/META-INF/pu-default.grunnbel\303\270p.orm.xml" delete mode 100644 "domenetjenester/grunnbelop/src/main/java/no/nav/k9/sak/grunnbel\303\270p/KalkulusRestKlient.java" diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8fd310a0b2..9325492cd9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -45,11 +45,6 @@ # url: https://maven.pkg.github.com/navikt/fp-abakus # username: x-access-token # password: ${{secrets.READER_TOKEN}} -# ft-kalkulus: -# type: maven-repository -# url: https://maven.pkg.github.com/navikt/ft-kalkulus -# username: x-access-token -# password: ${{secrets.READER_TOKEN}} # fp-nare: # type: maven-repository # url: https://maven.pkg.github.com/navikt/fp-nare @@ -76,7 +71,6 @@ # - k9-formidling # - k9-oppdrag # - fp-abakus -# - ft-kalkulus # - fp-nare # - fp-tidsserie # groups: diff --git "a/behandlingslager/domene/src/main/java/no/nav/k9/sak/behandlingslager/grunnbel\303\270p/Grunnbel\303\270pRepository.java" "b/behandlingslager/domene/src/main/java/no/nav/k9/sak/behandlingslager/grunnbel\303\270p/Grunnbel\303\270pRepository.java" new file mode 100644 index 0000000000..67c01196b3 --- /dev/null +++ "b/behandlingslager/domene/src/main/java/no/nav/k9/sak/behandlingslager/grunnbel\303\270p/Grunnbel\303\270pRepository.java" @@ -0,0 +1,30 @@ +package no.nav.k9.sak.behandlingslager.grunnbeløp; + +import java.util.List; + +import jakarta.enterprise.context.Dependent; +import jakarta.inject.Inject; +import jakarta.persistence.EntityManager; +import jakarta.persistence.TypedQuery; +import no.nav.k9.felles.jpa.HibernateVerktøy; +import no.nav.k9.sak.behandlingslager.fagsak.Fagsak; +import no.nav.k9.sak.domene.typer.tid.DatoIntervallEntitet; + +@Dependent +public class GrunnbeløpRepository { + + private EntityManager entityManager; + + @Inject + public GrunnbeløpRepository(EntityManager entityManager) { + this.entityManager = entityManager; + } + + public List hentGrunnbeløpForPeriode(DatoIntervallEntitet periode) { + TypedQuery query = entityManager.createQuery("from GrunnbeløpSats where periode.fomDato <= :tomDato and periode.tomDato >= :fomDato", GrunnbeløpSats.class); + query.setParameter("fomDato", periode.getFomDato()); // NOSONAR + query.setParameter("tomDato", periode.getTomDato()); // NOSONAR + return query.getResultList(); + } + +} diff --git "a/behandlingslager/domene/src/main/java/no/nav/k9/sak/behandlingslager/grunnbel\303\270p/Grunnbel\303\270pSats.java" "b/behandlingslager/domene/src/main/java/no/nav/k9/sak/behandlingslager/grunnbel\303\270p/Grunnbel\303\270pSats.java" new file mode 100644 index 0000000000..53c1e38fb4 --- /dev/null +++ "b/behandlingslager/domene/src/main/java/no/nav/k9/sak/behandlingslager/grunnbel\303\270p/Grunnbel\303\270pSats.java" @@ -0,0 +1,37 @@ +package no.nav.k9.sak.behandlingslager.grunnbeløp; + +import jakarta.persistence.Column; +import jakarta.persistence.Embedded; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; +import jakarta.persistence.Table; +import no.nav.k9.sak.domene.typer.tid.DatoIntervallEntitet; + +@Entity(name = "GrunnbeløpSats") +@Table(name = "GRUNNBELOP_SATS") +public class GrunnbeløpSats { + + @Id + @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "SEQ_GRUNNBELOP_SATS") + private Long id; + + @Embedded + private DatoIntervallEntitet periode; + + @Column(name = "verdi", nullable = false, updatable = false) + private long verdi; + + public Long getId() { + return id; + } + + public DatoIntervallEntitet getPeriode() { + return periode; + } + + public long getVerdi() { + return verdi; + } +} diff --git "a/behandlingslager/domene/src/main/resources/META-INF/pu-default.grunnbel\303\270p.orm.xml" "b/behandlingslager/domene/src/main/resources/META-INF/pu-default.grunnbel\303\270p.orm.xml" new file mode 100644 index 0000000000..52d0098744 --- /dev/null +++ "b/behandlingslager/domene/src/main/resources/META-INF/pu-default.grunnbel\303\270p.orm.xml" @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/deploy/dev-gcp.yml b/deploy/dev-gcp.yml index e1de57867a..0d65071765 100644 --- a/deploy/dev-gcp.yml +++ b/deploy/dev-gcp.yml @@ -171,10 +171,6 @@ spec: value: https://k9-abakus.dev-fss-pub.nais.io - name: K9ABAKUS_SCOPE value: api://dev-fss.k9saksbehandling.k9-abakus/.default - - name: FTKALKULUS_URL - value: http://ftkalkulus.k9saksbehandling/ftkalkulus - - name: FTKALKULUS_SCOPE - value: api://dev-fss.k9saksbehandling.ftkalkulus/.default - name: ABAKUS_CALLBACK_URL value: http://ung-sak.k9saksbehandling/k9/sak/api/registerdata/iay/callback - name: ABAKUS_CALLBACK_SCOPE @@ -289,8 +285,6 @@ spec: value: "true" - name: FJERN_VILKARSPERIODER_BEREGNING value: "true" - - name: VALIDER_KALKULUS_REFERANSER - value: "true" - name: AVKLAR_ARBEIDSFORHOLD_REUTLED_VED_REVURDERING value: "true" - name: OMP_RELEVANT_ENDRING_UTLEDNING diff --git a/deploy/prod-gcp.yml b/deploy/prod-gcp.yml index a9c8234579..ea041c9442 100644 --- a/deploy/prod-gcp.yml +++ b/deploy/prod-gcp.yml @@ -162,10 +162,6 @@ spec: value: https://k9-abakus.prod-fss-pub.nais.io/k9/abakus - name: K9ABAKUS_SCOPE value: api://prod-fss.k9saksbehandling.k9-abakus/.default - - name: FTKALKULUS_URL - value: http://ftkalkulus.k9saksbehandling/ftkalkulus - - name: FTKALKULUS_SCOPE - value: api://prod-fss.k9saksbehandling.ftkalkulus/.default - name: ABAKUS_CALLBACK_URL value: http://ung-sak.k9saksbehandling/k9/sak/api/registerdata/iay/callback - name: ABAKUS_CALLBACK_SCOPE @@ -278,8 +274,6 @@ spec: value: "false" - name: FJERN_VILKARSPERIODER_BEREGNING value: "false" - - name: VALIDER_KALKULUS_REFERANSER - value: "false" - name: AVKLAR_ARBEIDSFORHOLD_REUTLED_VED_REVURDERING value: "false" - name: OMP_RELEVANT_ENDRING_UTLEDNING diff --git a/dokumentasjon/arkitekturbeslutninger.md b/dokumentasjon/arkitekturbeslutninger.md index 3624b92fdb..2d3b53cbfd 100644 --- a/dokumentasjon/arkitekturbeslutninger.md +++ b/dokumentasjon/arkitekturbeslutninger.md @@ -6,7 +6,6 @@ 1. Mottak av dokumenter 1. Mottak av eksterne hendelser (eks. fødsel/dødsfall, inntektsopplysninger) 1. Abakus: Registeropplysninger for inntekt-arbeid-ytelse - 1. Kalkulus: Beregningsgrunnlag og fordeling av beregning inntektskomponsasjon per yrkesaktivitet, ytelse og arbeidsgiver 1. Formidling og Dokgen: Aggreging av data og produksjon av brev til bruker 1. Uttak: Beregning av årskvantum, uttak av pleiepenger, opplæringspenger, frisinn) 1. Følgende er opprettet fra start som uavhengige moduler: diff --git a/domenetjenester/grunnbelop/pom.xml b/domenetjenester/grunnbelop/pom.xml index 1e28522b11..6a5fcccf91 100644 --- a/domenetjenester/grunnbelop/pom.xml +++ b/domenetjenester/grunnbelop/pom.xml @@ -22,10 +22,6 @@ no.nav.k9.felles k9-felles-db - - no.nav.k9.felles.integrasjon - k9-felles-integrasjon-rest-klient - @@ -33,12 +29,6 @@ kontrakt - - - no.nav.folketrygdloven.kalkulus - beregning-kontrakt - - no.nav.k9.sak diff --git "a/domenetjenester/grunnbelop/src/main/java/no/nav/k9/sak/grunnbel\303\270p/Grunnbel\303\270p.java" "b/domenetjenester/grunnbelop/src/main/java/no/nav/k9/sak/grunnbel\303\270p/Grunnbel\303\270p.java" index 5db489e888..6aa299516c 100644 --- "a/domenetjenester/grunnbelop/src/main/java/no/nav/k9/sak/grunnbel\303\270p/Grunnbel\303\270p.java" +++ "b/domenetjenester/grunnbelop/src/main/java/no/nav/k9/sak/grunnbel\303\270p/Grunnbel\303\270p.java" @@ -1,7 +1,9 @@ package no.nav.k9.sak.grunnbeløp; +import jakarta.persistence.Entity; import no.nav.k9.sak.domene.typer.tid.DatoIntervallEntitet; +@Entity() public class Grunnbeløp { private long verdi; diff --git "a/domenetjenester/grunnbelop/src/main/java/no/nav/k9/sak/grunnbel\303\270p/Grunnbel\303\270pTjeneste.java" "b/domenetjenester/grunnbelop/src/main/java/no/nav/k9/sak/grunnbel\303\270p/Grunnbel\303\270pTjeneste.java" index aef0fb9650..9f56630e99 100644 --- "a/domenetjenester/grunnbelop/src/main/java/no/nav/k9/sak/grunnbel\303\270p/Grunnbel\303\270pTjeneste.java" +++ "b/domenetjenester/grunnbelop/src/main/java/no/nav/k9/sak/grunnbel\303\270p/Grunnbel\303\270pTjeneste.java" @@ -1,36 +1,30 @@ package no.nav.k9.sak.grunnbeløp; -import java.time.LocalDate; +import java.math.BigDecimal; -import jakarta.enterprise.context.ApplicationScoped; import jakarta.enterprise.context.Dependent; -import jakarta.enterprise.inject.Default; import jakarta.inject.Inject; -import no.nav.folketrygdloven.kalkulus.felles.v1.Beløp; -import no.nav.folketrygdloven.kalkulus.request.v1.HentGrunnbeløpRequest; +import no.nav.fpsak.tidsserie.LocalDateTimeline; +import no.nav.k9.sak.behandlingslager.grunnbeløp.GrunnbeløpRepository; import no.nav.k9.sak.domene.typer.tid.DatoIntervallEntitet; -/** - * no.nav.grunnbeløp.KalkulusTjeneste sørger for at K9 kaller kalkulus på riktig format i henhold til no.nav.folketrygdloven.kalkulus.kontrakt - * (https://github.com/navikt/ft-kalkulus/) - */ + @Dependent public class GrunnbeløpTjeneste { - private final KalkulusRestKlient restTjeneste; + private final GrunnbeløpRepository grunnbeløpRepository; @Inject - public GrunnbeløpTjeneste(KalkulusRestKlient restTjeneste) { - this.restTjeneste = restTjeneste; - + public GrunnbeløpTjeneste(GrunnbeløpRepository grunnbeløpRepository) { + this.grunnbeløpRepository = grunnbeløpRepository; } - public Grunnbeløp hentGrunnbeløp(LocalDate dato) { - HentGrunnbeløpRequest request = new HentGrunnbeløpRequest(dato); - var grunnbeløp = restTjeneste.hentGrunnbeløp(request); - return new Grunnbeløp( - Beløp.safeVerdi(grunnbeløp.getVerdi()).longValue(), - DatoIntervallEntitet.fraOgMedTilOgMed(grunnbeløp.getPeriode().getFom(), grunnbeløp.getPeriode().getTom())); + public LocalDateTimeline hentGrunnbeløpTidslinje(LocalDateTimeline tidslinje) { + var grunnbeløpSatser = grunnbeløpRepository.hentGrunnbeløpForPeriode(DatoIntervallEntitet.fraOgMedTilOgMed(tidslinje.getMinLocalDate(), tidslinje.getMaxLocalDate())); + return grunnbeløpSatser.stream() + .map(s -> new LocalDateTimeline<>(s.getPeriode().getFomDato(), s.getPeriode().getTomDato(), BigDecimal.valueOf(s.getVerdi()))) + .reduce(LocalDateTimeline::crossJoin) + .orElse(LocalDateTimeline.empty()); } diff --git "a/domenetjenester/grunnbelop/src/main/java/no/nav/k9/sak/grunnbel\303\270p/KalkulusRestKlient.java" "b/domenetjenester/grunnbelop/src/main/java/no/nav/k9/sak/grunnbel\303\270p/KalkulusRestKlient.java" deleted file mode 100644 index 384224fc6a..0000000000 --- "a/domenetjenester/grunnbelop/src/main/java/no/nav/k9/sak/grunnbel\303\270p/KalkulusRestKlient.java" +++ /dev/null @@ -1,160 +0,0 @@ -package no.nav.k9.sak.grunnbeløp; - -import java.io.IOException; -import java.net.URI; -import java.net.URISyntaxException; - -import org.apache.http.HttpStatus; -import org.apache.http.client.methods.HttpPost; -import org.apache.http.entity.ContentType; -import org.apache.http.entity.StringEntity; -import org.apache.http.impl.client.CloseableHttpClient; -import org.apache.http.util.EntityUtils; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.databind.ObjectReader; -import com.fasterxml.jackson.databind.ObjectWriter; - -import jakarta.enterprise.context.ApplicationScoped; -import jakarta.inject.Inject; -import no.nav.folketrygdloven.kalkulus.mappers.JsonMapper; -import no.nav.folketrygdloven.kalkulus.request.v1.HentGrunnbeløpRequest; -import no.nav.folketrygdloven.kalkulus.response.v1.Grunnbeløp; -import no.nav.k9.felles.exception.VLException; -import no.nav.k9.felles.feil.Feil; -import no.nav.k9.felles.feil.FeilFactory; -import no.nav.k9.felles.feil.LogLevel; -import no.nav.k9.felles.feil.deklarasjon.DeklarerteFeil; -import no.nav.k9.felles.feil.deklarasjon.TekniskFeil; -import no.nav.k9.felles.integrasjon.rest.OidcRestClient; -import no.nav.k9.felles.integrasjon.rest.OidcRestClientResponseHandler; -import no.nav.k9.felles.integrasjon.rest.OidcRestClientResponseHandler.ObjectReaderResponseHandler; -import no.nav.k9.felles.integrasjon.rest.ScopedRestIntegration; -import no.nav.k9.felles.integrasjon.rest.SystemUserOidcRestClient; -import no.nav.k9.felles.konfigurasjon.konfig.KonfigVerdi; - - -@ApplicationScoped -@ScopedRestIntegration(scopeKey = "ftkalkulus.scope", defaultScope = "api://prod-fss.k9saksbehandling.ftkalkulus/.default") -public class KalkulusRestKlient { - - private static final Logger log = LoggerFactory.getLogger(KalkulusRestKlient.class); - private static final ObjectMapper kalkulusMapper = JsonMapper.getMapper(); - private final ObjectWriter kalkulusJsonWriter = kalkulusMapper.writerWithDefaultPrettyPrinter(); - private final ObjectReader grunnbeløpReader = kalkulusMapper.readerFor(Grunnbeløp.class); - - - private CloseableHttpClient restClient; - private URI kalkulusEndpoint; - private URI grunnbeløp; - - - public KalkulusRestKlient() { - // cdi - } - - @Inject - public KalkulusRestKlient(OidcRestClient restClient, - @KonfigVerdi(value = "ftkalkulus.url") URI endpoint) { - this(endpoint); - this.restClient = restClient; - } - - public KalkulusRestKlient(SystemUserOidcRestClient restClient, - URI endpoint) { - this(endpoint); - this.restClient = restClient; - } - - private KalkulusRestKlient(URI endpoint) { - this.kalkulusEndpoint = endpoint; - this.grunnbeløp = toUri("/api/kalkulus/v1/grunnbelop"); - } - - - public Grunnbeløp hentGrunnbeløp(HentGrunnbeløpRequest request) { - var endpoint = grunnbeløp; - - try { - return getResponse(endpoint, kalkulusJsonWriter.writeValueAsString(request), grunnbeløpReader); - } catch (JsonProcessingException e) { - throw RestTjenesteFeil.FEIL.feilVedJsonParsing(e.getMessage()).toException(); - } - } - - - private T getResponse(URI endpoint, String json, ObjectReader reader) { - try { - return utførOgHent(endpoint, json, new ObjectReaderResponseHandler<>(endpoint, reader)); - } catch (IOException e) { - throw RestTjenesteFeil.FEIL.feilVedKallTilKalkulus(endpoint, e.getMessage()).toException(); - } - } - - private T utførOgHent(URI endpoint, String json, OidcRestClientResponseHandler responseHandler) throws IOException { - var httpPost = new HttpPost(endpoint); // NOSONAR håndterer i responseHandler - httpPost.setEntity(new StringEntity(json, ContentType.APPLICATION_JSON)); - - try (var httpResponse = restClient.execute(httpPost)) { - int responseCode = httpResponse.getStatusLine().getStatusCode(); - if (isOk(responseCode)) { - return responseHandler.handleResponse(httpResponse); - } else { - if (responseCode == HttpStatus.SC_NOT_MODIFIED) { - return null; - } - if (responseCode == HttpStatus.SC_NO_CONTENT) { - return null; - } - if (responseCode == HttpStatus.SC_ACCEPTED) { - return null; - } - String responseBody = EntityUtils.toString(httpResponse.getEntity()); - String feilmelding = "Kunne ikke hente utføre kall til kalkulus," - + " endpoint=" + httpPost.getURI() - + ", HTTP status=" + httpResponse.getStatusLine() - + ". HTTP Errormessage=" + responseBody; - if (responseCode == HttpStatus.SC_BAD_REQUEST) { - throw RestTjenesteFeil.FEIL.feilKallTilKalkulus(endpoint, feilmelding).toException(); - } else { - throw RestTjenesteFeil.FEIL.feilVedKallTilKalkulus(endpoint, feilmelding).toException(); - } - } - } catch (VLException e) { - throw e; // retrhow - } catch (RuntimeException re) { - log.warn("Feil ved henting av data. uri=" + endpoint, re); - throw re; - } - } - - private boolean isOk(int responseCode) { - return responseCode == HttpStatus.SC_OK - || responseCode == HttpStatus.SC_CREATED; - } - - private URI toUri(String relativeUri) { - String uri = kalkulusEndpoint.toString() + relativeUri; - try { - return new URI(uri); - } catch (URISyntaxException e) { - throw new IllegalArgumentException("Ugyldig uri: " + uri, e); - } - } - - interface RestTjenesteFeil extends DeklarerteFeil { - KalkulusRestKlient.RestTjenesteFeil FEIL = FeilFactory.create(KalkulusRestKlient.RestTjenesteFeil.class); - - @TekniskFeil(feilkode = "F-FT-K-1000001", feilmelding = "Feil ved kall til Kalkulus [%s]: %s", logLevel = LogLevel.ERROR) - Feil feilVedKallTilKalkulus(URI endpoint, String feilmelding); - - @TekniskFeil(feilkode = "F-FT-K-1000002", feilmelding = "Feil ved kall til Kalkulus [%s]: %s", logLevel = LogLevel.WARN) - Feil feilKallTilKalkulus(URI endpoint, String feilmelding); - - @TekniskFeil(feilkode = "F-FT-K-1000003", feilmelding = "Feil ved kall til Kalkulus: %s", logLevel = LogLevel.WARN) - Feil feilVedJsonParsing(String feilmelding); - } -} diff --git a/kontrakt/pom.xml b/kontrakt/pom.xml index db4aabd935..956ad8c2bf 100644 --- a/kontrakt/pom.xml +++ b/kontrakt/pom.xml @@ -27,11 +27,6 @@ kodeverk - - no.nav.folketrygdloven.kalkulus - beregning-kontrakt - - org.hibernate.validator diff --git a/pom.xml b/pom.xml index a97ae7c450..be05007867 100644 --- a/pom.xml +++ b/pom.xml @@ -140,11 +140,6 @@ abakus-kontrakt 1.1.0 - - no.nav.folketrygdloven.kalkulus - beregning-kontrakt - 5.5.2 - com.zaxxer diff --git a/web/app-vtp.properties b/web/app-vtp.properties index 5b8b9029d6..deaacd1746 100644 --- a/web/app-vtp.properties +++ b/web/app-vtp.properties @@ -11,7 +11,6 @@ arbeidsfordeling.rs.url=https://localhost:8063/rest/norg2/api/v1/arbeidsfordelin url.k9oppdrag=http://localhost:8070/k9/oppdrag/api k9abakus.url=http://localhost:8015/k9/abakus k9abakus.scope=api://vtp.k9saksbehandling.k9-abakus/.default -ftkalkulus.url=http://localhost:8016/ftkalkulus abakus.callback.url=http://host.docker.internal:8080/k9/sak/api/registerdata/iay/callback abakus.callback.scope=api://vtp.k9saksbehandling.ung-sak/.default k9.psb.uttak.url=http://localhost:8686/pleiepenger-barn-uttak @@ -106,7 +105,6 @@ AZURE_APP_PRE_AUTHORIZED_APPS=[{"name":"vtp:teamforeldrepenger:vtp","clientId":" k9inntektsmelding.url=http://localhost:8040/k9/inntektsmelding UKESMOERING_OMSORGSTILBUD_FOM_DATO=2023-01-02 YTELSE_OLP_AKTIVERT=true -VALIDER_KALKULUS_REFERANSER=false FJERN_VILKARSPERIODER_BEREGNING=false SEND_INNTEKTSMELDING_FORESPORSEL=false ALDERSVILKAR_I_KRONISK_SYK=true diff --git a/web/src/main/java/no/nav/k9/sak/web/app/jackson/ObjectMapperResolver.java b/web/src/main/java/no/nav/k9/sak/web/app/jackson/ObjectMapperResolver.java index 860ceffd9f..11fed25d0d 100644 --- a/web/src/main/java/no/nav/k9/sak/web/app/jackson/ObjectMapperResolver.java +++ b/web/src/main/java/no/nav/k9/sak/web/app/jackson/ObjectMapperResolver.java @@ -18,7 +18,6 @@ public class ObjectMapperResolver implements ContextResolver { private final ObjectMapper baseObjektMapper; private final ObjectMapper overstyrKodeverdiAlltidSomStringMapper; - private final ObjectMapper overstyrKalkulusKodeverdiSomStringMapper; private final ObjectMapper defaultObjektMapper; private final ObjectMapper openapiObjektMapper; @@ -29,7 +28,6 @@ public class ObjectMapperResolver implements ContextResolver { public ObjectMapperResolver() { this.baseObjektMapper = ObjectMapperFactory.createBaseObjectMapper(); this.overstyrKodeverdiAlltidSomStringMapper = this.baseObjektMapper.copy().registerModule(ObjectMapperFactory.createOverstyrendeKodeverdiSerializerModule(SakKodeverkOverstyringSerialisering.KODE_STRING)); - this.overstyrKalkulusKodeverdiSomStringMapper = this.baseObjektMapper.copy().registerModule(ObjectMapperFactory.createOverstyrendeKodeverdiSerializerModule(SakKodeverkOverstyringSerialisering.INGEN)); // defaultObjektMapper brukast når input header for overstyring ikkje er satt. // Bruker samme logikk som har vore pr no. Det vil seie overstyring av Kalkulus Kodeverdi serialisering til objekt, så lenge ikkje feature flagg for string serialisering er aktivt. // Når alle klienter kan handtere at Kalkulus Kodeverdi kjem som string kan denne sannsynlegvis settast lik baseObjektMapper. @@ -81,8 +79,6 @@ private String getJsonSerializerOptionHeaderValue() { public ObjectMapper getContext(Class type) { final String serializerOption = this.getJsonSerializerOptionHeaderValue(); return switch (serializerOption) { - // Kompatibilitet for verdikjede test klient, istadenfor feature flag på server: - case "kodeverdi-kalkulus-string" -> this.overrideMapperForSøknad(type, this.overstyrKalkulusKodeverdiSomStringMapper); case "kodeverdi-string" -> this.overrideMapperForSøknad(type, this.overstyrKodeverdiAlltidSomStringMapper); case "base" -> this.baseObjektMapper; case "openapi-compat" -> this.openapiObjektMapper; // <- Også hardkoda i k9-sak-web jsonSerializerOption.ts diff --git "a/web/src/main/java/no/nav/k9/sak/web/app/tjenester/forvaltning/dump/vilk\303\245r/Vilk\303\245rForlengelseDump.java" "b/web/src/main/java/no/nav/k9/sak/web/app/tjenester/forvaltning/dump/vilk\303\245r/Vilk\303\245rForlengelseDump.java" index 6831f03f48..34085a1f4a 100644 --- "a/web/src/main/java/no/nav/k9/sak/web/app/tjenester/forvaltning/dump/vilk\303\245r/Vilk\303\245rForlengelseDump.java" +++ "b/web/src/main/java/no/nav/k9/sak/web/app/tjenester/forvaltning/dump/vilk\303\245r/Vilk\303\245rForlengelseDump.java" @@ -15,12 +15,12 @@ import jakarta.enterprise.inject.Any; import jakarta.enterprise.inject.Instance; import jakarta.inject.Inject; -import no.nav.folketrygdloven.kalkulus.mappers.JsonMapper; import no.nav.k9.sak.behandling.BehandlingReferanse; import no.nav.k9.sak.behandlingskontroll.FagsakYtelseTypeRef; import no.nav.k9.sak.behandlingslager.behandling.Behandling; import no.nav.k9.sak.behandlingslager.behandling.vilkår.Vilkårene; import no.nav.k9.sak.behandlingslager.behandling.vilkår.periode.VilkårPeriode; +import no.nav.k9.sak.domene.typer.tid.JsonObjectMapper; import no.nav.k9.sak.perioder.ForlengelseTjeneste; import no.nav.k9.sak.perioder.VilkårsPerioderTilVurderingTjeneste; import no.nav.k9.sak.vilkår.VilkårTjeneste; @@ -35,7 +35,7 @@ @FagsakYtelseTypeRef(OPPLÆRINGSPENGER) public class VilkårForlengelseDump implements DebugDumpBehandling { - private final ObjectWriter objectWriter = JsonMapper.getMapper().writerWithDefaultPrettyPrinter(); + private final ObjectWriter objectWriter = JsonObjectMapper.getMapper().writerWithDefaultPrettyPrinter(); private Instance tjeneste; private VilkårTjeneste vilkårTjeneste; diff --git "a/ytelse-ung/src/main/java/no/nav/k9/sak/ytelse/ung/beregning/LagGrunnbel\303\270pTidslinjeTjeneste.java" "b/ytelse-ung/src/main/java/no/nav/k9/sak/ytelse/ung/beregning/LagGrunnbel\303\270pTidslinjeTjeneste.java" index 72df4f18a1..86ba458542 100644 --- "a/ytelse-ung/src/main/java/no/nav/k9/sak/ytelse/ung/beregning/LagGrunnbel\303\270pTidslinjeTjeneste.java" +++ "b/ytelse-ung/src/main/java/no/nav/k9/sak/ytelse/ung/beregning/LagGrunnbel\303\270pTidslinjeTjeneste.java" @@ -1,9 +1,6 @@ package no.nav.k9.sak.ytelse.ung.beregning; import java.math.BigDecimal; -import java.time.LocalDate; -import java.util.HashSet; -import java.util.Set; import jakarta.enterprise.context.Dependent; import jakarta.inject.Inject; @@ -27,43 +24,7 @@ public class LagGrunnbeløpTidslinjeTjeneste { * @return Tidslinje med grunnbeløp */ public LocalDateTimeline lagGrunnbeløpTidslinjeForPeriode(LocalDateTimeline tidslinjeTilVurdering) { - var grunnbeløpsdatoer = finnGrunnbeløpsdatoer(tidslinjeTilVurdering); - - var grunnbeløpTidslinje = grunnbeløpsdatoer.stream() - .map(d -> grunnbeløpTjeneste.hentGrunnbeløp(d)) - .map(g -> new LocalDateTimeline<>(g.getPeriode().getFomDato(), g.getPeriode().getTomDato(), BigDecimal.valueOf(g.getVerdi()))) - .reduce(LocalDateTimeline::crossJoin) - .orElse(LocalDateTimeline.empty()); - if (grunnbeløpTidslinje.isEmpty()) { - throw new IllegalStateException("Grunnbeløpstidslinjen var tom. Dette skal ikke skje."); - } - return grunnbeløpTidslinje.intersection(tidslinjeTilVurdering); - } - - /** - * Finner datoer der vi skal spørre om grunnbeløp. Antar endring av g-verdi 1. mai hvert år. - * - * @param periodeTidslinje Perioder som skal vurderes - * @return Datoer for endring av grunnbeløp i periode - */ - // TODO: det er mer robust å spørre om tidslinje med G-verdier for hele perioden (i tilfelle det skulle endres på andre datoer) - private static Set finnGrunnbeløpsdatoer(LocalDateTimeline periodeTidslinje) { - var grunnbeløpsdatoer = new HashSet(); - periodeTidslinje.toSegments().forEach(p -> { - if (p.getFom().isAfter(LocalDate.now())) { - grunnbeløpsdatoer.add(LocalDate.now()); - } else { - var startDato = p.getFom().getMonthValue() < 5 ? p.getFom().withYear(p.getFom().getYear() - 1).withMonth(5).withDayOfMonth(1) : p.getFom().withMonth(5).withDayOfMonth(1); - var sluttDato = p.getTom().isBefore(LocalDate.now()) ? p.getTom() : LocalDate.now(); - while (!startDato.isAfter(sluttDato)) { - grunnbeløpsdatoer.add(startDato); - startDato = startDato.plusYears(1); - } - - } - }); - return grunnbeløpsdatoer; + return grunnbeløpTjeneste.hentGrunnbeløpTidslinje(tidslinjeTilVurdering); } - } diff --git a/ytelse-ung/src/test/java/no/nav/k9/sak/ytelse/ung/beregning/UngdomsytelseBeregnDagsatsTest.java b/ytelse-ung/src/test/java/no/nav/k9/sak/ytelse/ung/beregning/UngdomsytelseBeregnDagsatsTest.java index 826ef94b31..621b6c6231 100644 --- a/ytelse-ung/src/test/java/no/nav/k9/sak/ytelse/ung/beregning/UngdomsytelseBeregnDagsatsTest.java +++ b/ytelse-ung/src/test/java/no/nav/k9/sak/ytelse/ung/beregning/UngdomsytelseBeregnDagsatsTest.java @@ -11,25 +11,29 @@ import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import jakarta.inject.Inject; import no.nav.fpsak.tidsserie.LocalDateTimeline; -import no.nav.k9.sak.domene.typer.tid.DatoIntervallEntitet; +import no.nav.k9.felles.testutilities.cdi.CdiAwareExtension; +import no.nav.k9.sak.db.util.JpaExtension; import no.nav.k9.sak.grunnbeløp.GrunnbeløpTjeneste; import no.nav.k9.sak.ytelse.ung.beregning.barnetillegg.LagAntallBarnTidslinje; import no.nav.k9.sak.ytelse.ung.beregning.barnetillegg.LagBarnetilleggTidslinje; +@ExtendWith(JpaExtension.class) +@ExtendWith(CdiAwareExtension.class) class UngdomsytelseBeregnDagsatsTest { private UngdomsytelseBeregnDagsats tjeneste; - private GrunnbeløpTjeneste grunnbeløpTjeneste = mock(GrunnbeløpTjeneste.class); + @Inject + private GrunnbeløpTjeneste grunnbeløpTjeneste; private LagAntallBarnTidslinje lagAntallBarnTidslinje = mock(LagAntallBarnTidslinje.class); @BeforeEach void setUp() { tjeneste = new UngdomsytelseBeregnDagsats(new LagGrunnbeløpTidslinjeTjeneste(grunnbeløpTjeneste), new LagBarnetilleggTidslinje(lagAntallBarnTidslinje)); - when(grunnbeløpTjeneste.hentGrunnbeløp(LocalDate.of(2023,5,1))).thenReturn(new no.nav.k9.sak.grunnbeløp.Grunnbeløp(100000, DatoIntervallEntitet.fraOgMedTilOgMed(LocalDate.of(2023,5,1), LocalDate.of(2024,4,30)))); - when(grunnbeløpTjeneste.hentGrunnbeløp(LocalDate.of(2024,5,1))).thenReturn(new no.nav.k9.sak.grunnbeløp.Grunnbeløp(124028, DatoIntervallEntitet.fraOgMedTilOgMed(LocalDate.of(2024,5,1), LocalDate.MAX))); when(lagAntallBarnTidslinje.lagAntallBarnTidslinje(any())).thenReturn(LocalDateTimeline.empty()); } @@ -48,8 +52,8 @@ void setUp() { assertThat(first.getFom()).isEqualTo(fom); assertThat(first.getTom()).isEqualTo(tom); assertThat(first.getValue().grunnbeløpFaktor().compareTo(BigDecimal.valueOf(1.33333))).isEqualTo(0); - assertThat(first.getValue().grunnbeløp().compareTo(BigDecimal.valueOf(100000))).isEqualTo(0); - assertThat(first.getValue().dagsats().compareTo(BigDecimal.valueOf(512.82))).isEqualTo(0); + assertThat(first.getValue().grunnbeløp().compareTo(BigDecimal.valueOf(118620))).isEqualTo(0); + assertThat(first.getValue().dagsats().compareTo(BigDecimal.valueOf(608.31))).isEqualTo(0); } @@ -67,13 +71,13 @@ void setUp() { var iterator = segmenter.iterator(); var first = iterator.next(); assertThat(first.getFom()).isEqualTo(fom); - assertThat(first.getTom()).isEqualTo(LocalDate.of(2024,4, 30)); + assertThat(first.getTom()).isEqualTo(LocalDate.of(2024, 4, 30)); assertThat(first.getValue().grunnbeløpFaktor().compareTo(BigDecimal.valueOf(1.33333))).isEqualTo(0); - assertThat(first.getValue().grunnbeløp().compareTo(BigDecimal.valueOf(100000))).isEqualTo(0); - assertThat(first.getValue().dagsats().compareTo(BigDecimal.valueOf(512.82))).isEqualTo(0); + assertThat(first.getValue().grunnbeløp().compareTo(BigDecimal.valueOf(118620))).isEqualTo(0); + assertThat(first.getValue().dagsats().compareTo(BigDecimal.valueOf(608.31))).isEqualTo(0); var second = iterator.next(); - assertThat(second.getFom()).isEqualTo(LocalDate.of(2024,5, 1)); + assertThat(second.getFom()).isEqualTo(LocalDate.of(2024, 5, 1)); assertThat(second.getTom()).isEqualTo(tom); assertThat(second.getValue().grunnbeløpFaktor().compareTo(BigDecimal.valueOf(1.33333))).isEqualTo(0); assertThat(second.getValue().grunnbeløp().compareTo(BigDecimal.valueOf(124028))).isEqualTo(0); @@ -98,8 +102,8 @@ void setUp() { assertThat(first.getFom()).isEqualTo(fom); assertThat(first.getTom()).isEqualTo(førsteDagMedHøySats.minusDays(1)); assertThat(first.getValue().grunnbeløpFaktor().compareTo(BigDecimal.valueOf(1.33333))).isEqualTo(0); - assertThat(first.getValue().grunnbeløp().compareTo(BigDecimal.valueOf(100000))).isEqualTo(0); - assertThat(first.getValue().dagsats().compareTo(BigDecimal.valueOf(512.82))).isEqualTo(0); + assertThat(first.getValue().grunnbeløp().compareTo(BigDecimal.valueOf(118620))).isEqualTo(0); + assertThat(first.getValue().dagsats().compareTo(BigDecimal.valueOf(608.31))).isEqualTo(0); var second = iterator.next(); assertThat(second.getFom()).isEqualTo(førsteDagMedHøySats); @@ -128,8 +132,8 @@ void setUp() { var sisteDagMedLavSats = tjuefemårsdag.with(TemporalAdjusters.lastDayOfMonth()); assertThat(first.getTom()).isEqualTo(sisteDagMedLavSats); assertThat(first.getValue().grunnbeløpFaktor().compareTo(BigDecimal.valueOf(1.33333))).isEqualTo(0); - assertThat(first.getValue().grunnbeløp().compareTo(BigDecimal.valueOf(100000))).isEqualTo(0); - assertThat(first.getValue().dagsats().compareTo(BigDecimal.valueOf(512.82))).isEqualTo(0); + assertThat(first.getValue().grunnbeløp().compareTo(BigDecimal.valueOf(118620))).isEqualTo(0); + assertThat(first.getValue().dagsats().compareTo(BigDecimal.valueOf(608.31))).isEqualTo(0); var second = iterator.next(); assertThat(second.getFom()).isEqualTo(sisteDagMedLavSats.plusDays(1)); @@ -140,5 +144,4 @@ void setUp() { } - }