Skip to content

Commit

Permalink
Feature/knjizenja fix (#94)
Browse files Browse the repository at this point in the history
* Dodata podrska za filtriranje po ugnjezdenim entitetima

* Dodat komentar GlavnaKnjigaResponse
  • Loading branch information
gojkovicmatija99 authored Apr 9, 2022
1 parent 953e1b5 commit b23c9c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/rs/raf/demo/converter/KontoConverter.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public Page<GlavnaKnjigaResponse> convert(List<Konto> kontoList) {
konto.getDuguje(),
konto.getDuguje() - konto.getPotrazuje(),
konto.getKontnaGrupa().getNazivKonta(),
konto.getKontnaGrupa().getBrojKonta())
konto.getKontnaGrupa().getBrojKonta(),
konto.getKnjizenje().getKomentar())
).collect(Collectors.toList()));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ public class GlavnaKnjigaResponse {
Double saldo;
String nazivKonta;
String konto;
String komentar;
}

0 comments on commit b23c9c1

Please sign in to comment.