Gegenbuchungen unter Haupttabelle, speichern angefangen.

This commit is contained in:
2026-04-28 17:40:05 +02:00
parent 1f0b9eb214
commit 0bbb656d22
+8 -4
View File
@@ -6,7 +6,13 @@ buchungenUI <- function(id) {
useShinyjs(), useShinyjs(),
h3("Hauptbuchungen"), h3("Hauptbuchungen"),
fluidRow( fluidRow(
column(8, reactableOutput(ns("buchungen_table"))), column(8, reactableOutput(ns("buchungen_table")),
hr(),
h3("Details / Gegenbuchungen"),
uiOutput(ns("details_table")) ,
),
column(4, column(4,
selectizeInput(ns("contact"), label = "Kontakt", choices = get_contact_choices(conn), selectizeInput(ns("contact"), label = "Kontakt", choices = get_contact_choices(conn),
@@ -35,9 +41,7 @@ buchungenUI <- function(id) {
) )
), ),
hr(),
h3("Details / Gegenbuchungen"),
uiOutput(ns("details_table")) ,