Skip to content

Commit

Permalink
fix(services-list): search thirdparty by name
Browse files Browse the repository at this point in the history
  • Loading branch information
atm-irvine committed Jan 14, 2025
1 parent 6388f6e commit a34eaa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/contrat/services_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@
$sql .= " AND cd.date_fin_validite >= '".$db->idate($now)."'";
}
if ($search_name) {
$sql .= natural_search("c.ref", $search_name);
$sql .= natural_search("s.nom", $search_name);
}
if ($search_contract) {
$sql .= natural_search("c.ref", $search_contract);
Expand Down

0 comments on commit a34eaa0

Please sign in to comment.