Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TFP-5554: Rydder bort gammel historikkinnslag koder. #7013

Merged
merged 4 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,6 @@ public class Historikkinnslag extends BaseCreateableEntitet {
@Column(name = "tittel")
private String tittel;

//TODO: Temp kolonne til bruk i migrering. Kan fjernes etter migrering fra tidligere tabell er utført
@Column(name = "migrert_fra_id")
private Long migrertFraId;

protected Historikkinnslag() {
}

Expand Down Expand Up @@ -84,10 +80,6 @@ public String getTittel() {
return tittel;
}

public Long getMigrertFraId() {
return migrertFraId;
}

@Override
public String toString() {
return "Historikkinnslag{" + "fagsakId=" + fagsakId + ", behandlingId=" + behandlingId + ", aktør=" + aktør + ", skjermlenkeType="
Expand Down Expand Up @@ -142,11 +134,6 @@ public Builder medTittel(String tittel) {
return this;
}

public Builder medMigrertFraId(Long migrertFraId) {
kladd.migrertFraId = migrertFraId;
return this;
}

public Builder medLinjer(List<HistorikkinnslagLinjeBuilder> linjer) {
internLinjer = new ArrayList<>(linjer.stream().filter(Objects::nonNull).toList()); // fraTilEquals kan legger til null objekter
return this;
Expand Down
Loading
Loading