batch/old/consolideTelFaxIdentite.php

122 lines
4.2 KiB
PHP
Raw Normal View History

2012-07-28 14:21:05 +02:00
#!/usr/bin/php -c/var/www/batch/config/php_batch_sd.ini
<?php
include_once(INCLUDE_PATH.'insee/classMInsee.php');
error_reporting(E_ALL ^ E_NOTICE);
$strInfoScript='Usage : '.basename($argv[0]). " [OPTION]
2013-06-19 10:24:49 +02:00
Reconsolidation de la table des t<EFBFBD>l<EFBFBD>phones/fax
2012-07-28 14:21:05 +02:00
Options :
2013-06-19 10:24:49 +02:00
-a Reconsolidation de toute la base des t<EFBFBD>l<EFBFBD>phones/fax
2012-07-28 14:21:05 +02:00
";
$semiManuel=$sansPropo=$toutes=$index=false;
$mInsee=new MInsee();
$argv=$_SERVER['argv'];
2013-06-19 10:24:49 +02:00
if ($_SERVER['argc']==1) $semiManuel=false; // Fonctionnement normal du script, c<>d : on sirene que en auto
2012-07-28 14:21:05 +02:00
else {
for ($i=1; isset($argv[$i]); $i++) {
if (substr($argv[$i],0,1)=='-') {
switch (substr($argv[$i],1,1)) {
case 's':
$semiManuel=true;
break;
case 'p':
$sansPropo=true;
break;
case 'a':
$toutes=true;
break;
case 'i':
$index=trim(substr($argv[$i],3));
break;
case '-':
case '?':
die($strInfoScript);
break;
default:
die('Option '. $argv[$i] . " inconnue !\n");
break;
}
}
}
}
2013-06-19 10:24:49 +02:00
echo date('Y/m/d - H:i:s') ." - DEBUT du programme de SIRENAGE des annonces mal siren<65>s du BODACC...".EOL;
2012-07-28 14:21:05 +02:00
$pertinence=false;
$nbRep=30;
$siege=0;
$tabTables=array(
/* array('db'=>'sugarcrm', 'table'=>'accounts', 'champRS'=>'name',
'champAdresse'=>'billing_address_street',
'champCP'=>'billing_address_postalcode',
'champVille'=>'billing_address_city',
'champSiren'=>'ticker_symbol',
'champSirenValide'=>'(ticker_symbol<30000 OR ticker_symbol IS NULL)AND deleted')*/
array('db'=>'jo', 'table'=>'bodacc_detail b LEFT JOIN bodacc_sirenage s ON s.idAnn = b.id AND s.siren = b.siren',
'champRS'=>'CONCAT(raisonSociale," ",nomCommercial," ",enseigne)',
'champAdresse'=>'adrLibVoie',
'champCP'=>'codePostal',
'champVille'=>'ville',
'champSiren'=>'b.siren',
'champNic'=>'nic',
'champSirenValide'=>'sirenValide',
'champNicValide'=>'nicValide'),
/* array('db'=>'sdv1', 'table'=>'sirenage', 'champRS'=>'concat( RAISON_SOCIALE , \' \' , RAISON_SOCIALE2 )',//REF NIC RAISON_SOCIALE2 ADRESSE2 NUM_VOIE ADRESSE3
'champAdresse'=>'ADRESSE',
'champCP'=>'CP',
'champVille'=>'VILLE',
'champSiren'=>'SIREN',
'champSirenValide'=>'SIREN'),*/
);
$iDbSel=new WDB('jo');
$iDbMaj=new WDB('insee');
2013-06-19 10:24:49 +02:00
echo date ('Y/m/d - H:i:s')." - DEBUT de la mise <20> jour des TEL/FAX des entreprises...".EOL;
2012-07-28 14:21:05 +02:00
$strDate=' AND dateUpdate>DATE_SUB(NOW(), INTERVAL 2 DAY) ';
if ($toutes)
$strDate='';
$nbTel=$iDbSel->select('infos_entrep', 'siren, tel, fax',"siren>1000 AND (tel<>'' OR fax<>'') $strDate", false,MYSQL_ASSOC,true);
2013-06-19 10:24:49 +02:00
echo date ('Y/m/d - H:i:s')." - Il y a $nbTel lignes de TEL/FAX <20> mettre <20> jour...".EOL;
2012-07-28 14:21:05 +02:00
$nbAvecMaj=$nbSansMaj=$nbErr=0;
while ($tabTel=$iDbSel->fetch(MYSQL_ASSOC)) {
$siren=$tabTel['siren'];
$tel=trim(strtr($tabTel['tel'], array('.'=>'', ' '=>'', '-'=>'')));
$fax=trim(strtr($tabTel['fax'], array('.'=>'', ' '=>'', '-'=>'')));
$tabTmp=$iDbMaj->select('identite', 'id, SIREN, NIC, ACTIF, SIEGE, TEL, FAX',"SIREN=$siren ORDER BY SIEGE DESC, ACTIF DESC LIMIT 0,1", false, MYSQL_ASSOC);
if (count($tabTmp)>0) {
$tabUpdate=array();
$etab=$tabTmp[0];
$id=$etab['id'];
$telPrev=$etab['TEL'];
$faxPrev=$etab['FAX'];
if ($telPrev=='' && $tel<>'') $tabUpdate['TEL']=$tel;
if ($faxPrev=='' && $fax<>'') $tabUpdate['FAX']=$fax;
if (count($tabUpdate)>0) {
$iDbMaj->update('identite',$tabUpdate, "id=$id");
2013-06-19 10:24:49 +02:00
echo date ('Y/m/d - H:i:s')." - Siren $siren, Tel $tel, Fax $fax : Mise <20> jour OK".EOL;
2012-07-28 14:21:05 +02:00
$nbAvecMaj++;
}
else {
$nbSansMaj++;
2013-06-19 10:24:49 +02:00
// echo date ('Y/m/d - H:i:s')." - Siren $siren, Tel $tel, Fax $fax : PAS de mise <20> jour".EOL;
2012-07-28 14:21:05 +02:00
}
} else {
echo date ('Y/m/d - H:i:s')." - Siren $siren, Tel $tel, Fax $fax : Pas de fiche identite !".EOL;
$nbErr++;
// die();
}
/*print_r($tabTel);
print_r($tabTmp);
die();*/
}
2013-06-19 10:24:49 +02:00
echo date ('Y/m/d - H:i:s')." - FIN de la mise <20> jour des TEL/FAX des entreprises ($nbAvecMaj MAJ/$nbTel avec $nbErr erreurs).".EOL;
2012-07-28 14:21:05 +02:00
die();
?>