Suppression log
This commit is contained in:
parent
9dfcb01671
commit
2bf5f3c58d
@ -114,8 +114,6 @@ function infogreffe_requetexml($siren, $idCommande, $type, $vecteur, $option)
|
||||
*/
|
||||
$ref = explode('-', $option);
|
||||
$num_actes = explode('|', $ref[7]);
|
||||
$firephp->log($ref, 'ref');
|
||||
$firephp->log($num_actes, 'ref');
|
||||
$commande->addChild('greffe',$ref[2]);
|
||||
$commande->addChild('dossier_millesime', $ref[3]);
|
||||
$commande->addChild('dossier_statut', $ref[4]);
|
||||
@ -246,7 +244,6 @@ function infogreffe_parsexml_actes($xml)
|
||||
|
||||
//Tri suivant la date d'acte ou de depot
|
||||
krsort($actes);
|
||||
$firephp->log($actes, 'actes');
|
||||
return $actes;
|
||||
}
|
||||
|
||||
@ -410,8 +407,6 @@ function infogreffe_format_actes($actes)
|
||||
if(!empty($acte['date_acte'])){ $date = WDate::dateT('Y-m-d', 'Ymd', $acte['date_acte']); }
|
||||
else { $date = WDate::dateT('Y-m-d', 'Ymd', $depot['date_depot']); }
|
||||
|
||||
$firephp->log($ref, 'ref');
|
||||
|
||||
//Suppression du mode courrier si le mode telechargement existe
|
||||
$modes = $acte['mode_diffusion'];
|
||||
if(is_array($modes) && !$file_exist)
|
||||
@ -455,7 +450,6 @@ function infogreffe_format_actes($actes)
|
||||
$tabActes[$key]['date_depot'] = WDate::dateT('Y-m-d', 'd/m/Y', $depot['date_depot']);
|
||||
|
||||
}
|
||||
$firephp->log($tabActes, 'actes');
|
||||
return $tabActes;
|
||||
}
|
||||
|
||||
@ -537,7 +531,6 @@ function infogreffe_format_bilans($bilans)
|
||||
{
|
||||
$mode = 'courrier';
|
||||
}
|
||||
$firephp->log($mode,$bilan['millesime']);
|
||||
//Valeurs de retour
|
||||
$tabBilans[$key]['millesime'] = $bilan['millesime'];
|
||||
$tabBilans[$key]['date_cloture'] = $bilan['date_cloture'];
|
||||
@ -564,7 +557,6 @@ function getGreffeActes($siren, $typeCommande = '', $ref = '', $idCommande = 0)
|
||||
$result = array();
|
||||
|
||||
if(empty($typeCommande)) $typeCommande = 'XL';
|
||||
$firephp->log($typeCommande,'typeCommande');
|
||||
$type = 'AC'; // Type actes
|
||||
|
||||
if($typeCommande=='XL')
|
||||
@ -592,7 +584,6 @@ function getGreffeActes($siren, $typeCommande = '', $ref = '', $idCommande = 0)
|
||||
elseif($typeCommande=='T')
|
||||
{
|
||||
$option = explode('-', $ref);
|
||||
FB::log($option, 'option');
|
||||
$num_actes = explode('|', $ref[7]);
|
||||
if(is_array($num_actes) && count($num_actes)>1){
|
||||
$fichierOption = $ref[0].'-'.$ref[1].'-'.$ref[2].'-'.
|
||||
@ -601,15 +592,11 @@ function getGreffeActes($siren, $typeCommande = '', $ref = '', $idCommande = 0)
|
||||
$fichierOption = $ref;
|
||||
}
|
||||
$fichier = INFOGREFFE_PATH.$type.'-'.$siren.'-'.$fichierOption.'.xml';
|
||||
FB::log($fichier);
|
||||
if( !file_exists($fichier) || infogreffe_filetimeover($fichier) ){
|
||||
$firephp->info('Mode telechargement');
|
||||
$xmlRequete = infogreffe_requetexml($siren, $idCommande, $type, $typeCommande, $ref);
|
||||
$xmlReponse = infogreffe_getproduitsxml($xmlRequete);
|
||||
file_put_contents($fichier, $xmlReponse);
|
||||
|
||||
$firephp->log($xmlRequete, 'Telechargement requete xml');
|
||||
$firephp->log($xmlReponse, 'Telechargement reponse xml');
|
||||
}else{
|
||||
$xmlReponse = file_get_contents($fichier);
|
||||
}
|
||||
@ -638,7 +625,6 @@ function getGreffeActes($siren, $typeCommande = '', $ref = '', $idCommande = 0)
|
||||
$ref = $acte['type_acte'].'-'.$date.'-'.$num_gest.'-'.$acte['num_acte'];
|
||||
|
||||
$fichier = infogreffe_acte_filename($siren, $ref);
|
||||
$firephp->log($fichier, 'fichier');
|
||||
|
||||
//Si le fichier existe, on modifie l'url
|
||||
if( file_exists(PATH_DATA.'/pdf/'.$fichier) ){
|
||||
@ -844,7 +830,6 @@ function getGreffeBilans($siren, $typeCommande = '', $ref = '', $idCommande = 0)
|
||||
//On génére un idCommande suivant la valeur en bdd
|
||||
$xmlRequete = infogreffe_requetexml($siren, $idCommande, $type, $typeCommande, $ref);
|
||||
$xmlReponse = infogreffe_getproduitsxml($xmlRequete);
|
||||
FB::log($xmlReponse,'REPONSE');
|
||||
}
|
||||
//Default mode erreur
|
||||
else
|
||||
@ -906,7 +891,6 @@ function infogreffe_acte_ref($acte, $depot, $multi = false)
|
||||
//Génération date (date_acte peut être vide)
|
||||
if(!empty($acte['date_acte'])){ $date = WDate::dateT('Y-m-d', 'Ymd', $acte['date_acte']); }
|
||||
else { $date = WDate::dateT('Y-m-d', 'Ymd', $depot['date_depot']); }
|
||||
$firephp->log($acte['type_acte'],'type_acte');
|
||||
return $acte['type_acte'].'-'.$date.'-'.$num_gest.'-'.$num_acte;
|
||||
}
|
||||
else
|
||||
@ -959,7 +943,6 @@ function infogreffe_dl($fichier, $url)
|
||||
$path = PATH_DATA.'/pdf/';
|
||||
if(!file_exists($path.$fichier) || !filesize($path.$fichier)>2000)
|
||||
{
|
||||
$firephp->log($url, 'url');
|
||||
$page = getUrl($url, '', '', '', false, '', '',0,1);
|
||||
if (substr($page['body'],0,4)!='%PDF')
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user