Merge branch 'fronkdev' into 'master'

Fixed to_date in Invoice/Index Filer

See merge request fronk/thetool!1065
This commit is contained in:
Frank Schubert
2025-03-04 19:42:47 +00:00

View File

@@ -126,7 +126,7 @@ class InvoiceController extends mfBaseController {
if(array_key_exists("invoice_date_to", $filter)) {
if($filter["invoice_date_to"]) {
$to = Layout::dateToInt($filter["invoice_date_to"]." 23:59:59");
$to = Layout::dateToInt($filter["invoice_date_to"])." 23:59:59";
$new_filter["invoice_date<="] = $to;
}
unset($filter["invoice_date_to"]);