added CSV file generation for RML Billing

This commit is contained in:
Frank Schubert
2025-03-22 18:23:28 +01:00
parent 5ff67da367
commit 97c7a1dde5
4 changed files with 115 additions and 7 deletions

View File

@@ -208,7 +208,7 @@ class PreorderBillingInvoiceFile extends mfBaseModel {
if(array_key_exists("name", $filter)) {
$name = FronkDB::singleton()->escape($filter['name']);
if($name) {
$where .= " AND name='$name'";
$where .= " AND name LIKE '$name'";
}
}