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

(-)a/catalogue/detail.pl (-1 / +2 lines)
Lines 159-165 foreach my $item (@items) { Link Here
159
    $item->{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
159
    $item->{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
160
    my $ccode = $item->{'ccode'};
160
    my $ccode = $item->{'ccode'};
161
    $item->{'ccode'} = $collections->{$ccode} if ( defined( $ccode ) && defined($collections) && exists( $collections->{$ccode} ) );
161
    $item->{'ccode'} = $collections->{$ccode} if ( defined( $ccode ) && defined($collections) && exists( $collections->{$ccode} ) );
162
    foreach (qw(ccode enumchron copynumber uri)) {
162
    foreach (qw(ccode enumchron copynumber itemnotes uri)) {
163
        $itemfields{$_} = 1 if ( $item->{$_} );
163
        $itemfields{$_} = 1 if ( $item->{$_} );
164
    }
164
    }
165
165
Lines 212-217 $template->param( Link Here
212
	itemdata_enumchron  => $itemfields{enumchron},
212
	itemdata_enumchron  => $itemfields{enumchron},
213
	itemdata_uri        => $itemfields{uri},
213
	itemdata_uri        => $itemfields{uri},
214
	itemdata_copynumber => $itemfields{copynumber},
214
	itemdata_copynumber => $itemfields{copynumber},
215
    itemdata_itemnotes  => $itemfields{itemnotes},
215
	volinfo				=> $itemfields{enumchron} || $dat->{'serial'} ,
216
	volinfo				=> $itemfields{enumchron} || $dat->{'serial'} ,
216
	z3950_search_params	=> C4::Search::z3950_search_args($dat),
217
	z3950_search_params	=> C4::Search::z3950_search_args($dat),
217
	C4::Search::enabled_staff_search_views,
218
	C4::Search::enabled_staff_search_views,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tmpl (-1 / +2 lines)
Lines 214-219 function verify_images() { Link Here
214
                <!-- TMPL_IF NAME="volinfo" --><th>Publication Details</th><!-- /TMPL_IF -->
214
                <!-- TMPL_IF NAME="volinfo" --><th>Publication Details</th><!-- /TMPL_IF -->
215
                <!-- TMPL_IF NAME="itemdata_uri" --><th>URL</th><!-- /TMPL_IF -->
215
                <!-- TMPL_IF NAME="itemdata_uri" --><th>URL</th><!-- /TMPL_IF -->
216
                <!-- TMPL_IF NAME="itemdata_copynumber" --><th>Copy No.</th><!-- /TMPL_IF -->
216
                <!-- TMPL_IF NAME="itemdata_copynumber" --><th>Copy No.</th><!-- /TMPL_IF -->
217
                <!-- TMPL_IF NAME="itemdata_itemnotes" --><th>Public notes</th><!-- /TMPL_IF -->
217
		<!-- TMPL_IF NAME="SpineLabelShowPrintOnBibDetails" --><th>Spine Label</th><!-- /TMPL_IF -->
218
		<!-- TMPL_IF NAME="SpineLabelShowPrintOnBibDetails" --><th>Spine Label</th><!-- /TMPL_IF -->
218
            </tr>
219
            </tr>
219
            <!-- TMPL_LOOP NAME="itemloop" -->
220
            <!-- TMPL_LOOP NAME="itemloop" -->
Lines 333-338 function verify_images() { Link Here
333
				<!-- TMPL_IF NAME="itemdata_copynumber" -->
334
				<!-- TMPL_IF NAME="itemdata_copynumber" -->
334
					<td class="copynumber"><!-- TMPL_VAR NAME="copynumber" --></td>
335
					<td class="copynumber"><!-- TMPL_VAR NAME="copynumber" --></td>
335
				<!-- /TMPL_IF -->
336
				<!-- /TMPL_IF -->
337
                <!-- TMPL_IF NAME="itemdata_itemnotes" --><td><div class="itemnotes"><!-- TMPL_VAR NAME="itemnotes" --></div></td><!-- /TMPL_IF -->
336
                <!-- TMPL_IF NAME="type" -->
338
                <!-- TMPL_IF NAME="type" -->
337
                    <td><a href="/cgi-bin/koha/maint/catmaintain.pl?type=fixitemtype&amp;bi=<!-- TMPL_VAR NAME="biblioitemnumber" -->&amp;item=<!-- TMPL_VAR NAME="itemtype" -->">Fix Itemtype</a></td>
339
                    <td><a href="/cgi-bin/koha/maint/catmaintain.pl?type=fixitemtype&amp;bi=<!-- TMPL_VAR NAME="biblioitemnumber" -->&amp;item=<!-- TMPL_VAR NAME="itemtype" -->">Fix Itemtype</a></td>
338
                <!-- /TMPL_IF -->
340
                <!-- /TMPL_IF -->
339
- 

Return to bug 4924