X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FttClientHelper.class.php;h=02014f1f56716a1ce848774d5c293794ce5f33f4;hb=da31afab09f45aa188f4a6a8c939715a80216992;hp=42eb128a8df68e4abe56d145d931843d3adad24e;hpb=caa61e7cf00098a2cd64d0d716abb2d6b09982e7;p=timetracker.git diff --git a/WEB-INF/lib/ttClientHelper.class.php b/WEB-INF/lib/ttClientHelper.class.php index 42eb128a..02014f1f 100644 --- a/WEB-INF/lib/ttClientHelper.class.php +++ b/WEB-INF/lib/ttClientHelper.class.php @@ -270,14 +270,17 @@ class ttClientHelper { static function getAssignedProjects($client_id) { global $user; + $mdb2 = getConnection(); + + $group_id = $user->getGroup(); + $org_id = $user->org_id; $result = array(); - $mdb2 = getConnection(); // Do a query with inner join to get assigned projects. $sql = "select p.id, p.name from tt_projects p". " inner join tt_client_project_binds cpb on (cpb.client_id = $client_id and cpb.project_id = p.id)". - " where p.group_id = ".$user->getGroup()." and p.status = 1 order by p.name"; + " where p.group_id = $group_id and p.org_id = $org_id and p.status = 1 order by p.name"; $res = $mdb2->query($sql); if (!is_a($res, 'PEAR_Error')) { while ($val = $res->fetchRow()) { @@ -291,15 +294,19 @@ class ttClientHelper { static function getClientsForUser() { global $user; + $mdb2 = getConnection(); + $user_id = $user->getUser(); + $group_id = $user->getGroup(); + $org_id = $user->org_id; $result = array(); - $mdb2 = getConnection(); - $sql = "select distinct c.id, c.name, c.projects from tt_user_project_binds upb - inner join tt_client_project_binds cpb on (cpb.project_id = upb.project_id) - inner join tt_clients c on (c.id = cpb.client_id and c.status = 1) - where upb.user_id = $user_id and upb.status = 1 order by upper(c.name)"; + $sql = "select distinct c.id, c.name, c.projects from tt_user_project_binds upb". + " inner join tt_client_project_binds cpb on (cpb.project_id = upb.project_id)". + " inner join tt_clients c on (c.id = cpb.client_id and c.status = 1)". + " where upb.user_id = $user_id and upb.group_id = $group_id and upb.org_id = $org_id". + " and upb.status = 1 order by upper(c.name)"; $res = $mdb2->query($sql); if (!is_a($res, 'PEAR_Error')) {