Bug 7312: Adds ISSN to serials/subscription-bib-search.pl results
authorMatthias Meusburger <matthias.meusburger@biblibre.com>
Thu, 12 May 2011 09:29:01 +0000 (11:29 +0200)
committerPaul Poulain <paul.poulain@biblibre.com>
Fri, 17 Feb 2012 10:16:38 +0000 (11:16 +0100)
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>

koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt
serials/subscription-bib-search.pl

index 30ec303..54b4497 100644 (file)
@@ -27,6 +27,7 @@ function GetIt(bibno,title)
        <th>Author</th>
        <th>Publisher</th>
        <th>Publication year</th>
+       <th>ISSN</th>
           <th>&nbsp;</th>
     </tr>
     [% FOREACH resultsloo IN resultsloop %]
@@ -42,6 +43,10 @@ function GetIt(bibno,title)
             <td>
                 [% resultsloo.publicationyear |html %]
             </td>
+            <td>
+                [% resultsloo.issn |html %]
+            </td>
+
                        <td><a href="#" onclick="GetIt('[% resultsloo.biblionumber %]',$(this));" title="Choose this record">Choose</a></td>
         </tr>
     [% END %]
index b76a701..623efe2 100755 (executable)
@@ -127,6 +127,7 @@ if ($op eq "do_search" && $query) {
         $resultsloop{author}          = $biblio->{'author'};
         $resultsloop{publishercode}   = $biblio->{'publishercode'};
         $resultsloop{publicationyear} = $biblio->{'publicationyear'};
+        $resultsloop{issn}            = $biblio->{'issn'};
 
         push @results, \%resultsloop;
     }