num_noeud_racine; // DEBUT paramétrage propre à la base de données d'importation : // récupération du 606 : récup en catégories en essayant de classer : // les sujets sous le terme "Recherche par terme" $id_rech_theme = categories::searchLibelle('Recherche par terme', $thes->id_thesaurus, 'fr_FR'); if (!$id_rech_theme) $id_rech_theme = create_categ($rac, 'Recherche par terme', strip_empty_words('Recherche par terme', 'fr_FR')); // les précisions géographiques sous le terme "Recherche géographique" $id_rech_geo = categories::searchLibelle('Recherche géographique', $thes->id_thesaurus, 'fr_FR'); if (!$id_rech_geo) $id_rech_geo = create_categ($rac, 'Recherche géographique', strip_empty_words('Recherche géographique', 'fr_FR')); // les précisions de période sous le terme "Recherche chronologique" $id_rech_chrono = categories::searchLibelle('Recherche chronologique', $thes->id_thesaurus, 'fr_FR'); if (!$id_rech_chrono) $id_rech_chrono = create_categ($rac, 'Recherche chronologique', strip_empty_words('Recherche chronologique', 'fr_FR')); // FIN paramétrage function recup_noticeunimarc_suite($notice) { } // fin recup_noticeunimarc_suite = fin récupération des variables propres BDP : rien de plus function import_new_notice_suite() { global $dbh ; global $notice_id ; global $info_606_a, $info_606_j, $info_606_x, $info_606_y, $info_606_z ; global $id_rech_theme, $id_rech_geo, $id_rech_chrono ; global $thesaurus_defaut; global $thes; // les champs $606 sont stockés dans les catégories // $a >> en sous catégories de $id_rech_theme // $j en complément de $a // $x en sous catégories de $a // $y >> en sous catégories de $id_rech_geo // $z >> en sous catégories de $id_rech_chrono // TRAITEMENT : // pour $a=0 à size_of $info_606_a // pour $j=0 à size_of $info_606_j[$a] // concaténer $libelle_j .= $info_606_j[$a][$j] // $libelle_final = $info_606_a[0]." ** ".$libelle_j // Rechercher si l'enregistrement existe déjà dans categories = // $categid = categories::searchLibelle(addslashes($libelle_final), $thesaurus_defaut, 'fr_FR', $id_rech_theme) // Créer si besoin et récupérer l'id $categid_a // $categid_parent = $categid_a // pour $x=0 à size_of $info_606_x[$a] // Rechercher si l'enregistrement existe déjà dans categories = // $categid = categories::searchLibelle(addslashes($info_606_x[$a][$x]), $thesaurus_defaut, 'fr_FR', $categ_parent) // Créer si besoin et récupérer l'id $categid_parent // // $categid_parent = $id_rech_geo // pour $y=0 à size_of $info_606_y[$a] // Rechercher si l'enregistrement existe déjà dans categories = // $categid = categories::searchLibelle(addslashes($info_606_y[$a][$y]), $thesaurus_defaut, 'fr_FR', $categ_parent) // Créer si besoin et récupérer l'id $categid_parent // // $categid_parent = $id_rech_chrono // pour $y=0 à size_of $info_606_z[$a] // Rechercher si l'enregistrement existe déjà dans categories = // $categid = categories::searchLibelle(addslashes($info_606_z[$a][$y]]), $thesaurus_defaut, 'fr_FR', $categ_parent) // Créer si besoin et récupérer l'id $categid_parent // for ($a=0; $anum_thesaurus = $thes->id_thesaurus; $n->num_parent = $num_parent; $n->save(); $c = new categories($n->id_noeud, 'fr_FR'); $c->libelle_categorie = $libelle; $c->index_categorie = $index; $c->save(); return $n->id_noeud; } // TRAITEMENT DES EXEMPLAIRES ICI function traite_exemplaires () { global $msg, $dbh ; global $prix, $notice_id, $info_852, $tdoc_codage, $book_lender_id, $sdoc_codage, $book_statut_id, $locdoc_codage, $statisdoc_codage, $cote_mandatory, $book_location_id ; // débuggage /* echo "
" ;
	print_r($info_852) ;
	echo "
" ; exit ; */ // lu en 010$d de la notice $price = $prix[0]; // la zone 852 est répétable for ($nb_expl = 0; $nb_expl < count($info_852); $nb_expl++) { if ($info_852[$nb_expl]['b']=="IDC") { /* préparation du tableau à passer à la méthode */ /* RAZ expl */ $expl = array(); $expl['cb'] = $info_852[$nb_expl]['p']; $expl['cote'] = $info_852[$nb_expl]['h']; $expl['notice'] = $notice_id ; // $expl['section'] = $info_852[$nb_expl]['h']; à chercher dans docs_section $data_doc=array(); $pos_section = strpos($info_852[$nb_expl]['h']," ") ; if ($pos_section) $section = substr($info_852[$nb_expl]['h'],0,$pos_section) ; else $section = "XXX" ; if ($section=="XXX") $data_doc['section_libelle'] = "SECTION INDETERMINEE"; else $data_doc['section_libelle'] = "Libellé pour ".$section; $data_doc['sdoc_codage_import'] = $section; if ($sdoc_codage) $data_doc['sdoc_owner'] = $book_lender_id ; else $data_doc['sdoc_owner'] = 0 ; $expl['section'] = docs_section::import($data_doc); // $expl['typdoc'] $data_doc=array(); $data_doc['tdoc_libelle'] = "Type doc indéterminé"; $data_doc['duree_pret'] = 15 ; /* valeur par défaut */ $data_doc['tdoc_codage_import'] = "XXX" ; if ($tdoc_codage) $data_doc['tdoc_owner'] = $book_lender_id ; else $data_doc['tdoc_owner'] = 0 ; $expl['typdoc'] = docs_type::import($data_doc); $expl['statut'] = $book_statut_id; $expl['location'] = $book_location_id; // $expl['codestat'] $data_doc=array(); $data_doc['codestat_libelle'] = "AUCUN CODE STATISTIQUE"; $data_doc['statisdoc_codage_import'] = "XXX" ; if ($statisdoc_codage) $data_doc['statisdoc_owner'] = $book_lender_id ; else $data_doc['statisdoc_owner'] = 0 ; $expl['codestat'] = docs_codestat::import($data_doc); $expl['note'] = "" ; $expl['prix'] = $price; $expl['expl_owner'] = $book_lender_id ; $expl['cote_mandatory'] = $cote_mandatory ; $expl_id = exemplaire::import($expl); if ($expl_id == 0) { $nb_expl_ignores++; } } } // fin for } // fin traite_exemplaires TRAITEMENT DES EXEMPLAIRES JUSQU'ICI // fonction spécifique d'export de la zone 995 function export_traite_exemplaires ($ex=array()) { return import_expl::export_traite_exemplaires($ex); }