Subversion Repositories eFlore/Applications.coel

Compare Revisions

Regard whitespace Rev 1585 → Rev 1586

/trunk/jrest/services/CoelExport.php
201,7 → 201,7
// Construction de la requĂȘte
$requete = 'SELECT '.(($this->distinct) ? 'DISTINCT' : '').' '.
' cc_id_collection, '.
' cc_nom, cs_nom, cc_ce_specimen_type, cc_description, cc_truk_periode_constitution, '.
' cc_nom, cc_cote, cs_nom, cc_ce_specimen_type, cc_description, cc_truk_periode_constitution, '.
' cc_truk_couverture_lieu, ccb_truk_etiquette_renseignement, ccb_truk_nature, '.
' ccb_truk_unite_base, ccb_ce_etat_general, ccb_specimen_fixation_pourcent, '.
' ccb_truk_specimen_fixation_methode, ccb_truk_etiquette_fixation_support, '.
233,6 → 233,7
foreach ($collections as $collection) {
$id_collection = $collection['cc_id_collection'];
$nom = $collection['cc_nom'];
$cote = $collection['cc_cote'];
$nom_structure = $collection['cs_nom'];
$specimen_type = $utilTruck->construireTxtListeOntologie($collection['cc_ce_specimen_type']);
$description = $collection['cc_description'];
252,6 → 253,7
$collection_affichage = array(
'id' => $id_collection,
'cote' => $cote,
'nom' => $nom,
'nom_structure' => $nom_structure,
'specimen_type' => $specimen_type,