https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37364

            Bug ID: 37364
           Summary: Improve creation of 773 fields for item bundles
                    regarding MARC21 245 and 264
 Change sponsored?: ---
           Product: Koha
           Version: Main
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5 - low
         Component: Cataloging
          Assignee: [email protected]
          Reporter: [email protected]
        QA Contact: [email protected]
                CC: [email protected]
        Depends on: 29560

1) I think we should adjust to also take RDA records using 264 into account
here. At least for us these are now the majority of records.

+        # Publication
+        if ( $host_field = $marc_host->field('260') ) {
+            my $s = $host_field->as_string('abc');
+            if ($s) {
+                $sfd{d} = $s;
+            }
+        }

773$d is not repeatable, so we should avoid to create 2 entries. Maybe check
for existence of 264 first and then fallback to 260 if the first is not found?

260 and 264 are both repeatable. I assume this either uses the first or last
entry - can you tell? 

Ideally it might be good to prefer the entry with first indicator = 3
(current/latest), if it exists:
https://www.loc.gov/marc/bibliographic/bd264.html


2) This should take $n$p into account as well, as otherwise a multi-part work
will not be distinguishable from the title:

+        # Title
+        if ( $host_field = $marc_host->field('245') ) {
+            my $s = $host_field->as_string('ab');
+            if ($s) {
+                $sfd{t} = $s;
+            }
+        }

I think this could just be changed to: abnp for the subfield list.


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29560
[Bug 29560] Add option to create MARC links when adding items to bundles
-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to