View | Details | Raw Unified | Return to bug 21921
Collapse All | Expand All

(-)a/acqui/z3950_search.pl (+3 lines)
Lines 45-50 my $srchany = $input->param('srchany'); Link Here
45
my $stdid           = $input->param('stdid');
45
my $stdid           = $input->param('stdid');
46
my $dewey           = $input->param('dewey');
46
my $dewey           = $input->param('dewey');
47
my $controlnumber   = $input->param('controlnumber');
47
my $controlnumber   = $input->param('controlnumber');
48
my $publicationyear = $input->param('publicationyear');
48
my $op              = $input->param('op')||'';
49
my $op              = $input->param('op')||'';
49
my $booksellerid    = $input->param('booksellerid');
50
my $booksellerid    = $input->param('booksellerid');
50
my $basketno        = $input->param('basketno');
51
my $basketno        = $input->param('basketno');
Lines 82-87 $template->param( Link Here
82
        subject      => $subject,
83
        subject      => $subject,
83
        srchany      => $srchany,
84
        srchany      => $srchany,
84
        stdid        => $stdid,
85
        stdid        => $stdid,
86
        publicationyear => $publicationyear,
85
);
87
);
86
88
87
if ( $op ne "do_search" ) {
89
if ( $op ne "do_search" ) {
Lines 124-129 my $pars= { Link Here
124
        controlnumber => $controlnumber,
126
        controlnumber => $controlnumber,
125
        stdid => $stdid,
127
        stdid => $stdid,
126
        srchany => $srchany,
128
        srchany => $srchany,
129
        publicationyear => $publicationyear,
127
};
130
};
128
Z3950Search($pars, $template);
131
Z3950Search($pars, $template);
129
output_html_with_http_headers $input, $cookie, $template->output;
132
output_html_with_http_headers $input, $cookie, $template->output;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt (-1 / +3 lines)
Lines 34-39 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
34
             <li><label for="issn">ISSN: </label> <input type="text" id="issn" name="issn" value="[% issn | html %]" /></li>
34
             <li><label for="issn">ISSN: </label> <input type="text" id="issn" name="issn" value="[% issn | html %]" /></li>
35
             <li><label for="searchtitle">Title: </label> <input type="text" id="searchtitle"  name="title" value="[% title | html %]" class="focus" /></li>
35
             <li><label for="searchtitle">Title: </label> <input type="text" id="searchtitle"  name="title" value="[% title | html %]" class="focus" /></li>
36
             <li><label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author | html %]" /></li>
36
             <li><label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author | html %]" /></li>
37
             <li><label for="publicationyear">Publication year: </label> <input type="text" id="publicationyear" name="publicationyear" value="[% publicationyear | html %]" /></li>
37
             <li><label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li>
38
             <li><label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li>
38
             <li><label for="srchany">Keyword (any): </label> <input type="text" id="srchany" name="srchany" value="" /></li>
39
             <li><label for="srchany">Keyword (any): </label> <input type="text" id="srchany" name="srchany" value="" /></li>
39
             <li><label for="lccall">LC call number: </label> <input type="text" id="lccall" name="lccall" value="" /></li>
40
             <li><label for="lccall">LC call number: </label> <input type="text" id="lccall" name="lccall" value="" /></li>
Lines 90-95 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
90
    <p>You searched for:
91
    <p>You searched for:
91
        [% IF ( title ) %]<em>Title: </em><span class=term>[% title | html %]</span> [% END %]
92
        [% IF ( title ) %]<em>Title: </em><span class=term>[% title | html %]</span> [% END %]
92
        [% IF ( author ) %]<em>Author: </em><span class=term>[% author | html %]</span> [% END %]
93
        [% IF ( author ) %]<em>Author: </em><span class=term>[% author | html %]</span> [% END %]
94
        [% IF ( publicationyear ) %]<em>Publication year: </em><span class=term>[% publicationyear | html %]</span> [% END %]
93
        [% IF ( isbn ) %]<em>ISBN: </em><span class=term>[% isbn | html %]</span> [% END %]
95
        [% IF ( isbn ) %]<em>ISBN: </em><span class=term>[% isbn | html %]</span> [% END %]
94
        [% IF ( issn ) %]<em>ISSN: </em><span class=term>[% issn | html %]</span> [% END %]
96
        [% IF ( issn ) %]<em>ISSN: </em><span class=term>[% issn | html %]</span> [% END %]
95
        [% IF ( lccall ) %]<em>LC call number: </em><span class=term>[% lccall | html %]</span> [% END %]
97
        [% IF ( lccall ) %]<em>LC call number: </em><span class=term>[% lccall | html %]</span> [% END %]
Lines 175-180 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
175
        <input type="hidden" id="isbn" name="isbn" value="[% isbn | html %]" />
177
        <input type="hidden" id="isbn" name="isbn" value="[% isbn | html %]" />
176
        <input type="hidden" id="lccall" name="lccall" value="[% lccall | html %]" />
178
        <input type="hidden" id="lccall" name="lccall" value="[% lccall | html %]" />
177
        <input type="hidden" id="author" name="author" value="[% author | html %]" />
179
        <input type="hidden" id="author" name="author" value="[% author | html %]" />
180
        <input type="hidden" id="publicationyear" name="publicationyear" value="[% publicationyear | html %]" />
178
        <input type="hidden" id="subject" name="subject" value="[% subject | html %]" />
181
        <input type="hidden" id="subject" name="subject" value="[% subject | html %]" />
179
        <input type="hidden" id="dewey" name="dewey" value="[% dewey | html %]" />
182
        <input type="hidden" id="dewey" name="dewey" value="[% dewey | html %]" />
180
        <input type="hidden" name="frameworkcode" value="[% frameworkcode | html %]" />
183
        <input type="hidden" name="frameworkcode" value="[% frameworkcode | html %]" />
181
- 

Return to bug 21921