small change

This commit is contained in:
Michael RICOIS 2013-10-24 19:23:38 +00:00
parent 9caa397d54
commit fac41f94c6
2 changed files with 3 additions and 4 deletions

View File

@ -193,7 +193,7 @@ foreach ($tabQueries as $declencheur=>$query)
} catch(Zend_Db_Adapter_Exception $e) {
echo $e->getMessage() . PHP_EOL;
//If the table exist an other scripts is running
$message.= "Lancement du calcul des scores ignoré $declencheur, vérifier qu'il y a bien eu un calcul récement!".PHP_EOL;
$message.= "Lancement du calcul des scores ignoré $declencheur, vérifier qu'il y a bien eu un calcul récemment!".PHP_EOL;
continue;
}
@ -257,8 +257,8 @@ foreach ($tabQueries as $declencheur=>$query)
//Arrêt de l'execution entre 4h30 ou 7h00
if ( date('Hi')*1>=430 && date('Hi')*1<=700 && !$opts->verbose ) break;
//Arrêt de l'execution à 18h30
if ( date('Hi')*1>=1830 && !$opts->verbose ) break;
//Arrêt de l'execution à 18h30 pour le déclencheur tout
if ( date('Hi')*1>=1830 && $opts->tout ) break;
// Arret sur indicateur maximum
if ( $opts->max && $iRow >= $opts->max) break;

View File

@ -148,7 +148,6 @@ if ($stock) {
$toInsert = $date->toString('yyyy-MM-dd');
echo date('Y/m/d - H:i:s') ." - jusqu'au $toInsert".EOL;
}
exit;
if ( $toInsert === null ) {
$nbRows=$iDb->select('bilans','DISTINCT siren',"dateInsert>='$lastInsert' $strSirenReprise ORDER BY siren ASC", false, MYSQL_ASSOC, true);
} else {