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
+8
View File
@@ -0,0 +1,8 @@
get_contact_choices <- function(conn) {
tbl(conn, "contacts") |>
select(id, display_name) |>
collect() |>
arrange(display_name) |>
(\(df) setNames(df$id, df$display_name))()
}