mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 05:44:24 +00:00
Fix pbm importing CP from France on 4 digits
This commit is contained in:
parent
1a783e1881
commit
1e63d00767
@ -118,6 +118,13 @@ class LoadPostalCodesCommand extends Command
|
|||||||
|
|
||||||
private function addPostalCode($row, OutputInterface $output)
|
private function addPostalCode($row, OutputInterface $output)
|
||||||
{
|
{
|
||||||
|
if($row[2] == 'FR' && strlen($row[0]) == 4) {
|
||||||
|
// CP in FRANCE are on 5 digit
|
||||||
|
// For CP starting with a zero, the starting zero can be remove if stored as number in a csv
|
||||||
|
// add a zero if CP from FR and on 4 digit
|
||||||
|
$row[0] = '0'.$row[0];
|
||||||
|
}
|
||||||
|
|
||||||
if ($output->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) {
|
if ($output->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) {
|
||||||
$output->writeln('handling row: ' . $row[0] . ' | ' . $row[1] . ' | ' . $row[2]);
|
$output->writeln('handling row: ' . $row[0] . ' | ' . $row[1] . ' | ' . $row[2]);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user