105,14 → 105,31 |
} |
|
protected function calculerToutSansCorrespondance() { |
$this->affecterPaysFranceAuxCommunes(); |
$liste_coordonnees = $this->dao->rechercherToutSansCorrespondance(); |
$this->traiterCoordonnees($liste_coordonnees); |
} |
|
protected function calculerToutSansCorrespondanceDepuisLeDebut() { |
$this->affecterPaysFranceAuxCommunes(); |
$liste_coordonnees = $this->dao->rechercherSansCorrespondanceDepuisLeDebut(); |
$this->traiterCoordonnees($liste_coordonnees); |
} |
|
protected function affecterPaysFranceAuxCommunes() { |
if ($this->mode_verbeux) { |
echo "-------------------------------------------------------------------\n"; |
echo " Affectation du pays France aux communes ayant un code INSEE mais pas de pays ... "; |
} |
|
$maj = $this->dao->affecterPaysFranceAuxCommunesRenseignees(); |
|
if ($this->mode_verbeux) { |
echo "OK \n"; |
echo " ".$maj." commune".($maj > 1 ? 's' : '')." affectée".($maj > 1 ? 's' : '')."\n"; |
echo "-------------------------------------------------------------------\n"; |
} |
} |
|
private function traiterCoordonnees($liste_coordonnees) { |
$debut = microtime(true); |