Buchungen-popup funktioniert
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
get_project_choices <- function(conn) {
|
||||
projekte <- tbl(conn, "projects") |>
|
||||
select(id, projektname) |>
|
||||
collect() |>
|
||||
arrange(projektname)
|
||||
|
||||
choices <- setNames(as.character(projekte$id), projekte$projektname)
|
||||
c("-" = "", choices)
|
||||
}
|
||||
Reference in New Issue
Block a user