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

(-)a/circ/view_holdsqueue.pl (-1 / +7 lines)
Lines 96-102 sub GetHoldsQueueItems { Link Here
96
		$row->{reservedate} = format_date($row->{reservedate});
96
	$row->{reservedate} = format_date($row->{reservedate});
97
	my $record = GetMarcBiblio($row->{biblionumber});
98
    if ($record){
99
        $row->{subtitle} = GetRecordValue('subtitle',$record,'')->[0]->{subfield};
100
	   $row->{parts} = GetRecordValue('parts',$record,'')->[0]->{subfield};
101
	   $row->{numbers} = GetRecordValue('numbers',$record,'')->[0]->{subfield};
102
	}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tmpl (-28 / +27 lines)
Lines 14-20 Link Here
14
   
14
Lines 29-76 Link Here
29
29
        <th id="hq-title">Title</th>
30
        <th>Title</th>
30
        <th id="hq-collection">Collection</th>
31
        <th>Collection</th>
31
        <th id="hq-callnumber">Call Number</th>
32
        <th>Call Number</th>
32
        <th id="hq-barcode">Barcode</th>
33
        <th>Barcode</th>
33
	<th id="hq-patron">Patron</th>
34
		<th>Patron</th>
34
        <th id="hq-sendto">Send To</th>
35
        <th>Send To</th>
35
        <th id="hq-date">Date</th>
36
        <th>Date</th>
37
            <td><p><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber"-->"><strong><!-- TMPL_VAR NAME="title" escape="html"--></strong></a></p> 
36
            <td id="hq-title"><p><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber"-->"><strong><!-- TMPL_VAR NAME="title" escape="html"--></strong></a></p>
38
			<p><strong><!-- TMPL_VAR NAME="author" --></strong>
37
                         <p><strong><!-- TMPL_VAR NAME="author" --></strong>
39
			<!-- TMPL_IF name="publishercode" --><!-- TMPL_VAR name="publishercode" --><!-- /TMPL_IF -->
38
                       <div id="hq-pubdata">  <!-- TMPL_IF name="publishercode" --><!-- TMPL_VAR name="publishercode" --><!-- /TMPL_IF -->
40
										<!-- TMPL_IF name="publicationyear" -->, <!-- TMPL_VAR name="publicationyear" -->
39
                                                                                 <!-- TMPL_IF name="publicationyear" -->, <!-- TMPL_VAR name="publicationyear" -->
41
										<!-- TMPL_ELSIF name="copyrightdate"-->, <!-- TMPL_VAR name="copyrightdate" --><!-- /TMPL_IF -->
40
                                                                                 <!-- TMPL_ELSIF name="copyrightdate"-->, <!-- TMPL_VAR name="copyrightdate" --><!-- /TMPL_IF -->
42
                                        <!-- TMPL_IF name="pages" -->: <!-- TMPL_VAR name="pages" --> <!-- /TMPL_IF -->
41
                                         <!-- TMPL_IF name="pages" -->: <!-- TMPL_VAR name="pages" --> <!-- /TMPL_IF -->
43
                                        <!-- TMPL_IF name="size" --><!-- TMPL_VAR name="size" --><!-- /TMPL_IF --> <!-- TMPL_IF NAME="isbn" -->ISBN: <!-- TMPL_VAR NAME="isbn" --><!-- /TMPL_IF --></p>
42
                                         <!-- TMPL_IF name="size" --><!-- TMPL_VAR name="size" --><!-- /TMPL_IF --> <!-- TMPL_IF NAME="isbn" -->ISBN: <!-- TMPL_VAR NAME="isbn" --><!-- /TMPL_IF --></p>
43
			</div>
44
            <td><!-- TMPL_VAR NAME="ccode" --></td>
44
            <td id="hq-collection"><!-- TMPL_VAR NAME="ccode" --></td>
45
            <td><!-- TMPL_VAR NAME="location" --> <!-- TMPL_VAR NAME="itemcallnumber"--> <!-- TMPL_VAR NAME="enumchron" --></td>
45
            <td id="hq-callnumber"><!-- TMPL_VAR NAME="location" --> <!-- TMPL_VAR NAME="itemcallnumber"--> <!-- TMPL_VAR NAME="enumchron" --></td>
46
            <td>
46
            <td id="hq-barcode">
47
                    <!-- TMPL_VAR NAME="barcode" -->
47
			<em>Only Item: </em><!-- TMPL_VAR NAME="barcode" -->
48
                    <em>Any available copy</em>
48
                    <strong><!-- TMPL_VAR NAME="barcode" --></strong></br><em>or Any available</em>
49
			<td><p><a href="/cgi-bin/koha/circ/circulation.pl?findborrower=<!-- TMPL_VAR NAME="cardnumber" -->#reserves"><!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --> (<!-- TMPL_VAR NAME="cardnumber" -->)</a></p> <p><!-- TMPL_VAR NAME="phone" --></p></td>
49
			<td id="hq-patron"><p><a href="/cgi-bin/koha/circ/circulation.pl?findborrower=<!-- TMPL_VAR NAME="cardnumber" -->#reserves"><!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --> (<!-- TMPL_VAR NAME="cardnumber" -->)</a></p> <p><!-- TMPL_VAR NAME="phone" --></p></td>
50
            <td><!-- TMPL_VAR NAME="pickbranch" --></td>
50
            <td id="hq-sendto"><!-- TMPL_VAR NAME="pickbranch" --></td>
51
            <td><!-- TMPL_VAR NAME="reservedate" --></td>
51
            <td id="hq-date"><!-- TMPL_VAR NAME="reservedate" --></td>
52
	<!-- /TMPL_IF --> 
52
	<!-- /TMPL_IF -->
53
	
53
Lines 84-90 Link Here
84
			<!--  Not working yet
84
			<!-- FIXME Not working yet
85
- 

Return to bug 5143