[Koha-bugs] [Bug 9755] Record merge code needs to be refactored

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed May 29 10:00:33 CEST 2013


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9755

--- Comment #13 from Chris Cormack <chris at bigballofwax.co.nz> ---
(In reply to comment #11)
> As 995 is excluded (for UNIMARC), I suppose 952 should have do (for Marc21) ?
> 
> M. Saby

995 was excluded originally (if you look at merge.pl). So we are still
excluding it.
However for quite a while the item data has not been stored in the MARCXML, and
the way we fetch the MARC biblio is by calling

my $record = GetMarcBiblio($biblionumber); 

So the item data is not added, if it was called with
my $record = GetMarcBiblio($biblionumber, 1); 
Then items would be added so 952.

So in our case, we have the MARC object, with no item data ie no 952 (in theory
no 995 as well, but im not sure about that so left that exclusion in there).

So no need to exclude the 952. I hope this helps.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list