[Koha-bugs] [Bug 6851] A utility that will search out analytics records and set the MARC header appropriately.

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Mar 6 08:03:05 CET 2012


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

Katrin Fischer <katrin.fischer at bsz-bw.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Needs Signoff               |Signed Off
                 CC|                            |katrin.fischer at bsz-bw.de

--- Comment #5 from Katrin Fischer <katrin.fischer at bsz-bw.de> ---
Hi Robin, 

I was looking at your patch and had to make some notes for myself to 'unwrap'
the relationships for myself. If my tests are correct, your script changes
every record with childs into a serial AND a set. Most of the time those are 2
different things and it perhaps depends on what the library intended to do.
After running your script my parent records show both links: show volumes and
show analytics. When using Usecontrolnumber those will be the same (see bug
7609). Perhaps it would make sense to decide to either make the records a set
or a serial and mark the child records correspondingly:

I. Sets and volumes

Set record: leader pos 19 = a = Set
(http://www.loc.gov/marc/bibliographic/bdleader.html)
A set record will show a link to the volumes.
Link: search for 001 of set record in $w of child records (rcn index).

Volume record: leader pos 19 = c = Part with dependent title
(http://www.loc.gov/marc/bibliographic/bdleader.html)
A volume record will show a link to the set.
Link: search for $w in 001 to find the set record (Control-number index).

II. Serial records and analytics

Serial record: leader pos 7 = s = Serial
(http://www.loc.gov/marc/bibliographic/bdleader.html)
A serial record will show a link to search for analytics.
Link: search for 001 in $w to find the analytical records (rcn index).

Analytical record: Has 773, and leader pos 7 = a or b = monographic or serial
component part (http://www.loc.gov/marc/bibliographic/bdleader.html)
A analytical record will show a link to the parent using information from 773.
Link: search for $w in 001 to find the serial record. (Control-number index).

The other thing is that I think this needs a big warning sign. It rewrites a
lot of data and perhaps it would be cool to have a confirmation flag or
something. I know it's in the folder for migration scripts, perhaps only being
super careful here. 

Both things are not enough for me to fail - going to sign-off.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.


More information about the Koha-bugs mailing list