From 1a6b645693121af040e36f4552fa5cf3751d2f21 Mon Sep 17 00:00:00 2001 From: ma0048 Date: Mon, 1 Aug 2022 10:49:17 +0200 Subject: [PATCH] pausefehlt bei 6.5 stunden hinzugefuegt --- include/zeitaufzeichnung.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/zeitaufzeichnung.class.php b/include/zeitaufzeichnung.class.php index fd007d1ad..7f46d763a 100644 --- a/include/zeitaufzeichnung.class.php +++ b/include/zeitaufzeichnung.class.php @@ -940,7 +940,7 @@ or not exists $tagessaldo = $tagessaldo - $pausesumme; //check if blocking error - if (($tagessaldo > 19800 && $pausesumme < 1800) || ($tagessaldo > 18000 && $tagessaldo < 19800 && $pausesumme < $tagessaldo - 18000)) + if (($tagessaldo >= 19800 && $pausesumme < 1800) || ($tagessaldo > 18000 && $tagessaldo < 19800 && $pausesumme < $tagessaldo - 18000)) { $blockingError = true; }