use-id replace by otherid
This commit is contained in:
parent
3ba73adc29
commit
d294b88c75
@ -23,7 +23,7 @@ try {
|
||||
'id=s' => "Identifiant du traitement",
|
||||
'file=s' => "Traitement manuel avec spécification du fichier",
|
||||
'key=s' => "Liste des clés pour l'enrichissement",
|
||||
'use-id=s' => "Utilise un autre id que SIREN/SIRET",
|
||||
'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",
|
||||
@ -353,9 +353,9 @@ if (($handle = fopen($inFile, 'r')) !== FALSE) {
|
||||
for ($c=0; $c < $num; $c++) {
|
||||
|
||||
//Détection clé spécifique
|
||||
if ( $opts->use-id ) {
|
||||
if ( $opts->otherid ) {
|
||||
|
||||
if ( strtolower($data[$c]) == strtolower($opts->use-id) ) {
|
||||
if ( strtolower($data[$c]) == strtolower($opts->otherid) ) {
|
||||
$posKeySpecial = $c;
|
||||
}
|
||||
|
||||
@ -381,7 +381,7 @@ if (($handle = fopen($inFile, 'r')) !== FALSE) {
|
||||
$tabExtract[] = $data[$c];
|
||||
}
|
||||
|
||||
if ( !$opts->use-id ) {
|
||||
if ( !$opts->otherid ) {
|
||||
|
||||
if ($posKeySiren!==false && $posKeyNic!==false && $posKeySiret!==false || $posKeySiren!==false && $posKeySiret!==false ){
|
||||
die("Trop de clé!");
|
||||
@ -396,7 +396,7 @@ if (($handle = fopen($inFile, 'r')) !== FALSE) {
|
||||
//Traitement des identifiants
|
||||
} else {
|
||||
|
||||
if ( $opts->use-id ) {
|
||||
if ( $opts->otherid ) {
|
||||
|
||||
$tabIdentifiant[] = $data[$posKeySpecial];
|
||||
|
||||
@ -606,7 +606,7 @@ foreach($tabIdentifiant as $item)
|
||||
|
||||
} else {
|
||||
|
||||
if ( $opts->use-id ) {
|
||||
if ( $opts->otherid ) {
|
||||
|
||||
$id = $item;
|
||||
$tabNewData[$extendNbRow] = $tabData[$row];
|
||||
|
Loading…
Reference in New Issue
Block a user