Correction typo
This commit is contained in:
parent
8f6c0b3f90
commit
08636f77aa
@ -2169,7 +2169,7 @@ class Interne extends WsScore
|
||||
* @param InfosDemandeur $infosDemandeur
|
||||
* @return CmdAssoReturn
|
||||
*/
|
||||
public function setCmdAsso( $infoCommande, $infosDemandeur )
|
||||
public function setCmdAsso( $infosCommande, $infosDemandeur )
|
||||
{
|
||||
$this->authenticate();
|
||||
$this->permission('actes');
|
||||
@ -2178,9 +2178,9 @@ class Interne extends WsScore
|
||||
|
||||
$iDb = new WDB();
|
||||
|
||||
$siren = $infoCommande->siren;
|
||||
$idEntreprise = intval($infoCommande->idEntreprise);
|
||||
$assoNom = $infoCommande->raisonSociale;
|
||||
$siren = $infosCommande->siren;
|
||||
$idEntreprise = intval($infosCommande->idEntreprise);
|
||||
$assoNom = $infosCommande->raisonSociale;
|
||||
debugLog('I',"commandeAsso pour $assoNom ($siren) début",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
|
||||
|
||||
$iInsee = new MInsee();
|
||||
@ -2201,7 +2201,7 @@ class Interne extends WsScore
|
||||
'siren' => $siren,
|
||||
'refUtilisateur' => $infosDemandeur->reference,
|
||||
'refDocument' => serialize($infosDemandeur),
|
||||
'refCommande' => serialize($infoCommande),
|
||||
'refCommande' => serialize($infosCommande),
|
||||
'dateCommande' => DATETIME,
|
||||
);
|
||||
|
||||
@ -2252,7 +2252,7 @@ class Interne extends WsScore
|
||||
{
|
||||
@sendMail('production@scores-decisions.com', 'asso@scores-decisions.com',
|
||||
"Commande de statuts association pour $assoNom ($siren)",
|
||||
"Association :".EOL.print_r($infoCommande, true).EOL.EOL.
|
||||
"Association :".EOL.print_r($infosCommande, true).EOL.EOL.
|
||||
"Demandeur:".EOL.print_r($infosDemandeur, true).EOL.EOL.
|
||||
"Réponse RefAsso en $duree secondes :".EOL.print_r($page, true)
|
||||
);
|
||||
@ -2270,7 +2270,7 @@ class Interne extends WsScore
|
||||
debugLog('I',"commandeAsso pour $assoNom ($siren) fin",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
|
||||
} else {
|
||||
@sendMail('production@scores-decisions.com', 'asso@scores-decisions.com',
|
||||
"ERREUR lors de lommande de statuts association pour $assoNom ($siren)", "Association :".EOL.print_r($infoCommande, true).EOL.EOL.
|
||||
"ERREUR lors de lommande de statuts association pour $assoNom ($siren)", "Association :".EOL.print_r($infosCommande, true).EOL.EOL.
|
||||
"Demandeur:".EOL.print_r($infosDemandeur, true).EOL.EOL.
|
||||
"Réponse RefAsso en $duree secondes :".EOL.print_r($page, true));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user