Skip to content
Snippets Groups Projects
Commit 3e85ef3a authored by efalcy's avatar efalcy
Browse files

#13283 : refacto export unimarc : fix tests

parent a41a78a2
Branches
Tags
3 merge requests!258Dev/13872 Orphee Allow Hold Available Items,!108Dev#13283 Export Pret Unimarc,!99Dev#13283 Export Pret Unimarc
......@@ -41,10 +41,8 @@ class Class_NoticeUnimarc {
protected $rgx_field_end;
protected $subfield_begin;
protected $rgx_subfield_begin;
protected $NSB_begin;
protected $rgx_NSB_begin;
protected $NSB_end;
protected $rgx_NSB_end;
const LABEL_LENGTH=24;
// ---------------------------------------------------
// constructeur : init des constantes
......@@ -55,7 +53,6 @@ class Class_NoticeUnimarc {
? self::$_tracer_accents_iso
: self::$_tracer_accents_iso = Class_CosmoVar::get('tracer_accents_iso');
// $this->tracer_accents=false;
// initialisation des caractères spéciaux
$this->record_end = chr(0x1d); // fin de notice (IS3 de l'ISO 6630)
$this->rgx_record_end = "\x1D";
......@@ -63,12 +60,7 @@ class Class_NoticeUnimarc {
$this->rgx_field_end ="\x1E";
$this->subfield_begin = chr(0x1f); // début de sous-champ (IS1 de l'ISO 6630)
$this->rgx_subfield_begin = "\x1F";
$this->NSB_begin = chr(0x88); // début de NSB
$this->rgx_NSB_begin = "\x88";
$this->NSB_end = chr(0x89); // fin de NSB (NSE)
$this->rgx_NSB_end = "\x89";
$this->errors = array();
$this->errors = [];
}
......@@ -85,7 +77,7 @@ class Class_NoticeUnimarc {
$this->type_accents = $type_accents;
// récupération de l'enregistrement intégral
$this->full_record = $string;
$this->full_record = str_replace('\\', '/', $string);
// guide de l'enregistrement
$this->guide = substr($this->full_record, 0, self::LABEL_LENGTH);
......
......@@ -782,6 +782,9 @@ class Class_NoticeUnimarc_Writer extends Class_NoticeUnimarc {
public function addSerializedField($key, $value) {
if (!is_array($value)) {
if ('' == trim($value))
return $this;
$field = explode('$', $key);
$this->add_field($field[0], '1 ', $field[1] . $value);
return $this;
......@@ -792,6 +795,8 @@ class Class_NoticeUnimarc_Writer extends Class_NoticeUnimarc {
$params = [$value['field'], '1 '];
foreach ($value['data'] as $k => $v) {
if ('' == trim($v))
continue;
$params[] = $k;
$params[] = $v;
}
......
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