X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=circ%2Ftransferstoreceive.pl;h=0116278145e782bd8274be01e188e93e60dee8eb;hb=f41f272ff087d65ed11d760e6c7c58818c3a24d4;hp=d398ac733d980676cbb45f985e895559747ffb8d;hpb=db095c3a7b2aa41142dbd4d9705ddaa21e139a6d;p=koha-ffzg.git diff --git a/circ/transferstoreceive.pl b/circ/transferstoreceive.pl index d398ac733d..0116278145 100755 --- a/circ/transferstoreceive.pl +++ b/circ/transferstoreceive.pl @@ -23,7 +23,7 @@ use CGI qw ( -utf8 ); use C4::Context; use C4::Output qw( output_html_with_http_headers ); use C4::Auth qw( get_template_and_user ); -use C4::Circulation qw( GetTransfers GetTransfersFromTo ); +use C4::Circulation qw( GetTransfersFromTo ); use C4::Members; use Date::Calc qw( Add_Delta_Days Date_to_Days Today ); @@ -31,7 +31,7 @@ use C4::Reserves; use Koha::Items; use Koha::ItemTypes; use Koha::Libraries; -use Koha::DateUtils qw( dt_from_string output_pref ); +use Koha::DateUtils qw( dt_from_string ); use Koha::BiblioFrameworks; use Koha::Patrons; @@ -111,9 +111,11 @@ while ( my $library = $libraries->next ) { } # check for a recall for this transfer - my $recall = $item->recall; - if ( defined $recall ) { - $getransf{recall} = $recall; + if ( C4::Context->preference('UseRecalls') ) { + my $recall = $item->recall; + if ( defined $recall ) { + $getransf{recall} = $recall; + } } push( @transferloop, \%getransf ); @@ -127,7 +129,7 @@ while ( my $library = $libraries->next ) { $template->param( branchesloop => \@branchesloop, - show_date => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }), + show_date => dt_from_string, TransfersMaxDaysWarning => C4::Context->preference('TransfersMaxDaysWarning'), latetransfers => $latetransfers ? 1 : 0, );