Modif gestion des numéros spéciaux

This commit is contained in:
Rodolphe Quiedeville 2005-11-08 13:42:45 +00:00
parent 72739fe7f7
commit bfb3641816

View File

@ -85,6 +85,13 @@ if ( $resql )
/* Recherche du tarif */ /* Recherche du tarif */
/* Numéros spéciaux */
if (substr($numero,4,1) == 8)
{
}
else
{
if (! $tarif_achat->cout($numero, $x, $y, $z)) if (! $tarif_achat->cout($numero, $x, $y, $z))
{ {
print "\nTarif achat manquant pour $numero\n"; print "\nTarif achat manquant pour $numero\n";
@ -96,6 +103,7 @@ if ( $resql )
print "\nTarif vente manquant pour $numero\n"; print "\nTarif vente manquant pour $numero\n";
exit(1); exit(1);
} }
}
print "."; print ".";
$i++; $i++;