Overhauled Address linking

This commit is contained in:
Frank Schubert
2022-06-29 17:16:14 +02:00
parent bbfc6c6eb5
commit 2d09924372
12 changed files with 637 additions and 74 deletions

View File

@@ -346,13 +346,13 @@ class AddressModel {
$where .= " AND Address.create_by IN (". implode(",",$create_by).")";
}
}
/*
if(array_key_exists("parents_only", $filter)) {
$po = $filter['parents_only'];
if($po) {
$where .= " AND parent_id IS NULL";
}
}
}*/
//var_dump($filter, $where);exit;
return $where;
}