From b04b56acebf316c6750d4528ca15dab3a76a596b Mon Sep 17 00:00:00 2001 From: simith Date: Tue, 25 Nov 2014 09:20:16 -0500 Subject: [PATCH] Add a warning during the return of a document that was reserved to a course http://bugs.koha-community.org/show_bug.cgi?id=13334 --- circ/returns.pl | 10 ++++++++++ koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 7 +++++++ 2 files changed, 17 insertions(+) diff --git a/circ/returns.pl b/circ/returns.pl index adc2f1e..c8f6834 100755 --- a/circ/returns.pl +++ b/circ/returns.pl @@ -44,6 +44,7 @@ use C4::Members; use C4::Branch; # GetBranches GetBranchName use C4::Koha; # FIXME : is it still useful ? use C4::RotatingCollections; +use C4::CourseReserves; use Koha::DateUtils; use Koha::Calendar; @@ -316,6 +317,15 @@ if ($barcode) { ); } } + # Verify if the item is in the course reserve + my $course_reserves = C4::CourseReserves::GetItemCourseReservesInfo( itemnumber => $itemnumber ); + if($course_reserves) { + $template->param( + found => 1, + course_reserve => 1, + course_name => $course_reserves->[0]->{course}->{course_name} + ); + } } elsif ( !$messages->{'BadBarcode'} ) { $input{duedate} = 0; diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt index 15f45a1..f90cf5e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -263,6 +263,13 @@ $(document).ready(function () { [% END %] [% END %] + [% IF ( course_reserve ) %] + +
+

Please return [% title or "item" |html %] to the [% course_name %] class reserve.

+
+ [% END %] + [% IF ( needstransfer ) %] [% IF ( soundon ) %] -- 1.9.1