Umsatz-Suche funktioniert mit kommazahlen und negativ
This commit is contained in:
@@ -28,7 +28,7 @@ buchungenServer <- function(id, conn, r_global) {
|
||||
moduleServer(id, function(input, output, session) {
|
||||
ns <- session$ns
|
||||
|
||||
# ── Reactive Variablen ─────────────────────────────────────────────────────
|
||||
# ── Reactive Variablen ----
|
||||
postings_data <- reactiveVal(read_buch_tabelle(conn))
|
||||
details_data <- reactiveVal(NULL)
|
||||
selected_trans_id <- reactiveVal(NULL)
|
||||
@@ -41,7 +41,7 @@ buchungenServer <- function(id, conn, r_global) {
|
||||
"posting_modal", conn, selected_trans_id, modal_trigger
|
||||
)
|
||||
|
||||
# ── Filter ─────────────────────────────────────────────────────────────────
|
||||
# ── Filter ----
|
||||
aktiver_filter <- reactive(r_global$buchungen_filter)
|
||||
|
||||
gefilterte_daten <- reactive({
|
||||
@@ -64,7 +64,7 @@ buchungenServer <- function(id, conn, r_global) {
|
||||
details_data(NULL)
|
||||
})
|
||||
|
||||
# ── Sprung von anderem Modul ───────────────────────────────────────────────
|
||||
# ── Sprung von anderem Modul ----
|
||||
observeEvent(r_global$jump_to_entry_id, ignoreInit = TRUE, {
|
||||
req(r_global$jump_to_entry_id)
|
||||
t_id <- r_global$jump_to_entry_id
|
||||
@@ -88,7 +88,7 @@ buchungenServer <- function(id, conn, r_global) {
|
||||
r_global$jump_to_entry_id <- NULL
|
||||
})
|
||||
|
||||
# ── Haupttabelle rendern ───────────────────────────────────────────────────
|
||||
# ── Haupttabelle rendern ----
|
||||
output$buchungen_table <- renderReactable({
|
||||
reset_trigger()
|
||||
f_reactable(
|
||||
|
||||
Reference in New Issue
Block a user