Till Brehm
2013-12-02 332ae547db7ffce8b4de5da14eb1490414e06afc
Improved client select field in domain input form of the client module.
1 files modified
3 ■■■■ changed files
interface/web/client/domain_edit.php 3 ●●●● patch | view | raw | blame | history
interface/web/client/domain_edit.php
@@ -69,7 +69,8 @@
        if($_SESSION["s"]["user"]["typ"] == 'admin') {
            // Getting Clients of the user
            $sql = "SELECT groupid, name FROM sys_group WHERE client_id > 0 ORDER BY name";
            //$sql = "SELECT groupid, name FROM sys_group WHERE client_id > 0 ORDER BY name";
            $sql = "SELECT sys_group.groupid, sys_group.name, CONCAT(IF(client.company_name != '', CONCAT(client.company_name, ' :: '), ''), client.contact_name, ' (', client.username, IF(client.customer_no != '', CONCAT(', ', client.customer_no), ''), ')') as contactname FROM sys_group, client WHERE sys_group.client_id = client.client_id AND sys_group.client_id > 0 ORDER BY sys_group.name";
            $clients = $app->db->queryAllRecords($sql);
            $client_select = '';
            if($_SESSION["s"]["user"]["typ"] == 'admin') $client_select .= "<option value='0'></option>";