debug : empecher association pere-fils<->fils-pere

This commit is contained in:
Andre Cianfarani 2006-03-22 06:25:28 +00:00
parent 6fda3ac741
commit b7b65701ff

View File

@ -77,14 +77,15 @@ if ($action == 'add_prod' &&
// print "<br> : ".$_POST["prod_id_chk".$i]; // print "<br> : ".$_POST["prod_id_chk".$i];
if($_POST["prod_id_chk".$i] != "") if($_POST["prod_id_chk".$i] != "")
{ {
if($product->add_sousproduit($id, $_POST["prod_id_".$i],$_POST["prod_qty_".$i]) ) if($product->add_sousproduit($id, $_POST["prod_id_".$i],$_POST["prod_qty_".$i]) > 0)
{ {
$action = 'edit'; $action = 'edit';
} }
else else
{ {
$action = 're-edit'; $action = 're-edit';
$mesg = "erreur"; if($product->error == "isFatherOfThis")
$mesg = $langs->trans("ErrorAssociationIsFatherOfThis");
} }
} }
else else
@ -96,7 +97,6 @@ if ($action == 'add_prod' &&
else else
{ {
$action = 're-edit'; $action = 're-edit';
$mesg = "erreur";
} }