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

(-)a/circ/returns.pl (-14 / +10 lines)
Lines 612-631 $template->param( Link Here
612
    soundon        => C4::Context->preference("SoundOn"),
612
    soundon        => C4::Context->preference("SoundOn"),
613
);
613
);
614
614
615
### Comment out rotating collections for now to allow it a little more time to bake
615
my $itemnumber = GetItemnumberFromBarcode( $query->param('barcode') );
616
### for 3.4; in particular, must ensure that it doesn't fight with transfers required
616
if ( $itemnumber ) {
617
### to fill hold requests
617
   my ( $holdingBranch, $collectionBranch ) = GetCollectionItemBranches( $itemnumber );
618
### -- Galen Charlton 2010-10-06
618
    if ( ! ( $holdingBranch eq $collectionBranch ) ) {
619
#my $itemnumber = GetItemnumberFromBarcode( $query->param('barcode') );
619
        $template->param(
620
#if ( $itemnumber ) {
620
          collectionItemNeedsTransferred => 1,
621
#   my ( $holdingBranch, $collectionBranch ) = GetCollectionItemBranches( $itemnumber );
621
          collectionBranch => GetBranchName($collectionBranch),
622
#    if ( ! ( $holdingBranch eq $collectionBranch ) ) {
622
        );
623
#        $template->param(
623
    }
624
#          collectionItemNeedsTransferred => 1,
624
}                                                                                                            
625
#          collectionBranch => GetBranchName($collectionBranch),
626
#        );
627
#    }
628
#}                                                                                                            
629
625
630
# actually print the page!
626
# actually print the page!
631
output_html_with_http_headers $query, $cookie, $template->output;
627
output_html_with_http_headers $query, $cookie, $template->output;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt (-3 lines)
Lines 132-143 Link Here
132
    <dd>Enter a barcode to generate a printable spine label. For use with dedicated label printers</dd>
132
    <dd>Enter a barcode to generate a printable spine label. For use with dedicated label printers</dd>
133
    [% END %]
133
    [% END %]
134
134
135
<!--
136
    [% IF ( CAN_user_tools_rotating_collections ) %]
135
    [% IF ( CAN_user_tools_rotating_collections ) %]
137
    <dt><a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl">Rotating collections</a></dt>
136
    <dt><a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl">Rotating collections</a></dt>
138
	<dd>Manage Rotating Collections</dd>
137
	<dd>Manage Rotating Collections</dd>
139
    [% END %]
138
    [% END %]
140
-->
141
139
142
    [% IF ( CAN_user_tools_stage_marc_import ) %]
140
    [% IF ( CAN_user_tools_stage_marc_import ) %]
143
    <dt><a href="/cgi-bin/koha/tools/stage-marc-import.pl">Stage MARC records for import</a></dt>
141
    <dt><a href="/cgi-bin/koha/tools/stage-marc-import.pl">Stage MARC records for import</a></dt>
144
- 

Return to bug 8836