-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1272 from navikt/svarbrev_handling
Add default svarbrev settings for AFP. Specify exception when setting…
- Loading branch information
Showing
3 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
src/main/resources/db/migration/V163__add_AFP_svarbrev_settings.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
INSERT INTO klage.svarbrev_settings (id, ytelse_id, behandlingstid_units, custom_text, should_send, created, modified, | ||
created_by, behandlingstid_unit_type, type_id, behandlingstid_unit_type_id) | ||
VALUES (gen_random_uuid(), '27', 12, null, false, now(), now(), 'SYSTEMBRUKER', 'WEEKS', '1', '1'); | ||
|
||
INSERT INTO klage.svarbrev_settings (id, ytelse_id, behandlingstid_units, custom_text, should_send, created, modified, | ||
created_by, behandlingstid_unit_type, type_id, behandlingstid_unit_type_id) | ||
VALUES (gen_random_uuid(), '27', 12, null, false, now(), now(), 'SYSTEMBRUKER', 'WEEKS', '2', '1'); | ||
|
||
INSERT INTO klage.svarbrev_settings_history (id, svarbrev_settings_id, ytelse_id, behandlingstid_units, custom_text, | ||
created, created_by, should_send, behandlingstid_unit_type, type_id, | ||
behandlingstid_unit_type_id) | ||
SELECT gen_random_uuid(), | ||
s.id, | ||
s.ytelse_id, | ||
s.behandlingstid_units, | ||
s.custom_text, | ||
s.modified, | ||
s.created_by, | ||
s.should_send, | ||
s.behandlingstid_unit_type, | ||
s.type_id, | ||
s.behandlingstid_unit_type_id | ||
FROM klage.svarbrev_settings s | ||
WHERE type_id IN ('1', '2') | ||
AND ytelse_id = '27'; |