$p){ if ( $p=='-' ){ array_splice($perimetreVente, $k, 1); } } if ( isset($perimetreVente) && count($perimetreVente)>0 ){ $tabJugement['even'] = array_merge( $tabJugement['even'], $perimetreVente); } //Liste établissements concernées if ( isset($etablissement5500) && count($etablissement5500)>0 ) { $countEtab = 0; $txtEtab = ''; foreach($etablissement5500 as $etab){ $txtEtab.= $etab; $countEtab++; if($countEtab>10) break; if( count($etablissement5500) > $countEtab ) { $txtEtab.=', '; } } if ( count($etablissement5500)>1 ){ $txt = 'Etablissement(s) concerné(s) : '; } else { $txt = 'Etablissement concerné : '; } if ( $tabJugement['comp']!='' ) { $tabJugement['comp'].= ' '.$txt.$txtEtab; } else { $tabJugement['comp'] = ' '.$txt.$txtEtab; } } //Sélection nic pour établissement concerné if ( isset($etabnic) && $etabnic != '' ) { if ( isset($txtEtab) && $txtEtab!='' ) { $tabJugement['comp'].= ', '.$etabnic; } else { $tabJugement['comp'].= 'Etablissement concerné : '.$etabnic; } } //Opposition à l'adresse if ( $tabJugement['oppo'] == 'adresse' ) { if ( $tabJugement['comp']!='' ) { $tabJugement['comp'].= ' Opposition : A l\'adresse du bien vendu'; } else { $tabJugement['comp'] = 'Opposition : A l\'adresse du bien vendu'; } } //Traitement des chaînes de caractères require 'i18n/cleanchar.php'; $tabSaisie = cleanstring_deep($tabSaisie); $tabJugement = cleanstring_deep($tabJugement); $tabActionna = cleanstring_deep($tabActionna); $tabParticip = cleanstring_deep($tabParticip); $tabInfos = array( 'identite' => $tabSaisie, 'jugement' => $tabJugement, 'actionnaire' => $tabActionna, 'participation' => $tabParticip, 'score' => $tabScore, ); $message = 'Erreur lors de l\'enregistrement !'; try { $O = $client->setInfosEntrep($siret, $idEntreprise, $tabInfos); if ($O['result']==1) $message = 'Informations mises à jour !'; } catch (SoapFault $fault) { require_once 'soaperror.php'; processSoapFault($client,$fault,$tabInfo); } $tabSaisie = array( 'source' => $tabJugement['source'], 'dateParution' => $tabJugement['dateParution'], 'numParution' => $tabJugement['numParution'] ); $_SESSION['saisie'] = $tabSaisie; return $message; }