From 52176a5f53d66ced7cd1e5dbd5c9a20ed1625e7b Mon Sep 17 00:00:00 2001 From: jgaimard <jgaimard@git-test.afi-sa.fr> Date: Thu, 14 Feb 2013 16:53:16 +0000 Subject: [PATCH] correction rejets des exemplaires par annexes en 995 --- cosmogramme/php/classes/classe_unimarc.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/cosmogramme/php/classes/classe_unimarc.php b/cosmogramme/php/classes/classe_unimarc.php index e0e327b4786..da55f1208be 100644 --- a/cosmogramme/php/classes/classe_unimarc.php +++ b/cosmogramme/php/classes/classe_unimarc.php @@ -353,7 +353,20 @@ class notice_unimarc extends iso2709_record 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_annexe and $champ["code"] == $champ_annexe) $ex["annexe"]=$champ["valeur"]; + if($champ_annexe and $champ["code"] == $champ_annexe) + { + $annexe=$champ["valeur"]; + if($annexe) + { + $enreg=fetchEnreg("select * from codif_annexe where code='$annexe'"); + if($enreg["invisible"]==1) + { + $nb_ex_detruits++; + $ex["activite"]="d"; + } + } + $ex["annexe"]=$annexe; + } // date de nouveauté if($champs_nouveaute["zone"]=="995" and $champ["code"]==$champs_nouveaute["champ"]) -- GitLab