Bugzilla – Attachment 70276 Details for
Bug 19916
Can't search keyword or standard ID from Acquisitions external source / z3950
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19916 - Add keyword and standard ID fields to acq external search
Bug-19916---Add-keyword-and-standard-ID-fields-to-.patch (text/plain), 3.18 KB, created by
Nick Clemens (kidclamp)
on 2018-01-04 15:33:56 UTC
(
hide
)
Description:
Bug 19916 - Add keyword and standard ID fields to acq external search
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2018-01-04 15:33:56 UTC
Size:
3.18 KB
patch
obsolete
>From 53c6708ca1d73e40006604dd65c86dbfb11e8b94 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Thu, 4 Jan 2018 15:31:52 +0000 >Subject: [PATCH] Bug 19916 - Add keyword and standard ID fields to acq > external search > >To test: >1 - Add an order from external source >2 - Note you don't have keyword or standard ID fields >3 - Add a catalog record from Z3950, note those fields are there >4 - Apply patch >5 - Check acq and note you do have those fields >6 - Do some searches to verify they work as expected >--- > acqui/z3950_search.pl | 8 ++++++-- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt | 2 ++ > 2 files changed, 8 insertions(+), 2 deletions(-) > >diff --git a/acqui/z3950_search.pl b/acqui/z3950_search.pl >index 59f9f36..06c4a9f 100755 >--- a/acqui/z3950_search.pl >+++ b/acqui/z3950_search.pl >@@ -42,6 +42,8 @@ my $issn = $input->param('issn'); > my $lccn = $input->param('lccn'); > my $lccall = $input->param('lccall'); > my $subject = $input->param('subject'); >+my $srchany = $input->param('srchany'); >+my $stdid = $input->param('stdid'); > my $dewey = $input->param('dewey'); > my $controlnumber = $input->param('controlnumber'); > my $op = $input->param('op')||''; >@@ -79,6 +81,8 @@ $template->param( > biblionumber => $biblionumber, > dewey => $dewey, > subject => $subject, >+ srchany => $srchany, >+ stdid => $stdid, > ); > > if ( $op ne "do_search" ) { >@@ -119,8 +123,8 @@ my $pars= { > subject => $subject, > lccall => $lccall, > controlnumber => $controlnumber, >- stdid => 0, >- srchany => 0, >+ stdid => $stdid, >+ srchany => $srchany, > }; > Z3950Search($pars, $template); > output_html_with_http_headers $input, $cookie, $template->output; >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt >index ddf104a..8cea37c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt >@@ -70,7 +70,9 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : > <li><label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author | html %]" /></li> > <li><label for="issn">ISSN: </label> <input type="text" id="issn" name="issn" value="[% issn | html %]" /></li> > <li><label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li> >+ <li><label for="srchany">Keyword (any): </label> <input type="text" id="srchany" name="srchany" value="" /></li> > <li><label for="dewey">Dewey: </label> <input type="text" id="dewey" name="dewey" value="" /></li> >+ <li><label for="stdid">Standard ID: </label> <input type="text" id="stdid" name="stdid" value="" /></li> > <li><label for="frameworkcode" >Select MARC framework:</label> > <select id="frameworkcode" name="frameworkcode" > > <option value="">Default</option> >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 19916
:
70276
|
73062
|
73368
|
73369