Skip to content

Commit 544e857

Browse files
author
Till Brehm
committed
#4218 Show full client name in domain list.
1 parent 28cf0d3 commit 544e857

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

interface/web/client/list/domain.list.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@
9292
'prefix' => "",
9393
'suffix' => "",
9494
'datasource' => array ( 'type' => 'SQL',
95-
'querystring' => 'SELECT a.groupid, a.name FROM sys_group a, domain b WHERE (a.groupid = b.sys_groupid) AND ({AUTHSQL-B}) ORDER BY name',
95+
//'querystring' => 'SELECT a.groupid, a.name FROM sys_group a, domain b WHERE (a.groupid = b.sys_groupid) AND ({AUTHSQL-B}) ORDER BY name',
96+
'querystring' => "SELECT sys_group.groupid,CONCAT(IF(client.company_name != '', CONCAT(client.company_name, ' :: '), ''), IF(client.contact_firstname != '', CONCAT(client.contact_firstname, ' '), ''), client.contact_name, ' (', client.username, IF(client.customer_no != '', CONCAT(', ', client.customer_no), ''), ')') as name FROM sys_group, client WHERE sys_group.groupid != 1 AND sys_group.client_id = client.client_id ORDER BY client.company_name, client.contact_name",
9697
'keyfield'=> 'groupid',
9798
'valuefield'=> 'name'
9899
),

0 commit comments

Comments
 (0)