Filter hinzugefügt

This commit is contained in:
2026-03-19 17:06:40 +01:00
parent daba64c83a
commit 70a2fe2526
7 changed files with 140 additions and 19 deletions
+2 -1
View File
@@ -16,7 +16,8 @@ read_buch_tabelle <- function(conn, trans_id = NULL){
left_join(projects, by = c("project_id" = "id")) |>
select(id, valuta, account_name, projektname, display_name, amount, entry_id) |>
collect() %>%
mutate(saldo = 0)
mutate(saldo = 0) %>%
arrange(valuta, entry_id)
}
read_posting <- function(conn, id){