-
Notifications
You must be signed in to change notification settings - Fork 3
Feature/dashboard trivia ii #4266
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
Open
krharum
wants to merge
12
commits into
master
Choose a base branch
from
feature/dashboard-trivia-II
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 7 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
f0a0d5f
Legg til BestillingProgressDTO og forbedre DashboardService med feils…
krharum 4e0e2c7
Forbedre BestillingProgressDTO med korrekt JSON-format for ident og m…
krharum cbffc25
Oppdater BestillingProgressDTO for å bruke LocalDateTime og forbedre …
krharum 0ebfc3c
Legg til DashboardOversiktDTO og utvid DashboardService med metoder f…
krharum 594e95e
Forbedre DashboardService med håndtering av feil i OrdreResponseDTO o…
krharum 62f481d
Forbedre DashboardService med optimalisering av SQL-spørringer og for…
krharum a45b22b
Merge branch 'master' into feature/dashboard-trivia-II
krharum b5d7a70
Legg til metoder for å hente summert og detaljert feilstatus i Dashbo…
krharum 3c665f6
Refactor Dashboard components to remove unused status fields and simp…
krharum 7926289
Oppdatering etter review fra Copilot
krharum 883cbee
Refactor BestillingRepository to simplify query by removing unused te…
krharum a1edb2c
Fix formatting issue in BestillingProgressDTO by correcting whitespac…
krharum File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
58 changes: 58 additions & 0 deletions
58
apps/dolly-backend/src/main/java/no/nav/dolly/domain/dto/BestillingProgressDTO.java
This file contains hidden or 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,58 @@ | ||
| package no.nav.dolly.domain.dto; | ||
|
|
||
| import com.fasterxml.jackson.annotation.JsonInclude; | ||
| import lombok.AllArgsConstructor; | ||
| import lombok.Builder; | ||
| import lombok.Data; | ||
| import lombok.NoArgsConstructor; | ||
| import no.nav.dolly.domain.jpa.Testident.Master; | ||
|
|
||
| import java.io.Serializable; | ||
| import java.time.LocalDate; | ||
| import java.time.LocalDateTime; | ||
|
|
||
| @Data | ||
| @NoArgsConstructor | ||
| @AllArgsConstructor | ||
| @Builder | ||
| @JsonInclude(JsonInclude.Include.NON_NULL) | ||
| public class BestillingProgressDTO implements Serializable { | ||
|
|
||
| private LocalDateTime sistOppdatert; | ||
| private LocalDate bestillingDato; | ||
|
|
||
| private Long bestillingId; | ||
|
|
||
| private String ident; | ||
| private Master master; | ||
|
|
||
| private String aaregStatus; | ||
| private String arbeidsplassencvStatus; | ||
| private String arbeidssoekerregisteretStatus; | ||
| private String arenaforvalterStatus; | ||
| private String brregstubStatus; | ||
| private String dokarkivStatus; | ||
| private String etterlatteStatus; | ||
| private String feil; | ||
| private String fullmaktStatus; | ||
| private String histarkStatus; | ||
| private String inntektsmeldingStatus; | ||
| private String inntektstubStatus; | ||
| private String instdataStatus; | ||
| private String kelvinAapStatus; | ||
| private String kontoregisterStatus; | ||
| private String krrstubStatus; | ||
| private String medlStatus; | ||
| private String nomStatus; | ||
| private String pdlForvalterStatus; | ||
| private String pdlImportStatus; | ||
| private String pdlOrdreStatus; | ||
| private String pdlPersonStatus; | ||
| private String pensjonforvalterStatus; | ||
| private String sigrunstubStatus; | ||
| private String skattekortStatus; | ||
| private String skjermingsregisterStatus; | ||
| private String sykemeldingStatus; | ||
| private String udistubStatus; | ||
| private String yrkesskadeStatus; | ||
| } |
25 changes: 25 additions & 0 deletions
25
apps/dolly-backend/src/main/java/no/nav/dolly/domain/dto/DashboardOversiktDTO.java
This file contains hidden or 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 @@ | ||
| package no.nav.dolly.domain.dto; | ||
|
|
||
| import com.fasterxml.jackson.annotation.JsonIgnore; | ||
| import lombok.AllArgsConstructor; | ||
| import lombok.Builder; | ||
| import lombok.Data; | ||
| import lombok.NoArgsConstructor; | ||
|
|
||
| import java.time.Month; | ||
|
|
||
| @Data | ||
| @Builder | ||
| @NoArgsConstructor | ||
| @AllArgsConstructor | ||
| public class DashboardOversiktDTO { | ||
|
|
||
| @JsonIgnore | ||
| private String aarManed; | ||
|
|
||
| private Integer aar; | ||
| private Month maaned; | ||
| private Integer totaltAntallPersoner; | ||
| private Integer nye; | ||
| private Integer gjenopprettede; | ||
| } |
17 changes: 17 additions & 0 deletions
17
apps/dolly-backend/src/main/java/no/nav/dolly/domain/projection/OversiktFragment.java
This file contains hidden or 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,17 @@ | ||
| package no.nav.dolly.domain.projection; | ||
|
|
||
| import lombok.AllArgsConstructor; | ||
| import lombok.Builder; | ||
| import lombok.Data; | ||
| import lombok.NoArgsConstructor; | ||
|
|
||
| @Data | ||
| @Builder | ||
| @NoArgsConstructor | ||
| @AllArgsConstructor | ||
| public class OversiktFragment { | ||
|
|
||
| private String maaned; | ||
| private Long antall; | ||
| private String gjenopprettstatus; | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.