Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 1287 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1287 Rev 1288
Line 316... Line 316...
316
		$this->infosImages = $this->Bdd->recupererTous($requete);
316
		$this->infosImages = $this->Bdd->recupererTous($requete);
317
	}
317
	}
Line 318... Line 318...
318
 
318
 
319
	private function formerRequeteConditions($numNomListe) {
319
	private function formerRequeteConditions($numNomListe) {
320
		$refTax = $this->parametres['referentiel'];
320
		$refTax = $this->parametres['referentiel'];
321
		$where[] = " co.transmission = 1 AND co.nom_ret_nn IN ($numNomListe) ";
321
		$where[] = "  co.nom_ret_nn IN ($numNomListe) ";
322
		// exclusion des noms à déterminer, douteux ou plantnet-mobile
322
		// exclusion des noms à déterminer, douteux ou plantnet-mobile
323
		$where[] = " ((co.mots_cles_texte not like '%aDeterminer%' AND co.mots_cles_texte not like '%plantnet-mobile%') OR co.mots_cles_texte IS null) ";
-
 
324
		$where[] = " (co.certitude not in ('aDeterminer', 'douteux', 'douteuse') OR certitude IS NULL) ";
323
		$where[] = " ((co.mots_cles_texte not like '%aDeterminer%' AND co.mots_cles_texte not like '%plantnet-mobile%') OR co.mots_cles_texte IS null) ";
Line 325... Line 324...
325
		$where[] = " co.nom_referentiel LIKE ".$this->Bdd->proteger($refTax."%").' ';
324
		$where[] = " co.nom_referentiel LIKE ".$this->Bdd->proteger($refTax."%").' ';
326
		
325