Buchungen-popup funktioniert

This commit is contained in:
2026-02-24 11:17:17 +01:00
parent 32c0b8edb4
commit 622bdf0281
13 changed files with 304 additions and 48 deletions
+13
View File
@@ -0,0 +1,13 @@
read_accounts <- function(conn){
tbl(conn, "accounts")
}
get_account_choices <- function(conn) {
tbl(conn, "accounts") |>
select(id, konto) |>
collect() |>
arrange(konto) |>
(\(df) setNames(df$id, df$konto))()
}