Buchungen funktioniern mitsamt modal und laufendem saldo

This commit is contained in:
2026-03-09 15:41:08 +01:00
parent da524d4af5
commit 5cb4eb96e8
9 changed files with 182 additions and 163 deletions
+3 -3
View File
@@ -6,8 +6,8 @@ read_accounts <- function(conn){
get_account_choices <- function(conn) {
tbl(conn, "accounts") |>
select(id, konto) |>
select(id, account_name) |>
collect() |>
arrange(konto) |>
(\(df) setNames(df$id, df$konto))()
arrange(account_name) |>
(\(df) setNames(df$id, df$account_name))()
}