Browse Source

Bug 7312: Adds ISSN to serials/subscription-bib-search.pl results

Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
3.8.x
Matthias Meusburger 13 years ago
committed by Paul Poulain
parent
commit
91d0475a9b
  1. 5
      koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt
  2. 1
      serials/subscription-bib-search.pl

5
koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt

@ -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 %]

1
serials/subscription-bib-search.pl

@ -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;
}

Loading…
Cancel
Save