70 lines
2.0 KiB
PHP
70 lines
2.0 KiB
PHP
<?php
|
|
header('Content-Type: text/html; charset=ISO-8859-1');
|
|
$q = (!$_GET["q"])? "" : strtolower($_GET["q"]);
|
|
if (!$q) return;
|
|
$firephp->log($q, 'q');
|
|
$separator = "|";
|
|
/** Utilisation du WS **/
|
|
$client = new SoapClient(null, array( 'trace' => 1,
|
|
'soap_version' => SOAP_1_1,
|
|
'location' => WEBSERVICE_URL,
|
|
'uri' => WEBSERVICE_URI,
|
|
'login' => $_SESSION['tabInfo']['login'],
|
|
'password' => $_SESSION['tabInfo']['password'],
|
|
// 'encoding' => 'UTF-8'
|
|
));
|
|
|
|
//raisonSociale adresse codePostal Ville Siege actif deb nbRep maxRep Pertinence AvecSIREN naf
|
|
try {
|
|
$O = $client->searchMandataires($q, array('V', 'N', 'H', 'A', 'M')); //array pour trier les types de mandataires
|
|
$tableResults = array();
|
|
$tableResults = $O['result'];
|
|
|
|
$firephp->log($tableResults, 'Result');
|
|
$firephp->log(count($tableResults), 'count');
|
|
|
|
$return = "A l'adresse du bien vendu";
|
|
$return.= $separator;
|
|
$return.= "adresse";
|
|
$return.= "\n";
|
|
print $return;
|
|
|
|
/*
|
|
REGEX Code Postal : ^(F-)?((2[A|B])|[0-9]{2})[0-9]{3}$
|
|
(?<!/BP /i) Ne pas avoir la présence de BP devant les 5 chiffres
|
|
*/
|
|
//Recherche des codes postaux
|
|
if( count($tableResults)>0 ){
|
|
$i=0;
|
|
foreach ($tableResults as $code=>$lib){
|
|
$tabResults[$i]['code'] = $code;
|
|
$tabResults[$i]['lib'] = $lib;
|
|
preg_match('/(?<!bp )((2[A|B])|[0-9]{2})[0-9]{3}( )/i', $lib, $matches);
|
|
$tabResults[$i]['cp'] = $matches[0];
|
|
$i++;
|
|
}
|
|
|
|
$firephp->log($tabResults,'tabResults');
|
|
foreach ($tabResults as $key => $row) {
|
|
$code[$key] = $row['code'];
|
|
$lib[$key] = $row['lib'];
|
|
$cp[$key] = $row['cp'];
|
|
}
|
|
//Classement du tableau
|
|
array_multisort($cp, SORT_NUMERIC, $tabResults);
|
|
$firephp->log($tabResults,'tabResults');
|
|
|
|
//Affichage des valeurs
|
|
foreach ($tabResults as $item){
|
|
$return = htmlspecialchars_decode($item['lib'],ENT_QUOTES);
|
|
$return.= $separator;
|
|
$return.= $item['code'];
|
|
$return.= "\n";
|
|
//Send String|Id for the autocompleter
|
|
print $return;
|
|
}
|
|
}
|
|
}catch (SoapFault $fault){
|
|
print 'Erreur durant la recherche';
|
|
}
|
|
?>
|