Buchungs modal um actions erweitert

This commit is contained in:
2026-03-09 17:23:49 +01:00
parent 5cb4eb96e8
commit 1f903ea80e
8 changed files with 121 additions and 21 deletions
+4 -1
View File
@@ -5,9 +5,12 @@ read_accounts <- function(conn){
get_account_choices <- function(conn) {
tbl(conn, "accounts") |>
choices <- tbl(conn, "accounts") |>
select(id, account_name) |>
collect() |>
arrange(account_name) |>
(\(df) setNames(df$id, df$account_name))()
return(c("Kein Konto" = 0, choices))
}