Skip to content
Snippets Groups Projects
Commit 6f505a2b authored by jgaimard's avatar jgaimard
Browse files

correction rejet des ex sur code emplacement

parent 2e6b7c45
Branches
Tags
No related merge requests found
......@@ -351,7 +351,15 @@ class notice_unimarc extends iso2709_record
// Champs parametres
if($champ_section and $champ["code"] == $champ_section) $ex["section"]=$this->getIdCodeExemplaire("section","995",$champ_section,$champ["valeur"]);
if($champ_genre and $champ["code"] == $champ_genre) $ex["genre"]=$this->getIdCodeExemplaire("genre","995",$champ_genre,$champ["valeur"]);
if($champ_emplacement and strtolower($champ["code"]) == $champ_emplacement) $ex["emplacement"]=$this->getIdCodeExemplaire("emplacement","995",$champ_emplacement,$champ["valeur"]);
if($champ_emplacement and strtolower($champ["code"]) == $champ_emplacement)
{
$ex["emplacement"]=$this->getIdCodeExemplaire("emplacement","995",$champ_emplacement,$champ["valeur"]);
if(trim($ex['emplacement']))
{
$invisible=fetchOne("select ne_pas_afficher from codif_emplacement where id_emplacement=".$ex['emplacement']);
if($invisible==1) {$nb_ex_detruits++; $ex["activite"]="d";}
}
}
if($champ_annexe and $champ["code"] == $champ_annexe)
{
$annexe=$champ["valeur"];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment