$sql.=" FROM ".MAIN_DB_PREFIX.$this->table_element." as te";
...
...
@@ -567,7 +575,7 @@ class CommonObject
if(!$this->isnolinkedbythird&&!$user->rights->societe->client->voir)$sql.=" AND sc.fk_user = ".$user->id;
if(!empty($filter))$sql.=" AND ".$filter;
if($this->ismultientitymanaged==2||($this->element!='societe'&&!$this->isnolinkedbythird&&!$user->rights->societe->client->voir))$sql.=' AND te.fk_soc = s.rowid';// If we need to link to societe to limit select to entity
if($this->ismultientitymanaged==1)$sql.=' AND te.entity IN (0,'.$conf->entity.')';
if($this->ismultientitymanaged==1)$sql.=' AND te.entity IN (0,'.($mc->share?$mc->share:$conf->entity).')';
//print $sql."<br>";
$result=$this->db->query($sql);
...
...
@@ -588,7 +596,7 @@ class CommonObject
if(!$this->isnolinkedbythird&&!$user->rights->societe->client->voir)$sql.=" AND sc.fk_user = ".$user->id;
if(isset($filter))$sql.=" AND ".$filter;
if($this->ismultientitymanaged==2||($this->element!='societe'&&!$this->isnolinkedbythird&&!$user->rights->societe->client->voir))$sql.=' AND te.fk_soc = s.rowid';// If we need to link to societe to limit select to entity
if($this->ismultientitymanaged==1)$sql.=' AND te.entity IN (0,'.$conf->entity.')';
if($this->ismultientitymanaged==1)$sql.=' AND te.entity IN (0,'.($mc->share?$mc->share:$conf->entity).')';
// Rem: Bug in some mysql version: SELECT MIN(rowid) FROM llx_socpeople WHERE rowid > 1 when one row in database with rowid=1, returns 1 instead of null