Modif dans select_forme_juridique, la valeur non sélectionné doit être
positionnée sur 0 et non -1 qui n'existe pas dans la base.
This commit is contained in:
parent
ccf46fd47a
commit
12d5d00924
@ -189,7 +189,7 @@ class Form {
|
|||||||
else {
|
else {
|
||||||
if ($pays == '' || $pays != $obj->libelle_pays) {
|
if ($pays == '' || $pays != $obj->libelle_pays) {
|
||||||
// Affiche la rupture
|
// Affiche la rupture
|
||||||
print '<option value="-1">----- '.$obj->libelle_pays." -----</option>\n";
|
print '<option value="0">----- '.$obj->libelle_pays." -----</option>\n";
|
||||||
$pays=$obj->libelle_pays;
|
$pays=$obj->libelle_pays;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user