Erreur à l'ouverture du fichier

This commit is contained in:
Michael RICOIS 2016-11-25 20:42:58 +01:00
parent a7aa4a03e1
commit 97a3ba82d5

View File

@ -14,19 +14,17 @@ require_once realpath(__DIR__ . '/../../vendor/autoload.php');
$application = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
try {
$opts = new Zend_Console_Getopt(
//Options
array(
'help|?' => "Aide.",
'id=s' => "Identifiant du traitement",
'file=s' => "Traitement manuel avec spécification du fichier",
'key=s' => "Liste des clés pour l'enrichissement",
'otherid=s' => "Utilise un autre id que SIREN/SIRET",
'reprise' => "Reprendre un fichier à la ligne n-1",
'ask' => "Interaction avec l'utilisateur lors d'une reprise manuelle",
'doublon=s' => "Option dédoublonnage par fichier",
)
);
//Options
$opts = new Zend_Console_Getopt(array(
'help|?' => "Aide.",
'id=s' => "Identifiant du traitement",
'file=s' => "Traitement manuel avec spécification du fichier",
'key=s' => "Liste des clés pour l'enrichissement",
'otherid=s' => "Utilise un autre id que SIREN/SIRET",
'reprise' => "Reprendre un fichier à la ligne n-1",
'ask' => "Interaction avec l'utilisateur lors d'une reprise manuelle",
'doublon=s' => "Option dédoublonnage par fichier",
));
$opts->parse();
} catch (Zend_Console_Getopt_Exception $e) {
$displayUsage = true;
@ -547,28 +545,34 @@ if (count($tabEntete)>0){
//Définition du fichier de sortie
if ( $opts->reprise ) {
$outFile = $c->profil->path->data.'/export/'.$commande->fichierOut;
$rowReprise = 0;
$fp = fopen($outFile, 'r+');
$fp = fopen($outFile, 'r+');
if ($fp === false) {
echo "Impossible d'ouvrir $outFile";
exit(1);
}
while (($data = fgetcsv($fp, 0, ',', '"')) !== FALSE) {
$rowReprise++;
}
} else {
$outFile = $c->profil->path->data.'/export/'.$file.'-'.date('YmdHis').'.csv';
//Ecriture de l'entete du fichier
$fp = fopen($outFile, 'w');
if (count($tabEnteteF)>0){
$fp = fopen($outFile, 'w');
if ($fp === false) {
echo "Impossible d'ouvrir $outFile";
exit(1);
}
if (count($tabEnteteF) > 0){
fputcsv($fp, $tabEnteteF, ',', '"');
}
//Mise à jour des éléments
if ($opts->id) {
$commandesM->update(array(
'dateStart'=>date('Y-m-d H:i:s'),
'fichierOut' => basename($outFile)),
"id = ".$commande->id);
'dateStart'=>date('Y-m-d H:i:s'),
'fichierOut' => basename($outFile)),
"id = ".$commande->id
);
}
}