Merge
This commit is contained in:
commit
82457a7f75
@ -67,12 +67,12 @@ require_once 'common/dates.php';
|
||||
function getRemoteFilename($infos)
|
||||
{
|
||||
$date = WDate::dateT('d/m/Y', 'Ymd', $infos['bilanCloture']);
|
||||
$file = $infos['siren'].'_'.
|
||||
$file = 'BS'.$infos['siren'].'_'.
|
||||
$infos['format'].$date.'_'.
|
||||
$infos['bilanDuree'].'_'.
|
||||
$infos['confidentiel'].'_'.
|
||||
$infos['utilisateurId'];
|
||||
|
||||
|
||||
if ($infos['env']=='PRD') {
|
||||
return $file;
|
||||
}
|
||||
@ -109,7 +109,7 @@ foreach ($listBilans as $infos)
|
||||
$filename = $infos['ref'].'-'.$infos['siren'];
|
||||
$extValide = array('pdf', 'tiff');
|
||||
$fileExist = false;
|
||||
foreach ($extValide as $ext) {
|
||||
foreach ($extValide as $ext) {
|
||||
if (file_exists(PATH_DATA.'/bilanclient/'.$filename.'.'.$ext)) {
|
||||
$fileExist = true;
|
||||
$tabFichier[] = array(
|
||||
@ -117,7 +117,7 @@ foreach ($listBilans as $infos)
|
||||
'localFile' => $filename.'.'.$ext,
|
||||
'remoteFile' => getRemoteFilename($infos).'.'.$ext,
|
||||
);
|
||||
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -141,7 +141,7 @@ foreach ($tabFichier as $fichier)
|
||||
$fichier['remoteFile'].
|
||||
" (".$fichier['ref'].")\n";
|
||||
if ( sendToFtp(PATH_DATA.'/bilanclient/'.$fichier['localFile'], $fichier['remoteFile']) ) {
|
||||
$bilans->setDateEnvoi($fichier['ref']);
|
||||
$bilans->setDateEnvoi($fichier['ref']);
|
||||
echo "Envoi terminé.\n";
|
||||
} else {
|
||||
echo "Erreur d'envoi !\n";
|
||||
|
Loading…
x
Reference in New Issue
Block a user