[Koha-bugs] [Bug 17867] New: Improve display of source (MARC21 773) in result list

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Mon Jan 9 16:57:44 CET 2017


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

            Bug ID: 17867
           Summary: Improve display of source (MARC21 773) in result list
 Change sponsored?: ---
           Product: Koha
           Version: master
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5 - low
         Component: MARC Bibliographic data support
          Assignee: gmcharlt at gmail.com
          Reporter: katrin.fischer at bsz-bw.de
        QA Contact: testopia at bugs.koha-community.org

Currently only $t is shown. If there is no author in $a, the title goes in $a
and there is no $t. We should also catch this case and show at least a and t.

>From the XSLT:
 928     <xsl:if test="marc:datafield[@tag=773]">
 929         <xsl:for-each select="marc:datafield[@tag=773]">
 930             <xsl:if test="marc:subfield[@code='t']">
 931     <span class="results_summary">
 932     <span class="label">Source: </span>
 933             <xsl:value-of select="marc:subfield[@code='t']"/>
 934     </span>
 935             </xsl:if>
 936         </xsl:for-each>
 937     </xsl:if>

Note: if there were multiple 773, the lable would be printed mulitple times.

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


More information about the Koha-bugs mailing list