Suppression des mail d'erreur lorsque aucun siren de groupe
This commit is contained in:
parent
ff4f25e96e
commit
1538695598
@ -1,6 +1,9 @@
|
||||
<div id="center">
|
||||
<h1>Informations Groupe</h1>
|
||||
<?php if ($result===false) {?>
|
||||
Aucune information disponible.
|
||||
<div class="paragraph">Aucune information disponible.</div>
|
||||
<?php } elseif (is_string($result)) { ?>
|
||||
<div class="paragraph"><?=$result?></div>
|
||||
<?php } else {?>
|
||||
<style>
|
||||
table.secteurs { width:100%; border-collapse:collapse; }
|
||||
@ -8,8 +11,6 @@ table.secteurs th { border:1px solid; padding:5px; font-weight:bold;}
|
||||
table.secteurs td { border:1px solid; padding:5px; }
|
||||
</style>
|
||||
|
||||
<h1>Informations Groupe</h1>
|
||||
|
||||
<h2>Groupe <?=$this->result->grpNom?></h2>
|
||||
<div class="paragraph">
|
||||
<table>
|
||||
|
@ -42,8 +42,12 @@ class WsScores
|
||||
$reponse = $client->getGroupeInfos($params);
|
||||
return $reponse->getGroupeInfosResult;
|
||||
} catch (SoapFault $fault) {
|
||||
$this->soaperror(__FUNCTION__, $fault, $client->__getLastRequest(), $client->__getLastResponse());
|
||||
return false;
|
||||
if ( in_array($fault->faultcode, array('Error')) ){
|
||||
return $fault->faultstring;
|
||||
} else {
|
||||
$this->soaperror(__FUNCTION__, $fault, $client->__getLastRequest(), $client->__getLastResponse());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user