Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 1483 → Rev 1484

/trunk/jrest/services/CelWidgetMapPoint.php
171,9 → 171,9
$this->construireWhereCommentaire().
$this->construireWherePhotosSeulement().
$this->construireWhereProjet().
$this->construireWhereTag().' GROUP BY id_coord';
//echo $requete;exit;
$this->construireWhereTag().
$this->construireWhereNombreDeJours().
' GROUP BY id_coord';
 
$resultats_emplacements = $this->executerRequete($requete);
$emplacements = $this->traiterEmplacements($resultats_emplacements, $this->compterObservations($params));
207,7 → 207,8
$this->construireWhereCommentaire().
$this->construireWherePhotosSeulement().
$this->construireWhereProjet().
$this->construireWhereTag();
$this->construireWhereTag().
$this->construireWhereNombreDeJours();
//echo $requete;exit;
$resultats_nb_obs = $this->executerRequete($requete);
return $resultats_nb_obs[0]['nb'];
390,6 → 391,7
$this->construireWherePhotosSeulement().
$this->construireWhereProjet().
$this->construireWhereTag().
$this->construireWhereNombreDeJours().
'ORDER BY nom_sel ASC '.
"LIMIT {$this->start},{$this->limit} ";
//echo $requete;exit;
542,6 → 544,7
$this->construireWherePhotosSeulement().
$this->construireWhereProjet().
$this->construireWhereTag().
$this->construireWhereNombreDeJours().
'ORDER BY nom_ret ASC '.
"LIMIT {$this->start},{$this->limit} ";
//$this->debug[] = $requete;
1036,6 → 1039,15
return $sql;
}
private function construireWhereNombreDeJours() {
$sql = null;
extract($this->parametres);
if (isset($nbjours) && !$this->etreNull($nbjours)) {
$sql = ' AND DATEDIFF(CURDATE(),co.date_creation) <= '.$this->proteger($nbjours).' ';
}
return $sql;
}
/**
* Traitement de $tag pour construction du filtre dans la requĂȘte
*/